:root{
  --sun:#FFD600;
  --hot:#FF1E4D;
  --aqua:#00B1C7;
  --gold:#D4AF37;
  --ink:#1B1B1B;
  --milk:#FFF7D1;
  --card: rgba(255,255,255,.82);
  --card2: rgba(255,255,255,.68);
  --stroke: rgba(0,0,0,.08);
  --shadow: 0 18px 50px rgba(0,0,0,.14);
  --radius: 22px;
  --radius-sm: 16px;
  --max: 1180px;
}

*{box-sizing:border-box}
html,body{height:100%; overflow-x:hidden}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--ink);
  background:
    radial-gradient(900px 540px at 12% 0%, rgba(0,177,199,.22), transparent 60%),
    radial-gradient(900px 540px at 88% 0%, rgba(255,30,77,.18), transparent 62%),
    radial-gradient(900px 600px at 50% 120%, rgba(255,214,0,.58), transparent 62%),
    linear-gradient(180deg, #fff4ad, #fff9df);
}

/* Sunburst overlay (unique look vs previous site) */
body::before{
  content:"";
  position:fixed;
  inset:-30vh -30vw;
  pointer-events:none;
  opacity:.10;
  background: conic-gradient(from 90deg, rgba(255,30,77,.75), rgba(255,214,0,.85), rgba(0,177,199,.72), rgba(255,214,0,.85), rgba(255,30,77,.75));
  filter: blur(0px);
  z-index:-1;
}

a{color:inherit}
img{max-width:100%; height:auto; display:block}
.media--contain{object-fit:contain; width:100%; height:auto}

.container{max-width:var(--max); margin:0 auto; padding:0 16px}

.skip-link{
  position:absolute;
  left:-999px; top:10px;
  background:#fff;
  padding:10px 14px;
  border-radius:999px;
  border:2px solid rgba(0,0,0,.18);
  z-index:999;
}
.skip-link:focus{left:16px}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:60;
  background: linear-gradient(180deg, rgba(255,249,223,.92), rgba(255,249,223,.70));
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(0,0,0,.08);
}

.header__top{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  min-width: 210px;
}
.brand__logo{
  width:44px; height:44px;
  border-radius:16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
}
.brand__name{font-weight:1000; letter-spacing:.2px}
.brand__sub{
  font-size:12px;
  font-weight:800;
  color: rgba(0,0,0,.62);
  margin-left:6px;
}

.header__tools{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
}

.lang{
  display:inline-flex;
  gap:8px;
  padding:6px;
  border-radius:999px;
  background: rgba(255,255,255,.62);
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
}
.lang a{
  text-decoration:none;
  padding:8px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
}
.lang a.is-active{
  background: linear-gradient(135deg, rgba(255,30,77,.95), rgba(255,214,0,.95));
  color:#fff;
}

.menu-btn{
  appearance:none;
  border:0;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: linear-gradient(135deg, rgba(0,177,199,.20), rgba(255,214,0,.45));
  border:1px solid rgba(0,0,0,.10);
  box-shadow: 0 12px 20px rgba(0,0,0,.10);
  font-weight:1000;
}
.menu-btn:active{transform:scale(.98)}
.menu-btn__icon{
  width:28px; height:28px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.65);
  border:1px solid rgba(0,0,0,.08);
}

.header__cta{
  display:flex;
  gap:10px;
}

.btn{
  appearance:none;
  border:0;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  font-weight:1000;
  text-decoration:none;
  position:relative;
  overflow:hidden;
  user-select:none;
  box-shadow: 0 14px 26px rgba(0,0,0,.12);
}

.btn--primary{
  color:#fff;
  background: linear-gradient(135deg, var(--hot), #FF6A00, var(--sun));
}
.btn--secondary{
  color: var(--ink);
  background: linear-gradient(135deg, rgba(0,177,199,.35), rgba(255,214,0,.75));
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 18px rgba(0,0,0,.10);
}
.btn--ghost{
  color: var(--ink);
  background: rgba(255,255,255,.72);
  border:1px solid rgba(0,0,0,.12);
}
.btn--small{padding:9px 12px; font-weight:900; box-shadow:none}
.btn--xl{padding:14px 18px; font-size:16px}

/* Permanent shine */
.btn--shine::before{
  content:"";
  position:absolute;
  inset:-50%;
  background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,.85) 48%, transparent 70%);
  transform: translateX(-120%) rotate(10deg);
  animation: shine 2.8s linear infinite;
}
.btn--shine::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:999px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
  pointer-events:none;
}
@keyframes shine{
  0%{transform: translateX(-120%) rotate(10deg)}
  58%{transform: translateX(120%) rotate(10deg)}
  100%{transform: translateX(120%) rotate(10deg)}
}

/* Promo strip */
.promo-strip{
  border-top: 1px dashed rgba(0,0,0,.14);
  background: linear-gradient(90deg, rgba(255,30,77,.10), rgba(255,214,0,.28), rgba(0,177,199,.12));
}
.promo-strip__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
}
.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px 10px;
  border-radius:999px;
  background: rgba(255,30,77,.12);
  border:1px solid rgba(255,30,77,.24);
  font-weight:1000;
  font-size:12px;
}
.promo-strip__left{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}
.promo-code{
  font-weight:1000;
  font-size:16px;
  letter-spacing:1px;
  padding:4px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.75);
  border:1px solid rgba(0,0,0,.10);
}
.promo-strip__note{font-size:13px; color:rgba(0,0,0,.72)}

body.is-drawer-open{overflow:hidden}

/* Drawer menu (unique vs dropdown) */
.drawer-overlay{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
  opacity:0;
  pointer-events:none;
  transition: opacity .18s ease;
  z-index:80;
}
.drawer{
  position:fixed;
  top:0;
  right:0;
  width: min(380px, 92vw);
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.88));
  border-left:1px solid rgba(0,0,0,.12);
  box-shadow: -20px 0 70px rgba(0,0,0,.28);
  transform: translateX(110%);
  transition: transform .22s ease;
  z-index:90;
  display:flex;
  flex-direction:column;
}
.drawer::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(420px 220px at 60% 0%, rgba(255,214,0,.28), transparent 60%),
              radial-gradient(420px 220px at 20% 10%, rgba(0,177,199,.18), transparent 62%);
}
.drawer__head{
  position:relative;
  padding:16px 16px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.drawer__title{
  font-weight:1000;
  letter-spacing:.2px;
}
.drawer__close{
  appearance:none;
  border:0;
  cursor:pointer;
  width:44px; height:44px;
  border-radius:999px;
  background: rgba(0,0,0,.06);
  border:1px solid rgba(0,0,0,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:900;
}
.drawer__close:active{transform:scale(.98)}

.drawer__body{
  position:relative;
  padding: 6px 16px 16px;
  overflow:auto;
  -webkit-overflow-scrolling: touch;
}
.drawer__group{
  background: rgba(255,255,255,.72);
  border:1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 12px;
  margin-bottom: 12px;
  box-shadow: 0 12px 22px rgba(0,0,0,.10);
}
.drawer__group-title{
  font-size:12px;
  font-weight:1000;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(0,0,0,.58);
  margin-bottom: 8px;
}
.drawer__item{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.03);
  border:1px solid rgba(0,0,0,.05);
  font-weight:950;
  margin-bottom: 8px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.drawer__item:last-child{margin-bottom:0}
.drawer__item:hover{background: rgba(255,214,0,.16); box-shadow: 0 14px 28px rgba(0,0,0,.14); transform: translateY(-1px)}
.drawer__item:active{transform:scale(.99)}
.drawer__item.is-active{
  background: linear-gradient(135deg, rgba(255,30,77,.95), rgba(255,214,0,.95));
  color:#fff;
}
.drawer__ico{width:18px; height:18px; flex:none; opacity:.92}

.is-drawer-open .drawer-overlay{opacity:1; pointer-events:auto}
.is-drawer-open .drawer{transform: translateX(0)}

/* Hero */
.hero{
  padding: 30px 0 8px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items:stretch;
}
.hero__copy{
  background: linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.64));
  border:1px solid rgba(0,0,0,.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 18px;
  position:relative;
  overflow:hidden;
}
.hero__copy::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 28px;
  padding:1px;
  background: linear-gradient(135deg, rgba(255,214,0,.85), rgba(255,30,77,.55), rgba(0,177,199,.55));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
}
.hero__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.70);
  border:1px solid rgba(0,0,0,.08);
  font-weight:1000;
  font-size:12px;
}
.hero__title{
  margin: 14px 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height:1.05;
  letter-spacing:-.3px;
}
.hero__text{
  margin: 0 0 14px;
  font-size:16px;
  line-height:1.6;
  color: rgba(0,0,0,.78);
}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin-top: 12px}

.hero__kpis{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top: 14px;
}
.kpi{
  background: rgba(255,255,255,.74);
  border:1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 12px 22px rgba(0,0,0,.10);
}
.kpi__t{font-size:12px; font-weight:1000; letter-spacing:.12em; text-transform:uppercase; color: rgba(0,0,0,.60)}
.kpi__v{font-size:20px; font-weight:1000; margin-top:4px}
.kpi__d{font-size:13px; color: rgba(0,0,0,.74); margin-top:6px; line-height:1.45}

.hero__media{
  position:relative;
  border-radius: 28px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.70);
  overflow:hidden;
  padding: 14px;
}
.hero__media::after{
  content:"";
  position:absolute;
  inset: auto -80px -120px -80px;
  height: 220px;
  background: radial-gradient(closest-side, rgba(212,175,55,.45), transparent 70%);
  transform: rotate(-5deg);
  pointer-events:none;
}
.hero__media-top{border-radius: 22px; overflow:hidden; border:1px solid rgba(0,0,0,.08); background: rgba(255,255,255,.76)}
.hero__media-bottom{
  margin-top: 12px;
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.76);
}

/* Sections */
.section{padding: 24px 0}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 14px;
}
.section__title{margin:0; font-size: clamp(22px, 3vw, 32px); line-height:1.15}
.section__subtitle{margin: 8px 0 0; color: rgba(0,0,0,.74); line-height:1.55; max-width: 78ch}

.grid-3{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px}
.card{
  background: var(--card);
  border:1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
  padding: 16px;
}
.card__title{margin:0 0 8px; font-weight:1000}
.card__text{margin:0; color: rgba(0,0,0,.75); line-height:1.6}
.card__icon{
  width:44px; height:44px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,30,77,.16), rgba(0,177,199,.16), rgba(255,214,0,.22));
  border:1px solid rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:1000;
  margin-bottom: 10px;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}
.prose p{line-height:1.7; color: rgba(0,0,0,.78)}
.prose h3{margin: 18px 0 8px; font-size: 18px}
.prose ul, .prose ol{line-height:1.65; color: rgba(0,0,0,.78)}

.checklist{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.checklist li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  background: var(--card2);
  border:1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 12px 12px;
}
.checklist li::before{
  content:"✓";
  flex:0 0 auto;
  width:28px; height:28px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,177,199,.18);
  border:1px solid rgba(0,177,199,.26);
  font-weight:1000;
}

/* Keyword pills (for organic query variants) */
.pill-list{list-style:none; padding:0; margin:0; display:flex; flex-wrap:wrap; gap:10px}
.pill{display:inline-flex; align-items:center; padding:8px 12px; border-radius:999px;
  background: linear-gradient(135deg, rgba(255,30,77,.14), rgba(0,177,199,.14), rgba(255,214,0,.22));
  border:1px solid rgba(0,0,0,.08);
  font-weight:950; font-size:13px;
}
.pill--soft{background: rgba(255,255,255,.70)}

/* Pro tip callout */
.callout{background: linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.66)); border:1px solid rgba(0,0,0,.08); border-radius: var(--radius); box-shadow: 0 16px 34px rgba(0,0,0,.10); padding: 16px}
.callout__title{margin:0 0 8px; font-weight:1000}
.callout__text{margin:0; color: rgba(0,0,0,.78); line-height:1.65}

.table-wrap{
  overflow-x:auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border:1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
}
.table{width:100%; border-collapse:collapse; min-width: 760px}
.table th, .table td{padding:12px 12px; border-bottom:1px solid rgba(0,0,0,.08); text-align:left; vertical-align:top}
.table th{
  background: linear-gradient(135deg, rgba(255,214,0,.40), rgba(0,177,199,.16));
  font-weight:1000;
}
.table tr:last-child td{border-bottom:none}
.table td{color: rgba(0,0,0,.78); line-height:1.5}

/* Stacked tables on small screens */
@media (max-width: 760px){

  .table-wrap{overflow:visible; border:0; box-shadow:none; background:transparent}
  .table thead{display:none}
  .table, .table tbody, .table tr, .table td{display:block; width:100%}
  .table{min-width:0}
  .table tr{
    background: var(--card);
    border:1px solid rgba(0,0,0,.08);
    border-radius: var(--radius);
    box-shadow: 0 16px 34px rgba(0,0,0,.10);
    padding: 12px 14px;
    margin-bottom: 12px;
  }
  .table td{border:0; border-bottom:1px dashed rgba(0,0,0,.14); padding: 10px 0}
  .table td:last-child{border-bottom:0; padding-bottom:0}
  .table td::before{
    content: attr(data-label);
    display:block;
    font-size:12px;
    font-weight:1000;
    letter-spacing:.12em;
    text-transform:uppercase;
    color: rgba(0,0,0,.58);
    margin-bottom: 6px;
  }
}

.faq{display:grid; gap:12px}
.faq details{
  background: var(--card);
  border:1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
  padding: 12px 14px;
}
.faq summary{cursor:pointer; font-weight:1000; list-style:none}
.faq summary::-webkit-details-marker{display:none}
.faq details[open] summary{color: var(--hot)}
.faq .faq__text{margin: 10px 0 0; color: rgba(0,0,0,.78); line-height:1.65}

.cta-band{padding: 18px 0 36px}
.cta-band__box{
  background:
    radial-gradient(700px 220px at 10% 0%, rgba(255,30,77,.20), transparent 60%),
    radial-gradient(700px 220px at 90% 0%, rgba(0,177,199,.22), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,255,255,.62));
  border:1px solid rgba(0,0,0,.08);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 18px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:center;
}
.cta-band__title{margin:0; font-size: 22px; line-height:1.15}
.cta-band__text{margin:10px 0 0; color: rgba(0,0,0,.78); line-height:1.6}
.cta-band__actions{display:flex; gap:12px; justify-content:flex-end; flex-wrap:wrap}

/* Footer */
.site-footer{
  border-top:1px solid rgba(0,0,0,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.45));
  padding: 28px 0 18px;
}
.footer__grid{display:grid; grid-template-columns: 1.2fr .9fr .9fr; gap:16px}
.footer__title{font-weight:1000; margin-bottom:8px}
.footer__text{margin:0 0 10px; color: rgba(0,0,0,.78); line-height:1.6}
.footer__muted{color: rgba(0,0,0,.64)}
.footer__links{list-style:none; padding:0; margin:0; display:grid; gap:8px}
.footer__links a{text-decoration:none}
.footer__links a:hover{text-decoration:underline}
.footer__bottom{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top:1px dashed rgba(0,0,0,.14);
  font-size:13px;
  color: rgba(0,0,0,.72);
  flex-wrap:wrap;
}

/* Toast */
.toast{
  position:fixed;
  left:16px;
  bottom:16px;
  z-index:120;
  background: rgba(27,27,27,.92);
  color:#fff;
  padding: 12px 14px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.24);
  transform: translateY(18px);
  opacity:0;
  pointer-events:none;
  transition: opacity .2s ease, transform .2s ease;
  max-width: calc(100vw - 32px);
}
.toast.is-show{opacity:1; transform: translateY(0)}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr}
  .hero__kpis{grid-template-columns: 1fr}
  .grid-3{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .cta-band__box{grid-template-columns: 1fr}
  .cta-band__actions{justify-content:flex-start}
  .footer__grid{grid-template-columns: 1fr}
}

@media (max-width: 640px){
  .header__top{flex-wrap:wrap; padding:10px 0}
  .brand{min-width:0; flex: 1 1 auto}
  .brand__logo{width:40px; height:40px; border-radius:14px}
  .brand__sub{display:none}

  .header__tools{
    width:100%;
    justify-content:flex-start;
    flex-wrap:wrap;
    gap:8px;
  }
  .lang{order:1}
  .lang a{padding:7px 9px}
  .menu-btn{order:2; margin-left:auto; padding:10px 12px}
  .menu-btn span:last-child{display:none}
  .header__cta{
    order:3;
    width:100%;
    flex:1 0 100%;
    display:flex;
    gap:10px;
  }
  .header__cta .btn{flex:1 1 0; min-width:0}

  .promo-strip__row{flex-direction:column; align-items:flex-start; padding:8px 0}
  .promo-strip__note{display:none}
}


@media (prefers-reduced-motion: reduce){
  .btn--shine::before{animation:none}
  .drawer-overlay, .drawer{transition:none}
  .toast{transition:none}
}
