:root{
  --bg: #fffaf2;
  --bg-soft: #fff2d9;
  --bg-accent: #ffe0b2;
  --bg-strong: #ffd166;
  --card: #ffffff;
  --text: #1f2937;
  --text-soft: #5b6470;
  --muted: #7a8491;
  --border: rgba(31, 41, 55, 0.08);

  --primary: #ff7a00;
  --primary-dark: #e76600;
  --secondary: #ffffff;
  --secondary-border: rgba(255, 122, 0, 0.22);

  --green: #12b76a;
  --blue: #2f80ed;
  --yellow: #ffd54f;
  --pink: #ff78b9;

  --radius: 22px;
  --radius-sm: 16px;
  --container: 1180px;
  --shadow: 0 18px 40px rgba(255, 122, 0, 0.10);
}

*{ box-sizing:border-box; }
/*html, body { height:100%; }*/

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 209, 102, 0.45), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(255, 120, 185, 0.22), transparent 20%),
    radial-gradient(circle at 85% 85%, rgba(47, 128, 237, 0.14), transparent 22%),
    linear-gradient(180deg, #fff8ef 0%, #fff6ea 45%, #fffaf5 100%);
  line-height:1.55;
}
body{
  padding-top:72px;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.narrow{
  max-width: 920px;
  margin: 0 auto;
}
.center{
  text-align:center;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:8px;
  background:#111;
  color:#fff;
  padding:10px 12px;
  border-radius:10px;
  z-index:999;
}
.skip-link:focus{ left:12px; }

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:50;
  background:rgba(255, 250, 242, 0.82);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(31,41,55,0.06);
  transition:transform .28s ease;
}
.site-header.hide{
  transform:translateY(-100%);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}
.brand-link{
  display:inline-flex;
  align-items:center;
  color:inherit;
  text-decoration:none;
}
.brand-link:hover{ text-decoration:none; }

.logo{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  background:linear-gradient(135deg, #ff9f43, #ffd166);
  color:#ffffff;
  box-shadow:0 12px 25px rgba(255,122,0,0.22);
}
.brand-text{ display:flex; flex-direction:column; }
.brand-name{ font-weight:850; font-size:14px; }
.brand-tag{ font-size:12px; color:var(--muted); }

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  font-size:14px;
  color:var(--text-soft);
}
.nav a:hover{
  color:var(--text);
  text-decoration:none;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:800;
  cursor:pointer;
  text-decoration:none !important;
  transition:transform .08s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:active{ transform:translateY(1px); }
.btn-top {
  color: #252525 !important;
}
.btn-primary{
  background:linear-gradient(135deg, var(--primary), #ff9a2f);
  color:#fff;
  box-shadow:0 16px 30px rgba(255,122,0,0.22);
}
.btn-primary:hover{
  background:linear-gradient(135deg, var(--primary-dark), #ff8a1c);
}

.btn-secondary{
  /*background:#fff;*/
  background: #fffaf3;
  color:var(--primary);
  border-color:var(--secondary-border);
}
.btn-secondary:hover{
  background:#fff5ea;
}

.btn-sm{ padding:10px 12px; font-size:13px; }
.btn-lg{ padding:15px 20px; font-size:16px; }
.btn-block{ width:100%; }

a:focus-visible,
button:focus-visible{
  outline:3px solid rgba(47,128,237,0.22);
  outline-offset:3px;
  border-radius:10px;
}

/* HERO */
.hero-sun{
  padding:72px 0 74px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 209, 102, 0.45), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(255, 120, 185, 0.22), transparent 20%),
    radial-gradient(circle at 85% 85%, rgba(47, 128, 237, 0.14), transparent 22%),
    linear-gradient(180deg, #fff8ef 0%, #fff6ea 45%, #fffaf5 100%);
}
.hero-sun-inner{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:36px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:#fff1dc;
  color:#ff7a00;
  font-size:12px;
  font-weight:900;
  letter-spacing:0.08em;
  margin-bottom:16px;
}
.hero-copy h1{
  font-size:clamp(38px, 5vw, 66px);
  line-height:1.02;
  letter-spacing:-0.035em;
  margin:0 0 16px;
  max-width:14ch;
}
.hero-lead{
  font-size:21px;
  line-height:1.4;
  color:#273447;
  margin:0 0 12px;
  font-weight:700;
  max-width:700px;
}
.hero-text{
  font-size:18px;
  color:var(--text-soft);
  margin:0 0 18px;
  max-width:720px;
}
.hero-buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:24px 0 21px;
}
.hero-buttons-center{
  justify-content:center;
}
.mini-points{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:21px;
}
.mini-points span{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  /*background:rgba(255,255,255,0.78);*/
  background: rgb(255 246 230);
  color:#46505c;
  font-size:13px;
  font-weight:700;
  box-shadow:0 10px 20px rgba(0,0,0,0.04);
}

.hero-visual{
  display:flex;
  justify-content:center;
}
.sun-card{
  width:min(100%, 420px);
  background:linear-gradient(180deg, #ffffff, #fff8ef);
  border:1px solid rgba(255,122,0,0.12);
  border-radius:30px;
  padding:24px;
  box-shadow:
    0 28px 60px rgba(255, 122, 0, 0.14),
    0 8px 20px rgba(255, 209, 102, 0.16);
  position:relative;
}
.sun-card::before{
  content:"";
  position:absolute;
  top:-18px;
  right:-18px;
  width:72px;
  height:72px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,213,79,0.92), rgba(255,213,79,0.22));
  filter:blur(2px);
}
.sun-badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#fff0cc;
  color:#ff7a00;
  font-size:12px;
  font-weight:900;
  margin-bottom:16px;
}
.sun-price{
  font-size:52px;
  font-weight:950;
  line-height:1;
  letter-spacing:-0.04em;
  color:#1f2937;
}
.sun-title{
  margin-top:8px;
  font-size:22px;
  font-weight:850;
}
.sun-card ul{
  margin:18px 0 22px;
  padding-left:18px;
  display:grid;
  gap:8px;
  color:#52606f;
}

.sun-list{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:10px;
}

.sun-list li{
  position:relative;
  padding-left:28px;
  color:#4e5967;
  font-weight:700;
}

.sun-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:0.45em;
  width:12px;
  height:12px;
  border-radius:50%;
  background:linear-gradient(135deg, #ffd166, #ff9f43);
  box-shadow:0 6px 14px rgba(255,122,0,0.18);
}

/* JOY STRIP */
.joy-strip{
  padding:16px 0;
  margin-bottom: 32px;
  background:linear-gradient(90deg, #ff9a3d, #ffd166, #ff78b9, #7bdff6);
}
.joy-strip-inner{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  text-align:center;
  color:#fff;
  font-weight:900;
  font-size:15px;
}

/* GENERAL */
.section{
  padding:62px 0;
}
.section h2{
  font-size:36px;
  line-height:1.08;
  letter-spacing:-0.025em;
  margin:0 0 20px;
}
.section h3{
  margin:0 0 10px;
  font-size:20px;
}
.section-intro{
  font-size:18px;
  color:var(--text-soft);
  margin:0 0 18px;
}

.section-splash{
  background:
    linear-gradient(180deg, rgba(255, 209, 102, 0.14), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 80% 20%, rgba(255,120,185,0.16), transparent 22%);
}
.section-soft{
  background:rgba(255,255,255,0.42);
}
.section-price{
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 209, 102, 0.26), transparent 28%),
    linear-gradient(180deg, #fff3db 0%, #fff8ef 100%);
}

.bubble-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  margin-top:22px;
}
.bubble-card{
  background:#fff;
  border-radius:28px;
  padding:24px;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,122,0,0.08);
}

.logic-box{
  margin-top:24px;
  padding:18px 20px;
  border-radius:22px;
  background:linear-gradient(135deg, #fff4df, #fff8f0);
  background: linear-gradient(135deg, #fff, #fff6ea);
  /*background: linear-gradient(135deg, #ffffff, #fff8f0);*/
  /*background: #fffaf4;*/
  border:1px solid rgba(255,122,0,0.08);
  box-shadow:0 14px 28px rgba(255,122,0,0.08);
}

.flow-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  margin-top:26px;
}
.flow-step{
  background:#ffffff;
  border-radius:26px;
  padding:24px;
  border:1px solid rgba(31,41,55,0.06);
  box-shadow:0 16px 30px rgba(0,0,0,0.05);
}
.flow-num{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, #ffd166, #ff9f43);
  color:#fff;
  font-weight:900;
  margin-bottom:14px;
}

.split-section{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:24px;
  align-items:start;
}
.clean-list{
  display:grid;
  gap:12px;
  margin:18px auto 0;
  text-align:center;
  max-width:640px;
}
.clean-list div{
  font-weight:700;
  color:#4e5967;
}

.quote-box{
  background:linear-gradient(135deg, #fff, #fff6ea);
  border:1px solid rgba(255,122,0,0.08);
  border-radius:26px;
  padding:24px;
  box-shadow:var(--shadow);
}
.quote-box p{
  margin:0 0 12px;
}
.quote-box p:last-child{
  margin-bottom:0;
}

.cards-4{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}
.soft-card{
  background:#ffffff;
  border-radius:24px;
  padding:22px;
  box-shadow:0 16px 28px rgba(0,0,0,0.05);
  border:1px solid rgba(31,41,55,0.05);
}

.price-box{
  background:linear-gradient(180deg, #ffffff, #fff8ef);
  border-radius:32px;
  padding:34px 28px;
  box-shadow:
    0 26px 60px rgba(255,122,0,0.14),
    0 10px 20px rgba(0,0,0,0.05);
  text-align:center;
  border:1px solid rgba(255,122,0,0.08);
}
.price-label{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#fff0cc;
  color:#ff7a00;
  font-size:12px;
  font-weight:900;
  margin-bottom:14px;
}
.big-price{
  font-size:64px;
  line-height:1;
  font-weight:950;
  color:#1f2937;
  letter-spacing:-0.05em;
  margin:12px 0;
}
.price-copy{
  font-size:18px;
  color:var(--text-soft);
  max-width:700px;
  margin:0 auto 12px;
}
.center-note{
  text-align:center;
}
.micro-note{
  margin-top:14px;
  color:var(--muted);
  font-size:14px;
}

.faq-list{
  display:grid;
  gap:12px;
  margin-top:18px;
}
.faq-item{
  border:1px solid rgba(31,41,55,0.06);
  border-radius:20px;
  background:#fff;
  padding:14px 16px;
  box-shadow:0 10px 20px rgba(0,0,0,0.04);
}
.faq-item summary{
  cursor:pointer;
  font-weight:850;
  color:var(--text);
  list-style:none;
  outline:none;
}
.faq-item summary::-webkit-details-marker{
  display:none;
}
.faq-item summary::after{
  content:"+";
  float:right;
  font-weight:900;
  color:var(--muted);
}
.faq-item[open] summary::after{
  content:"–";
}
.faq-body{
  margin-top:10px;
  color:var(--text-soft);
}
.faq-body p{
  margin:0 0 10px 0;
}
.faq-body p:last-child{
  margin-bottom:0;
}

.final-sun{
  padding:68px 0 78px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 209, 102, 0.20), transparent 22%),
    radial-gradient(circle at 80% 40%, rgba(255, 120, 185, 0.16), transparent 18%);
}

/* FOOTER */
.site-footer{
  padding:20px 0;
  border-top:1px solid rgba(31,41,55,0.06);
  background:rgba(255,255,255,0.55);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer-brand{
  font-weight:850;
}
.footer-note{
  color:var(--muted);
  font-size:13px;
}
.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.footer-links a{
  color:var(--muted);
  font-size:13px;
}
.footer-links a:hover{
  color:var(--text);
  text-decoration:none;
}

/* MOBILE NAV */
.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  padding:0;
  border:1px solid rgba(31,41,55,0.08);
  border-radius:12px;
  background:#fff;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.menu-toggle:hover{
  background:#fff7eb;
}
.menu-toggle-bar{
  display:block;
  width:18px;
  height:2px;
  background:var(--text);
  border-radius:999px;
}
.mobile-nav{
  display:none;
  border-top:1px solid rgba(31,41,55,0.06);
  background:rgba(255,250,242,0.98);
  backdrop-filter:blur(10px);
}
.mobile-nav.is-open{
  display:block;
}
.mobile-nav-inner{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:14px 0 18px;
}
.mobile-nav a{
  font-size:15px;
  padding:10px 0;
  text-decoration:none;
}
.mobile-nav a.btn{
  margin-top:4px;
  width:100%;
  justify-content:center;
}

/* ===== Privacy ===== */
.legal {
  max-width:860px;
}
section.privacy h1 {
  font-size:clamp(38px, 5vw, 66px);
  line-height:1.02;
  letter-spacing:-0.035em;
  margin:0 0 16px;
  /*max-width:10ch;*/
}
.legal-hero{
  margin-bottom:24px;
  background: rgba(255, 255, 255, 0.82);
    /*background:linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.22));*/
  border:1px solid rgba(255,122,0,0.08);
  border-radius:28px;
  padding:28px 28px 22px;
  margin-bottom:22px;
  box-shadow:0 14px 30px rgba(255,122,0,0.06);
}
.legal-card a {
  font-weight: 600;
  color: black;
}
.legal-card{
  background:rgba(255,255,255,0.82);
  border:1px solid rgba(31,41,55,0.06);
  border-radius:28px;
  padding:30px 28px;
  box-shadow:0 18px 40px rgba(0,0,0,0.05);
  backdrop-filter:blur(10px);
}

.legal-card h2{
  margin:30px 0 14px;
  font-size:32px;
}

.legal-card h2:first-child{
  margin-top:0;
}

.legal-card h3{
  margin:20px 0 10px;
}

.legal-card p,
.legal-card li{
  color:var(--text-soft);
}

.legal-card ul{
  margin:12px 0 18px;
  padding-left:20px;
}

/* ===== Privacy refinements ===== */
.legal-hero-privacy{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.74));
}

.legal-card-privacy{
  max-width:860px;
  margin:0 auto;
}

.legal-card-privacy h2{
  letter-spacing:-0.02em;
}

.legal-card-privacy p + h2,
.legal-card-privacy ul + h2{
  padding-top:4px;
}

/* ===== Terms refinements ===== */
.legal-hero-terms{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.74));
}

.legal-hero-note{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:4px 0 16px;
  padding:8px 12px;
  border-radius:999px;
  background:#fff4df;
  color:#8a5a12;
  font-size:13px;
  font-weight:700;
}
.note2 {
  font-size:16px;
  background:#eaffdf;
  color:#1f4d1a !important;
  border:1px solid rgba(31,77,26,0.10);
}
.note3 {
  font-size: 14px;
}
.note4{
  font-size:15px;
  background:#ffe7ef;
  color:#8b214f !important;
  border:1px solid rgba(139,33,79,0.10);
}

.legal-card-terms h2{
  letter-spacing:-0.02em;
}

.legal-card-terms p + h2,
.legal-card-terms ul + h2{
  padding-top:4px;
}

/* ===== Company Info refinements ===== */
.legal-hero-imprint{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.74));
}

.legal-card-imprint{
  max-width:860px;
  margin:0 auto;
}

.legal-card-imprint h2{
  letter-spacing:-0.02em;
}

.legal-card-imprint p + h2{
  padding-top:4px;
}

/* ===== Contact ===== */
.contact-page{
  padding:72px 0 90px;
}

.contact-shell{
  max-width:760px;
  margin:0 auto;
  padding:42px 34px;
  border-radius:34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.72));
  border:1px solid rgba(255,122,0,0.08);
  box-shadow:
    0 24px 60px rgba(255,122,0,0.10),
    0 10px 24px rgba(0,0,0,0.04);
  backdrop-filter:blur(12px);
}

.contact-intro{
  text-align:center;
  margin-bottom:26px;
}

.contact-intro h1{
  font-size:clamp(46px, 6vw, 74px);
  line-height:1.02;
  letter-spacing:-0.04em;
  margin:0 0 14px;
}

.contact-lead{
  font-size:22px;
  line-height:1.4;
  font-weight:700;
  color:#273447;
  margin:0 0 8px;
}

.contact-sub{
  font-size:18px;
  color:var(--text-soft);
  margin:0 0 8px;
}

.contact-note{
  font-size:15px;
  color:var(--muted);
  margin:0;
}

.contact-form{
  display:grid;
  gap:18px;
}

.contact-field{
  display:grid;
  gap:8px;
}

.contact-field span{
  font-weight:800;
  color:var(--text);
  font-size:15px;
}

.contact-field input,
.contact-field textarea{
  width:100%;
  border:1px solid rgba(31,41,55,0.08);
  background:rgba(255,255,255,0.92);
  color:var(--text);
  border-radius:18px;
  padding:15px 16px;
  font:inherit;
  box-shadow:
    inset 0 1px 2px rgba(0,0,0,0.02),
    0 6px 14px rgba(255,122,0,0.04);
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.contact-field input:hover,
.contact-field textarea:hover{
  background:#fffdf9;
}

.contact-field input:focus,
.contact-field textarea:focus{
  outline:none;
  border-color:rgba(255,122,0,0.35);
  box-shadow:
    0 0 0 4px rgba(255,122,0,0.12),
    0 10px 24px rgba(255,122,0,0.08);
  background:#fff;
}

.contact-field textarea{
  resize:vertical;
  min-height:150px;
}

.contact-actions{
  display:flex;
  justify-content:center;
  margin-top:6px;
}

.contact-actions .btn{
  min-width:220px;
}

.companyname{
  position:absolute;
  left:-9999px;
  opacity:0;
  pointer-events:none;
}

/* ===== Checkout ===== */
.checkout-page{
  padding:72px 0 90px;
}

.checkout-shell{
  max-width:980px;
  margin:0 auto;
  padding:42px 34px;
  border-radius:34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.74));
  border:1px solid rgba(255,122,0,0.08);
  box-shadow:
    0 24px 60px rgba(255,122,0,0.10),
    0 10px 24px rgba(0,0,0,0.04);
  backdrop-filter:blur(12px);
}

.checkout-intro{
  text-align:center;
  margin-bottom:30px;
}

.checkout-intro h1{
  font-size:clamp(46px, 6vw, 74px);
  line-height:1.02;
  letter-spacing:-0.04em;
  margin:0 0 14px;
}

.checkout-lead{
  font-size:22px;
  line-height:1.4;
  font-weight:700;
  color:#273447;
  margin:0 0 8px;
}

.checkout-sub{
  font-size:18px;
  color:var(--text-soft);
  margin:0 0 8px;
}

.checkout-note{
  font-size:15px;
  color:var(--muted);
  margin:0;
}

.checkout-grid{
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:22px;
  align-items:start;
}

.checkout-summary{
  background:linear-gradient(180deg, #ffffff, #fff8ef);
  border:1px solid rgba(255,122,0,0.10);
  border-radius:28px;
  padding:24px;
  box-shadow:0 18px 36px rgba(255,122,0,0.08);
}

.checkout-summary-badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#fff0cc;
  color:#ff7a00;
  font-size:12px;
  font-weight:900;
  margin-bottom:14px;
}

.checkout-summary h2{
  margin:0 0 8px;
  font-size:28px;
  letter-spacing:-0.02em;
}

.checkout-price{
  font-size:52px;
  line-height:1;
  font-weight:950;
  letter-spacing:-0.04em;
  margin:10px 0 20px;
  color:#1f2937;
}

.checkout-summary-text{
  margin:0 0 18px;
  color:var(--text-soft);
  font-size:17px;
}

.checkout-points{
  display:grid;
  gap:10px;
  margin:0 0 20px;
}

.checkout-points div{
  padding:10px 12px;
  border-radius:16px;
  background:rgba(255,255,255,0.74);
  color:#46505c;
  font-weight:700;
  box-shadow:0 8px 18px rgba(0,0,0,0.03);
}

.checkout-steps{
  display:grid;
  gap:12px;
  margin:0 0 18px;
}

.checkout-step{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:10px;
  align-items:start;
}

.checkout-step span{
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:#fff;
  background:linear-gradient(135deg, #ffd166, #ff9f43);
}

.checkout-step p{
  margin:4px 0 0;
  color:var(--text-soft);
}

.checkout-trust{
  margin:0;
  font-size:14px;
  color:var(--muted);
}

.checkout-form-wrap{
  background:rgba(255,255,255,0.72);
  border:1px solid rgba(31,41,55,0.06);
  border-radius:28px;
  padding:24px;
  box-shadow:0 16px 34px rgba(0,0,0,0.04);
}

.checkout-form{
  display:grid;
  gap:18px;
}

.checkout-form select{
  width:100%;
  border:1px solid rgba(31,41,55,0.08);
  background:rgba(255,255,255,0.92);
  color:var(--text);
  border-radius:18px;
  padding:15px 16px;
  font:inherit;
  box-shadow:
    inset 0 1px 2px rgba(0,0,0,0.02),
    0 6px 14px rgba(255,122,0,0.04);
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.checkout-form select:hover{
  background:#fffdf9;
}

.checkout-form select:focus{
  outline:none;
  border-color:rgba(255,122,0,0.35);
  box-shadow:
    0 0 0 4px rgba(255,122,0,0.12),
    0 10px 24px rgba(255,122,0,0.08);
  background:#fff;
}

.checkout-check{
  display:grid;
  grid-template-columns:20px 1fr;
  gap:10px;
  align-items:start;
  margin-top:2px;
}

.checkout-check input{
  margin-top:3px;
}

.checkout-check span{
  color:var(--text-soft);
  font-size:14px;
}

.checkout-check a{
  font-weight:700;
  color:#111;
}

.checkout-footnote{
  text-align:center;
  margin:2px 0 0;
  color:var(--muted);
  font-size:14px;
}

/* ===== Thank You ===== */
.thankyou-page{
  padding:72px 0 90px;
}

.thankyou-shell{
  max-width:980px;
  margin:0 auto;
  padding:42px 34px;
  border-radius:34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.74));
  border:1px solid rgba(255,122,0,0.08);
  box-shadow:
    0 24px 60px rgba(255,122,0,0.10),
    0 10px 24px rgba(0,0,0,0.04);
  backdrop-filter:blur(12px);
}

.thankyou-intro{
  text-align:center;
  margin-bottom:30px;
}

.success-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(18,183,106,0.12);
  color:#0f9f5d;
  font-size:13px;
  font-weight:900;
  margin-bottom:16px;
}

.thankyou-intro h1{
  font-size:clamp(46px, 6vw, 74px);
  line-height:1.02;
  letter-spacing:-0.04em;
  margin:0 0 14px;
}

.thankyou-lead{
  font-size:24px;
  line-height:1.35;
  font-weight:800;
  color:#273447;
  margin:0 0 8px;
}

.thankyou-sub{
  font-size:18px;
  color:var(--text-soft);
  margin:0 0 8px;
}

.thankyou-note{
  font-size:15px;
  color:var(--muted);
  margin:0;
}

.thankyou-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:start;
}

.thankyou-card{
  background:linear-gradient(180deg, #ffffff, #fff8ef);
  border:1px solid rgba(255,122,0,0.10);
  border-radius:28px;
  padding:24px;
  box-shadow:0 18px 36px rgba(255,122,0,0.08);
}

.thankyou-card-soft{
  background:rgba(255,255,255,0.78);
}

.thankyou-card-badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#fff0cc;
  color:#ff7a00;
  font-size:12px;
  font-weight:900;
  margin-bottom:16px;
}

.thankyou-steps{
  display:grid;
  gap:14px;
}

.thankyou-step{
  display:grid;
  grid-template-columns:36px 1fr;
  gap:12px;
  align-items: center;
}

.thankyou-step span{
  width:36px;
  height:36px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:#fff;
  background:linear-gradient(135deg, #12b76a, #52d18b);
  box-shadow:0 8px 18px rgba(18,183,106,0.16);
}

.thankyou-step p{
  margin:5px 0 0;
  color:var(--text-soft);
}

.thankyou-points{
  display:grid;
  gap:10px;
  margin-bottom:18px;
}

.thankyou-points div{
  padding:10px 12px;
  border-radius:16px;
  background:rgba(255,255,255,0.74);
  color:#46505c;
  font-weight:700;
  box-shadow:0 8px 18px rgba(0,0,0,0.03);
}

.thankyou-trust{
  margin:0 0 20px;
  font-size:14px;
  color:var(--muted);
}

.thankyou-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.thankyou-footer-note{
  text-align:center;
  margin-top:22px;
  color:var(--muted);
  font-size:15px;
  font-weight:600;
}

/* ===== Scroll To Top ===== */
.scroll-top{
  position:fixed;
  right:22px;
  bottom:22px;
  width:54px;
  height:54px;
  border:none;
  border-radius:50%;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(255,255,255,0.88);
  color:#ff7a00;
  border:1px solid rgba(255,122,0,0.14);
  backdrop-filter:blur(12px);

  box-shadow:
    0 16px 34px rgba(255,122,0,0.16),
    0 8px 18px rgba(0,0,0,0.06);

  opacity:0;
  visibility:hidden;
  transform:translateY(12px) scale(.94);
  transition:
    opacity .22s ease,
    transform .22s ease,
    visibility .22s ease,
    box-shadow .22s ease,
    background .22s ease,
    color .22s ease,
    border-color .22s ease;

  z-index:999;
}

.scroll-top:hover{
  background:linear-gradient(135deg, #ff7a00, #ff9a2f);
  color:#fff;
  border-color:transparent;
  transform:translateY(0) scale(1.04);
  box-shadow:
    0 20px 38px rgba(255,122,0,0.24),
    0 10px 20px rgba(0,0,0,0.08);
}

.scroll-top:active{
  transform:translateY(0) scale(.98);
}

.scroll-top.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0) scale(1);
}

.scroll-top svg{
  display:block;
}


/* ===== Reviews ===== */
.reviews-section{
  background:rgba(255,255,255,0.42);
}

.reviews-head{
  max-width:760px;
  margin:0 auto;
  text-align:center;
}

.reviews-scroll{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:4px 2px 18px;
  scrollbar-width:thin;
}

.reviews-scroll::-webkit-scrollbar{
  height:8px;
}

.reviews-scroll::-webkit-scrollbar-track{
  background:rgba(255,255,255,0.55);
  border-radius:999px;
}

.reviews-scroll::-webkit-scrollbar-thumb{
  background:rgba(255,122,0,0.28);
  border-radius:999px;
}

.review-card{
  flex:0 0 calc((100% - 36px) / 3);
  min-width:280px;
  scroll-snap-align:start;
  background:linear-gradient(180deg, #ffffff, #fff8ef);
  border:1px solid rgba(255,122,0,0.08);
  border-radius:26px;
  padding:24px;
  box-shadow:0 18px 36px rgba(255,122,0,0.08);
}

.review-stars{
  color:#ff9f43;
  font-size:18px;
  letter-spacing:0.04em;
  margin-bottom:12px;
}

.review-card p{
  margin:0 0 18px;
  color:#46505c;
  font-weight:600;
}

.review-meta{
  display:grid;
  gap:2px;
}

.review-meta strong{
  color:var(--text);
  font-size:15px;
}

.review-meta span{
  color:var(--muted);
  font-size:13px;
}

.reviews-note{
  max-width:760px;
  margin:6px auto 0;
  text-align:center;
  color:var(--muted);
  font-size:14px;
}

.growth-card{
  border:1px solid rgba(255,122,0,0.08);
  box-shadow:
    0 18px 34px rgba(255,122,0,0.07),
    0 8px 18px rgba(0,0,0,0.03);
}
.growth-card h3{
  color:#1f2937;
}
.growth-card p{
  color:#52606f;
}

.money-flow-image{
  display:block;
  width:100%;
  max-width:1100px;
  height:auto;
  margin:26px auto 0;
  border-radius:30px;
  border:1px solid rgba(255,122,0,0.08);
  box-shadow:
    0 24px 60px rgba(255,122,0,0.12),
    0 10px 24px rgba(0,0,0,0.04);
}

@media (max-width:520px){
  .money-flow-image{
    border-radius:22px;
    margin-top:20px;
  }
}


/* ======================================= */


@media (max-width:520px){
  .scroll-top{
    width:48px;
    height:48px;
    right:16px;
    bottom:16px;
  }
  .scroll-top svg{
    width:16px;
    height:16px;
  }
  .review-card{
    flex-basis:88%;
    padding:20px;
    border-radius:22px;
  }
  .section{
    padding:48px 0;
  }
}

@media (min-width: 981px){
  .mobile-nav{
    display:none !important;
  }
}

@media (max-width: 980px){
  .hero-sun-inner{ grid-template-columns:1fr; }
  .joy-strip-inner{ grid-template-columns:1fr; }
  .bubble-grid{ grid-template-columns:1fr; }
  .flow-grid{ grid-template-columns:1fr; }
  .split-section{ grid-template-columns:1fr; }
  .cards-4{ grid-template-columns:1fr; }
  .desktop-nav{ display:none; }
  .menu-toggle{ display:inline-flex; }
  .checkout-grid{
    grid-template-columns:1fr;
  }
  .thankyou-grid{
    grid-template-columns:1fr;
  }
  .review-card{
    flex-basis:78%;
  }
}

@media (max-width: 520px){
  .container{ width:calc(100% - 28px); }
  .hero-sun{ padding-top:44px; }
  .btn-lg{ width:100%; }
  .hero-buttons{ gap:10px; }
  .big-price{ font-size:52px; }

  .contact-shell{
    padding:28px 18px;
    border-radius:26px;
  }

  .contact-intro h1{
    font-size:clamp(38px, 10vw, 54px);
  }

  .contact-lead{
    font-size:19px;
  }
  .checkout-shell{
    padding:28px 18px;
    border-radius:26px;
  }

  .checkout-intro h1{
    font-size:clamp(38px, 10vw, 54px);
  }

  .checkout-lead{
    font-size:19px;
  }

  .checkout-form-wrap,
  .checkout-summary{
    padding:18px;
    border-radius:22px;
  }
  .thankyou-shell{
    padding:28px 18px;
    border-radius:26px;
  }

  .thankyou-intro h1{
    font-size:clamp(38px, 10vw, 54px);
  }

  .thankyou-lead{
    font-size:20px;
  }

  .thankyou-card{
    padding:18px;
    border-radius:22px;
  }

  .thankyou-actions .btn{
    width:100%;
  }
}