/* ═══════════════════════════════════════════════════════
   casinoclaster.pro — México
   Aesthetic: Aztec Dusk — Terracotta · Turquoise · Sand
═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --terra:   #E8521A;
  --terra2:  #F07840;
  --teal:    #00B4A0;
  --teal2:   #00D4BE;
  --sand:    #F5E6C8;
  --dark:    #0C0A08;
  --ink:     #121008;
  --card:    #1A1610;
  --card2:   #221E14;
  --border:  rgba(232,82,26,0.14);
  --borderT: rgba(0,180,160,0.14);
  --text:    #EDE8DF;
  --muted:   #7A7060;
  --green:   #2ECC71;
  --red:     #E74C3C;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--text); font-family: 'Inter', sans-serif; font-weight: 400; overflow-x: hidden; }

/* texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 0% 30%, rgba(232,82,26,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 70%, rgba(0,180,160,0.06) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

/* ─── AGE GATE ─── */
#age-gate { position: fixed; inset: 0; background: rgba(12,10,8,0.97); z-index: 10000; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(10px); }
.ag-box { background: var(--card); border: 1px solid var(--border); border-top: 3px solid var(--terra); border-radius: 16px; padding: 50px 42px; max-width: 460px; width: 92%; text-align: center; }
.ag-sun { font-size: 56px; margin-bottom: 18px; display: block; animation: sunSpin 8s linear infinite; }
@keyframes sunSpin { to { filter: hue-rotate(30deg); } }
.ag-box h2 { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: var(--terra2); margin-bottom: 10px; letter-spacing: -.3px; }
.ag-box p { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 28px; }
.ag-btns { display: flex; gap: 12px; }
.ag-yes, .ag-no { flex: 1; padding: 14px; border-radius: 10px; border: none; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; transition: all .2s; }
.ag-yes { background: linear-gradient(135deg, var(--terra), var(--terra2)); color: #fff; box-shadow: 0 6px 20px rgba(232,82,26,0.35); }
.ag-yes:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,82,26,0.5); }
.ag-no { background: transparent; border: 1px solid var(--border); color: var(--text); }
.ag-no:hover { border-color: var(--terra); }
.ag-note { margin-top: 18px; font-size: 11px; color: var(--muted); line-height: 1.6; }

/* ─── RG BAR ─── */
#rg-bar { background: #0A0806; border-bottom: 1px solid rgba(231,76,60,0.25); padding: 9px 24px; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 12.5px; color: #FFAAAA; text-align: center; flex-wrap: wrap; position: sticky; top: 0; z-index: 500; }
#rg-bar strong { color: var(--red); }
#rg-bar a { color: #FFAAAA; text-decoration: underline; }

/* ─── HEADER ─── */
header { display: flex; align-items: center; justify-content: space-between; padding: 20px 52px; border-bottom: 1px solid var(--border); position: relative; z-index: 10; background: rgba(12,10,8,0.7); backdrop-filter: blur(12px); }
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-icon { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, var(--terra), var(--terra2)); display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: 0 4px 14px rgba(232,82,26,0.4); }
.logo-name { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--terra2); letter-spacing: -.3px; }
.logo-tld { color: var(--muted); font-weight: 400; font-family: 'Inter', sans-serif; font-size: 14px; }
nav { display: flex; align-items: center; gap: 4px; }
nav a { color: var(--muted); text-decoration: none; font-size: 13.5px; font-weight: 500; padding: 8px 16px; border-radius: 8px; transition: all .2s; }
nav a:hover, nav a.active { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-cta { background: linear-gradient(135deg, var(--terra), var(--terra2)); color: #fff !important; font-weight: 600 !important; box-shadow: 0 4px 14px rgba(232,82,26,0.3); }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(232,82,26,0.45); }
.hamburger { display: none; background: none; border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; }
.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 14px 20px; border-bottom: 1px solid var(--border); background: var(--ink); position: relative; z-index: 9; }
.mobile-nav a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500; padding: 10px 14px; border-radius: 8px; transition: all .2s; }
.mobile-nav a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.mobile-nav.open { display: flex; }

/* ─── HERO ─── */
.hero { min-height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; position: relative; overflow: hidden; z-index: 1; }
.hero-inner { max-width: 880px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,82,26,0.1); border: 1px solid rgba(232,82,26,0.22); border-radius: 40px; padding: 7px 20px; font-size: 12px; color: var(--terra2); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 30px; }
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: dotPulse 1.5s ease-in-out infinite; }
@keyframes dotPulse { 0%,100%{opacity:1}50%{opacity:.15} }
.hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(40px, 8vw, 96px); font-weight: 800; line-height: .92; letter-spacing: -2px; margin-bottom: 24px; }
.hero h1 .l1 { display: block; color: var(--text); }
.hero h1 .l2 { display: block; background: linear-gradient(135deg, var(--terra), var(--terra2), #FFB060); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: clamp(15px, 2vw, 18px); color: var(--muted); max-width: 580px; margin: 0 auto 44px; line-height: 1.75; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-main { background: linear-gradient(135deg, var(--terra), var(--terra2)); color: #fff; border: none; padding: 16px 42px; border-radius: 12px; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; cursor: pointer; transition: all .25s; box-shadow: 0 8px 26px rgba(232,82,26,0.35); }
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(232,82,26,0.5); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--borderT); padding: 16px 42px; border-radius: 12px; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 500; cursor: pointer; transition: all .2s; }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal2); }
.hero-fine { margin-top: 26px; font-size: 12px; color: var(--muted); }

/* ─── TICKER ─── */
.ticker { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(232,82,26,0.03); padding: 10px 0; }
.ticker-inner { display: flex; animation: tickRun 28s linear infinite; width: max-content; }
.ti { white-space: nowrap; font-size: 12.5px; color: var(--muted); padding: 0 28px; }
.ti em { color: var(--terra2); font-style: normal; margin-right: 8px; }
@keyframes tickRun { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── STATS ─── */
.stats { display: flex; justify-content: center; border-bottom: 1px solid var(--border); background: var(--ink); }
.stat { flex: 1; max-width: 220px; padding: 28px 16px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-n { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; background: linear-gradient(135deg, var(--terra2), #FFB060); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-l { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ─── LAYOUT ─── */
.sec { padding: 96px 52px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.dark-wrap { background: var(--ink); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.wrap { padding: 96px 0; position: relative; z-index: 1; }
.stag { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--terra2); margin-bottom: 12px; }
.sh2 { font-family: 'Syne', sans-serif; font-size: clamp(26px, 4vw, 46px); font-weight: 800; letter-spacing: -1px; line-height: 1.1; margin-bottom: 14px; }
.ssub { color: var(--muted); font-size: 15px; line-height: 1.75; max-width: 540px; }

/* ─── CASINO CARDS ─── */
.casino-stack { display: flex; flex-direction: column; gap: 20px; margin-top: 44px; }

.cc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: border-color .25s, box-shadow .25s;
}
.cc:hover { border-color: rgba(232,82,26,0.35); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.cc.featured { border-color: rgba(232,82,26,0.3); }
.cc.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--terra), var(--terra2), #FFB060);
}
.cc-rank { display: inline-block; padding: 6px 16px 0 20px; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.cc-inner { display: grid; grid-template-columns: 140px 1fr auto; gap: 28px; padding: 20px 24px 24px; align-items: center; }
.cc-logo { background: var(--card2); border: 1px solid var(--border); border-radius: 12px; padding: 20px 16px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; min-height: 110px; }
.cc-logo-name { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--terra2); letter-spacing: -.5px; }
.cc-logo-sub { font-size: 11px; color: var(--muted); }
.cc-score-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.cc-score { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; color: var(--terra2); }
.cc-stars { color: var(--terra); font-size: 14px; letter-spacing: 1px; }
.cc-name { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.cc-bonus { font-size: 15px; font-weight: 600; color: var(--terra2); margin-bottom: 12px; }
.cc-bonus small { color: var(--muted); font-size: 12px; font-weight: 400; }
.cc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: 11px; padding: 3px 10px; border-radius: 20px; background: rgba(255,255,255,0.05); color: var(--muted); border: 1px solid rgba(255,255,255,0.08); }
.tag.tg { background: rgba(0,180,160,0.1); color: var(--teal2); border-color: rgba(0,180,160,0.2); }
.tag.ta { background: rgba(232,82,26,0.1); color: var(--terra2); border-color: rgba(232,82,26,0.2); }
.cc-actions { display: flex; flex-direction: column; gap: 10px; min-width: 160px; }
.btn-go { display: block; text-align: center; background: linear-gradient(135deg, var(--terra), var(--terra2)); color: #fff; text-decoration: none; padding: 13px 24px; border-radius: 10px; font-size: 14px; font-weight: 600; transition: all .2s; box-shadow: 0 4px 16px rgba(232,82,26,0.3); }
.btn-go:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,82,26,0.5); }
.btn-rev { display: block; text-align: center; background: transparent; color: var(--muted); border: 1px solid var(--border); padding: 11px 24px; border-radius: 10px; font-size: 13px; font-weight: 500; text-decoration: none; transition: all .2s; }
.btn-rev:hover { border-color: var(--terra); color: var(--terra2); }

/* ─── CASINO PAGE (individual) ─── */
.casino-page-header { background: var(--ink); border-bottom: 1px solid var(--border); padding: 56px 52px; position: relative; overflow: hidden; z-index: 1; }
.casino-page-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--terra), var(--terra2), transparent); }
.bc { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.bc a { color: var(--muted); text-decoration: none; }
.bc a:hover { color: var(--terra2); }
.bc .sep { margin: 0 8px; }
.casino-page-header h1 { font-family: 'Syne', sans-serif; font-size: clamp(28px, 4.5vw, 52px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 10px; }
.casino-page-header .ph-sub { color: var(--muted); font-size: 15px; max-width: 600px; line-height: 1.7; }
.score-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,82,26,0.12); border: 1px solid rgba(232,82,26,0.25); border-radius: 10px; padding: 8px 16px; margin-top: 16px; }
.score-badge .s-num { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: var(--terra2); }
.score-badge .s-stars { color: var(--terra); font-size: 16px; }

/* review tables */
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.rv-box { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.rv-box h4 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 14px; color: var(--terra2); }
.rv-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 13.5px; }
.rv-row:last-child { border-bottom: none; }
.rv-row span:first-child { color: var(--muted); }
.rv-row span:last-child { font-weight: 500; }
.rv-row .best { color: var(--teal2); }
.rv-row .warn { color: var(--terra2); }

/* pros/cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.pros, .cons { background: var(--card); border-radius: 14px; padding: 22px; }
.pros { border: 1px solid rgba(46,204,113,0.15); }
.cons { border: 1px solid rgba(231,76,60,0.15); }
.pros h4 { color: var(--green); font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.cons h4 { color: var(--red); font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.pros li, .cons li { list-style: none; font-size: 13.5px; color: var(--muted); padding: 5px 0; padding-left: 18px; position: relative; line-height: 1.5; }
.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: var(--red); }

/* ─── FEATURES ─── */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(270px,1fr)); gap: 20px; margin-top: 44px; }
.fc { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 26px; transition: border-color .2s; }
.fc:hover { border-color: rgba(232,82,26,0.3); }
.fi { width: 48px; height: 48px; border-radius: 12px; background: rgba(232,82,26,0.1); border: 1px solid rgba(232,82,26,0.18); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; }
.ft { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 7px; }
.fd { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ─── RG SECTION ─── */
.rg-block { background: linear-gradient(135deg,#100806,#060A0A); border-top: 1px solid rgba(231,76,60,0.18); border-bottom: 1px solid rgba(231,76,60,0.18); padding: 72px 52px; position: relative; z-index: 1; }
.rg-inner { max-width: 960px; margin: 0 auto; }
.rg-head { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.rg-orb { width: 50px; height: 50px; border-radius: 50%; background: rgba(231,76,60,0.1); border: 1px solid rgba(231,76,60,0.28); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.rg-head h2 { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 700; color: #FFAAAA; }
.rg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 26px; }
.ri { background: rgba(231,76,60,0.05); border: 1px solid rgba(231,76,60,0.1); border-radius: 10px; padding: 18px; }
.ri h4 { font-size: 13.5px; font-weight: 600; color: #FFAAAA; margin-bottom: 6px; }
.ri p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.rg-lines { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.rl { background: rgba(231,76,60,0.07); border: 1px solid rgba(231,76,60,0.18); color: #FFAAAA; text-decoration: none; padding: 9px 16px; border-radius: 8px; font-size: 13px; transition: background .2s; }
.rl:hover { background: rgba(231,76,60,0.15); }

/* ─── COMPARADOR ─── */
.compare-wrap { overflow-x: auto; margin-top: 28px; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.compare-table th { background: var(--card2); padding: 12px 16px; text-align: left; font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--terra2); border-bottom: 1px solid var(--border); }
.compare-table th:first-child { color: var(--muted); font-weight: 500; }
.compare-table td { padding: 11px 16px; border-bottom: 1px solid rgba(255,255,255,0.04); color: var(--text); vertical-align: middle; }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.compare-table .cat-row td { background: var(--card2); color: var(--muted); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 16px; }
.compare-table .check { color: var(--green); font-weight: 700; }
.compare-table .cross { color: var(--red); }
.compare-table .best { color: var(--teal2); font-weight: 600; }
.compare-table .worst { color: var(--terra2); }

/* step cards */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(250px,1fr)); gap: 18px; margin-top: 36px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 24px; transition: border-color .2s; }
.step:hover { border-color: rgba(232,82,26,0.3); }
.step-ico { font-size: 28px; margin-bottom: 12px; }
.step h4 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ─── FAQ ─── */
.faq-list { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q { padding: 18px 20px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 14.5px; transition: color .2s; }
.faq-q:hover { color: var(--terra2); }
.faq-icon { color: var(--terra); font-size: 18px; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 20px 18px; font-size: 14px; color: var(--muted); line-height: 1.7; display: none; }
.faq-item.open .faq-a { display: block; }

/* RG strip */
.rg-strip { background: linear-gradient(135deg,rgba(231,76,60,0.07),rgba(0,180,160,0.05)); border: 1px solid rgba(231,76,60,0.15); border-radius: 16px; padding: 36px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.rg-strip h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.rg-strip p { color: var(--muted); font-size: 14px; max-width: 520px; line-height: 1.65; }

/* ─── DISCLAIMER ─── */
.disc { background: var(--ink); border-top: 1px solid var(--border); padding: 38px 52px; position: relative; z-index: 1; }
.disc-in { max-width: 960px; margin: 0 auto; }
.disc h3 { font-size: 10.5px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; margin-bottom: 10px; }
.disc p { font-size: 11.5px; color: var(--muted); line-height: 1.75; margin-bottom: 7px; }

/* ─── FOOTER ─── */
footer { background: var(--dark); border-top: 1px solid var(--border); padding: 56px 52px 36px; position: relative; z-index: 1; }
.fg { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.fbrand p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-top: 12px; max-width: 250px; }
.fcol h5 { font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--terra2); margin-bottom: 14px; }
.fcol a { display: block; font-size: 13px; color: var(--muted); text-decoration: none; margin-bottom: 8px; transition: color .2s; }
.fcol a:hover { color: var(--text); }
.fb { max-width: 1200px; margin: 0 auto; border-top: 1px solid var(--border); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.fb p { font-size: 11.5px; color: var(--muted); }
.age-pill { background: rgba(232,82,26,0.1); border: 1px solid var(--border); border-radius: 6px; padding: 4px 12px; font-size: 12px; color: var(--terra2); font-weight: 600; }

/* ─── PAGE HERO ─── */
.phero { background: var(--ink); border-bottom: 1px solid var(--border); padding: 64px 52px 56px; position: relative; overflow: hidden; z-index: 1; }
.phero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--terra), var(--terra2), transparent); }
.phero h1 { font-family: 'Syne', sans-serif; font-size: clamp(28px, 5vw, 52px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 12px; }
.phero p { color: var(--muted); font-size: 15px; max-width: 600px; line-height: 1.75; }

/* ─── SCROLL TOP ─── */
#stb { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg,var(--terra),var(--terra2)); border: none; color: #fff; font-size: 18px; cursor: pointer; display: none; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(232,82,26,0.4); z-index: 100; }

/* ─── REVEAL ─── */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.rv.vis { opacity: 1; transform: translateY(0); }

/* ─── MOBILE ─── */
@media(max-width:900px) { .cc-inner { grid-template-columns: 1fr; } .cc-actions { flex-direction: row; } }
@media(max-width:768px) {
  header { padding: 14px 20px; } nav .nav-links { display: none; } .hamburger { display: flex; }
  .hero { padding: 60px 20px; min-height: auto; } .sec { padding: 64px 20px; }
  .rg-block, .disc, footer { padding: 44px 20px; }
  .fg { grid-template-columns: 1fr 1fr; } .rg-grid { grid-template-columns: 1fr; }
  .stats { flex-wrap: wrap; } .stat { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .phero { padding: 44px 20px 36px; } .review-grid, .pros-cons { grid-template-columns: 1fr; }
}
@media(max-width:480px) { .fg { grid-template-columns: 1fr; } }
