:root{
  --bg:#09070d;
  --bg-2:#110d16;
  --bg-3:#17111f;

  --panel:#120f18;
  --panel-2:#191320;
  --panel-3:#21192c;

  --line:rgba(255,255,255,.08);
  --line-2:rgba(255,255,255,.14);

  --text:#f8f4ee;
  --muted:rgba(248,244,238,.72);
  --muted-2:rgba(248,244,238,.46);

  --gold:#f2c66d;
  --gold-2:#ffdf9e;
  --emerald:#55e0ad;
  --ice:#9fd4ff;
  --rose:#ff8ca8;

  --shadow-xl:0 28px 80px rgba(0,0,0,.42);
  --shadow-md:0 14px 34px rgba(0,0,0,.24);

  --radius-xl:30px;
  --radius-lg:22px;
  --radius-md:16px;
  --radius-sm:12px;

  --container:1220px;
  --header-h:86px;

  --font-body:"Inter",system-ui,-apple-system,"Segoe UI",sans-serif;
  --font-display:"Cormorant Garamond",Georgia,serif;
}

@view-transition {
  navigation: auto;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

body{
  margin:0;
  color:var(--text);
  font-family:var(--font-body);
  text-rendering:optimizeLegibility;
  background:
    radial-gradient(circle at 15% 0%, rgba(85,224,173,.10), transparent 22%),
    radial-gradient(circle at 85% 0%, rgba(159,212,255,.10), transparent 18%),
    radial-gradient(circle at 50% 0%, rgba(242,198,109,.10), transparent 20%),
    linear-gradient(180deg, #09070d 0%, #100b15 38%, #09070d 100%);
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  display:block;
  max-width:100%;
}

p{
  margin:0;
  line-height:1.68;
}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.selection-ornament{
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size:28px 28px;
  opacity:.45;
}

.section{
  padding:72px 0;
  border-top:1px solid var(--line);
}

.section-sm{
  padding:54px 0;
  border-top:1px solid var(--line);
}

.section-head{
  max-width:760px;
  margin-bottom:28px;
}

.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(242,198,109,.18);
  background:rgba(242,198,109,.08);
  color:var(--gold-2);
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.section-title{
  margin:14px 0 0;
  font-family:var(--font-display);
  font-size:clamp(38px, 5vw, 62px);
  line-height:.94;
  letter-spacing:-.035em;
  font-weight:700;
}

.section-note{
  margin-top:12px;
  color:var(--muted);
  font-size:17px;
}

/* Buttons */

.btn{
  min-height:52px;
  padding:0 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  border:1px solid transparent;
  font-size:14px;
  font-weight:800;
  line-height:1;
  white-space:nowrap;
  transition:transform .16s ease, filter .16s ease, border-color .16s ease, background-color .16s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-gold{
  color:#180f05;
  background:linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow:0 14px 34px rgba(242,198,109,.20);
}

.btn-gold:hover{
  filter:brightness(.98);
}

.btn-emerald{
  color:#07170f;
  background:linear-gradient(135deg, var(--emerald) 0%, #9bf2d2 100%);
  box-shadow:0 14px 34px rgba(85,224,173,.18);
}

.btn-emerald:hover{
  filter:brightness(.98);
}

.btn-ghost{
  color:#fff;
  background:rgba(255,255,255,.04);
  border-color:var(--line-2);
}

.btn-ghost:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.20);
}

.btn-block{
  width:100%;
}

/* Header */

.siteframe{
  position:sticky;
  top:0;
  z-index:70;
  border-bottom:1px solid rgba(255,255,255,.06);
  background:rgba(9,7,13,.68);
  backdrop-filter:blur(20px);
  transition:background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.siteframe.is-scrolled{
  background:rgba(9,7,13,.88);
  border-bottom-color:rgba(255,255,255,.10);
  box-shadow:0 10px 26px rgba(0,0,0,.20);
}

.siteframe__row{
  min-height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brandmark{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.brandmark__seal{
  width:48px;
  height:48px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:
    linear-gradient(135deg, rgba(242,198,109,.95), rgba(255,223,158,.85));
  color:#120c05;
  font-family:var(--font-display);
  font-size:24px;
  font-weight:700;
  box-shadow:0 16px 34px rgba(242,198,109,.18);
}

.brandmark__copy{
  min-width:0;
  display:flex;
  flex-direction:column;
}

.brandmark__title{
  font-family:var(--font-display);
  font-size:26px;
  line-height:.92;
  letter-spacing:-.03em;
  font-weight:700;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.brandmark__subtitle{
  margin-top:4px;
  color:var(--muted-2);
  font-size:12px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.topnav{
  display:flex;
  align-items:center;
  gap:8px;
  padding:7px;
  border-radius:999px;
  border:1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)),
    rgba(255,255,255,.02);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}

.topnav__link{
  min-height:40px;
  padding:0 16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  color:var(--muted);
  font-size:14px;
  font-weight:800;
  transition:background-color .16s ease, color .16s ease, box-shadow .16s ease;
}

.topnav__link:hover{
  color:#fff;
  background:rgba(255,255,255,.06);
}

.topnav__link.is-active{
  color:#140d05;
  background:linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow:0 10px 24px rgba(242,198,109,.18);
}

.siteframe__actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid var(--line-2);
  background:rgba(255,255,255,.04);
  position:relative;
  flex:0 0 auto;
}

.menu-toggle span{
  position:absolute;
  left:12px;
  right:12px;
  height:2px;
  border-radius:999px;
  background:#fff;
  transition:transform .18s ease, top .18s ease;
}

.menu-toggle span:first-child{ top:16px; }
.menu-toggle span:last-child{ top:28px; }

.menu-toggle.is-open span:first-child{
  top:22px;
  transform:rotate(45deg);
}

.menu-toggle.is-open span:last-child{
  top:22px;
  transform:rotate(-45deg);
}

.mobile-drawer{
  padding:0 0 14px;
}

.mobile-drawer__inner{
  display:grid;
  gap:8px;
  padding:10px;
  border-radius:24px;
  border:1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)),
    var(--panel);
  box-shadow:var(--shadow-md);
}

.mobile-drawer__inner a{
  min-height:48px;
  padding:0 14px;
  display:flex;
  align-items:center;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:#fff;
  font-size:14px;
  font-weight:800;
}

.mobile-drawer__inner a:hover{
  background:rgba(255,255,255,.06);
}

/* Hero */

.hero-fantasy{
  position:relative;
  overflow:hidden;
  padding:42px 0 28px;
}

.hero-fantasy__halo{
  position:absolute;
  inset:auto 0 0 0;
  height:540px;
  pointer-events:none;
  background:
    radial-gradient(circle at 20% 40%, rgba(85,224,173,.16), transparent 22%),
    radial-gradient(circle at 80% 35%, rgba(159,212,255,.14), transparent 20%),
    radial-gradient(circle at 50% 10%, rgba(242,198,109,.14), transparent 18%);
  filter:blur(10px);
}

.hero-fantasy__grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(360px,.98fr);
  gap:22px;
  align-items:center;
}

.hero-fantasy__badge{
  display:inline-flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(242,198,109,.18);
  background:rgba(242,198,109,.08);
  color:var(--gold-2);
  font-size:12px;
  font-weight:800;
}

.hero-fantasy__title{
  margin:18px 0 0;
  max-width:760px;
  font-family:var(--font-display);
  font-size:clamp(54px, 7vw, 92px);
  line-height:.86;
  letter-spacing:-.05em;
  font-weight:700;
}

.hero-fantasy__title span{
  display:block;
  color:#ffffff;
  background:linear-gradient(90deg, #fff1cb 0%, #9ff0d0 45%, #a9d8ff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.hero-fantasy__copy{
  margin-top:18px;
  max-width:620px;
  font-size:18px;
  color:var(--muted);
}

.hero-fantasy__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.hero-fantasy__meta{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.hero-fantasy__meta-item{
  min-height:38px;
  padding:0 12px;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.84);
  font-size:13px;
  font-weight:700;
}

.hero-art{
  position:relative;
  min-height:600px;
}

.hero-art__glow{
  position:absolute;
  inset:40px 60px;
  border-radius:999px;
  background:
    radial-gradient(circle at center, rgba(242,198,109,.20), transparent 26%),
    radial-gradient(circle at center, rgba(85,224,173,.18), transparent 38%),
    radial-gradient(circle at center, rgba(159,212,255,.16), transparent 56%);
  filter:blur(8px);
}

.hero-art__frame{
  position:absolute;
  inset:16px;
  padding:14px;
  border-radius:34px;
  border:1px solid rgba(242,198,109,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    rgba(16,12,22,.74);
  box-shadow:var(--shadow-xl);
  overflow:hidden;
}

.hero-art__inner{
  position:relative;
  height:100%;
  border-radius:26px;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    #130f18;
}

.hero-art__inner::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(9,7,13,.00), rgba(9,7,13,.18) 58%, rgba(9,7,13,.72) 100%);
  z-index:2;
}

.hero-art__img{
  position:relative;
  z-index:1;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

.hero-art__fallback{
  position:absolute;
  inset:0;
  display:none;
  place-items:center;
  padding:30px;
  text-align:center;
  z-index:2;
  background:
    radial-gradient(circle at 50% 35%, rgba(242,198,109,.20), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(85,224,173,.12), transparent 28%),
    linear-gradient(180deg, #17111f 0%, #0f0b14 100%);
}

.hero-art__fallback strong{
  display:block;
  font-family:var(--font-display);
  font-size:46px;
  line-height:.92;
  font-weight:700;
  letter-spacing:-.03em;
}

.hero-art__fallback span{
  display:block;
  margin-top:10px;
  color:var(--muted);
  font-size:15px;
}

.hero-art__tag{
  position:absolute;
  z-index:3;
  min-width:150px;
  padding:14px 16px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    rgba(20,16,27,.70);
  backdrop-filter:blur(10px);
  box-shadow:0 18px 44px rgba(0,0,0,.22);
}

.hero-art__tag strong{
  display:block;
  font-size:16px;
  font-weight:800;
}

.hero-art__tag span{
  display:block;
  margin-top:6px;
  font-size:13px;
  color:rgba(255,255,255,.74);
}

.hero-art__tag.t1{ left:-10px; top:54px; }
.hero-art__tag.t2{ right:-8px; top:74px; }
.hero-art__tag.t3{ left:6px; bottom:78px; }
.hero-art__tag.t4{ right:10px; bottom:58px; }

/* Pricing */

.pricing-showcase{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}

.tarot-plan{
  position:relative;
  padding:26px;
  border-radius:32px;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.06), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)),
    var(--panel);
  box-shadow:var(--shadow-md);
  overflow:hidden;
}

.tarot-plan::before{
  content:"";
  position:absolute;
  inset:10px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.06);
  pointer-events:none;
}

.tarot-plan--featured{
  background:
    radial-gradient(circle at top right, rgba(242,198,109,.20), transparent 28%),
    linear-gradient(180deg, rgba(255,248,232,.98), rgba(255,244,220,.92));
  color:#160f06;
  border-color:rgba(242,198,109,.42);
  transform:translateY(-4px);
  box-shadow:0 28px 80px rgba(0,0,0,.28);
}

.tarot-plan__chip{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  font-size:12px;
  font-weight:900;
  color:rgba(255,255,255,.86);
}

.tarot-plan--featured .tarot-plan__chip{
  background:rgba(242,198,109,.18);
  border-color:rgba(242,198,109,.28);
  color:#6a4411;
}

.tarot-plan__name{
  margin-top:16px;
  font-family:var(--font-display);
  font-size:34px;
  line-height:.95;
  font-weight:700;
}

.tarot-plan__price{
  margin-top:12px;
  font-size:54px;
  line-height:.92;
  letter-spacing:-.06em;
  font-weight:900;
}

.tarot-plan__price span{
  font-size:14px;
  opacity:.60;
  font-weight:700;
}

.tarot-plan__note{
  margin-top:10px;
  color:var(--muted);
  font-size:14px;
}

.tarot-plan--featured .tarot-plan__note{
  color:rgba(22,15,6,.68);
}

.tarot-plan__list{
  margin:18px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.tarot-plan__list li{
  position:relative;
  padding-left:24px;
  font-size:14px;
  font-weight:700;
}

.tarot-plan__list li::before{
  content:"✦";
  position:absolute;
  left:0;
  top:0;
  color:var(--gold);
}

.tarot-plan--featured .tarot-plan__list li::before{
  color:#a56a11;
}

.tarot-plan__cta{
  margin-top:22px;
}

/* Support cards */

.fantasy-grid-3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}

.fantasy-card{
  padding:24px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03)),
    var(--panel);
  box-shadow:var(--shadow-md);
}

.fantasy-card__icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:rgba(242,198,109,.10);
  border:1px solid rgba(242,198,109,.12);
  font-size:24px;
}

.fantasy-card__title{
  margin-top:16px;
  font-family:var(--font-display);
  font-size:32px;
  line-height:.95;
  font-weight:700;
}

.fantasy-card__text{
  margin-top:10px;
  color:var(--muted);
  font-size:15px;
}

/* Steps */

.steps-ritual{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;
}

.step-ritual{
  padding:22px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}

.step-ritual__num{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:rgba(242,198,109,.12);
  color:var(--gold-2);
  font-size:13px;
  font-weight:900;
}

.step-ritual__title{
  margin-top:16px;
  font-size:17px;
  font-weight:900;
}

.step-ritual__text{
  margin-top:8px;
  color:var(--muted);
  font-size:14px;
}

/* FAQ */

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}

.faq-plate{
  padding:20px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}

.faq-plate strong{
  display:block;
  font-size:18px;
  line-height:1.12;
  font-weight:900;
}

.faq-plate p{
  margin-top:8px;
  color:var(--muted);
  font-size:14px;
}

/* CTA */

.grand-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:30px;
  border-radius:34px;
  border:1px solid rgba(242,198,109,.16);
  background:
    radial-gradient(circle at 12% 0%, rgba(242,198,109,.12), transparent 20%),
    radial-gradient(circle at 90% 0%, rgba(159,212,255,.12), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)),
    var(--panel-2);
  box-shadow:var(--shadow-xl);
}

.grand-cta__title{
  font-family:var(--font-display);
  font-size:clamp(40px, 5vw, 64px);
  line-height:.90;
  font-weight:700;
}

.grand-cta__text{
  margin-top:12px;
  max-width:640px;
  color:var(--muted);
  font-size:16px;
}

.grand-cta__actions{
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* Footer / contact mild base for compatibility */

.footer{
  padding:56px 0 28px;
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.01);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr .9fr;
  gap:18px;
}

.footer-title{
  margin:0 0 12px;
  font-size:15px;
  font-weight:900;
}

.footer-copy,
.footer-meta{
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

.footer-links{
  display:grid;
  gap:10px;
}

.footer-links a{
  color:var(--muted);
  font-size:14px;
}

.footer-links a:hover,
.footer-meta a:hover{
  color:#fff;
}

.footer-bottom{
  margin-top:24px;
  padding-top:18px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:var(--muted-2);
  font-size:12px;
  line-height:1.6;
}

/* Reveal */

.reveal{opacity:1;transform:none}
.js .reveal{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .5s ease, transform .5s ease;
}
.js .reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* Forms */

input, textarea, select, button{font:inherit}
input::placeholder, textarea::placeholder{color:rgba(255,255,255,.34)}
input, textarea, select{
  transition:border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
input:focus, textarea:focus, select:focus, button:focus{outline:none}
input:focus, textarea:focus, select:focus{
  border-color:rgba(242,198,109,.44) !important;
  box-shadow:0 0 0 1px rgba(242,198,109,.16), 0 0 0 4px rgba(242,198,109,.08);
}
textarea{resize:vertical;min-height:120px}

/* Responsive */

@media (max-width: 1100px){
  .hero-fantasy__grid,
  .pricing-showcase,
  .fantasy-grid-3{
    grid-template-columns:1fr;
  }

  .steps-ritual{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .topnav{
    display:none;
  }

  .menu-toggle{
    display:inline-grid;
  }

  .hero-art{
    min-height:500px;
  }

  .footer-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 780px){
  .container{
    width:min(var(--container), calc(100% - 24px));
  }

  .section{
    padding:56px 0;
  }

  .section-sm{
    padding:44px 0;
  }

  .brandmark__subtitle{
    display:none;
  }

  .hero-fantasy{
    padding:28px 0 18px;
  }

  .hero-fantasy__title{
    font-size:56px;
  }

  .hero-fantasy__actions,
  .grand-cta__actions{
    width:100%;
    flex-direction:column;
  }

  .hero-fantasy__actions .btn,
  .grand-cta__actions .btn{
    width:100%;
  }

  .hero-art{
    min-height:380px;
  }

  .hero-art__tag{
    min-width:120px;
    padding:12px 14px;
  }

  .hero-art__tag strong{
    font-size:14px;
  }

  .hero-art__tag span{
    font-size:12px;
  }

  .faq-grid,
  .steps-ritual,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .grand-cta,
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .js .reveal{opacity:1;transform:none;transition:none}
}

/* ===== CONTACT ROYAL ===== */

.contact-royal{
  padding:58px 0;
  border-top:1px solid var(--line);
}

.contact-royal__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(380px,.96fr);
  gap:20px;
  align-items:start;
}

.contact-royal__copy,
.contact-royal__form-wrap{
  border-radius:32px;
  border:1px solid rgba(242,198,109,.14);
  box-shadow:var(--shadow-md);
}

.contact-royal__copy{
  padding:30px;
  background:
    radial-gradient(circle at top left, rgba(242,198,109,.10), transparent 22%),
    radial-gradient(circle at bottom right, rgba(85,224,173,.08), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03)),
    var(--panel);
}

.contact-royal__form-wrap{
  padding:26px;
  background:
    radial-gradient(circle at top right, rgba(159,212,255,.10), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03)),
    var(--panel-2);
}

.contact-royal__badge,
.contact-royal__form-badge,
.footer-legend__badge{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(242,198,109,.18);
  background:rgba(242,198,109,.08);
  color:var(--gold-2);
  font-size:12px;
  font-weight:800;
  letter-spacing:.10em;
  text-transform:uppercase;
}

.contact-royal__title{
  margin:16px 0 0;
  font-family:var(--font-display);
  font-size:clamp(38px, 5vw, 64px);
  line-height:.90;
  letter-spacing:-.04em;
  font-weight:700;
}

.contact-royal__title span{
  display:block;
  background:linear-gradient(90deg, #fff1cb 0%, #9ff0d0 45%, #a9d8ff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.contact-royal__text{
  margin-top:14px;
  max-width:700px;
  color:var(--muted);
  font-size:16px;
}

.contact-royal__cards{
  margin-top:22px;
  display:grid;
  gap:12px;
}

.contact-royal__card{
  display:grid;
  grid-template-columns:56px 1fr;
  gap:12px;
  align-items:flex-start;
  padding:16px;
  border-radius:22px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  transition:transform .16s ease, background-color .16s ease, border-color .16s ease;
}

.contact-royal__card:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.16);
}

.contact-royal__icon{
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:rgba(242,198,109,.10);
  border:1px solid rgba(242,198,109,.10);
  font-size:24px;
}

.contact-royal__card strong{
  display:block;
  font-size:16px;
  line-height:1.08;
  font-weight:900;
}

.contact-royal__card span{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-size:14px;
}

.contact-royal__actions{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.contact-royal__form-title{
  margin-top:16px;
  font-family:var(--font-display);
  font-size:42px;
  line-height:.92;
  font-weight:700;
}

.contact-royal__form-text{
  margin-top:10px;
  color:var(--muted);
  font-size:14px;
}

.contact-royal__alert{
  margin:18px 0 0;
  padding:16px;
  border-radius:20px;
  border:1px solid var(--line);
}

.contact-royal__alert strong{
  display:block;
  font-size:15px;
  font-weight:900;
}

.contact-royal__alert span{
  display:block;
  margin-top:6px;
  font-size:14px;
  color:rgba(255,255,255,.82);
}

.contact-royal__alert.is-success{
  background:rgba(85,224,173,.12);
  border-color:rgba(85,224,173,.24);
}

.contact-royal__alert.is-error{
  background:rgba(255,140,168,.12);
  border-color:rgba(255,140,168,.24);
}

.contact-royal__form{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}

.field-royal{
  display:grid;
  gap:8px;
}

.field-royal--full{
  grid-column:1 / -1;
}

.field-royal span{
  font-size:13px;
  color:rgba(255,255,255,.82);
  font-weight:900;
}

.field-royal input,
.field-royal textarea,
.field-royal select{
  width:100%;
  min-height:54px;
  padding:0 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:#fff;
}

.field-royal textarea{
  min-height:140px;
  padding:14px 16px;
}

.field-royal__select{
  position:relative;
}

.field-royal__select::after{
  content:"⌄";
  position:absolute;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  color:rgba(255,255,255,.56);
  font-size:18px;
  pointer-events:none;
}

.field-royal__select select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  padding-right:46px;
  cursor:pointer;
}

.check-royal{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:var(--muted);
  font-size:13px;
}

.check-royal input{
  margin-top:2px;
  flex:0 0 auto;
}

.check-royal a{
  color:var(--gold-2);
  text-decoration:underline;
}

.contact-royal__submit{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.contact-royal__submit-note{
  margin-top:12px;
  color:var(--muted-2);
  font-size:12px;
  line-height:1.6;
}

/* ===== FOOTER LEGEND ===== */

.footer-legend{
  padding:56px 0 28px;
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.01);
}

.footer-legend__shell{
  padding:28px;
  border-radius:34px;
  border:1px solid rgba(242,198,109,.14);
  background:
    radial-gradient(circle at top left, rgba(242,198,109,.08), transparent 20%),
    radial-gradient(circle at top right, rgba(159,212,255,.08), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03)),
    var(--panel);
  box-shadow:var(--shadow-xl);
}

.footer-legend__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding-bottom:22px;
  border-bottom:1px solid var(--line);
}

.footer-legend__lead{
  max-width:760px;
}

.footer-legend__title{
  margin:16px 0 0;
  font-family:var(--font-display);
  font-size:clamp(38px, 4vw, 58px);
  line-height:.90;
  font-weight:700;
}

.footer-legend__text{
  margin-top:12px;
  color:var(--muted);
  font-size:16px;
}

.footer-legend__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.footer-legend__grid{
  margin-top:24px;
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr .9fr;
  gap:18px;
}

.footer-legend__title-sm{
  margin:0 0 12px;
  font-size:15px;
  font-weight:900;
}

.footer-legend__copy,
.footer-legend__meta{
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

.footer-legend__copy{
  margin-top:16px;
}

.footer-legend__meta{
  margin-top:16px;
}

.footer-legend__links{
  display:grid;
  gap:10px;
}

.footer-legend__links a{
  color:var(--muted);
  font-size:14px;
}

.footer-legend__links a:hover,
.footer-legend__meta a:hover{
  color:#fff;
}

.footer-legend__bottom{
  margin-top:24px;
  padding-top:18px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:var(--muted-2);
  font-size:12px;
  line-height:1.6;
}

@media (max-width: 1100px){
  .contact-royal__grid{
    grid-template-columns:1fr;
  }

  .footer-legend__grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .footer-legend__top{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 780px){
  .contact-royal{
    padding:46px 0;
  }

  .contact-royal__actions,
  .contact-royal__submit,
  .footer-legend__actions{
    flex-direction:column;
  }

  .contact-royal__actions .btn,
  .contact-royal__submit .btn,
  .footer-legend__actions .btn{
    width:100%;
  }

  .contact-royal__form,
  .footer-legend__grid{
    grid-template-columns:1fr;
  }

  .field-royal--full{
    grid-column:auto;
  }

  .footer-legend__bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* ===== SUBPAGE HERO / SALES LAYOUT ===== */

.page-hero{
  padding:44px 0 28px;
}

.page-hero__grid{
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(340px,.96fr);
  gap:22px;
  align-items:start;
}

.crumbs{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted-2);
  font-size:12px;
  margin-bottom:16px;
}

.crumbs a:hover{
  color:#fff;
}

.page-hero__eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(242,198,109,.18);
  background:rgba(242,198,109,.08);
  color:var(--gold-2);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.page-hero__title{
  margin:18px 0 0;
  max-width:760px;
  font-family:var(--font-display);
  font-size:clamp(52px, 7vw, 86px);
  line-height:.88;
  letter-spacing:-.05em;
  font-weight:700;
}

.page-hero__title span{
  display:block;
  background:linear-gradient(90deg, #fff1cb 0%, #9ff0d0 45%, #a9d8ff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.page-hero__text{
  margin-top:18px;
  max-width:680px;
  color:var(--muted);
  font-size:18px;
}

.page-hero__facts{
  margin-top:20px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.page-hero__fact{
  min-height:38px;
  padding:0 12px;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.84);
  font-size:13px;
  font-weight:700;
}

.page-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.page-hero__aside{
  padding:24px;
  border-radius:32px;
  border:1px solid rgba(242,198,109,.16);
  background:
    radial-gradient(circle at top right, rgba(242,198,109,.12), transparent 22%),
    radial-gradient(circle at bottom left, rgba(85,224,173,.08), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03)),
    var(--panel);
  box-shadow:var(--shadow-xl);
}

.page-hero__aside-badge{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(242,198,109,.18);
  background:rgba(242,198,109,.08);
  color:var(--gold-2);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.page-hero__aside-title{
  margin-top:16px;
  font-family:var(--font-display);
  font-size:42px;
  line-height:.90;
  font-weight:700;
}

.page-hero__aside-price{
  margin-top:12px;
  font-size:52px;
  line-height:.92;
  letter-spacing:-.06em;
  font-weight:900;
}

.page-hero__aside-price span{
  font-size:14px;
  color:var(--muted-2);
  font-weight:700;
}

.page-hero__aside-note{
  margin-top:10px;
  color:var(--muted);
  font-size:14px;
}

.page-hero__mini-list{
  margin-top:18px;
  display:grid;
  gap:10px;
}

.page-hero__mini-item{
  padding:14px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}

.page-hero__mini-item strong{
  display:block;
  font-size:15px;
  font-weight:900;
}

.page-hero__mini-item span{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-size:13px;
}

/* ===== TERMS / TABLE / COMPARE ===== */

.plan-terms{
  margin-top:16px;
  display:grid;
  gap:8px;
}

.plan-terms__item{
  min-height:42px;
  padding:0 14px;
  display:flex;
  align-items:center;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  font-size:13px;
  font-weight:700;
  color:var(--muted);
}

.pricing-showcase--four{
  grid-template-columns:repeat(4, minmax(0,1fr));
}

.compare-shell{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,.84fr);
  gap:18px;
}

.compare-shell__main,
.compare-shell__side{
  padding:24px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow-md);
}

.compare-shell__main{
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03)),
    var(--panel);
}

.compare-shell__side{
  background:
    radial-gradient(circle at top right, rgba(242,198,109,.14), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03)),
    var(--panel-2);
}

.compare-shell__title{
  font-family:var(--font-display);
  font-size:40px;
  line-height:.92;
  font-weight:700;
}

.compare-shell__text{
  margin-top:12px;
  color:var(--muted);
  font-size:15px;
}

.compare-shell__side-badge{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(242,198,109,.18);
  background:rgba(242,198,109,.08);
  color:var(--gold-2);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
}

.compare-shell__side-price{
  margin-top:14px;
  font-size:44px;
  line-height:.92;
  letter-spacing:-.05em;
  font-weight:900;
}

.compare-shell__side-note{
  margin-top:10px;
  color:var(--muted);
  font-size:14px;
  margin-bottom:18px;
}

.stack-list{
  margin:18px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.stack-list li{
  position:relative;
  padding-left:22px;
  color:var(--muted);
  font-size:15px;
}

.stack-list li::before{
  content:"✦";
  position:absolute;
  left:0;
  top:0;
  color:var(--gold);
}

.compare-table-shell{
  overflow:auto;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03)),
    var(--panel);
  box-shadow:var(--shadow-md);
}

.compare-table{
  width:100%;
  min-width:920px;
  border-collapse:collapse;
  text-align:left;
}

.compare-table thead{
  background:rgba(255,255,255,.04);
}

.compare-table th,
.compare-table td{
  padding:18px;
  border-bottom:1px solid rgba(255,255,255,.08);
  vertical-align:top;
  font-size:14px;
}

.compare-table th{
  font-size:13px;
  color:#fff;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.compare-table td{
  color:var(--muted);
}

.compare-table tr:last-child td{
  border-bottom:0;
}

.subnote{
  margin-top:14px;
  color:var(--muted-2);
  font-size:13px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1180px){
  .pricing-showcase--four{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 1100px){
  .page-hero__grid,
  .compare-shell{
    grid-template-columns:1fr;
  }
}

@media (max-width: 780px){
  .page-hero{
    padding:28px 0 18px;
  }

  .page-hero__title{
    font-size:56px;
  }

  .page-hero__actions{
    flex-direction:column;
  }

  .page-hero__actions .btn{
    width:100%;
  }

  .pricing-showcase--four{
    grid-template-columns:1fr;
  }

  .compare-shell__title{
    font-size:34px;
  }
}

.topnav__more{
  position:relative;
}

.topnav__more-btn svg{
  width:16px;
  height:16px;
  transition:transform .18s ease;
}

.topnav__dropdown{
  display:none;
  position:absolute;
  top:calc(100% + 12px);
  right:0;
  width:320px;
  padding:12px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:#121928;
  box-shadow:
    0 24px 60px rgba(0,0,0,.46),
    inset 0 1px 0 rgba(255,255,255,.03);
  z-index:90;
}

.topnav__more:hover .topnav__dropdown,
.topnav__more:focus-within .topnav__dropdown{
  display:block;
}

.topnav__more:hover .topnav__more-btn svg,
.topnav__more:focus-within .topnav__more-btn svg{
  transform:rotate(180deg);
}

.topnav__dropdown-head{
  padding:6px 8px 10px;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.42);
  font-weight:800;
}

.topnav__dropdown-list{
  display:grid;
  gap:6px;
}

.topnav__dropdown-link{
  min-height:46px;
  padding:0 14px;
  display:flex;
  align-items:center;
  border-radius:14px;
  background:#161f31;
  border:1px solid rgba(255,255,255,.06);
  color:#f3f6ff;
  font-size:14px;
  font-weight:700;
  transition:.18s ease;
}

.topnav__dropdown-link:hover{
  background:#1b2539;
  color:#fff;
}

.topnav__dropdown-link.is-active{
  background:linear-gradient(180deg, rgba(205,162,92,.22), rgba(205,162,92,.12));
  border:1px solid rgba(205,162,92,.24);
  color:#fff;
}

.royal-select{
  position:relative;
  width:100%;
}

.royal-select__trigger{
  width:100%;
  min-height:58px;
  padding:0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:#121928;
  color:#f4f1ea;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
  transition:.18s ease;
  cursor:pointer;
}

.royal-select__trigger:hover{
  border-color:rgba(255,255,255,.18);
  background:#151d2d;
}

.royal-select.is-open .royal-select__trigger{
  border-color:rgba(205,162,92,.34);
  box-shadow:
    0 0 0 1px rgba(205,162,92,.16),
    0 12px 30px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.03);
}

.royal-select.is-invalid .royal-select__trigger{
  border-color:rgba(255,107,107,.5);
  box-shadow:0 0 0 1px rgba(255,107,107,.2);
}

.royal-select__label{
  display:block;
  text-align:left;
  font-size:15px;
  font-weight:700;
  color:#f4f1ea;
}

.royal-select__label.is-placeholder{
  color:rgba(244,241,234,.48);
}

.royal-select__chevron{
  width:18px;
  height:18px;
  color:rgba(244,241,234,.72);
  flex:0 0 auto;
  transition:transform .18s ease;
}

.royal-select.is-open .royal-select__chevron{
  transform:rotate(180deg);
}

.royal-select__menu{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  right:0;
  padding:12px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:#121928;
  box-shadow:
    0 24px 60px rgba(0,0,0,.46),
    inset 0 1px 0 rgba(255,255,255,.03);
  z-index:80;
}

.royal-select__head{
  padding:4px 8px 10px;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.42);
  font-weight:800;
}

.royal-select__list{
  display:grid;
  gap:6px;
}

.royal-select__option{
  min-height:48px;
  width:100%;
  padding:0 14px;
  display:flex;
  align-items:center;
  text-align:left;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.06);
  background:#161f31;
  color:#f3f6ff;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:.18s ease;
}

.royal-select__option:hover{
  background:#1b2539;
  color:#fff;
}

.royal-select__option.is-active{
  background:linear-gradient(180deg, rgba(205,162,92,.22), rgba(205,162,92,.12));
  border:1px solid rgba(205,162,92,.24);
  color:#fff;
}


/* ===== NEW: TRUST INDICATORS ===== */
.trust-indicators {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0.8;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--emerald);
}

/* ===== NEW: LIVE PING DOT ===== */
.ping-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--emerald);
  margin-right: 6px;
  position: relative;
}

.ping-dot.active::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--emerald);
  opacity: 0.5;
  animation: pulse-ping 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ping {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ===== NEW: SERVER BENTO GRID ===== */
.server-bento {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  margin-top: 40px;
}

.server-card {
  padding: 32px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: 
    linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%),
    var(--panel-2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.server-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.server-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.eu-card {
  background: radial-gradient(circle at top right, rgba(85,224,173,0.05), transparent 50%), var(--panel-2);
}

.us-card {
  background: radial-gradient(circle at top right, rgba(159,212,255,0.05), transparent 50%), var(--panel-2);
}

.server-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.server-card__icon {
  font-size: 32px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.server-card__status {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--emerald);
  background: rgba(85, 224, 173, 0.1);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(85, 224, 173, 0.2);
}

.server-card__body h3 {
  font-family: var(--font-display);
  font-size: 32px;
  margin: 0 0 12px;
  font-weight: 700;
}

.server-card__body p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.server-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.server-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(0,0,0,0.2);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.03);
  font-size: 14px;
  font-weight: 600;
}

.server-list li span {
  color: var(--emerald);
  font-family: monospace;
  font-size: 13px;
}

.server-list-single {
  padding: 16px;
  background: rgba(0,0,0,0.2);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.03);
}

.server-list-single strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.server-list-single span {
  font-size: 13px;
  color: var(--muted-2);
}

@media (max-width: 992px) {
  .server-bento {
    grid-template-columns: 1fr;
  }
}

/* ===== NEW: ENHANCED BENTO GRID FOR USE CASES ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.bento-card {
  position: relative;
  padding: 32px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--panel);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.bento-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.bento-family {
  grid-column: span 2;
  background: radial-gradient(circle at 100% 100%, rgba(255, 140, 168, 0.08), transparent 60%), var(--panel);
}

.bento-business {
  grid-column: span 1;
  background: radial-gradient(circle at 0% 0%, rgba(159, 212, 255, 0.08), transparent 60%), var(--panel);
}

.bento-travel {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  background: radial-gradient(circle at 50% 50%, rgba(242, 198, 109, 0.05), transparent 70%), var(--panel);
}

.bento-card__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  font-size: 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

.bento-card__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.bento-card__text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bento-card__link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.bento-card:hover .bento-card__link {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-family, .bento-business, .bento-travel {
    grid-column: span 1;
  }
  .bento-travel {
    grid-template-columns: 1fr;
  }
}

/* ===== UPDATED: FEATURED PLAN GLOW ===== */
.tarot-plan--featured {
  position: relative;
  z-index: 1;
}

/* Анимированная светящаяся рамка для лучшего тарифа */
.tarot-plan--featured::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 34px;
  background: linear-gradient(45deg, var(--gold), transparent, var(--emerald), transparent);
  z-index: -1;
  background-size: 400% 400%;
  animation: border-glow 6s ease infinite;
  opacity: 0.5;
}

@keyframes border-glow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.promo-glow strong {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(242, 198, 109, 0.4);
}

/* ===== UPDATED: STEPS HOVER EFFECT ===== */
.step-ritual {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-ritual:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 198, 109, 0.3);
}

.step-ritual__glow {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(242,198,109,0.2) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.5s ease;
  pointer-events: none;
}

.step-ritual:hover .step-ritual__glow {
  transform: scale(2);
}