/* =========================================================
   ELITE GROWTH — Landing premium (Paraguay digital agency)
   Palette: black + gold. High contrast, cinematic polish.
   ========================================================= */

:root{
  /* Surfaces */
  --bg:        #050505;
  --bg-2:      #0a0a0a;
  --bg-3:      #0d0d0d;

  /* Text — MAX CONTRAST + luminosity spec (WCAG AAA on #050505) */
  --ink:       #f5efdc;   /* body — casi cream (15.4:1 AAA) */
  --ink-2:     #ede4c9;   /* subs / descriptions (13.1:1 AAA) */
  --ink-3:     #b8ac8e;   /* metadata / footnotes (8.5:1 AAA) */
  --ink-soft:  #fffbec;   /* headline base — casi blanco cálido */

  /* Lines */
  --line:      rgba(212,175,55,.28);
  --line-hi:   rgba(212,175,55,.60);
  --line-2:    rgba(255,255,255,.06);

  /* Metallic gold palette — calibrated to the real EG logo */
  --gold-deep:      #8b6f28;   /* sombras profundas */
  --gold-dark:      #a58435;   /* sombras medias */
  --gold-base:      #c9a24b;   /* color base metálico */
  --gold:           #d4af37;   /* compat / brand primary */
  --gold-mid:       #e0b957;   /* medio brillante */
  --gold-light:     #f0c674;   /* highlight */
  --gold-soft:      #f0c674;   /* compat alias */
  --gold-highlight: #f5e0a0;   /* alto brillo */
  --gold-rim:       #fff5d0;   /* rim light casi cream */
  --gold-hi:        #ffd700;   /* compat alias (kept) */
  --gold-lo:        #8a6a1e;   /* compat alias (kept) */
  --gold-num:       #e8c26b;   /* process big numbers */
  --gold-glow:      rgba(240,198,116,.55);

  /* Beveled metallic gradient — the star of the show */
  --gold-metallic: linear-gradient(
    135deg,
    #8b6f28 0%,
    #c9a24b 25%,
    #f5e0a0 45%,
    #fff5d0 50%,
    #f5e0a0 55%,
    #c9a24b 75%,
    #8b6f28 100%
  );

  /* Rich vertical gradient for large text / monogram */
  --grad-gold: var(--gold-metallic);
  --grad-gold-text: linear-gradient(180deg,#fff5d0 0%,#f5e0a0 30%,#f0c674 60%,#c9a24b 100%);
  --grad-gold-num:  linear-gradient(180deg,#fff5d0 0%,#f5e0a0 20%,#e8c26b 55%,#c9a24b 100%);

  --ease:      cubic-bezier(.22,1,.36,1);
  --ease-in:   cubic-bezier(.55,.06,.68,.19);

  --nav-h:     72px;
  --wrap:      1240px;

  --f-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  font-size: clamp(16px, 1.05vw, 18px);
  font-weight: 500;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
p, li{ line-height: 1.65; }
body.no-scroll{ overflow:hidden; }

a{ color:inherit; text-decoration:none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img,svg{ display:block; max-width:100%; }
::selection{ background: var(--gold); color:#000; }

/* Skip link */
.skip-link{
  position:absolute; left:-9999px; top:-9999px;
  background: var(--gold); color:#000; padding: 8px 14px; font-weight:600;
  border-radius: 3px; z-index:9999;
}
.skip-link:focus{ left: 12px; top:12px; }

/* Grain / vignette overlays */
.grain{
  position:fixed; inset:0; z-index: 2; pointer-events:none;
  opacity:.03; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.vignette{
  position:fixed; inset:0; z-index: 1; pointer-events:none;
  opacity: .4;
  background:
    radial-gradient(ellipse at 50% 15%, rgba(212,175,55,.10), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(0,0,0,.9), transparent 55%),
    radial-gradient(ellipse at 100% 0%, rgba(212,175,55,.06), transparent 55%);
}

/* Custom gold cursor dot (desktop only) */
.cursor-dot{
  position: fixed; top: 0; left: 0; z-index: 9997;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate3d(-100px,-100px,0);
  transition: transform .08s linear, opacity .3s var(--ease), width .3s var(--ease), height .3s var(--ease);
  opacity: .8;
}
@media (pointer: coarse){ .cursor-dot{ display: none; } }

/* 3D bg canvas */
.bg3d{
  position: fixed; inset: 0;
  width:100vw; height:100vh;
  z-index: 0;
  display:block;
  pointer-events: none;
}

/* Preloader */
.preloader{
  position:fixed; inset:0; z-index:9998;
  background: #050505;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:22px;
  transition: opacity .8s var(--ease), visibility .8s;
}
.preloader.is-hidden{ opacity:0; visibility:hidden; pointer-events:none; }
.preloader__mark{
  position:relative; width:60px; height:60px;
  border: 1px solid rgba(212,175,55,.35);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.preloader__mark::before{
  content:""; position:absolute; inset:-6px;
  border: 1px solid transparent;
  border-top-color: var(--gold);
  border-radius:50%;
  animation: spin 1.2s linear infinite;
}
.preloader__dot{
  width: 6px; height:6px; border-radius:50%; background: var(--gold);
  box-shadow: 0 0 20px var(--gold);
}
.preloader__label{
  font-family: var(--f-body);
  letter-spacing: .35em; font-size: 11px;
  color: var(--ink-2);
}
@keyframes spin{ to { transform: rotate(360deg); } }

/* =========================================================
   NAV
   ========================================================= */
.nav{
  position: fixed; top:0; left:0; right:0;
  z-index: 100;
  height: var(--nav-h);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled{
  background: rgba(5,5,5,.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: rgba(212,175,55,.28);
}
.nav__inner{
  max-width: var(--wrap);
  height:100%;
  margin: 0 auto; padding: 0 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand{
  display:inline-flex; align-items:center; gap:12px;
  color: var(--ink);
}
.brand__mark{
  display:inline-flex; align-items:center; justify-content:center;
  width: 34px; height: 34px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(212,175,55,.15), rgba(212,175,55,.02));
  border: 1px solid var(--line);
}
.brand__eg{
  font-family: var(--f-display);
  font-weight: 500; font-style: italic;
  font-size: 20px; line-height: 1;
  background: var(--gold-metallic);
  background-size: 200% 200%;
  -webkit-background-clip:text; background-clip:text; color: transparent;
  animation: shimmer 14s ease infinite alternate;
}
.brand__text{
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .3em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.brand__dot{ margin: 0 .4em; color: var(--gold-light); }

.nav__links{
  display:flex; gap:34px; justify-self:center;
}
.nav__links a{
  font-size: 12.5px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink-2); position: relative; font-weight: 600;
  transition: color .3s var(--ease);
}
.nav__links a::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px; height:1.5px;
  background: var(--gold-light);
  transform-origin: left; transform: scaleX(0);
  transition: transform .4s var(--ease);
}
.nav__links a:hover{ color: var(--gold-light); }
.nav__links a:hover::after{ transform: scaleX(1); }

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

.lang{
  display:inline-flex; gap:2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.lang__btn{
  font-size: 11.5px; letter-spacing: .14em;
  padding: 7px 11px; border-radius: 999px;
  color: var(--ink-2);
  font-weight: 700;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.lang__btn:hover{ color: var(--gold-light); }
.lang__btn.is-active{
  color:#0a0a0a;
  background: var(--gold-metallic);
  background-size: 200% 200%;
  font-weight: 800;
  animation: shimmer 12s ease infinite alternate;
}

.nav__burger{ display:none; }

/* =========================================================
   Buttons — HIGH CONTRAST + GOLD SHADOW
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: var(--f-body); font-weight: 700;
  font-size: 13.5px; letter-spacing: .16em;
  line-height: 1;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
  border: 2px solid transparent;
  position:relative; overflow:hidden;
}
.btn--sm{ padding: 11px 18px; font-size: 12px; letter-spacing: .14em; }
.btn--lg{ padding: 20px 30px; font-size: 14.5px; }
.btn--full{ width:100%; }

.btn--gold{
  background: var(--gold-metallic);
  background-size: 200% 200%;
  color:#0a0a0a;
  font-weight: 700;
  box-shadow:
    0 18px 50px -10px rgba(212,175,55,.7),
    inset 0 1px 0 rgba(255,245,208,.6);
  animation: shimmer 10s ease infinite alternate;
}
.btn--gold:hover{
  transform: translateY(-3px);
  box-shadow:
    0 24px 70px -12px rgba(240,198,116,.85),
    inset 0 1px 0 rgba(255,245,208,.75);
}
.btn--gold::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.5) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease);
}
.btn--gold:hover::after{ transform: translateX(120%); }

@keyframes shimmer{
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.btn--ghost{
  color: var(--gold-light);
  border: 2px solid rgba(240,198,116,.75);
  background: rgba(240,198,116,.03);
  font-weight: 700;
}
.btn--ghost:hover{
  border-color: var(--gold-light);
  background: rgba(240,198,116,.14);
  transform: translateY(-3px);
  color: var(--gold-highlight);
}

/* =========================================================
   Sections base
   ========================================================= */
main{ position:relative; z-index:3; }

.section{
  position: relative;
  padding: 140px 32px;
  max-width: var(--wrap);
  margin: 0 auto;
}
.section__head{
  max-width: 780px; margin: 0 auto 80px;
  text-align:center;
}

/* EYEBROW / KICKER — MAX visibility, bright gold with subtle glow */
.eyebrow, .legal-eyebrow{
  font-size: clamp(13px, 0.9vw, 14px);
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 24px;
  display: block;
  text-shadow: 0 0 12px rgba(240,198,116,.25);
}

.section__title{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.015em;
  margin: 0 0 22px;
  color: var(--ink-soft);
}
.section__title em, .section__title .g{
  font-style: italic;
  font-weight: 700;
  background: var(--grad-gold-text);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  text-shadow: 0 0 40px rgba(240,198,116,.35);
  filter: drop-shadow(0 0 24px rgba(240,198,116,.2));
}
.section__lead{
  color: var(--ink-2);
  font-size: clamp(16px, 1.05vw, 18px);
  font-weight: 600;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Ornamental divider between sections */
.divider{
  display:flex; align-items:center; justify-content:center;
  gap: 16px;
  padding: 0 32px;
  color: var(--gold);
  opacity: .6;
  margin: 0 auto;
  max-width: var(--wrap);
}
.divider::before, .divider::after{
  content:""; flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.35), transparent);
  max-width: 240px;
}
.divider__mark{
  width: 10px; height: 10px;
  transform: rotate(45deg);
  background: var(--gold-metallic);
  background-size: 200% 200%;
  box-shadow: 0 0 14px var(--gold-glow);
  animation: shimmer 10s ease infinite alternate;
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--nav-h) + 60px) 32px 40px;
  display:flex; align-items:center; justify-content:center;
  max-width: var(--wrap);
  margin: 0 auto;
  z-index:3;
  text-align: center;
}
.hero__inner{
  max-width: 820px;
  position: relative;
  z-index: 3;
}

.hero__logo{
  display: flex; justify-content: center; align-items:center;
  margin-bottom: 32px;
  min-height: 160px;
  position: relative;
}
/* Real logo image (if present) */
.brand__logo{
  display: inline-block;
  line-height: 0;
  position: relative;
}
.brand__logo img{
  display: block;
  width: 220px; height: auto;
  max-width: 100%;
  filter: drop-shadow(0 0 40px var(--gold-glow));
}
/* Fallback: when the <img> onerror fires, we swap to the CSS monogram */
.brand__logo--fallback img{ display: none; }
.brand__logo--fallback::after{
  content: 'EG';
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 500; font-style: italic;
  font-size: clamp(120px, 18vw, 200px);
  line-height: .9;
  background: var(--gold-metallic);
  background-size: 200% 200%;
  -webkit-background-clip:text; background-clip:text; color: transparent;
  text-shadow: 0 0 80px var(--gold-glow);
  letter-spacing: -.02em;
  filter: drop-shadow(0 0 40px rgba(240,198,116,.35));
  animation: shimmer 12s ease infinite alternate;
}
.hero__logo .brand__logo{ text-align: center; }

/* Nav / footer small logo — smaller image with fallback */
.brand__logo--nav img{ width: 44px; height: 44px; }
.brand__logo--nav.brand__logo--fallback::after{ font-size: 22px; }
.brand__logo--footer img{ width: 40px; height: 40px; }
.brand__logo--footer.brand__logo--fallback::after{ font-size: 20px; }

/* Legacy hero__logo-eg selector removed — CSS fallback lives in .brand__logo--fallback::after */

.hero__brand{
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  margin-bottom: 32px;
}
.hero__chip{
  display:inline-flex; align-items:center; gap:10px;
  padding: 9px 20px;
  border: 1.5px solid rgba(240,198,116,.4);
  border-radius: 999px;
  font-size: 11.5px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(15,13,10,.7);
  backdrop-filter: blur(10px);
  font-weight: 700;
  text-shadow: 0 0 12px rgba(240,198,116,.3);
}
.hero__tagline{
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: .08em;
  color: var(--gold-light);
  opacity: .95;
  margin: 6px 0 0;
  text-shadow: 0 0 20px rgba(240,198,116,.3);
}
.pulse{
  width:7px; height:7px; border-radius:50%; background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse{
  0%,100%{ opacity:1; transform: scale(1); }
  50%{ opacity:.4; transform: scale(.75); }
}

.hero__title{
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(48px, 7.5vw, 100px);
  line-height: 1.0;
  letter-spacing: -.025em;
  margin: 0 0 26px;
  color: var(--ink-soft);
}
.hero__title .line{ display:block; }
.hero__title .line--italic{
  font-style: italic;
  font-weight: 700;
  background: var(--grad-gold-text);
  -webkit-background-clip:text; background-clip:text; color: transparent;
  text-shadow: 0 0 40px rgba(240,198,116,.4);
  filter: drop-shadow(0 0 28px rgba(240,198,116,.25));
}

.hero__sub{
  font-size: clamp(17px, 1.2vw, 20px);
  font-weight: 600;
  color: var(--ink);
  opacity: .95;
  max-width: 640px;
  margin: 0 auto 42px;
  line-height: 1.65;
}
.hero__cta{
  display:flex; flex-wrap:wrap; gap:14px;
  justify-content: center;
}

.hero__scroll{
  position:absolute; left: 50%; bottom: 32px;
  transform: translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:14px;
  font-size: 11px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}
.hero__scroll-line{
  width: 1px; height: 60px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scrollLine{
  0%{ transform: scaleY(0); }
  50%{ transform: scaleY(1); }
  100%{ transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================================
   Services
   ========================================================= */
.services__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card{
  position: relative;
  padding: 40px 32px 36px;
  background:
    linear-gradient(180deg, rgba(22,18,10,.85), rgba(15,13,10,.9)),
    var(--bg-3);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1.5px solid rgba(212,175,55,.42);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.card:hover{
  border-color: rgba(240,198,116,.85);
  box-shadow: 0 24px 70px -25px rgba(212,175,55,.5);
}
.card::before{
  content:""; position:absolute; inset:0;
  padding: 1px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(240,198,116,.5), transparent 40%, transparent 60%, rgba(212,175,55,.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity:0; transition: opacity .5s var(--ease);
  pointer-events: none;
}
.card:hover::before{ opacity: 1; }

.card__num{
  font-family: var(--f-display); font-style: italic;
  font-size: 34px;
  color: var(--gold-light);
  line-height:1;
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: .05em;
  text-shadow: 0 0 16px rgba(240,198,116,.35);
}
.card__num::before{ content:"— "; opacity: .7; }
.card__icon{ color: var(--gold-light); margin-bottom: 22px; filter: drop-shadow(0 0 12px rgba(240,198,116,.3)); }
.card h3{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(240,198,116,.25);
}
.card p{
  color: var(--ink);
  opacity: .92;
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 22px;
}
.ticks{
  list-style: none; padding:0; margin:0;
  display:flex; flex-direction: column; gap: 10px;
}
.ticks li{
  position:relative; padding-left: 22px;
  color: var(--ink);
  font-size: clamp(14.5px, 0.95vw, 16px);
  font-weight: 500;
}
.ticks li::before{
  content:""; position:absolute; left: 0; top: 10px;
  width: 12px; height: 1.5px; background: var(--gold-light);
  box-shadow: 0 0 6px rgba(240,198,116,.5);
}

/* =========================================================
   Why us — 2 columns (numbers | bullets)
   ========================================================= */
.why__grid{
  display:grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.why__numbers{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.why__num-item{
  padding: 20px 16px;
  text-align: center;
  position: relative;
}
.why__num-item + .why__num-item::before{
  content:""; position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(212,175,55,.35), transparent);
}
.why__num-value{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(3rem, 6.5vw, 5rem);
  line-height: 1;
  background: var(--gold-metallic);
  background-size: 200% 200%;
  -webkit-background-clip:text; background-clip:text; color: transparent;
  text-shadow: 0 0 60px rgba(212,175,55,.4);
  filter: drop-shadow(0 4px 20px rgba(212,175,55,.25));
  margin-bottom: 12px;
  letter-spacing: -.015em;
  animation: shimmer 12s ease infinite alternate;
}
.why__num-label{
  font-size: clamp(14px, 1vw, 16px);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.45;
}

.why__bullets{
  display: grid; gap: 28px;
}
.why__bullet{
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
}
.why__bullet-icon{
  color: var(--gold);
  padding-top: 2px;
}
.why__bullet-body h4{
  font-family: var(--f-body);
  font-weight: 800;
  font-size: clamp(16px, 1.1vw, 18px);
  color: var(--gold-light);
  margin: 0 0 6px;
  letter-spacing: .01em;
  text-shadow: 0 0 16px rgba(240,198,116,.25);
}
.why__bullet-body p{
  color: var(--ink);
  font-size: clamp(14.5px, 1vw, 16px);
  font-weight: 500;
  line-height: 1.65;
  margin: 0;
}
.why__bullet-icon{ filter: drop-shadow(0 0 8px rgba(240,198,116,.35)); }

/* =========================================================
   Pricing
   ========================================================= */
.pricing__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan{
  position: relative;
  padding: 40px 32px 36px;
  background: linear-gradient(180deg, rgba(15,13,10,.9), rgba(8,7,5,.92));
  border: 1.5px solid rgba(212,175,55,.42);
  border-radius: 6px;
  display:flex; flex-direction: column;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
  backdrop-filter: blur(20px) saturate(160%);
}
.plan:hover{
  transform: translateY(-6px);
  border-color: rgba(240,198,116,.85);
  box-shadow: 0 30px 80px -30px rgba(240,198,116,.55);
}

.plan--featured{
  border: 2px solid rgba(240,198,116,.85);
  background:
    linear-gradient(180deg, rgba(38,30,12,.9), rgba(14,10,4,.92));
  box-shadow:
    0 50px 120px -40px rgba(240,198,116,.7),
    inset 0 1px 0 rgba(255,245,208,.25);
  transform: scale(1.05) translateY(-6px);
}
.plan--featured:hover{
  transform: scale(1.05) translateY(-9px);
}
.plan--featured::before{
  content:""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,.14), transparent 60%);
  pointer-events: none;
  border-radius: 6px;
}

.plan__badge{
  position:absolute; top: 20px; right: 20px;
  padding: 7px 16px;
  background: var(--gold-metallic);
  background-size: 200% 200%;
  color:#0a0a0a;
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  border-radius: 999px; font-weight: 800;
  box-shadow: 0 10px 28px -6px rgba(240,198,116,.75);
  animation: shimmer 8s ease infinite alternate, badgePulse 2s ease-in-out infinite alternate;
  transform-origin: center;
}
@keyframes badgePulse{
  from{ transform: scale(1); }
  to  { transform: scale(1.06); }
}

.plan__chip{
  display:inline-block;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-light);
  padding: 5px 12px;
  border: 1px solid rgba(240,198,116,.5);
  border-radius: 999px;
  margin-bottom: 18px;
  font-weight: 700;
}
.plan__name{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 2.4vw, 34px);
  color: var(--gold-light);
  margin-bottom: 6px;
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(240,198,116,.3);
}
.plan__desc{
  color: var(--ink);
  opacity: .92;
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 26px;
  min-height: 48px;
}
.plan__price{
  padding: 22px 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 28px;
}
.plan__pre{
  display:block;
  font-size: 12px; color: var(--ink-3);
  letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.plan__amount{
  display:flex; align-items: baseline; gap: 6px;
  flex-wrap: wrap;
  font-size: clamp(2rem, 3.5vw, 3rem);
}
.plan__cur{
  color: var(--gold-light);
  font-size: .42em;
  font-weight: 700;
  letter-spacing: .05em;
}
.plan__num{
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1em;
  line-height: 1;
  color: var(--ink-soft);
}
.plan__num--custom{ font-style: italic; font-weight: 700; font-size: .72em; }
.plan__per{ color: var(--ink-2); font-size: .32em; font-weight: 600; letter-spacing: .05em; }

.plan__list{
  list-style: none; padding: 0; margin: 0 0 32px;
  display:flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.plan__list li{
  position:relative; padding-left: 26px;
  font-size: clamp(15px, 0.95vw, 16px);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}
.plan__list li::before{
  content:""; position:absolute; left: 0; top: 6px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--gold-light);
  border-bottom: 2px solid var(--gold-light);
  transform: rotate(-45deg);
  filter: drop-shadow(0 0 6px rgba(240,198,116,.4));
}

.pricing__foot{
  text-align: center;
  margin-top: 48px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  opacity: .9;
}

/* =========================================================
   Process — big luminous gold numbers
   ========================================================= */
.process__list{
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step{
  position: relative;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  transition: border-color .4s var(--ease);
}
.step:hover{ border-top-color: var(--gold); }
.step__num{
  font-family: var(--f-display); font-style: italic; font-weight: 700;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 1;
  background: var(--gold-metallic);
  background-size: 200% 200%;
  -webkit-background-clip:text; background-clip:text; color: transparent;
  text-shadow: 0 0 80px rgba(212,175,55,.5);
  filter: drop-shadow(0 8px 30px rgba(212,175,55,.35));
  margin-bottom: 22px;
  letter-spacing: -.02em;
  animation: shimmer 14s ease infinite alternate;
}
.step__body h4{
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(22px, 1.8vw, 26px);
  margin: 0 0 12px;
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(240,198,116,.25);
}
.step__body p{
  color: var(--ink);
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 500;
  line-height: 1.65;
  margin: 0;
}

/* =========================================================
   Final CTA
   ========================================================= */
.cta-final{
  text-align:center;
  padding: 160px 32px;
}
.cta-final__inner{ max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.cta-final__title{
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05; letter-spacing: -.015em;
  margin: 0 0 22px;
  color: var(--ink-soft);
}
.cta-final__title .line--italic{
  display:block;
  font-style: italic;
  font-weight: 700;
  background: var(--grad-gold-text);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  text-shadow: 0 0 40px rgba(240,198,116,.4);
  filter: drop-shadow(0 0 28px rgba(240,198,116,.25));
}
.cta-final__sub{
  color: var(--ink);
  opacity: .95;
  font-size: clamp(17px, 1.2vw, 20px);
  font-weight: 600;
  margin: 0 auto 38px;
  max-width: 640px;
  line-height: 1.65;
}
.cta-final__actions{
  display:flex; justify-content: center; gap: 14px; flex-wrap: wrap;
}

/* =========================================================
   Footer
   ========================================================= */
.footer{
  position:relative; z-index:3;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.6));
}
.footer__inner{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 60px 32px 40px;
}
.footer__brand{
  margin-bottom: 44px;
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.footer__tagline{
  margin: 0 0 0 auto;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  letter-spacing: .08em;
  color: var(--gold-light);
  opacity: .9;
}
@media (max-width: 720px){
  .footer__tagline{ margin: 8px 0 0; }
}
.footer__brand-text{
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .28em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.footer__tag{
  margin: 12px 0 0;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
}

.footer__cols{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.footer__ctitle{
  font-size: 12px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(240,198,116,.2);
}
.footer__cols a{
  display:block;
  color: var(--ink-2);
  font-size: 14.5px;
  font-weight: 500;
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.footer__cols a:hover{ color: var(--gold-light); }

.footer__bottom{
  display:flex; justify-content: space-between; align-items: center; gap: 20px;
  padding-top: 28px;
  color: var(--ink-3);
  font-size: 13.5px;
  font-weight: 500;
  flex-wrap: wrap;
}
.footer__socials{ display:flex; gap: 14px; }
.footer__socials a{
  display:inline-flex; align-items:center; justify-content:center;
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-2);
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.footer__socials a:hover{
  border-color: var(--gold); color: var(--gold); transform: translateY(-2px);
}

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal{
  opacity: 0; transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-in{ opacity: 1; transform: translateY(0); }
.reveal--fast{ transition-duration: .7s; }
.reveal--delay-1{ transition-delay: .1s; }
.reveal--delay-2{ transition-delay: .2s; }
.reveal--delay-3{ transition-delay: .3s; }

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal{ opacity: 1 !important; transform: none !important; }
  .cursor-dot{ display: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px){
  .services__grid,
  .pricing__grid{ grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .why__grid{ grid-template-columns: 1fr; gap: 44px; }
  .process__list{ grid-template-columns: repeat(2, 1fr); }
  .plan--featured{ transform: none; }
}

@media (max-width: 720px){
  .nav__inner{ padding: 0 20px; gap: 12px; }
  .nav__links{ display:none; }
  .lang{ display:none; }
  .nav__burger{
    display:inline-flex; flex-direction: column; gap: 5px;
    width: 32px; height: 32px; align-items:center; justify-content:center;
  }
  .nav__burger span{
    width:18px; height:1px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .nav__burger.is-open span:nth-child(1){ transform: translateY(3px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2){ transform: translateY(-3px) rotate(-45deg); }

  .btn--sm span:not(.only-icon){ display:none; }
  .btn--sm{ padding: 10px 14px; }

  .section{ padding: 90px 20px; }
  .hero{ padding: calc(var(--nav-h) + 20px) 20px 20px; }
  .hero__logo-eg{ font-size: 100px; }
  .hero__title{ font-size: clamp(38px,10vw,58px); }
  .hero__scroll{ display:none; }

  .why__numbers{ grid-template-columns: repeat(3, 1fr); }
  .process__list{ grid-template-columns: 1fr; gap: 20px; }
  .step__num{ font-size: 64px; }

  .footer__cols{ grid-template-columns: 1fr; gap: 20px; }
  .cursor-dot{ display: none; }
}

/* Mobile nav sheet */
.mobile-sheet{
  position: fixed; inset: 0; z-index: 99;
  background: rgba(5,5,5,.96);
  backdrop-filter: blur(20px);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.mobile-sheet.is-open{ opacity: 1; visibility: visible; }
.mobile-sheet a{
  font-family: var(--f-display); font-style: italic;
  font-size: 32px; color: var(--ink-soft);
}
.mobile-sheet .lang{ display:inline-flex; margin-top: 20px; }
