/* ─────────────────────────────────────────────────────────────
   AVALON HOSTING — Main Stylesheet
   Aesthetic: Refined luxury with dark editorial feel
   Fonts: Cormorant Garant (display) + Outfit (body)
───────────────────────────────────────────────────────────── */

/* CUSTOM PROPERTIES */
:root {
  --ink:        #0e0f14;
  --ink-soft:   #1c1d26;
  --ink-mid:    #2a2b38;
  --surface:    #f7f5f0;
  --surface-2:  #eeeae2;
  --gold:       #c4973a;
  --gold-light: #e2b96a;
  --gold-pale:  #f5e9d0;
  --white:      #ffffff;
  --text:       #0e0f14;
  --text-soft:  #4a4b57;
  --text-muted: #8a8b97;
  --border:     rgba(196,151,58,.18);
  --border-dark:rgba(255,255,255,.08);

  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 12px rgba(14,15,20,.08);
  --shadow-md:  0 8px 32px rgba(14,15,20,.12);
  --shadow-lg:  0 20px 60px rgba(14,15,20,.16);

  --max-w: 1200px;
  --pad:   clamp(1.25rem, 5vw, 2.5rem);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; background: none; font: inherit; }

/* UTILITIES */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section { padding: clamp(4rem, 8vw, 7rem) 0; }

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }
.reveal--delay-3 { transition-delay: .36s; }
.reveal--delay-4 { transition-delay: .48s; }

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.scrolled {
  background: rgba(14,15,20,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-dark);
  padding: .85rem 0;
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.nav__logo-mark {
  width: 36px; height: 36px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -.01em;
}
.nav__logo-text span { color: var(--gold); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 400;
  color: rgba(255,255,255,.75);
  letter-spacing: .02em;
  transition: color .2s;
}
.nav__links a:hover { color: var(--white); }
.nav__cta {
  background: var(--gold) !important;
  color: var(--ink) !important;
  padding: .55rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background .2s, transform .15s !important;
}
.nav__cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: .3s; border-radius: 2px; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  background: var(--ink);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem var(--pad) 5rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,151,58,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,151,58,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 20%, transparent 80%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .22;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -200px; right: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: #4a6cf7;
  bottom: -100px; left: -100px;
  animation: orbFloat 16s ease-in-out infinite reverse;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: var(--gold-light);
  top: 40%; left: 40%;
  opacity: .1;
  animation: orbFloat 10s ease-in-out infinite 3s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(.95); }
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(196,151,58,.12);
  border: 1px solid rgba(196,151,58,.3);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.75); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.65);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero__stat { text-align: center; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero__stat-unit {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--gold);
}
.hero__stat-label {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .3rem;
}
.hero__stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.12);
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem; left: var(--pad);
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.35);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  z-index: 1;
}
.hero__scroll-line {
  width: 40px; height: 1px;
  background: rgba(255,255,255,.25);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .2s; }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  background: var(--gold);
  color: var(--ink);
}
.btn--primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,151,58,.4); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
}
.btn--ghost:hover { border-color: rgba(255,255,255,.6); transform: translateY(-2px); }
.btn--white {
  background: var(--white);
  color: var(--ink);
}
.btn--white:hover { background: var(--surface); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,.2); }
.btn--full { width: 100%; justify-content: center; }

/* ─── SECTION HEADERS ─────────────────────────────────────── */
.section__header { text-align: center; margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.section__tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: .85rem;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.section__title em { font-style: italic; color: var(--gold); }
.section__desc {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
}

/* ─── TRUST BAR ───────────────────────────────────────────── */
.trust {
  background: var(--surface);
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--surface-2);
}
.trust__label {
  text-align: center;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.trust__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust__logo {
  color: var(--text-muted);
  opacity: .6;
  transition: opacity .2s;
}
.trust__logo:hover { opacity: 1; }
.trust__logo svg { height: 24px; width: auto; }
.trust__logo--text {
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
}

/* ─── SERVICES ────────────────────────────────────────────── */
.services { background: var(--white); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.service-card__icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}
.service-card__icon svg { width: 22px; height: 22px; color: var(--gold); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: .65rem;
  color: var(--text);
}
.service-card p {
  font-size: .9rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.service-card__list li {
  font-size: .83rem;
  color: var(--text-soft);
  padding: .35rem 0;
  border-top: 1px solid var(--surface-2);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.service-card__list li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── PROCESS ─────────────────────────────────────────────── */
.process { background: var(--ink); }
.process .section__tag { color: var(--gold-light); }
.process .section__title { color: var(--white); }
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.process__step {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
}
.process__step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .35;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -.04em;
}
.process__step-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .65rem;
}
.process__step-body p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  font-weight: 300;
}
.process__connector {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(196,151,58,.2));
  margin-top: 3.5rem;
  position: relative;
}
.process__connector::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

/* ─── ABOUT ───────────────────────────────────────────────── */
.about { background: var(--surface); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__visual {
  position: relative;
  height: 420px;
}
.about__card {
  position: absolute;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}
.about__card--main {
  background: var(--ink);
  width: 260px;
  top: 0; left: 0;
}
.about__card--secondary {
  background: var(--gold);
  width: 220px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.about__card--accent {
  background: var(--white);
  width: 200px;
  bottom: 0; left: 60px;
}
.about__card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: .35rem;
}
.about__card--main .about__card-num { color: var(--gold); }
.about__card--secondary .about__card-num { color: var(--ink); }
.about__card--accent .about__card-num { color: var(--ink); }
.about__card-label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.4;
}
.about__card--main .about__card-label { color: rgba(255,255,255,.65); }
.about__card--secondary .about__card-label { color: rgba(14,15,20,.65); }
.about__card--accent .about__card-label { color: var(--text-soft); }
.about__bg-circle {
  position: absolute;
  width: 300px; height: 300px;
  border: 2px dashed rgba(196,151,58,.2);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.about__content p {
  font-size: .95rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 300;
}
.about__content .section__title { margin-top: .5rem; text-align: left; }
.about__pillars {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.about__pillar {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text-soft);
}
.about__pillar svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* ─── TESTIMONIALS ────────────────────────────────────────── */
.testimonials { background: var(--white); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform .25s, box-shadow .25s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: .15em;
  margin-bottom: 1rem;
}
.testimonial p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.testimonial__avatar {
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
}
.testimonial__author strong {
  display: block;
  font-size: .9rem;
  font-weight: 600;
}
.testimonial__author span {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ─── AREAS ───────────────────────────────────────────────── */
.areas { background: var(--surface); }
.areas__grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}
.area-tag {
  background: var(--white);
  border: 1px solid var(--surface-2);
  border-radius: 100px;
  padding: .55rem 1.25rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: all .2s;
}
.area-tag:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ─── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: var(--ink);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band__bg { position: absolute; inset: 0; pointer-events: none; }
.cta-band__orb {
  position: absolute;
  width: 500px; height: 500px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(120px);
  opacity: .12;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-band__inner { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-band p {
  color: rgba(255,255,255,.6);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  font-weight: 300;
}

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact { background: var(--white); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact__info p {
  font-size: .95rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin: 1rem 0 2rem;
  font-weight: 300;
}
.contact__info .section__title { text-align: left; margin-top: .5rem; }
.contact__details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-2);
  transition: all .2s;
}
.contact__detail:hover { border-color: var(--gold); transform: translateX(4px); }
.contact__detail-icon {
  width: 42px; height: 42px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact__detail-icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact__detail span {
  display: block;
  font-size: .73rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: .15rem;
}
.contact__detail strong {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
}

/* FORM */
.contact__form {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}
.form__field label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
}
.form__field input,
.form__field textarea {
  background: var(--white);
  border: 1.5px solid var(--surface-2);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: var(--text-muted); }
.form__field input:focus,
.form__field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,151,58,.12);
}
.form__note {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .75rem;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--ink-soft);
  border-top: 1px solid var(--border-dark);
  padding: 4rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  margin-top: 1rem;
  line-height: 1.7;
  font-weight: 300;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.footer__links strong {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.5);
  margin-bottom: .4rem;
}
.footer__links a {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer__links a:hover { color: var(--gold-light); }
.footer__bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual { height: 320px; margin-bottom: 1rem; }
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 80vw); background: var(--ink-soft); padding: 5rem 2rem 2rem; gap: 1.5rem; transition: transform .35s ease; z-index: 99; transform: translateX(100%); }
  .nav__links.open { display: flex; transform: translateX(0); }
  .nav__links a { font-size: 1.1rem; }
  .nav__cta { padding: .85rem 1.5rem !important; }
  .nav__toggle { display: flex; z-index: 100; }
  .process__steps { flex-direction: column; align-items: center; }
  .process__connector { width: 1px; height: 40px; background: linear-gradient(180deg, var(--gold), rgba(196,151,58,.2)); margin: 0; transform: none; }
  .process__connector::after { right: -3px; bottom: 0; top: auto; }
  .about__card--secondary { right: auto; left: auto; top: auto; transform: none; position: relative !important; margin-top: 1rem; }
  .about__visual { height: auto; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
  .about__card { position: relative !important; top: auto; left: auto; right: auto; bottom: auto; transform: none; width: 280px !important; }
  .about__bg-circle { display: none; }
  .form__row { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.5rem; }
  .hero__stat-divider { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: .5rem; text-align: center; }
}

@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .btn { justify-content: center; }
}
