/* ─────────────────────────────────────────────────────────────────────────────
   DUNMORE BAY ADVISORS — Stylesheet
   Brand: White (#FFFFFF), Black (#0A0A0A), Teal (#006464)
   ───────────────────────────────────────────────────────────────────────────── */

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:        #006464;
  --teal-light:  #008080;
  --teal-dark:   #004040;
  --teal-faint:  #f0fafa;
  --black:       #0A0A0A;
  --grey-900:    #1a1a1a;
  --grey-700:    #3d3d3d;
  --grey-500:    #6b6b6b;
  --grey-300:    #c4c4c4;
  --grey-100:    #f5f5f5;
  --white:       #ffffff;

  --font-body:   'Inter', sans-serif;
  --font-head:   'Playfair Display', Georgia, serif;

  --section-pad: 6rem 0;
  --radius:      8px;
  --radius-lg:   16px;

  --transition:  0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Layout ────────────────────────────────────────────────────────────────── */
.container {
  width: min(1160px, 100% - 3rem);
  margin-inline: auto;
}

.section { padding: var(--section-pad); }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.section__heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1rem;
}

.section__sub {
  color: var(--grey-500);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn--full { width: 100%; justify-content: center; }

/* ── Header / Nav ──────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  padding: 0.85rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav__logo-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: var(--white);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.nav__logo-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav__links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav__cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  margin-left: 0.5rem;
}
.nav__cta:hover {
  background: var(--teal-dark) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(0,100,100,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,100,100,0.12) 0%, transparent 70%),
    var(--black);
}

/* Subtle grid */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 6rem;
  max-width: 760px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1.5rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(0,128,128,0.35);
  border-radius: 100px;
}

.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero__headline--accent { color: var(--teal-light); }

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* ── Trust Bar ─────────────────────────────────────────────────────────────── */
.trust {
  background: var(--teal);
  padding: 2.5rem 0;
}

.trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0 1rem;
}

.trust__number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.trust__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  text-align: center;
}

.trust__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

/* ── About ─────────────────────────────────────────────────────────────────── */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.about__image-col { position: relative; }

.about__image-frame {
  position: relative;
  display: inline-block;
}

.about__image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--teal-faint), #d4efef);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  max-width: 380px;
}

.about__initials {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.3;
}

.about__image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  aspect-ratio: 1;
  border: 3px solid var(--teal);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.35;
}

.about__body {
  color: var(--grey-700);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.badge {
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  background: var(--teal-faint);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid rgba(0,100,100,0.2);
}

/* ── Services ──────────────────────────────────────────────────────────────── */
.services { background: var(--grey-100); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.07);
  transition: var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  border-color: rgba(0,100,100,0.25);
  box-shadow: 0 8px 40px rgba(0,100,100,0.08);
  transform: translateY(-2px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.service-card__icon svg { width: 100%; height: 100%; }

.service-card__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.service-card__body {
  font-size: 0.95rem;
  color: var(--grey-500);
  line-height: 1.7;
}

/* ── Process ───────────────────────────────────────────────────────────────── */
.process { background: var(--black); }
.process .section__eyebrow { color: var(--teal-light); }
.process .section__heading { color: var(--white); }

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

.process__step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.process__step-num {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  width: 80px;
  text-align: right;
  padding-top: 0.1rem;
}

.process__step-content {
  padding: 0 0 0 1.5rem;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 3rem;
}

.process__step:last-child .process__step-content { padding-bottom: 0; }

.process__step-content h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.process__step-content p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

.process__connector { display: none; }

/* ── Why Us ────────────────────────────────────────────────────────────────── */
.whyus__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.whyus__points { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 2rem; }

.whyus__point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.whyus__point-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--teal);
  margin-top: 0.1rem;
}
.whyus__point-icon svg { width: 100%; height: 100%; }

.whyus__point h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--black);
}

.whyus__point p {
  font-size: 0.95rem;
  color: var(--grey-500);
  line-height: 1.7;
}

.whyus__visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 6rem;
}

.whyus__card {
  background: var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(0,0,0,0.07);
}

.whyus__card--1 { border-top: 3px solid var(--teal); }
.whyus__card--2 { border-top: 3px solid var(--teal-light); }

.whyus__card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.whyus__card ul { display: flex; flex-direction: column; gap: 0.5rem; }

.whyus__card li {
  font-size: 0.92rem;
  color: var(--grey-700);
  padding-left: 1rem;
  position: relative;
}

.whyus__card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.75rem;
}

/* ── Contact ───────────────────────────────────────────────────────────────── */
.contact { background: var(--teal-faint); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact__body {
  font-size: 1.05rem;
  color: var(--grey-700);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.contact__details { display: flex; flex-direction: column; gap: 1.25rem; }

.contact__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--grey-700);
  font-size: 0.95rem;
  transition: var(--transition);
}
.contact__detail:hover { color: var(--teal); }

.contact__detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0,100,100,0.1);
  color: var(--teal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact__detail-icon svg { width: 20px; height: 20px; }

/* ── Form ──────────────────────────────────────────────────────────────────── */
.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-700);
}

.form__group input,
.form__group select,
.form__group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--grey-300); }

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,100,100,0.08);
}

.form__group textarea { resize: vertical; min-height: 130px; }

.form__note {
  font-size: 0.8rem;
  color: var(--grey-500);
  text-align: center;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--grey-900);
  color: rgba(255,255,255,0.7);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}

.footer__brand .nav__logo-text { color: rgba(255,255,255,0.9); }

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer__links h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer__links ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--teal-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ── Form success state ─────────────────────────────────────────────────────── */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.form-success__icon {
  width: 64px;
  height: 64px;
  background: var(--teal-faint);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  color: var(--teal);
}
.form-success h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 0.75rem; }
.form-success p  { font-size: 0.95rem; color: var(--grey-500); }

/* ── Scroll reveal ──────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal--left  { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal--scale { transform: scale(0.92); }
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ── Scroll progress bar ────────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 200;
  pointer-events: none;
}

/* ── Parallax layers ────────────────────────────────────────────────────────── */
.hero__bg, .hero__inner { will-change: transform; }

/* ── New Sections (Questions, Gap, Journey) ─────────────────────────────────── */

.questions {
  padding: 8rem 0 4rem;
  background-color: var(--teal-faint);
  text-align: center;
}

.questions__inner {
  max-width: 800px;
}

.questions__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.questions__rotator {
  position: relative;
  height: 120px; /* fixed height to prevent layout shifts */
  margin-bottom: 2rem;
  overflow: hidden;
}

.questions__question {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--black);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}

.questions__question.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.questions__static {
  display: none; /* hidden visually, but available for screen readers if aria-hidden is removed, though we handle fallback */
}

.questions__answer {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 2.5rem;
}

.gap {
  background-color: var(--black);
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
}

.gap__inner {
  max-width: 900px;
}

.gap .section__eyebrow { color: var(--teal-light); }
.gap .section__heading { color: var(--white); margin-bottom: 2rem; }

.gap__body {
  font-size: 1.1rem;
  color: var(--grey-300);
  margin-bottom: 4rem;
  max-width: 700px;
  margin-inline: auto;
}

.gap__compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.gap__col {
  padding: 2rem;
  background: var(--grey-900);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
}

.gap__col--highlight {
  background: rgba(0, 100, 100, 0.1);
  border-color: var(--teal);
}

.gap__col-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.gap__col p {
  font-size: 0.95rem;
  color: var(--grey-300);
  margin: 0;
}

.journey {
  margin: 4rem 0 5rem;
  text-align: center;
}

.journey__track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.journey__node {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--grey-500);
  padding: 0.5rem 1rem;
  background: var(--grey-100);
  border-radius: 20px;
}

.journey__node--accent {
  background: var(--teal);
  color: var(--white);
}

.journey__arrow {
  color: var(--grey-300);
  font-weight: 300;
}

.journey__caption {
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 500;
  font-style: italic;
}


/* ── Reduced motion ─────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll-line { animation: none; }
  .scroll-progress { display: none; }
  .questions__rotator { height: auto; }
  .questions__question { position: relative; opacity: 1; transform: none; margin-bottom: 1rem; font-size: 1.2rem;}
  .questions__question:not(.active) { display: none; }
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --section-pad: 4rem 0; }

  .nav__links { display: none; flex-direction: column; gap: 0.25rem; }
  .nav__links.open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.98);
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    z-index: 99;
  }
  .nav__links.open a { font-size: 1.25rem; }
  .nav__burger { display: flex; position: relative; z-index: 200; }

  /* burger → X */
  .nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about__image-col { display: none; }

  .whyus__inner { grid-template-columns: 1fr; gap: 3rem; }
  .whyus__visual { position: static; flex-direction: row; flex-wrap: wrap; }
  .whyus__card { flex: 1; min-width: 240px; }

  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .trust__divider { display: none; }
  .trust__inner { gap: 2rem; }

  .process__step-num { width: 56px; font-size: 2.2rem; }
}

@media (max-width: 600px) {
  .hero__headline { font-size: clamp(2rem, 9vw, 2.8rem); }

  .form__row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom .container { flex-direction: column; }

  .services__grid { grid-template-columns: 1fr; }

  .whyus__visual { flex-direction: column; }
}
