/* =============================================================
   LOYORA — Digital & Creative Studio
   1. Tokens
   ============================================================= */
:root {
  --bg:        #0b0906;   /* warm near-black, never pure #000 */
  --bg-1:      #100d09;
  --bg-2:      #17130d;   /* card surface */
  --bg-3:      #1e1810;   /* elevated / hover surface */
  --coffee:    #241c12;   /* deep coffee brown, section alt */

  --cream:     #f4ecdd;   /* primary text on dark, never pure white */
  --cream-2:   #d8cbb4;   /* secondary text */
  --cream-3:   #96896f;   /* muted / metadata text — tuned for 4.5:1 min contrast on every section bg */

  --gold:      #cf9f52;   /* primary accent */
  --gold-2:    #e8c680;   /* bright gold for highlight text */
  --gold-dim:  #6b5730;   /* deep gold for borders */
  --gold-glow: rgba(207, 159, 82, 0.28);

  --line:      rgba(244, 236, 221, 0.10);
  --line-2:    rgba(244, 236, 221, 0.16);

  --display: "Space Grotesk", -apple-system, "Segoe UI", sans-serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h: 76px;
  --container: 1220px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  background: var(--bg);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
[hidden] { display: none !important; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  text-wrap: balance; line-height: 1.08; letter-spacing: -0.015em;
  font-family: var(--display); color: var(--cream); font-weight: 600;
}
em { font-style: normal; color: var(--gold-2); font-weight: 600; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: var(--bg); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
@media (min-width: 720px)  { .container { padding-inline: 2.5rem; } }
@media (min-width: 1280px) { .container { padding-inline: 3rem; } }

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.2rem; background: var(--gold); color: var(--bg);
  border-radius: 6px; font-weight: 600; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.1rem;
}
.kicker::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 6px 1px var(--gold-glow);
  flex-shrink: 0;
}

.section { position: relative; padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section-alt { background: var(--bg-1); }
.section-tight { padding-block: clamp(2.75rem, 6vw, 4.5rem); }

.section-head { max-width: 640px; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.section-sub { margin-top: 1rem; font-size: 1.05rem; color: var(--cream-3); max-width: 52ch; }
.section-head.is-center .section-sub { margin-inline: auto; }

[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--ease-soft), transform .7s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
noscript [data-reveal] { opacity: 1 !important; transform: none !important; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.8rem;
  font-family: var(--mono); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 3px; white-space: nowrap;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), background-color .4s var(--ease-out), border-color .4s var(--ease-out);
}
.btn-primary { background: var(--gold); color: #16110a; box-shadow: 0 0 0 1px var(--gold-dim), 0 10px 24px -10px var(--gold-glow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px var(--gold-2), 0 16px 36px -12px rgba(207,159,82,.42); }
.btn-ghost { background: transparent; color: var(--cream); box-shadow: 0 0 0 1px var(--line-2) inset; }
.btn-ghost:hover { box-shadow: 0 0 0 1px var(--gold-dim) inset; background: rgba(207,159,82,0.06); transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.25rem 2.2rem; font-size: 0.85rem; }
.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner { display: inline-flex; align-items: center; justify-content: center; gap: inherit; will-change: transform; transition: transform .8s var(--ease-soft); }

/* =============================================================
   5. Navigation
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background-color .4s var(--ease-out), box-shadow .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(11, 9, 6, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand {
  font-family: var(--display); font-size: 1.2rem; font-weight: 700;
  letter-spacing: 0.01em; color: var(--cream); display: inline-flex; align-items: baseline;
  transition: text-shadow .4s var(--ease-out);
}
.brand span { color: var(--gold-2); text-shadow: 0 0 14px var(--gold-glow); }
.brand:hover span { text-shadow: 0 0 20px rgba(207,159,82,.45); }

.nav-links { display: none; align-items: center; gap: 2.2rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link { position: relative; padding: .3rem 0; font-size: 0.85rem; letter-spacing: .02em; color: var(--cream-2); }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-link.is-active { color: var(--gold); }
.nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav-right { display: flex; align-items: center; gap: 1.2rem; }

.lang-switch { display: none; align-items: center; gap: .3rem; font-family: var(--mono); font-size: 0.72rem; letter-spacing: .05em; }
@media (min-width: 720px) { .lang-switch { display: flex; } }
.lang-btn {
  color: var(--cream-3); padding: .55rem .5rem; min-height: 44px; min-width: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color .3s; border-radius: 3px;
}
.lang-btn:hover { color: var(--gold-2); }
.lang-btn.is-active { color: var(--gold); }
.lang-btn:focus-visible { outline-offset: 1px; }
.lang-switch .sep { color: var(--line-2); }

.nav-call {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem; border: 1px solid var(--gold-dim); border-radius: 999px;
  font-family: var(--mono); font-size: 0.76rem; color: var(--gold-2);
  transition: border-color .35s, background-color .35s, box-shadow .35s;
}
.nav-call:hover { border-color: var(--gold); background: rgba(207,159,82,.08); box-shadow: 0 0 16px -8px var(--gold-glow); }
.nav-call svg { width: 14px; height: 14px; flex-shrink: 0; }
.nav-call .full-num { display: none; }
@media (min-width: 480px) { .nav-call .full-num { display: inline; } .nav-call .short-num { display: none; } }

.nav-burger { display: grid; place-items: center; width: 44px; height: 44px; gap: 5px; margin-right: -.4rem; }
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span { display: block; width: 20px; height: 1px; background: var(--cream); transition: transform .4s var(--ease-out), opacity .3s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 190; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.1rem;
  clip-path: inset(0 0 100% 0); transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile a { font-family: var(--display); font-weight: 600; font-size: 1.7rem; color: var(--cream); }
.nav-mobile-lang { display: flex; align-items: center; gap: .4rem; font-family: var(--mono); font-size: 1rem; color: var(--cream-3); margin-top: -.4rem; }
.nav-mobile-lang button {
  font-family: var(--mono); font-size: 1rem; color: var(--cream-3);
  padding: .6rem .7rem; min-height: 44px; min-width: 44px; border-radius: 4px;
  transition: color .3s, background-color .3s;
}
.nav-mobile-lang button:hover, .nav-mobile-lang button:focus-visible { background: rgba(207,159,82,.08); }
.nav-mobile-lang button.is-active { color: var(--gold); }
.nav-mobile-call {
  margin-top: .8rem; display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 1.6rem; border-radius: 999px; border: 1px solid var(--gold);
  color: var(--gold-2); font-family: var(--mono); font-size: 0.95rem;
}

/* =============================================================
   6. Hero
   ============================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: var(--nav-h); overflow: clip; isolation: isolate; }
.hero-mesh {
  position: absolute; inset: -15%; z-index: -2;
  background:
    radial-gradient(38% 32% at 24% 28%, rgba(207,159,82,0.15), transparent 68%),
    radial-gradient(42% 38% at 78% 68%, rgba(207,159,82,0.09), transparent 70%),
    radial-gradient(60% 50% at 50% 100%, rgba(107,87,48,0.20), transparent 70%);
  filter: blur(60px);
  animation: meshDrift 26s ease-in-out infinite;
}
@keyframes meshDrift { 0%, 100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(-1.5%, 1%, 0) scale(1.06); } }
.hero-grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
.hero-inner { padding-block: clamp(2.25rem, 6vw, 4rem); max-width: 820px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .95rem; margin-bottom: 1.4rem;
  border: 1px solid var(--gold-dim); border-radius: 999px;
  background: rgba(207,159,82,.05);
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-2);
  transition: border-color .35s, box-shadow .35s, background-color .35s;
}
.hero-badge:hover { border-color: var(--gold); box-shadow: 0 0 18px -8px var(--gold-glow); background: rgba(207,159,82,.09); }
.hero-badge .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 6px 1px var(--gold-glow); flex-shrink: 0; }

.hero-title { font-size: clamp(2.3rem, 6.2vw, 4.4rem); line-height: 1.08; margin-bottom: 1.4rem; }
.hero-sub { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--cream-2); max-width: 46ch; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }
.hero-contact { display: flex; flex-direction: column; gap: .9rem; padding-top: 1.7rem; border-top: 1px solid var(--line); max-width: 560px; }
.hero-phone { display: inline-flex; align-items: center; flex-wrap: wrap; gap: .5rem .7rem; font-family: var(--mono); font-size: 1.05rem; color: var(--cream); }
.hero-phone svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.hero-phone a { color: var(--gold-2); border-bottom: 1px solid transparent; transition: border-color .3s, color .3s; }
.hero-phone a:hover { color: var(--gold); border-color: var(--gold-dim); }
.hero-langs { font-family: var(--mono); font-size: 0.78rem; color: var(--cream-3); letter-spacing: .03em; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 2.2rem; transform: translateX(-50%);
  display: none; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--cream-3); font-family: var(--mono); font-size: 0.65rem; letter-spacing: .16em; text-transform: uppercase;
}
@media (min-width: 720px) { .scroll-cue { display: flex; } }
.scroll-cue span { width: 1px; height: 26px; background: linear-gradient(var(--gold), transparent); animation: cueMove 2.2s ease-in-out infinite; }
@keyframes cueMove { 0% { transform: scaleY(0.4); opacity: .3; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; transform-origin: top; } 100% { transform: scaleY(0.4); opacity: .3; transform-origin: top; } }

/* =============================================================
   7. Need section
   ============================================================= */
.need-points { display: grid; gap: 2rem; grid-template-columns: 1fr; margin-top: 2.6rem; }
@media (min-width: 720px) { .need-points { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.need-point { padding-top: 1.5rem; border-top: 1px solid var(--line); }
.need-point .num { display: block; font-family: var(--mono); font-size: 0.78rem; color: var(--gold); margin-bottom: .9rem; }
.need-point h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--cream); letter-spacing: .04em; text-transform: uppercase; margin-bottom: .5rem; }
.need-point p { font-size: 0.95rem; color: var(--cream-3); max-width: 32ch; }
.need-close { margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line); text-align: center; }
.need-close p { font-family: var(--display); font-weight: 600; color: var(--cream); font-size: clamp(1.25rem, 2.4vw, 1.7rem); line-height: 1.3; max-width: 30ch; margin-inline: auto; }

/* =============================================================
   8. Free mockup promo
   ============================================================= */
.mockup-section { background: var(--bg-1); }
.mockup-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 960px) { .mockup-grid { grid-template-columns: 1.1fr 1fr; gap: 3.5rem; } }
.mockup-copy .kicker { color: var(--gold-2); }
.mockup-title { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: 1rem; }
.mockup-sub { color: var(--cream-3); font-size: 1rem; max-width: 46ch; margin-bottom: 1.3rem; }
.mockup-note { display: flex; align-items: center; gap: .6rem; font-family: var(--mono); font-size: 0.82rem; color: var(--cream-2); }
.mockup-note svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }

.mockup-card {
  background: var(--bg-2); border: 1px solid var(--gold-dim); border-radius: 8px;
  padding: 1.8rem; box-shadow: 0 30px 70px -35px rgba(207,159,82,.28);
}
.mockup-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 1.2rem;
}
.mockup-badge .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 6px 1px var(--gold-glow); }

.mockup-form { display: grid; gap: .9rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-3);
}
.field input, .field select, .field textarea {
  width: 100%; padding: .75rem .9rem; background: var(--bg-1); color: var(--cream);
  border: 1px solid var(--line-2); border-radius: 4px; font-family: var(--sans); font-size: 0.92rem;
  transition: border-color .3s, box-shadow .3s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--cream-3); opacity: .7; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-dim); box-shadow: 0 0 0 3px rgba(207,159,82,.12);
}
.field textarea { resize: vertical; min-height: 72px; }
.field-row { display: grid; gap: .9rem; grid-template-columns: 1fr; }
@media (min-width: 480px) { .field-row { grid-template-columns: 1fr 1fr; } }

.mockup-status {
  margin-top: 1rem; padding: .7rem .9rem; border-radius: 4px;
  background: rgba(207,159,82,.08); border: 1px solid var(--gold-dim);
  font-family: var(--mono); font-size: 0.8rem; color: var(--gold-2);
}
.mockup-disclaimer { margin-top: 1rem; font-size: 0.78rem; color: var(--cream-3); }
.mockup-fallback { margin-top: .6rem; font-size: 0.82rem; color: var(--cream-3); }
.mockup-fallback a { color: var(--gold-2); border-bottom: 1px solid var(--gold-dim); }
.mockup-fallback a:hover { color: var(--gold); border-color: var(--gold); }

/* =============================================================
   9. Packages
   ============================================================= */
.pkg-grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 860px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }

.pkg-card {
  position: relative; background: var(--bg-2); border: 1px solid var(--line); border-radius: 6px;
  padding: 2.1rem 1.8rem; display: flex; flex-direction: column;
  transition: transform .55s var(--ease-soft), box-shadow .55s var(--ease-soft), border-color .45s;
  --rx: 0deg; --ry: 0deg; --lift: 0px; --pop-offset: 0px;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(calc(var(--lift) + var(--pop-offset)));
  transform-style: preserve-3d;
}
.pkg-card:hover { --lift: -6px; box-shadow: 0 30px 60px -35px rgba(0,0,0,.55); }
.pkg-card.has-tilt:hover { transition-duration: .15s; }
.pkg-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0; border-radius: inherit;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 30%), rgba(207,159,82,.12), transparent 62%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.pkg-card:hover::before { opacity: 1; }
.pkg-card > * { position: relative; z-index: 1; }

.pkg-eyebrow { font-family: var(--mono); font-size: 0.72rem; letter-spacing: .16em; color: var(--cream-3); text-transform: uppercase; margin-bottom: .9rem; }
.pkg-name { font-family: var(--display); font-weight: 700; font-size: clamp(1.4rem, 2.2vw, 1.7rem); color: var(--gold-2); margin-bottom: 1rem; }
.pkg-price { font-family: var(--mono); font-size: clamp(2.1rem, 3.6vw, 2.6rem); color: var(--cream); margin-bottom: .3rem; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.pkg-price small { font-size: 0.9rem; color: var(--cream-3); font-weight: 400; margin-left: .3rem; font-family: var(--mono); }
.pkg-tagline { font-size: 0.92rem; color: var(--cream-2); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }

.pkg-features { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.9rem; flex-grow: 1; }
.pkg-features li { display: flex; align-items: flex-start; gap: .6rem; font-size: 0.9rem; color: var(--cream-2); }
.pkg-features li svg { width: 14px; height: 14px; margin-top: .2rem; color: var(--gold); flex-shrink: 0; }
.pkg-features li strong { color: var(--cream); font-weight: 600; }

.pkg-card.is-popular {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 1px var(--gold-dim), 0 26px 60px -32px rgba(207,159,82,.42);
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
}
.pkg-card.is-popular:hover {
  box-shadow: 0 0 0 1.5px var(--gold), 0 34px 74px -30px rgba(207,159,82,.55);
}
@media (min-width: 860px) { .pkg-card.is-popular { --pop-offset: -14px; } }
.pkg-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #16110a;
  font-family: var(--mono); font-size: 0.68rem; font-weight: 700; letter-spacing: .1em;
  padding: .4rem .9rem; border-radius: 999px; text-transform: uppercase;
  box-shadow: 0 6px 16px -6px var(--gold-glow); white-space: nowrap;
}

.pkg-card.is-premium { overflow: hidden; }
.pkg-card.is-premium::after {
  content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit;
  background: conic-gradient(from var(--pangle, 0deg), transparent 0 70%, var(--gold-2), transparent 85%);
  opacity: 0; transition: opacity .5s;
}
.pkg-card.is-premium:hover::after { opacity: .7; animation: rotatePremium 3.5s linear infinite; }
@keyframes rotatePremium { to { --pangle: 360deg; } }
@property --pangle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }

.pkg-cta { margin-top: auto; }
.pkg-view-link { display: flex; justify-content: center; margin-top: 2.4rem; }
.pkg-view-link a {
  font-family: var(--mono); font-size: 0.85rem; color: var(--gold-2);
  display: inline-flex; align-items: center; gap: .5rem;
  padding-bottom: .2rem; border-bottom: 1px solid var(--gold-dim);
  transition: color .3s, border-color .3s, gap .3s;
}
.pkg-view-link a:hover { color: var(--gold); border-color: var(--gold); gap: .75rem; }

.compare-strip { margin-top: clamp(2.75rem, 5vw, 4rem); }
.compare-heads { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: .5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line-2); }
.compare-heads span:first-child { visibility: hidden; }
.compare-heads .ch { text-align: center; font-family: var(--mono); font-size: 0.68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--cream-3); }
.compare-heads .ch strong { display: block; font-family: var(--display); font-weight: 700; font-size: 0.92rem; color: var(--gold-2); text-transform: none; letter-spacing: 0; margin-top: .25rem; }
.compare-row { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: .5rem; padding-block: .85rem; border-bottom: 1px solid var(--line); font-size: 0.82rem; align-items: center; }
.compare-row .rl { color: var(--cream-2); font-size: 0.82rem; }
.compare-row .rv { text-align: center; font-family: var(--mono); font-size: 0.78rem; color: var(--cream-3); font-variant-numeric: tabular-nums; }
.compare-row .rv.yes { color: var(--gold-2); }
@media (max-width: 539px) { .compare-heads .ch strong, .compare-row .rl { font-size: 0.72rem; } .compare-heads, .compare-row { grid-template-columns: 1fr repeat(3, 0.8fr); } }

/* =============================================================
   10. Business types
   ============================================================= */
.biz-grid { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2.2rem; }
.biz-tag {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--cream-2); border: 1px solid var(--line-2); border-radius: 999px; padding: .55rem 1.05rem;
  transition: border-color .3s, color .3s, box-shadow .3s, background-color .3s;
}
.biz-tag:hover { border-color: var(--gold-dim); color: var(--gold-2); box-shadow: 0 0 14px -8px var(--gold-glow); background: rgba(207,159,82,.04); }
.biz-more { display: inline-flex; align-items: center; font-family: var(--mono); font-size: 0.72rem; color: var(--cream-3); padding: .55rem .2rem; }

/* =============================================================
   11. Final CTA
   ============================================================= */
.final-cta { position: relative; text-align: center; overflow: clip; isolation: isolate; background: var(--coffee); }
.final-cta .hero-mesh { inset: -30%; }
.final-title { font-size: clamp(2rem, 4.6vw, 3.2rem); margin-bottom: 1.1rem; }
.final-sub { font-size: 1.05rem; color: var(--cream-2); max-width: 44ch; margin-inline: auto; margin-bottom: 2.8rem; }
.final-call {
  display: inline-flex; flex-direction: column; align-items: center; gap: .5rem;
  padding: 1.9rem 2.8rem; border-radius: 10px; border: 1px solid var(--gold-dim);
  background: rgba(207,159,82,.05); margin-bottom: 1.7rem;
  transition: border-color .4s, box-shadow .4s, transform .5s var(--ease-soft), background-color .4s;
}
.final-call:hover { border-color: var(--gold); box-shadow: 0 0 44px -18px var(--gold-glow); transform: translateY(-4px); background: rgba(207,159,82,.09); }
.final-call .fc-label { font-family: var(--mono); font-size: 0.78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.final-call .fc-number { font-family: var(--mono); font-size: clamp(1.6rem, 3.8vw, 2.3rem); color: var(--cream); letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.final-secondary { margin-bottom: 2.1rem; }
.final-langs { font-family: var(--mono); font-size: 0.8rem; color: var(--cream-3); }
.final-social {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.4rem;
  font-family: var(--mono); font-size: 0.8rem; color: var(--cream-3);
  transition: color .3s;
}
.final-social svg { width: 16px; height: 16px; flex-shrink: 0; }
.final-social:hover { color: var(--gold-2); }

/* =============================================================
   12. Footer
   ============================================================= */
.footer { border-top: 1px solid var(--line); padding-block: 2.4rem; }
.footer-inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; text-align: center; }
@media (min-width: 860px) { .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-brand { display: flex; flex-direction: column; gap: .4rem; max-width: 320px; }
.footer-brand .brand { font-size: 1.05rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.85rem; color: var(--cream-3); transition: color .3s; }
.footer-links a:hover { color: var(--gold-2); }
.footer-meta { display: flex; flex-direction: column; gap: .5rem; align-items: center; }
@media (min-width: 860px) { .footer-meta { align-items: flex-end; } }
.footer-phone { font-family: var(--mono); font-size: 0.85rem; color: var(--gold-2); }
.footer-social {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--mono); font-size: 0.82rem; color: var(--cream-3);
  transition: color .3s;
}
.footer-social svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-social:hover { color: var(--gold-2); }
.footer-copy { font-size: 0.75rem; color: var(--cream-3); }
.footer-langs { display: flex; gap: .35rem; font-family: var(--mono); font-size: 0.72rem; }
.footer-langs button { color: var(--cream-3); padding: .15rem; }
.footer-langs button.is-active { color: var(--gold); }
.footer-langs .sep { color: var(--line-2); }

/* =============================================================
   13. Packages view (full detail)
   ============================================================= */
.page-header { padding-top: calc(var(--nav-h) + clamp(2.5rem, 7vw, 4.5rem)); padding-bottom: clamp(1.75rem, 4vw, 2.75rem); text-align: center; }
.page-title { font-size: clamp(2.1rem, 4.6vw, 3.2rem); margin-bottom: 1rem; }
.page-sub { max-width: 50ch; margin-inline: auto; color: var(--cream-3); font-size: 1.02rem; }

.pkg-card.is-full { padding-bottom: 2.3rem; }
.pkg-group-label { font-family: var(--mono); font-size: 0.66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-3); margin: 1rem 0 .5rem; }
.pkg-group-label:first-child { margin-top: 0; }

.compare-heading {
  margin-top: clamp(2.75rem, 5vw, 4rem); text-align: center;
  font-family: var(--mono); font-size: 0.72rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cream-3);
}
.detail-table-wrap { overflow-x: auto; margin-top: 1.25rem; border-radius: 8px; border: 1px solid var(--line); }
table.detail-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.detail-table thead th {
  background: var(--bg-2); text-align: center; padding: 1.05rem 1rem;
  font-family: var(--display); font-weight: 700; color: var(--gold-2); font-size: 1rem;
  border-bottom: 1px solid var(--line-2);
}
.detail-table thead th .th-sub { display: block; font-family: var(--mono); font-weight: 400; font-size: .65rem; color: var(--cream-3); letter-spacing: .05em; margin-top: .3rem; }
.detail-table thead th:first-child { text-align: left; font-family: var(--mono); font-weight: 500; font-size: 0.7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-3); }
.detail-table tbody th { text-align: left; padding: .9rem 1rem; font-weight: 400; font-size: 0.86rem; color: var(--cream-2); border-bottom: 1px solid var(--line); white-space: nowrap; }
.detail-table tbody td { text-align: center; padding: .9rem 1rem; font-family: var(--mono); font-size: 0.8rem; color: var(--cream-3); border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums; }
.detail-table tbody td.yes { color: var(--gold-2); }
.detail-table tbody td svg { width: 14px; height: 14px; margin-inline: auto; }
.detail-table tbody tr:last-child th, .detail-table tbody tr:last-child td { border-bottom: none; }
.detail-table tbody tr:hover { background: rgba(207,159,82,.03); }

.detail-cta { text-align: center; padding-block: clamp(3.5rem, 7vw, 5.5rem); border-top: 1px solid var(--line); }
.detail-cta h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin-bottom: 1.3rem; }

/* =============================================================
   14. Responsive polish
   ============================================================= */
@media (max-width: 539px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}

/* =============================================================
   15. Reduced motion — disable unbounded ambient loops only
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .scroll-cue span { animation: none; opacity: .6; }
  .pkg-card.is-premium:hover::after { animation: none; opacity: .5; }
}
