/* ========================================
   North Eastern Services - v2 Redesign
   Clean, Bold, Trust-Forward
   ======================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0f1b2d;
  --navy-light: #1a2d47;
  --navy-mid: #243b5e;
  --accent: #e8792b;
  --accent-hover: #d4681e;
  --accent-light: #fef3eb;
  --green: #2ecc71;
  --gold: #f1c40f;
  --text: #1a1a2e;
  --text-mid: #4a5568;
  --text-light: #718096;
  --white: #fff;
  --off-white: #f7f8fc;
  --gray-100: #f1f3f8;
  --gray-200: #e2e6ef;
  --gray-300: #cbd2e0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 15px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 25px 60px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ===================== TOP BAR ===================== */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  padding: 10px 0;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar__contact { display: flex; gap: 28px; align-items: center; }

.top-bar__contact a {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.85); font-weight: 500;
}
.top-bar__contact a:hover { color: var(--accent); }

.top-bar__right { display: flex; gap: 20px; align-items: center; }

.top-bar__badges {
  display: flex; gap: 12px; align-items: center;
  font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.top-bar__badges span {
  display: flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

.top-bar__social { display: flex; gap: 8px; }

.top-bar__social a {
  width: 30px; height: 30px; border-radius: 6px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8); font-size: 0.85rem;
  transition: var(--transition);
}
.top-bar__social a:hover { background: var(--accent); color: var(--white); }

/* ===================== NAVBAR ===================== */
.navbar {
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  position: sticky; top: 0; z-index: 1000;
}

.navbar .container {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 14px; padding-bottom: 14px;
}

.navbar__logo { display: flex; align-items: center; gap: 14px; }

.navbar__logo img { height: 56px; width: auto; }

.navbar__logo-text {
  display: flex; flex-direction: column;
  border-left: 2px solid var(--gray-200); padding-left: 14px;
}

.navbar__logo-text .company-name {
  font-size: 1.05rem; font-weight: 800; color: var(--navy);
  letter-spacing: -0.02em; line-height: 1.2;
}

.navbar__logo-text .tagline {
  font-size: 0.68rem; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.08em;
}

.navbar__menu { display: flex; gap: 8px; align-items: center; }

.navbar__menu a {
  font-weight: 500; color: var(--text-mid); font-size: 0.9rem;
  padding: 8px 16px; border-radius: 8px;
  transition: var(--transition);
}
.navbar__menu a:hover { color: var(--accent); background: var(--accent-light); }
.navbar__menu a.active { color: var(--accent); background: var(--accent-light); font-weight: 600; }

.navbar__cta {
  background: var(--accent) !important; color: var(--white) !important;
  font-weight: 600 !important; border-radius: 8px !important;
  padding: 10px 20px !important;
}
.navbar__cta:hover { background: var(--accent-hover) !important; transform: translateY(-1px); }

.navbar__toggle {
  display: none; background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--text); padding: 8px;
}

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 620px;
  display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
}

.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.2;
}

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,27,45,0.92) 0%, rgba(26,45,71,0.75) 100%);
}

.hero__content { position: relative; z-index: 2; max-width: 650px; padding: 80px 0; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,121,43,0.15); border: 1px solid rgba(232,121,43,0.3);
  color: var(--accent); padding: 8px 18px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.2rem; font-weight: 800; color: var(--white);
  line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.03em;
}

.hero h1 span { color: var(--accent); }

.hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  margin-bottom: 36px; line-height: 1.75; max-width: 550px;
}

.hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===================== STATS BAR ===================== */
.stats-bar {
  background: var(--white);
  margin-top: -50px; position: relative; z-index: 10;
}

.stats-bar__inner {
  background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow-xl);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 0; overflow: hidden;
}

.stats-bar__item {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid var(--gray-200);
  transition: var(--transition);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__item:hover { background: var(--accent-light); }

.stats-bar__icon {
  font-size: 1.8rem; margin-bottom: 8px;
}

.stats-bar__number {
  font-size: 2rem; font-weight: 800; color: var(--navy);
  line-height: 1; margin-bottom: 4px;
}

.stats-bar__label {
  font-size: 0.8rem; font-weight: 600; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.92rem;
  cursor: pointer; border: none; transition: var(--transition);
}

.btn--primary {
  background: var(--accent); color: var(--white);
  box-shadow: 0 4px 15px rgba(232,121,43,0.3);
}
.btn--primary:hover {
  background: var(--accent-hover); transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,121,43,0.4);
}

.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn--dark { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: var(--navy-light); transform: translateY(-2px); }

.btn--sm { padding: 10px 22px; font-size: 0.85rem; }

/* ===================== SECTIONS ===================== */
.section { padding: 100px 0; }
.section--gray { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }

.section__header { text-align: center; max-width: 650px; margin: 0 auto 56px; }

.section__label {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 12px;
}

.section__header h2 {
  font-size: 2.4rem; font-weight: 800; color: var(--navy);
  margin-bottom: 14px; letter-spacing: -0.02em; line-height: 1.15;
}
.section--navy .section__header h2 { color: var(--white); }

.section__header p { color: var(--text-light); font-size: 1.05rem; line-height: 1.7; }
.section--navy .section__header p { color: rgba(255,255,255,0.7); }

/* ===================== WHY NES ===================== */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}

.why-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.why-card__icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--accent-light); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 18px;
}

.why-card h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--navy);
  margin-bottom: 10px; line-height: 1.3;
}

.why-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ===================== SERVICES GRID ===================== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}

.service-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--gray-200);
  transition: var(--transition); position: relative;
}
.service-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card__img { height: 240px; overflow: hidden; position: relative; }

.service-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-card__img img { transform: scale(1.08); }

.service-card__img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(0,0,0,0.05));
}

.service-card__body { padding: 28px; }

.service-card__body h3 {
  font-size: 1.2rem; font-weight: 700; color: var(--navy);
  margin-bottom: 10px;
}

.service-card__body p {
  color: var(--text-light); font-size: 0.9rem;
  margin-bottom: 20px; line-height: 1.65;
}

.service-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent); font-weight: 600; font-size: 0.88rem;
}
.service-card__link:hover { gap: 10px; }

/* ===================== CLIENT LOGOS ===================== */
.logos-bar {
  padding: 48px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}

.logos-bar__label {
  text-align: center; font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-light); margin-bottom: 28px;
}

.logos-bar__grid {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
}

.logos-bar__item {
  font-size: 1.3rem; font-weight: 800; color: var(--gray-300);
  letter-spacing: 0.02em; transition: var(--transition);
  padding: 12px 24px; border-radius: 8px;
  background: var(--gray-100);
}
.logos-bar__item:hover { color: var(--navy); background: var(--gray-200); }

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}

.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px; border: 1px solid var(--gray-200);
  position: relative; transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.testimonial-card__stars {
  color: var(--gold); font-size: 1.1rem; margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card__quote {
  font-size: 0.95rem; color: var(--text-mid); line-height: 1.75;
  margin-bottom: 20px; font-style: italic;
}

.testimonial-card__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--gray-200);
}

.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
}

.testimonial-card__name { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.testimonial-card__role { font-size: 0.8rem; color: var(--text-light); }

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0; text-align: center;
}

.cta-banner h2 {
  font-size: 2.2rem; font-weight: 800; color: var(--white);
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255,255,255,0.7); font-size: 1.05rem;
  margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto;
}

.cta-banner__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===================== TEAM GRID ===================== */
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}

.team-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--gray-200);
  text-align: center; transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.team-card__photo {
  height: 280px; overflow: hidden; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }

.team-card__photo-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  color: var(--text-light); font-size: 3rem;
}
.team-card__photo-placeholder span {
  font-size: 0.75rem; margin-top: 8px; font-weight: 600;
}

.team-card__info { padding: 22px 20px; }

.team-card__info h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card__info .role { font-size: 0.82rem; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
.team-card__info p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }

/* ===================== ABOUT SECTIONS ===================== */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white); padding: 80px 0; text-align: center;
}
.about-hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.about-hero p { font-size: 1.1rem; opacity: 0.75; max-width: 600px; margin: 0 auto; }

.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; padding: 80px 0;
}
.about-split.reverse { direction: rtl; }
.about-split.reverse > * { direction: ltr; }

.about-split__img {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-split__img img { width: 100%; height: 380px; object-fit: cover; }

.about-split__content h2 {
  font-size: 1.9rem; font-weight: 800; color: var(--navy);
  margin-bottom: 18px; line-height: 1.2;
}
.about-split__content p {
  color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; font-size: 0.95rem;
}

.states-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-top: 20px;
}
.states-grid span {
  background: var(--gray-100); padding: 10px 14px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600; text-align: center;
  border: 1px solid var(--gray-200);
}

/* ===================== CONTACT / FORMS ===================== */
.contact-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white); padding: 60px 0; text-align: center;
}
.contact-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 12px; }
.contact-hero p { opacity: 0.75; font-size: 1.05rem; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 48px; padding: 80px 0;
}

.contact-info h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.contact-info > p { color: var(--text-light); margin-bottom: 32px; font-size: 0.95rem; }

.contact-info__item {
  display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start;
}
.contact-info__item .icon {
  width: 48px; height: 48px; background: var(--accent-light);
  color: var(--accent); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-info__item h3 { font-size: 0.92rem; color: var(--navy); margin-bottom: 4px; font-weight: 700; }
.contact-info__item p, .contact-info__item a { color: var(--text-light); font-size: 0.9rem; }
.contact-info__item a:hover { color: var(--accent); }

.form {
  background: var(--white); padding: 40px;
  border-radius: var(--radius); box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}
.form h3 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.form .form__subtitle { color: var(--text-light); font-size: 0.9rem; margin-bottom: 28px; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form__group { margin-bottom: 20px; }
.form__group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}
.form__group input, .form__group textarea, .form__group select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: 0.92rem; font-family: inherit;
  transition: var(--transition); background: var(--white);
}
.form__group input:focus, .form__group textarea:focus, .form__group select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(232,121,43,0.1);
}
.form__group textarea { resize: vertical; min-height: 100px; }
.form .btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* Language tabs */
.lang-tabs { display: flex; gap: 8px; margin-bottom: 20px; }
.lang-tabs button {
  padding: 9px 22px; border-radius: 8px;
  border: 1.5px solid var(--gray-200); background: var(--white);
  cursor: pointer; font-weight: 600; font-size: 0.82rem;
  transition: var(--transition); color: var(--text-mid);
}
.lang-tabs button.active, .lang-tabs button:hover {
  background: var(--accent); color: var(--white); border-color: var(--accent);
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--navy); color: rgba(255,255,255,0.75);
  padding: 72px 0 24px;
}

.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}

.footer__brand h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; }
.footer__brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }

.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: var(--transition); font-size: 1.1rem;
}
.footer__social a:hover { background: var(--accent); }

.footer__col h4 {
  color: var(--white); font-size: 0.9rem; margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700;
}
.footer__col p, .footer__col a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; margin-bottom: 10px; opacity: 0.75;
}
.footer__col a:hover { opacity: 1; color: var(--accent); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; display: flex;
  justify-content: space-between; align-items: center;
  font-size: 0.82rem; opacity: 0.5; flex-wrap: wrap; gap: 12px;
}
.footer__bottom a:hover { opacity: 1; color: var(--accent); }

/* ===================== PAGE HEROES ===================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white); padding: 72px 0; text-align: center;
}
.page-hero h1 { font-size: 2.6rem; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.02em; }
.page-hero p { font-size: 1.05rem; opacity: 0.75; max-width: 550px; margin: 0 auto; }

/* ===================== MAP EMBED ===================== */
.map-embed {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); margin-top: 48px;
  border: 1px solid var(--gray-200);
}
.map-embed iframe { width: 100%; height: 350px; border: none; display: block; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar__menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 20px; gap: 4px; box-shadow: var(--shadow-xl);
    border-top: 1px solid var(--gray-200);
  }
  .navbar__menu.open { display: flex; }
  .navbar__toggle { display: block; }
  .navbar__logo-text .company-name { font-size: 0.9rem; }
  .navbar__logo-text .tagline { font-size: 0.6rem; }

  .hero { min-height: auto; }
  .hero h1 { font-size: 2.1rem; }
  .hero__content { padding: 60px 0; }

  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item { padding: 24px 16px; }
  .stats-bar__number { font-size: 1.6rem; }

  .section { padding: 64px 0; }
  .section__header h2 { font-size: 1.8rem; }

  .services-grid, .why-grid, .team-grid { grid-template-columns: 1fr; }
  .about-split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-split.reverse { direction: ltr; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .form__row { grid-template-columns: 1fr; }

  .top-bar__badges { display: none; }
  .top-bar__contact { gap: 16px; }

  .logos-bar__grid { gap: 24px; }
  .logos-bar__item { font-size: 1rem; padding: 10px 16px; }

  .cta-banner h2 { font-size: 1.7rem; }

  /* Mobile phone bar */
  .mobile-call {
    display: block; position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--accent); color: var(--white);
    text-align: center; padding: 16px; font-weight: 700;
    font-size: 1rem; z-index: 999; box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  }
}

@media (min-width: 769px) {
  .mobile-call { display: none; }
}
