/* ======================================================================
   ORAJIC — AI Solutions  ·  Design System
   Organic-meets-AI: warm paper light, deep forest green dark, gold accents
   ====================================================================== */

:root {
  /* Paper / light */
  --paper:        #f4f0e6;
  --paper-2:      #efe9da;
  --paper-card:   #fbf9f2;
  --paper-line:   #e3dcca;

  /* Forest greens / dark */
  --forest:       #163a2c;
  --forest-2:     #11302470;
  --forest-deep:  #0e2a20;
  --forest-ink:   #0a1f17;

  /* Gold */
  --gold:         #b8923f;
  --gold-bright:  #d6b265;
  --gold-soft:    #e6cf9b;
  --gold-deep:    #9a7733;

  /* Text */
  --ink:          #1b3528;   /* dark green ink on paper */
  --ink-soft:     #4a5d52;
  --cream:        #f1ecdd;   /* text on dark */
  --cream-soft:   #c4cfc3;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", system-ui, -apple-system, sans-serif;

  --maxw: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

::selection { background: var(--gold); color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.on-dark .eyebrow, .eyebrow.on-dark { color: var(--gold-bright); }
.on-dark .eyebrow::before { background: var(--gold-bright); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: -0.01em; }

.display {
  font-size: clamp(3rem, 7.4vw, 6.6rem);
  font-weight: 500;
}
.gold-grad {
  background: linear-gradient(100deg, var(--gold-deep) 0%, var(--gold-bright) 38%, var(--gold-soft) 55%, var(--gold) 80%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--ink-soft); max-width: 56ch; }
.on-dark .lead { color: var(--cream-soft); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--forest);
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--sans); font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 1.05em 1.9em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer; text-decoration: none;
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), color .3s, background .3s;
}
.btn .arr { transition: transform .4s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary {
  background: var(--forest); color: var(--cream);
  box-shadow: 0 10px 30px -12px rgba(14,42,32,.6);
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--gold-deep), var(--gold-bright));
  opacity: 0; transition: opacity .4s var(--ease);
  z-index: -1;
}
.btn-primary span, .btn-primary .arr { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-3px); color: #1c130a; box-shadow: 0 18px 40px -14px rgba(184,146,63,.7); }
.btn-primary:hover::after { opacity: 1; }

.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: var(--gold);
}
.btn-ghost:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
.on-dark .btn-ghost { color: var(--cream); border-color: var(--gold-bright); }
.on-dark .btn-ghost:hover { background: var(--gold-bright); color: var(--forest-ink); }

/* ======================================================================
   NAV
   ====================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .4s var(--ease);
}
.nav.scrolled {
  background: rgba(244,240,230,.82);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--paper-line), 0 14px 40px -28px rgba(14,42,32,.4);
  padding: 11px 32px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__logo img { height: 76px; width: auto; transition: height .4s var(--ease); }
.nav.scrolled .nav__logo img { height: 60px; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 0.9rem; font-weight: 600; color: var(--ink); text-decoration: none;
  position: relative; letter-spacing: 0.01em;
}
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1.5px;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__links a.btn { padding: 0.7em 1.4em; }
.nav__links a.btn-primary { color: var(--cream); }
.nav__links a.btn-primary:hover { color: #1c130a; }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); display: block; transition: .3s; }

/* ======================================================================
   HERO
   ====================================================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 90px;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(214,178,101,.18), transparent 55%),
    radial-gradient(90% 80% at 10% 90%, rgba(22,58,44,.10), transparent 60%),
    var(--paper);
  overflow: hidden;
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(251,249,242,.7); border: 1px solid var(--paper-line);
  padding: 7px 14px 7px 9px; border-radius: 999px; backdrop-filter: blur(6px);
  font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 28px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(184,146,63,.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(184,146,63,.55);} 70%{box-shadow:0 0 0 9px rgba(184,146,63,0);} 100%{box-shadow:0 0 0 0 rgba(184,146,63,0);} }

.hero h1 { margin-bottom: 26px; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; will-change: transform; }
.hero__cta { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero__trust { margin-top: 40px; display: flex; gap: 30px; align-items: center; flex-wrap: wrap; color: var(--ink-soft); font-size: 0.86rem; }
.hero__trust strong { font-family: var(--serif); font-size: 1.9rem; color: var(--forest); font-weight: 600; display: block; line-height: 1; }
.hero__trust .ti { display: flex; flex-direction: column; }

/* Hero visual — floating logo medallion */
.hero__visual { position: relative; display: flex; justify-content: center; }
.medallion {
  position: relative; width: min(420px, 90%); aspect-ratio: 1;
  display: grid; place-items: center;
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-16px);} }
.medallion__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px dashed rgba(184,146,63,.45);
  animation: spin 60s linear infinite;
}
.medallion__ring.r2 { inset: 9%; border-style: solid; border-color: rgba(22,58,44,.12); animation-duration: 90s; animation-direction: reverse; }
.medallion__ring.r3 { inset: 20%; border-color: rgba(184,146,63,.25); animation-duration: 45s; }
@keyframes spin { to { transform: rotate(360deg); } }
.medallion__glow {
  position: absolute; inset: 12%; border-radius: 50%;
  background: radial-gradient(circle, rgba(214,178,101,.35), transparent 65%);
  filter: blur(20px);
}
.medallion img { position: relative; width: 82%; z-index: 2;
  filter: drop-shadow(0 18px 40px rgba(14,42,32,.22)); }
.medallion .node { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); z-index: 3; box-shadow: 0 0 14px var(--gold-bright); }

.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-soft);
  display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint .mouse { width: 22px; height: 36px; border: 1.5px solid var(--gold-deep); border-radius: 12px; position: relative; }
.scroll-hint .mouse::after { content:""; position:absolute; top:6px; left:50%; transform:translateX(-50%); width:3px; height:7px; border-radius:2px; background:var(--gold); animation: wheel 1.6s infinite; }
@keyframes wheel { 0%{opacity:0;transform:translate(-50%,0);} 30%{opacity:1;} 100%{opacity:0;transform:translate(-50%,12px);} }

/* ======================================================================
   SECTION SHELL
   ====================================================================== */
section { position: relative; }
.section { padding: 120px 0; }
.section__head { max-width: 720px; margin-bottom: 64px; }
.section__head h2 { font-size: clamp(2.3rem, 4.4vw, 3.7rem); margin: 18px 0 18px; }
.section__head .lead { font-size: 1.12rem; }

/* dark band */
.band-dark {
  background:
    radial-gradient(100% 70% at 85% 0%, rgba(184,146,63,.16), transparent 50%),
    radial-gradient(90% 80% at 0% 100%, rgba(214,178,101,.08), transparent 55%),
    linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--cream);
}
.band-dark h2, .band-dark h3 { color: var(--cream); }
.band-dark .lead { color: var(--cream-soft); }

/* paper-to-dark curved transition */
.band-dark.curve-top { border-radius: 46px 46px 0 0; margin-top: -20px; }

/* ======================================================================
   SERVICES
   ====================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.s-card {
  background: var(--paper-card); border: 1px solid var(--paper-line);
  border-radius: 22px; padding: 34px 30px 30px;
  position: relative; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.s-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--gold-soft));
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.s-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -34px rgba(14,42,32,.45); border-color: rgba(184,146,63,.5); }
.s-card:hover::before { transform: scaleX(1); }
.s-card__icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(22,58,44,.07), rgba(184,146,63,.12));
  border: 1px solid var(--paper-line); margin-bottom: 22px; color: var(--forest);
  transition: transform .5s var(--ease);
}
.s-card:hover .s-card__icon { transform: rotate(-6deg) scale(1.06); }
.s-card__icon svg { width: 28px; height: 28px; }
.s-card h3 { font-size: 1.7rem; margin-bottom: 10px; }
.s-card p { color: var(--ink-soft); font-size: 0.98rem; }
.s-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.s-card__tags span { font-size: 0.74rem; font-weight: 600; color: var(--gold-deep); background: rgba(184,146,63,.1); padding: 5px 11px; border-radius: 999px; }

/* ======================================================================
   PROCESS / HOW IT WORKS
   ====================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step { position: relative; padding-top: 30px; }
.step__num {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--forest-ink);
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold-deep));
  margin-bottom: 22px; box-shadow: 0 8px 22px -10px rgba(184,146,63,.8);
}
.step h3 { font-size: 1.5rem; margin-bottom: 8px; }
.step p { color: var(--cream-soft); font-size: 0.95rem; }
.steps__line { position: absolute; top: 56px; left: 6%; right: 6%; height: 1px; background: repeating-linear-gradient(90deg, rgba(214,178,101,.5) 0 8px, transparent 8px 16px); z-index: 0; }

/* ======================================================================
   PRODUCTS / CASE STUDIES
   ====================================================================== */
.products { display: grid; gap: 26px; }
.p-card {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0;
  background: var(--paper-card); border: 1px solid var(--paper-line);
  border-radius: 26px; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.p-card:hover { transform: translateY(-6px); box-shadow: 0 36px 70px -40px rgba(14,42,32,.5); }
.p-card:nth-child(even) .p-card__body { order: 2; }
.p-card__body { padding: 48px 46px; display: flex; flex-direction: column; justify-content: center; }
.p-card__kicker { font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: var(--gold-deep); margin-bottom: 14px; }
.p-card__body h3 { font-size: 2.5rem; margin-bottom: 14px; }
.p-card__body p { color: var(--ink-soft); margin-bottom: 22px; }
.p-card__stats { display: flex; gap: 36px; margin-bottom: 26px; }
.p-card__stats .num { font-family: var(--serif); font-size: 2.5rem; font-weight: 600; color: var(--forest); line-height: 1; }
.p-card__stats .lab { font-size: 0.82rem; color: var(--ink-soft); margin-top: 4px; }
.p-card__feats { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.p-card__feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.96rem; color: var(--ink); }
.p-card__feats svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--gold-deep); }

/* product visual panel */
.p-visual {
  position: relative; min-height: 360px; overflow: hidden;
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
  display: grid; place-items: center;
}
.p-visual .mesh { position: absolute; inset: 0; opacity: .5;
  background-image: radial-gradient(rgba(214,178,101,.35) 1px, transparent 1px);
  background-size: 22px 22px; mask-image: radial-gradient(80% 80% at 50% 40%, #000, transparent 75%); }

/* phone mock (whatsapp) */
.phone { position: relative; width: 220px; height: 440px; background: #0e1512; border-radius: 34px; padding: 12px; box-shadow: 0 30px 60px -24px rgba(0,0,0,.6), inset 0 0 0 2px rgba(214,178,101,.25); z-index: 2; }
.phone__screen { background: #e7ddd2; border-radius: 24px; height: 100%; overflow: hidden; display: flex; flex-direction: column; }
.phone__top { background: var(--forest); color: var(--cream); padding: 12px 14px; display: flex; align-items: center; gap: 9px; }
.phone__top .av { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(145deg,var(--gold-bright),var(--gold-deep)); display:grid; place-items:center; font-family:var(--serif); font-weight:700; color:var(--forest-ink); font-size:.85rem; }
.phone__top .nm { font-size: 0.82rem; font-weight: 700; }
.phone__top .st { font-size: 0.62rem; opacity: .8; }
.phone__body { padding: 14px 12px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.bubble { max-width: 80%; padding: 8px 11px; border-radius: 14px; font-size: 0.72rem; line-height: 1.4; box-shadow: 0 1px 1px rgba(0,0,0,.06); opacity: 0; transform: translateY(8px); }
.bubble.in { background: #fff; color: #1d2e26; align-self: flex-start; border-bottom-left-radius: 4px; }
.bubble.out { background: #d9f3c9; color: #14331f; align-self: flex-end; border-bottom-right-radius: 4px; }
.bubble.show { animation: bub .5s var(--ease) forwards; }
@keyframes bub { to { opacity: 1; transform: translateY(0); } }
.typing { align-self: flex-start; background:#fff; border-radius:14px; border-bottom-left-radius:4px; padding:10px 12px; display:flex; gap:4px; }
.typing span { width:6px; height:6px; border-radius:50%; background:#9bb39f; animation: blink 1.2s infinite; }
.typing span:nth-child(2){animation-delay:.2s;} .typing span:nth-child(3){animation-delay:.4s;}
@keyframes blink { 0%,60%,100%{opacity:.3;transform:translateY(0);} 30%{opacity:1;transform:translateY(-3px);} }

/* HMS dashboard mock */
.dash { width: 86%; background: #fbf9f2; border-radius: 16px; box-shadow: 0 24px 50px -24px rgba(0,0,0,.5); overflow: hidden; z-index: 2; border: 1px solid rgba(214,178,101,.3); }
.dash__bar { background: var(--forest); padding: 10px 14px; display: flex; align-items: center; gap: 6px; }
.dash__bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(241,236,221,.35); }
.dash__bar i:first-child{ background: var(--gold-bright); }
.dash__body { padding: 16px; }
.dash__row { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin-bottom: 12px; }
.dash__kpi { background: #fff; border: 1px solid var(--paper-line); border-radius: 10px; padding: 10px; }
.dash__kpi .k { font-size: 0.6rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; }
.dash__kpi .v { font-family: var(--serif); font-size: 1.35rem; color: var(--forest); font-weight: 600; }
.dash__chart { height: 76px; display: flex; align-items: flex-end; gap: 6px; padding-top: 6px; }
.dash__chart .bar { flex: 1; background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep)); border-radius: 4px 4px 0 0; height: var(--h); transform-origin: bottom; }

/* ======================================================================
   CTA / CONTACT
   ====================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.contact__info h2 { font-size: clamp(2.4rem, 4.6vw, 4rem); margin: 16px 0 20px; }
.contact__methods { display: flex; flex-direction: column; gap: 14px; margin-top: 34px; }
.contact__method { display: flex; align-items: center; gap: 16px; text-decoration: none; color: var(--cream); transition: transform .3s var(--ease); }
.contact__method:hover { transform: translateX(6px); }
.contact__method .ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; border: 1px solid rgba(214,178,101,.4); background: rgba(214,178,101,.08); color: var(--gold-bright); transition: .3s; }
.contact__method:hover .ic { background: var(--gold-bright); color: var(--forest-ink); }
.contact__method .lab { font-size: 0.74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-soft); }
.contact__method .val { font-size: 1.15rem; font-weight: 700; }

.form-card { background: rgba(251,249,242,.06); border: 1px solid rgba(214,178,101,.25); border-radius: 24px; padding: 38px; backdrop-filter: blur(8px); }
.form-card h3 { font-size: 1.7rem; margin-bottom: 6px; }
.form-card p.sub { color: var(--cream-soft); font-size: 0.92rem; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 7px; color: var(--cream-soft); }
.field input, .field textarea, .field select {
  width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(214,178,101,.28);
  border-radius: 12px; padding: 13px 15px; color: var(--cream); font-family: var(--sans); font-size: 0.95rem;
  transition: border-color .3s, background .3s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(196,207,195,.5); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold-bright); background: rgba(255,255,255,.09); }
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--forest-deep); }
.form-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-msg { text-align: center; font-size: 0.9rem; color: var(--gold-bright); margin-top: 14px; min-height: 1em; }

/* ======================================================================
   FOOTER
   ====================================================================== */
.footer { background: var(--forest-ink); color: var(--cream-soft); padding: 70px 0 36px; }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(214,178,101,.16); }
.footer__brand .mark { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; letter-spacing: .22em; color: var(--gold-bright); }
.footer__brand p { max-width: 34ch; margin-top: 10px; font-size: 0.92rem; }
.footer__cols { display: flex; gap: 70px; flex-wrap: wrap; }
.footer__col h4 { font-family: var(--sans); font-size: 0.76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 16px; font-weight: 700; }
.footer__col a { display: block; color: var(--cream-soft); text-decoration: none; font-size: 0.92rem; margin-bottom: 10px; transition: color .25s; }
.footer__col a:hover { color: var(--gold-bright); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 0.82rem; flex-wrap: wrap; gap: 12px; }

/* ======================================================================
   REVEAL ANIMATIONS
   ====================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }
.reveal[data-d="4"] { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .medallion, .medallion__ring, .gold-grad { animation: none; }
}

/* ======================================================================
   RESPONSIVE
   ====================================================================== */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 10px; }
  .hero__visual { order: -1; }
  .medallion { width: 280px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps__line { display: none; }
  .p-card, .p-card:nth-child(even) .p-card__body { grid-template-columns: 1fr; order: 0; }
  .p-card__body { order: 2 !important; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open { display: flex; position: absolute; top: 100%; right: 16px; left: 16px;
    flex-direction: column; align-items: stretch; gap: 14px; background: var(--paper-card);
    padding: 22px; border-radius: 18px; box-shadow: 0 30px 60px -30px rgba(14,42,32,.5); border: 1px solid var(--paper-line); }
  .section { padding: 84px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .p-card__body { padding: 34px 26px; }
  .p-card__stats { gap: 24px; }
  .hero__trust { gap: 20px; }
}
