/* ═══════════════════════════════════════════════
   MERIDIAN — styles.css
   Brand: Navy #0A192F · Gold #C5A059 · Silver #B8C4D0
═══════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --navy:    #07101E;
  --navy1:   #0A192F;
  --navy2:   #0D2040;
  --navy3:   #112347;
  --gold:    #C5A059;
  --gold2:   #D9BC7A;
  --gold3:   #8B6830;
  --silver:  #B8C4D0;
  --silver2: #7A8FA0;
  --white:   #EDF2F7;
  --text:    #94A3B8;
  --r: 6px;
  --glow: 0 0 40px rgba(197,160,89,.18);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--navy1); color: var(--text); font-family: 'Inter', sans-serif; overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: 'Inter', sans-serif; border: none; background: none; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── Typography atoms ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.eyebrow-line { width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }

.section-tag {
  display: block; font-size: 10px; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 16px;
}

.h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 600; color: var(--white); line-height: 1.04; letter-spacing: -1px;
}
.h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 600; color: var(--white); line-height: 1.1;
}
.h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600; color: var(--white); margin-bottom: 14px;
}

.gold-bar {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0 32px;
}
.gold-bar.center { margin: 20px auto 32px; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 38px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold3) 100%);
  color: var(--navy); font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 700; border-radius: var(--r);
  transition: all .35s; box-shadow: 0 8px 32px rgba(197,160,89,.22);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(197,160,89,.38);
  filter: brightness(1.08);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  border: 1px solid rgba(197,160,89,.38);
  color: var(--gold); font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 500; border-radius: var(--r);
  transition: all .35s;
}
.btn-secondary:hover {
  background: rgba(197,160,89,.07); border-color: var(--gold); transform: translateY(-3px);
}

/* ── Scroll reveal ── */
.sr { opacity: 0; transform: translateY(38px); transition: opacity .8s ease, transform .8s ease; }
.sr.d1 { transition-delay: .12s; }
.sr.d2 { transition-delay: .24s; }
.sr.d3 { transition-delay: .36s; }
.sr.d4 { transition-delay: .48s; }
.sr.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 24px 0; transition: all .4s;
}
#navbar.scrolled {
  background: rgba(7,16,30,.92); backdrop-filter: blur(20px) saturate(1.4);
  padding: 15px 0; border-bottom: 1px solid rgba(197,160,89,.1);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand  { display: flex; align-items: center; gap: 14px; }
.nav-brand img { height: 38px; width: auto; filter: drop-shadow(0 0 10px rgba(197,160,89,.3)); }
.brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; letter-spacing: 5px; color: var(--white); }
.brand-sub  { font-size: 7.5px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); margin-top: 2px; }

.nav-links { display: flex; list-style: none; gap: 36px; }
.nav-links a {
  font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--silver2); font-weight: 400; transition: color .3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 16px; }

.lang-toggle {
  display: flex; align-items: center;
  background: rgba(197,160,89,.07); border: 1px solid rgba(197,160,89,.2);
  border-radius: 50px; padding: 4px; gap: 2px;
}
.lang-btn {
  padding: 5px 14px; border-radius: 50px;
  font-size: 10px; letter-spacing: 2px; font-weight: 600;
  transition: all .3s; color: var(--silver2);
}
.lang-btn.active { background: var(--gold); color: var(--navy); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { width: 24px; height: 1.5px; background: var(--gold); transition: all .3s; }

/* Mobile nav */
#mobile-nav {
  display: none; position: fixed; inset: 0;
  background: rgba(7,16,30,.97); backdrop-filter: blur(24px);
  z-index: 199; flex-direction: column; align-items: center; justify-content: center; gap: 44px;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem;
  letter-spacing: 4px; color: var(--white); transition: color .3s;
}
#mobile-nav a:hover { color: var(--gold); }
.mob-close {
  position: absolute; top: 24px; right: 28px;
  font-size: 1.3rem; color: var(--gold); cursor: pointer;
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../img/hero.jpeg') center / cover no-repeat;
  transform: scale(1.06); transition: transform 1.8s ease-out;
  will-change: transform;
}
.hero-bg.loaded { transform: scale(1); }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(7,16,30,.97) 0%, rgba(7,16,30,.80) 55%, rgba(7,16,30,.65) 100%),
    radial-gradient(ellipse at 75% 55%, rgba(197,160,89,.06) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(197,160,89,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,160,89,.03) 1px, transparent 1px);
  background-size: 70px 70px;
}
.hero-orb {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(197,160,89,.08) 0%, transparent 68%);
  animation: breathe 7s ease-in-out infinite alternate; pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 860px; padding-top: 90px; }

.hero-eyebrow {
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp .8s .2s ease forwards;
}
.hero-title {
  opacity: 0; animation: fadeUp .9s .45s ease forwards;
}
.hero-title .line  { display: block; }
.hero-title .italic-gold {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold2) 0%, var(--gold) 60%, #e8cc82 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Animated word cycle */
.cycle-wrap {
  display: inline-flex; align-items: center; overflow: hidden;
  height: 1.1em; vertical-align: bottom; min-width: 220px;
}
.cycle-word {
  display: block; position: absolute;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-style: normal;
  opacity: 0; transform: translateY(100%); transition: opacity .5s ease, transform .5s ease;
}
.cycle-word.active { opacity: 1; transform: translateY(0); }
.cycle-word.exit   { opacity: 0; transform: translateY(-100%); }

.hero-subtitle {
  font-size: 1.1rem; line-height: 1.88; color: var(--silver2);
  max-width: 600px; font-weight: 300; margin-top: 28px;
  opacity: 0; animation: fadeUp .9s .72s ease forwards;
}
.hero-ctas {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 48px;
  opacity: 0; animation: fadeUp .9s .96s ease forwards;
}

.hero-scroll-cue {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1s 1.7s ease forwards;
}
.hero-scroll-cue span { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--silver2); }
.scroll-stem {
  width: 1px; height: 54px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: stemPulse 2.4s ease-in-out infinite;
}

/* ════════════════════════════════════════════
   TICKER
════════════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden; white-space: nowrap;
  background: rgba(197,160,89,.055);
  border-top: 1px solid rgba(197,160,89,.12);
  border-bottom: 1px solid rgba(197,160,89,.12);
  padding: 15px 0;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.tick-item {
  display: inline-flex; align-items: center; gap: 24px; padding: 0 24px;
  font-size: 10.5px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--silver2); font-weight: 400;
}
.tick-item.gold { color: var(--gold); }
.tick-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
#about { padding: 140px 0; position: relative; overflow: hidden; }
#about::after {
  content: '';
  position: absolute; right: -180px; bottom: -180px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(197,160,89,.045) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid { display: grid; grid-template-columns: 480px 1fr; gap: 100px; align-items: center; }

/* Image side */
.about-visual { position: relative; }
.about-icon-wrap {
  position: relative; width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.55);
}
.about-icon-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-frame-outer {
  position: absolute; inset: -20px;
  border: 1px solid rgba(197,160,89,.18); border-radius: 22px;
  pointer-events: none;
}
.about-frame-inner {
  position: absolute; inset: 20px;
  border: 1px solid rgba(197,160,89,.08); border-radius: 10px;
  pointer-events: none;
}
/* Corner accents */
.about-corner {
  position: absolute; width: 28px; height: 28px;
}
.about-corner::before, .about-corner::after {
  content: ''; position: absolute; background: var(--gold);
}
.about-corner::before { width: 28px; height: 1.5px; top: 0; left: 0; }
.about-corner::after  { width: 1.5px; height: 28px; top: 0; left: 0; }
.about-corner.tr { top: -20px; right: -20px; transform: rotate(90deg); }
.about-corner.bl { bottom: -20px; left: -20px; transform: rotate(-90deg); }
.about-corner.br { bottom: -20px; right: -20px; transform: rotate(180deg); }
.about-corner.tl { top: -20px; left: -20px; }

/* Badge */
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  padding: 24px 28px; border-radius: var(--r);
  box-shadow: 0 20px 50px rgba(197,160,89,.3);
  text-align: center;
}
.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 700; color: var(--navy); line-height: 1;
}
.badge-label {
  font-size: 8.5px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(7,16,30,.75); font-weight: 700; margin-top: 5px;
}

/* Text side */
.about-copy p {
  font-size: .97rem; line-height: 1.92; color: var(--silver2);
  font-weight: 300; margin-bottom: 20px;
}
.about-copy p strong { color: var(--white); font-weight: 500; }
.about-copy p em     { color: var(--gold); font-style: normal; }
.about-copy p:last-of-type { margin-bottom: 0; }

.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 36px; }
.value-card {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 18px;
  background: rgba(13,32,64,.65);
  border: 1px solid rgba(197,160,89,.1);
  border-radius: var(--r);
  transition: border-color .3s, background .3s;
}
.value-card:hover { border-color: rgba(197,160,89,.28); background: rgba(17,35,71,.85); }
.value-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex-shrink: 0; }
.value-text { font-size: .85rem; color: var(--silver); font-weight: 400; line-height: 1.45; }

/* ════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════ */
#services {
  padding: 130px 0;
  background: linear-gradient(180deg, var(--navy1) 0%, var(--navy) 100%);
  position: relative;
}
#services::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197,160,89,.25), transparent);
}

.services-header { text-align: center; max-width: 640px; margin: 0 auto 88px; }
.services-header p { font-size: 1rem; line-height: 1.82; color: var(--silver2); font-weight: 300; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(197,160,89,.1);
  border-radius: var(--r); overflow: hidden;
  background: rgba(197,160,89,.05);
  gap: 1px;
}
.svc-card {
  background: var(--navy1); padding: 52px 40px 44px;
  position: relative; overflow: hidden;
  transition: background .4s;
}
.svc-card:hover { background: var(--navy2); }
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width .55s ease;
}
.svc-card:hover::after { width: 100%; }

.svc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem; font-weight: 300; color: rgba(197,160,89,.08);
  line-height: 1; margin-bottom: 20px; user-select: none;
  transition: color .4s;
}
.svc-card:hover .svc-num { color: rgba(197,160,89,.15); }
.svc-icon {
  width: 40px; height: 40px; margin-bottom: 22px;
  stroke: var(--gold); fill: none; stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
}
.svc-title { margin-bottom: 14px; }
.svc-desc  { font-size: .875rem; line-height: 1.8; color: var(--silver2); font-weight: 300; }

/* ════════════════════════════════════════════
   QUOTE
════════════════════════════════════════════ */
#quote {
  padding: 110px 0; position: relative; overflow: hidden;
  background: var(--navy);
}
.quote-bg-img {
  position: absolute; inset: 0;
  background: url('../img/hero.jpeg') center / cover no-repeat;
  opacity: .06;
}
.quote-content {
  position: relative; z-index: 2;
  max-width: 900px; margin: 0 auto; text-align: center;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem; font-weight: 300; line-height: .4;
  color: rgba(197,160,89,.18); display: block; margin-bottom: 20px;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 400; color: var(--white);
  line-height: 1.55; font-style: italic;
}
.quote-text em { font-style: normal; color: var(--gold2); }
.quote-sig {
  margin-top: 36px; font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); font-weight: 500;
}
.quote-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px auto 0;
}

/* ════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════ */
#process {
  padding: 130px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy1) 100%);
  position: relative;
}
#process::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197,160,89,.2), transparent);
}
.process-header { text-align: center; max-width: 560px; margin: 0 auto 88px; }
.process-steps  { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.process-connector {
  position: absolute; top: 38px; left: calc(12.5% + 8px); right: calc(12.5% + 8px);
  height: 1px; background: linear-gradient(90deg, rgba(197,160,89,.35), rgba(197,160,89,.1), rgba(197,160,89,.35));
}
.proc-step { padding: 0 28px; text-align: center; }
.proc-circle {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--navy1); border: 1px solid rgba(197,160,89,.28);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px; position: relative; z-index: 1;
  transition: all .4s;
}
.proc-step:hover .proc-circle {
  background: rgba(197,160,89,.1); border-color: var(--gold);
  box-shadow: var(--glow);
}
.proc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600; color: var(--gold);
}
.proc-title { font-size: 1.1rem; margin-bottom: 10px; }
.proc-desc  { font-size: .845rem; line-height: 1.72; color: var(--silver2); font-weight: 300; }

/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
#contact { position: relative; overflow: hidden; }
.contact-bg {
  position: absolute; inset: 0;
  background: url('../img/hero.jpeg') center / cover no-repeat;
  filter: brightness(.15) saturate(.4);
}
.contact-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--navy1) 0%, rgba(7,16,30,.65) 40%, rgba(7,16,30,.88) 100%);
}
.contact-inner { position: relative; z-index: 2; padding: 130px 0; }
.contact-top    { text-align: center; margin-bottom: 56px; }
.contact-lead   {
  font-size: 1.05rem; line-height: 1.82; color: var(--silver2);
  font-weight: 300; max-width: 520px; margin: 0 auto;
}

.form-card {
  max-width: 560px; margin: 0 auto;
  background: rgba(10,25,47,.8); backdrop-filter: blur(20px);
  border: 1px solid rgba(197,160,89,.13); border-radius: 10px;
  padding: 48px 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label {
  font-size: 9.5px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--silver2); font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(197,160,89,.13); border-radius: var(--r);
  padding: 13px 16px; color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 300;
  outline: none; transition: border-color .3s, background .3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(197,160,89,.45); background: rgba(197,160,89,.03);
}
.form-group textarea   { min-height: 110px; resize: vertical; }
.form-group select option { background: var(--navy2); }
.form-submit {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  color: var(--navy); font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 700;
  border: none; border-radius: var(--r); cursor: pointer;
  transition: all .3s; font-family: 'Inter', sans-serif;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(197,160,89,.3); }
.form-feedback {
  display: none; margin-top: 16px; padding: 13px 18px;
  border-radius: var(--r); font-size: 13px; text-align: center;
}
.form-feedback.success {
  display: block;
  background: rgba(197,160,89,.1); border: 1px solid rgba(197,160,89,.28); color: var(--gold2);
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer {
  background: #050C18;
  border-top: 1px solid rgba(197,160,89,.08);
  padding: 60px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 64px; margin-bottom: 52px; }
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 700; letter-spacing: 5px; color: var(--white);
}
.footer-brand-tag {
  font-size: 8.5px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); margin: 6px 0 20px;
}
.footer-brand-desc { font-size: .85rem; line-height: 1.82; color: var(--silver2); font-weight: 300; }
.footer-col h4 {
  font-size: 9.5px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .84rem; color: var(--silver2); transition: color .3s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.05);
}
.footer-copy { font-size: 12px; color: var(--silver2); }
.footer-merit { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); opacity: .55; }

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
@keyframes fadeUp  { from { opacity:0; transform:translateY(28px) } to { opacity:1; transform:none } }
@keyframes fadeIn  { from { opacity:0 } to { opacity:1 } }
@keyframes breathe { from { transform:translateY(-50%) scale(1) } to { transform:translateY(-50%) scale(1.12) } }
@keyframes stemPulse {
  0%,100% { transform:scaleY(1);   opacity:.45 }
  50%      { transform:scaleY(1.3); opacity:1   }
}
@keyframes ticker  { from { transform:translateX(0) } to { transform:translateX(-50%) } }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 72px; }
  .about-visual { max-width: 440px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .lang-toggle { display: none; }
  .burger { display: flex; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 48px; }
  .process-connector { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}
@media (max-width: 600px) {
  .container { padding: 0 22px; }
  .h1 { font-size: 2.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .about-visual { max-width: 300px; }
  .form-card { padding: 28px 20px; }
}
