/* ═══════════════════════════════════════════════
   CryptiCraft — White Background + #0A97BE Theme
   Glassmorphism on white: frosted glass cards with
   subtle blue tints over the white/light-blue background
   Font: Roboto Serif
   ═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core palette */
  --brand:        #0A97BE;
  --brand-dark:   #0880a2;
  --brand-deep:   #065f7a;
  --brand-light:  rgba(10,151,190,0.10);
  --brand-soft:   rgba(10,151,190,0.06);
  --brand-border: rgba(10,151,190,0.20);
  --brand-glow:   rgba(10,151,190,0.25);

  /* Backgrounds — white with very subtle blue tints */
  --page-bg:      #f7fbfd;
  --hero-bg:      linear-gradient(160deg, #ffffff 0%, #eef8fc 50%, #f0fafc 100%);
  --section-bg:   #f0f7fb;
  --card-bg:      #ffffff;

  /* Text */
  --txt-1:        #0d1f2d;
  --txt-2:        #2d5166;
  --txt-3:        #6a90a4;
  --txt-4:        #a8c4d0;

  /* Glass effect — white/semi-transparent over the light bg */
  --glass-bg:     rgba(255,255,255,0.70);
  --glass-border: rgba(10,151,190,0.18);
  --glass-shadow: 0 4px 24px rgba(10,151,190,0.10), 0 1px 4px rgba(0,0,0,0.04);

  /* Misc */
  --success:      #14a86a;
  --danger:       #d93535;
  --r:            14px;
  --r-sm:         8px;
  --transition:   0.22s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  font-family: 'Roboto Serif', Georgia, serif;
  background: var(--page-bg);
  color: var(--txt-1);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1380px; margin: 0 auto; padding: 0 28px; }
.hidden { display: none !important; }

/* ── Glassmorphism card ────────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  box-shadow: var(--glass-shadow);
}

/* ── Buttons ───────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  background: var(--brand) !important; color: #fff;
  font-family: 'Roboto Serif', serif; font-weight: 600; font-size: 0.92rem;
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 16px rgba(10,151,190,0.30);
  transition: all 0.25s ease;
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,151,190,0.40); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px;
  background: transparent; color: var(--brand);
  border: 1.5px solid var(--brand-border);
  font-family: 'Roboto Serif', serif; font-size: 0.9rem; font-weight: 500;
  cursor: pointer; text-decoration: none; transition: all var(--transition);
}
.btn-ghost:hover { background: var(--brand-light); border-color: var(--brand); }

.btn-unlock {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 50px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; border: none; cursor: pointer;
  font-family: 'Roboto Serif', serif; font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(10,151,190,0.35); transition: all 0.28s ease;
}
.btn-unlock:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(10,151,190,0.50); }

/* ─ HEADER ───────────────────────────── */
.header {
  position: fixed; top: 0; inset-inline: 0; z-index: 300;
  height: 68px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--brand-border);
  box-shadow: 0 2px 12px rgba(10,151,190,0.07);
}
.header-wrap {
  max-width: 1380px; margin: 0 auto; padding: 0 28px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  font-size: 1.15rem; font-weight: 700; color: var(--txt-1); letter-spacing: -0.02em;
}
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--txt-2); text-decoration: none; font-size: 0.9rem; transition: color var(--transition); font-weight: 400; }
.nav a:hover { color: var(--brand); }
.nav-cta {
  padding: 9px 22px; border-radius: 50px; background: var(--brand); color: #fff !important;
  font-weight: 600; font-size: 0.84rem;
  box-shadow: 0 3px 12px rgba(10,151,190,0.28); transition: all 0.22s ease;
}
.nav-cta:hover { background: var(--brand-dark) !important; transform: translateY(-1px); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--txt-2); border-radius: 2px; transition: var(--transition); }

/* ── HERO ─────────────────────────────── */
.hero {
  min-height: 100vh; padding-top: 68px; position: relative; overflow: hidden;
  background: var(--hero-bg);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.hblob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55;
  background: radial-gradient(circle, rgba(10,151,190,0.15) 0%, transparent 70%);
}
.b1 { width: 700px; height: 700px; top: -200px; right: -150px; animation: bf 14s ease-in-out infinite; }
.b2 { width: 450px; height: 450px; bottom: -80px; left: -80px; animation: bf 18s ease-in-out infinite reverse; }
.b3 { width: 300px; height: 300px; top: 40%; left: 35%; opacity: 0.3; animation: bf 11s ease-in-out infinite 3s; }
@keyframes bf { 0%,100%{transform:translate(0,0)} 50%{transform:translate(25px,20px)} }

/* Subtle grid pattern */
.grid-pattern {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(10,151,190,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(10,151,190,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-layout {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding-top: 64px; padding-bottom: 80px; min-height: calc(100vh - 68px);
}
.badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px;
  padding: 6px 16px; border-radius: 40px;
  background: rgba(10,151,190,0.08); border: 1px solid rgba(10,151,190,0.22);
  font-size: 0.76rem; font-weight: 500; color: var(--brand);
  background: var(--brand) !important; 
}
.bdot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.45;transform:scale(0.7)} }

.hero-left h1 {
  font-size: clamp(2rem, 3.8vw, 3.1rem); font-weight: 700;
  line-height: 1.18; letter-spacing: -0.025em; margin-bottom: 20px; color: var(--txt-1);
}
.clr { color: var(--brand); }
.hero-sub { font-size: 1.02rem; color: var(--txt-2); max-width: 500px; margin-bottom: 32px; font-weight: 300; line-height: 1.75; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.trust-row { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--txt-3); }

/* Preview card */
.hero-right { display: flex; justify-content: center; align-items: center; }
.preview-card { width: 100%; max-width: 390px; overflow: hidden; }
.pc-titlebar {
  display: flex; align-items: center; gap: 8px; padding: 13px 18px;
  background: rgba(10,151,190,0.06); border-bottom: 1px solid var(--brand-border);
}
.pc-dots { display: flex; gap: 5px; }
.pc-dots span { width: 10px; height: 10px; border-radius: 50%; }
.pc-dots span:nth-child(1){background:#ff5f57;}
.pc-dots span:nth-child(2){background:#ffbd2e;}
.pc-dots span:nth-child(3){background:#28c840;}
.pc-name { font-size: 0.75rem; color: var(--txt-3); margin-left: 4px; }
.pc-rows { padding: 4px 18px 10px; }
.pc-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(10,151,190,0.08); font-size: 0.82rem; color: var(--txt-3); }
.pc-row:last-child { border-bottom: none; }
.pcv { color: var(--brand); font-weight: 600; font-size: 0.82rem; }
.pc-lock-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 18px; background: rgba(10,151,190,0.04); border-top: 1px solid var(--brand-border); font-size: 0.82rem; color: var(--txt-2); }
.pc-locked { display: flex; align-items: center; gap: 5px; color: var(--txt-3); font-size: 0.78rem; }
.pc-prog-bar { height: 3px; background: rgba(10,151,190,0.10); }
.pc-prog-fill { height: 100%; background: var(--brand); transition: width 0.4s ease; }
.pc-step-label { padding: 7px 18px; font-size: 0.70rem; color: var(--txt-4); border-top: 1px solid var(--brand-border); }

/* ── CALCULATOR SECTION ─────────────────── */
.calc-section { padding: 72px 0 100px; background: var(--section-bg); }
.calc-layout {
  display: grid; grid-template-columns: 264px 1fr; gap: 28px; align-items: start;
}

/* Sidebar */
.sidebar { position: sticky; top: 84px; }
.sidebar-card { padding: 24px 20px; }
.sb-title { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--txt-3); font-weight: 700; margin-bottom: 22px; }
.sb-steps { display: flex; flex-direction: column; }
.sbstep { display: flex; align-items: flex-start; gap: 11px; opacity: 0.38; transition: opacity var(--transition); }
.sbstep.active, .sbstep.done { opacity: 1; }
.sbn {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(10,151,190,0.22); font-size: 0.75rem; font-weight: 700; color: var(--txt-3);
  transition: all var(--transition);
}
.sbstep.active .sbn { border-color: var(--brand); background: var(--brand-light); color: var(--brand); }
.sbstep.done .sbn { background: var(--brand); border-color: var(--brand); color: #fff; font-size: 0; }
.sbstep.done .sbn::after { content: '✓'; font-size: 0.78rem; }
.sbinfo { padding-top: 3px; }
.sbinfo b { display: block; font-size: 0.83rem; color: var(--txt-1); font-weight: 600; }
.sbinfo span { display: block; font-size: 0.71rem; color: var(--txt-3); font-weight: 300; }
.sbline { width: 2px; height: 20px; background: rgba(10,151,190,0.12); margin: 5px 0 5px 13px; }

.sb-summary { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--brand-border); }
.sb-sum-title { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--txt-3); font-weight: 700; margin-bottom: 10px; }
.sbsr { display: flex; justify-content: space-between; font-size: 0.76rem; padding: 5px 0; border-bottom: 1px solid rgba(10,151,190,0.07); }
.sbsr:last-child { border-bottom: none; }
.sbsr span:first-child { color: var(--txt-3); }
.sbsr span:last-child { color: var(--brand); font-weight: 600; }

/* Progress bar above card */
.calc-prog-wrap { height: 4px; background: rgba(10,151,190,0.10); border-radius: 4px 4px 0 0; overflow: hidden; }
.calc-prog-bar { height: 100%; background: var(--brand); transition: width 0.5s ease; box-shadow: 0 0 8px rgba(10,151,190,0.35); }

/* Card */
.calc-card { padding: 44px 44px 36px; border-radius: 0 0 var(--r) var(--r); }

.step { display: none; }
.step.active { display: block; animation: slideIn 0.32s ease; }
@keyframes slideIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

.step-hd { margin-bottom: 30px; }
.pill {
  display: inline-block; padding: 4px 14px; border-radius: 20px; margin-bottom: 10px;
  background: var(--brand-light); border: 1px solid var(--brand-border);
  font-size: 0.68rem; color: var(--brand); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.step-hd h2 { font-size: clamp(1.25rem, 2.4vw, 1.65rem); font-weight: 700; color: var(--txt-1); margin-bottom: 6px; line-height: 1.25; }
.step-hd p { color: var(--txt-2); font-size: 0.92rem; font-weight: 300; }

.step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(10,151,190,0.10); }
.step-err { margin-top: 10px; padding: 10px 16px; border-radius: var(--r-sm); background: rgba(217,53,53,0.07); border: 1px solid rgba(217,53,53,0.18); color: var(--danger); font-size: 0.83rem; }

/* ── STEP 1: Exchange Cards ─────────────── */
.exgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(188px,1fr)); gap: 14px; }
.excard {
  padding: 0; border-radius: var(--r);
  background: #fff; border: 2px solid rgba(10,151,190,0.14);
  cursor: pointer; text-align: center; overflow: hidden;
  transition: all var(--transition); box-shadow: 0 2px 8px rgba(10,151,190,0.06);
}
.excard:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: 0 10px 28px rgba(10,151,190,0.16); }
.excard.selected { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(10,151,190,0.18), 0 8px 24px rgba(10,151,190,0.14); }
.excard-inner { padding: 24px 18px 20px; }

.ex-icon-wrap {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,151,190,0.07); border: 1.5px solid rgba(10,151,190,0.15);
  transition: all var(--transition);
}
.excard:hover .ex-icon-wrap, .excard.selected .ex-icon-wrap { background: rgba(10,151,190,0.14); border-color: rgba(10,151,190,0.3); }
.ex-icon { font-size: 1.8rem; }
.excard strong { display: block; font-size: 0.90rem; font-weight: 700; color: var(--txt-1); margin-bottom: 7px; }
.excard p { font-size: 0.75rem; color: var(--txt-3); line-height: 1.55; }
.excard.selected .excard-inner { background: rgba(10,151,190,0.05); }

/* ── STEP 2: Slider ────────────────────── */
.slider-section { max-width: 560px; margin: 0 auto; text-align: center; }
.slider-hero { margin-bottom: 22px; }
.slider-num { display: block; font-size: 5.5rem; font-weight: 700; color: var(--brand); line-height: 1; }
.slider-unit { color: var(--txt-3); font-size: 1rem; display: block; margin-top: 2px; }
.cslider {
  width: 100%; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 6px;
  outline: none; cursor: pointer;
  background: linear-gradient(to right, var(--brand) 25%, rgba(10,151,190,0.15) 25%);
  transition: background 0.1s;
}
.cslider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 3px solid var(--brand); cursor: pointer;
  box-shadow: 0 2px 8px rgba(10,151,190,0.30); transition: transform 0.2s;
}
.cslider::-webkit-slider-thumb:hover { transform: scale(1.18); }
.slider-ticks { display: flex; justify-content: space-between; font-size: 0.70rem; color: var(--txt-4); margin-top: 6px; }
.slider-insight {
  margin-top: 22px; padding: 14px 20px; border-radius: var(--r-sm);
  background: rgba(10,151,190,0.06); border: 1px solid var(--brand-border);
  color: var(--txt-2); font-size: 0.87rem; line-height: 1.6;
}
.slider-insight strong { color: var(--brand); }

/* ── STEP 3: Toggles ────────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(252px,1fr)); gap: 18px; }
.feat-group { padding: 22px 18px; }
.fgtitle { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.fgtitle span { font-size: 1.2rem; }
.fgtitle b { font-size: 0.80rem; font-weight: 700; color: var(--txt-2); text-transform: uppercase; letter-spacing: 0.07em; }
.togrow { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(10,151,190,0.08); cursor: pointer; transition: background var(--transition); }
.togrow:last-child { border-bottom: none; }
.toginfo { flex: 1; }
.toginfo b { display: block; font-size: 0.86rem; color: var(--txt-1); font-weight: 600; }
.toginfo span { display: block; font-size: 0.72rem; color: var(--txt-3); font-weight: 300; }
.togrow input[type="checkbox"] { display: none; }
.togsw {
  width: 44px; height: 24px; border-radius: 24px; flex-shrink: 0;
  background: #dde9ef; border: 1.5px solid rgba(10,151,190,0.20); position: relative; transition: all 0.28s;
}
.togsw::after {
  content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%;
  background: #fff; top: 2px; left: 2px; transition: all 0.28s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.togrow input:checked ~ .togsw { background: var(--brand); border-color: var(--brand); }
.togrow input:checked ~ .togsw::after { left: 22px; }

/* ── STEP 4: UI Level ──────────────────── */


.uigrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(235px,1fr)); gap: 16px; }
.uicard {
  padding: 26px 22px; border-radius: var(--r); background: #fff;
  border: 2px solid rgba(10,151,190,0.14); text-align: left; cursor: pointer; position: relative; overflow: hidden;
  transition: all var(--transition); box-shadow: 0 2px 8px rgba(10,151,190,0.06);
}
.uicard:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: 0 10px 28px rgba(10,151,190,0.16); }
.uicard.selected { border-color: var(--brand); background: rgba(10,151,190,0.04); box-shadow: 0 0 0 3px rgba(10,151,190,0.18); }
.uicard.featured { border-color: rgba(10,151,190,0.28); }
.pop-lbl { position: absolute; top: 12px; right: 12px; padding: 3px 10px; border-radius: 20px; background: var(--brand); color: #fff; font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.ui-icon-big { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.uicard strong { display: block; font-size: 1.04rem; font-weight: 700; color: var(--txt-1); margin-bottom: 8px; }
.uicard p { font-size: 0.79rem; color: var(--txt-2); margin-bottom: 14px; line-height: 1.55; }
.uicard ul { list-style: none; }
.uicard li { font-size: 0.76rem; color: var(--txt-3); padding: 3px 0; }
.uicard li::before { content: '✓ '; color: var(--success); font-weight: 700; }

/* ── STEP 5: Platform ───────────────────── */
.platgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(218px,1fr)); gap: 16px; }
.platcard {
  padding: 26px 22px; border-radius: var(--r); background: #fff;
  border: 2px solid rgba(10,151,190,0.14); text-align: center; cursor: pointer;
  transition: all var(--transition); box-shadow: 0 2px 8px rgba(10,151,190,0.06);
}
.platcard:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: 0 10px 28px rgba(10,151,190,0.16); }
.platcard.selected { border-color: var(--brand); background: rgba(10,151,190,0.04); box-shadow: 0 0 0 3px rgba(10,151,190,0.18); }
.plat-icon-big { font-size: 2.2rem; margin-bottom: 10px; display: block; }
.platcard strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--txt-1); margin-bottom: 8px; }
.platcard p { font-size: 0.78rem; color: var(--txt-3); line-height: 1.55; }

/* ─ STEP 6: Lead Gate ─────────────────── */
.blur-preview { position: relative; border-radius: var(--r); overflow: hidden; margin-bottom: 26px; }
.blur-content {
  padding: 22px 24px; filter: blur(7px); user-select: none;
  background: rgba(10,151,190,0.04); border: 1px solid var(--brand-border); border-radius: var(--r);
}
.br { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(10,151,190,0.08); font-size: 0.87rem; color: var(--txt-2); }
.br:last-child { border-bottom: none; }
.btotal { font-weight: 700; color: var(--txt-1); font-size: 1rem; }
.blur-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: rgba(247,251,253,0.78); backdrop-filter: blur(2px);
}
.lock-icon { font-size: 2.4rem; }
.blur-overlay p { font-weight: 600; color: var(--txt-1); font-size: 0.95rem; }
.blur-overlay span { color: var(--txt-3); font-size: 0.8rem; }

.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.fgrp { display: flex; flex-direction: column; gap: 6px; }
.fgrp-full { grid-column: 1 / -1; }
.fgrp label { font-size: 0.82rem; color: var(--txt-2); font-weight: 500; }
.fgrp input {
  padding: 11px 15px; border-radius: var(--r-sm);
  background: #fff; border: 1.5px solid rgba(10,151,190,0.22);
  color: var(--txt-1); font-family: 'Roboto Serif', serif; font-size: 0.9rem;
  outline: none; transition: border-color var(--transition);
  box-shadow: 0 1px 4px rgba(10,151,190,0.05);
}
.fgrp input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(10,151,190,0.10); }
.fgrp input::placeholder { color: var(--txt-4); font-weight: 300; }
.req { color: var(--brand); }
.opt { color: var(--txt-4); font-size: 0.74rem; font-weight: 300; }
.ferr { font-size: 0.73rem; color: var(--danger); min-height: 14px; }
.form-actions { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.btn-submit { min-width: 240px; justify-content: center; }
.fnote { font-size: 0.71rem; color: var(--txt-3); margin-top: 10px; font-weight: 300; }
.spin { animation: rot 0.8s linear infinite; display: inline-block; vertical-align: middle; }
@keyframes rot { to { transform: rotate(360deg); } }

/* ── STEP 7: Results ──────────────────── */
.confetti-root { position: absolute; top: 0; left: 0; right: 0; height: 160px; overflow: hidden; pointer-events: none; z-index: 4; }
.cp { position: absolute; animation: cfal 3s ease-out forwards; border-radius: 2px; }
@keyframes cfal { 0%{transform:translateY(-8px) rotate(0deg);opacity:1} 100%{transform:translateY(200px) rotate(600deg);opacity:0} }

.res-header { text-align: center; margin-bottom: 28px; position: relative; }
.res-header h2 { font-size: 1.9rem; font-weight: 700; color: var(--txt-1); }
.res-header p { color: var(--txt-3); font-size: 0.84rem; margin-top: 4px; font-weight: 300; }

.res-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.res-total {
  grid-column: 1 / -1; padding: 36px; text-align: center;
  background: linear-gradient(135deg, rgba(10,151,190,0.08) 0%, rgba(10,151,190,0.03) 100%) !important;
  border-color: rgba(10,151,190,0.22) !important;
}
.rt-label { font-size: 0.70rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--txt-3); margin-bottom: 10px; font-weight: 600; }
.rt-amount { font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 700; color: var(--brand); line-height: 1; margin-bottom: 8px; }
.rt-sub { font-size: 0.75rem; color: var(--txt-3); font-weight: 300; }

.res-bkd, .res-timeline, .res-config { padding: 22px 24px; }
.res-bkd h3, .res-timeline h3, .res-config h3 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.10em; color: var(--txt-3); font-weight: 700; margin-bottom: 16px; }

.bkd-item { display: flex; align-items: center; gap: 10px; margin-bottom: 11px; }
.bkd-label { font-size: 0.76rem; color: var(--txt-2); min-width: 145px; }
.bkd-track { flex: 1; height: 6px; background: rgba(10,151,190,0.10); border-radius: 6px; overflow: hidden; }
.bkd-fill { height: 100%; background: var(--brand); border-radius: 6px; width: 0; transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }
.bkd-amount { font-size: 0.79rem; font-weight: 700; color: var(--txt-1); min-width: 76px; text-align: right; }

.tl-total { padding: 9px 13px; border-radius: var(--r-sm); background: rgba(10,151,190,0.07); border: 1px solid var(--brand-border); font-size: 0.84rem; color: var(--txt-2); margin-bottom: 14px; }
.tl-total strong { color: var(--brand); }
.tl-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid rgba(10,151,190,0.07); font-size: 0.78rem; }
.tl-row:last-child { border-bottom: none; }
.tl-row span:first-child { color: var(--txt-2); }
.tl-row span:last-child { color: var(--brand); font-weight: 700; }

.cfg-row { display: flex; justify-content: space-between;
  gap: 38px;
  padding: 7px 0; border-bottom: 1px solid rgba(10,151,190,0.07); font-size: 0.60rem; }
.cfg-row:last-child { border-bottom: none; }
.cfg-row span:first-child { color: var(--txt-3); }
.cfg-row span:last-child { color: var(--txt-1); font-weight: 600; }

.res-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.btn-pdf {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 50px;
  background: #fff; border: 1.5px solid var(--brand-border); color: var(--txt-2);
  font-family: 'Roboto Serif', serif; font-size: 0.87rem; cursor: pointer;
  box-shadow: 0 2px 8px rgba(10,151,190,0.08); transition: all var(--transition);
}
.btn-pdf:hover { border-color: var(--brand); color: var(--brand); box-shadow: 0 6px 18px rgba(10,151,190,0.18); }
.res-disc { font-size: 0.69rem; color: var(--txt-4); text-align: center; max-width: 600px; margin: 0 auto; font-weight: 300; }

/* ── ABOUT ────────────────────────────── */
.about-section { padding: 84px 0; background: #fff; border-top: 1px solid rgba(10,151,190,0.10); }
.about-hd { text-align: center; margin-bottom: 44px; }
.about-hd h2 { font-size: 1.8rem; font-weight: 700; color: var(--txt-1); margin-bottom: 8px; }
.about-hd p { color: var(--txt-3); font-size: 0.95rem; font-weight: 300; }
.about-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 22px; }
.about-card { padding: 30px 26px; }
.ac-icon { font-size: 1.8rem; margin-bottom: 12px; }
.about-card h3 { font-size: 1rem; font-weight: 700; color: var(--brand); margin-bottom: 9px; }
.about-card p { font-size: 0.87rem; color: var(--txt-2); line-height: 1.78; font-weight: 300; }

/* ─ FOOTER ───────────────────────────── */
.footer { background: #fff; border-top: 1px solid rgba(10,151,190,0.10); padding: 48px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
.footer-brand .logo { margin-bottom: 10px; }
.footer-brand p { color: var(--txt-3); font-size: 0.82rem; max-width: 250px; line-height: 1.7; font-weight: 300; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col b { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--txt-3); font-weight: 700; margin-bottom: 4px; }
.footer-col a { color: var(--txt-2); text-decoration: none; font-size: 0.84rem; font-weight: 300; transition: color var(--transition); }
.footer-col a:hover { color: var(--brand); }
.footer-bar { border-top: 1px solid rgba(10,151,190,0.10); padding: 16px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.73rem; color: var(--txt-4); }

/* ── RESPONSIVE ───────────────────────── */
@media (max-width: 1100px) {
  .hero-layout { grid-template-columns: 1fr; min-height: auto; padding-top: 52px; }
  .hero-right { justify-content: flex-start; }
  .preview-card { max-width: 420px; }
  .calc-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .sidebar-card { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .sb-steps { grid-column: 1; }
  .sb-summary { margin-top: 0; padding-top: 0; border-top: none; border-left: 1px solid rgba(10,151,190,0.12); padding-left: 20px; }
}
@media (max-width: 768px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(255,255,255,0.98); padding: 22px 24px; gap: 20px; border-bottom: 1px solid var(--brand-border); box-shadow: 0 10px 30px rgba(10,151,190,0.10); z-index: 200; }
  .nav.open { display: flex; }
  .burger { display: flex; }
  .hero-layout { padding: 44px 0 64px; gap: 36px; }
  .hero-left h1 { font-size: 1.9rem; }
  .exgrid { grid-template-columns: 1fr 1fr; }
  .feat-grid, .uigrid, .platgrid { grid-template-columns: 1fr; }
  .fgrid { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; }
  .btn-submit { width: 100%; }
  .res-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .calc-card { padding: 26px 20px; }
  .sidebar-card { display: block; }
  .sb-summary { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(10,151,190,0.12); border-left: none; padding-left: 0; }
}
@media (max-width: 480px) {
  .exgrid { grid-template-columns: 1fr; }
  .hero-left h1 { font-size: 1.65rem; }
  .rt-amount { font-size: 2.3rem; }
  .calc-card { padding: 20px 14px; }
  .container { padding: 0 16px; }
}

/* ─ Step 1 multi-select hint ───────────────── */
.multiselect-hint {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 6px;
  padding: 4px 12px; border-radius: 20px;
  background: rgba(10,151,190,0.07); border: 1px solid rgba(10,151,190,0.18);
  font-size: 0.72rem; color: var(--brand); font-weight: 500;
}
.multiselect-hint svg { flex-shrink: 0; }
/********************/

        .faq-left-box-question,
        .faq-right-box-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-radius: .5rem;
            cursor: pointer
        }

        .faq {
            background-color: #EDF2F780;
            padding-block: 50px
        }

        .faq h2 {
            color: #0A97BE;
            text-align: center;
            margin-bottom: 20px
        }

        .faq-left-box-question p i {
            font-size: 30px
        }

        .faq-right-box-question p i {
            font-size: 30px
        }

        .faq-left-box-question p {
            margin-bottom: 0px !important
        }

        .faq-right-box-question p {
            margin-bottom: 0px !important
        }

        .faq-box {
            background-color: #fff;
            border-radius: .5rem;
            margin-bottom: 20px;
            box-shadow: rgb(99 99 99 / .2) 0 2px 8px 0;
            transition: all 0.3s ease
        }

        .faq-box:hover .faq-left-box-question-para {
            color: #0A97BE
        }

        .faq-box:hover .faq-left-box-question-icon {
            color: #0A97BE
        }

        .faq-box.active {
            border: 2px solid #0A97BE;
            box-shadow: 0 0 5px #0A97BE
        }

        .faq-box:hover {
            border: 2px solid #0A97BE;
            box-shadow: 0 0 5px #0A97BE
        }

        .faq-left-box-answer,
        .faq-right-box-answer {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            padding: 0 20px;
            transition: max-height 0.5s ease, opacity 0.3s ease, padding 0.3s ease
        }

        .faq-box.active .faq-left-box-answer,
        .faq-box.active .faq-right-box-answer {
            max-height: 300px;
            opacity: 1;
            padding: 10px 20px
        }

        .faq-question-icon {
            display: inline-block;
            font-size: 30px;
            font-weight: 700;
            transition: transform 0.3s ease, color 0.3s ease;
            line-height: 1;
            transform-origin: center;
            color: #000
        }

        .faq-question-icon svg {
            width: 30px;
            height: 30px
        }

        .faq-box.active .faq-question-icon {
            transform: rotate(45deg);
            color: #0A97BE
        }

        .faq-box.active .faq-question-icon {
            transform: rotate(45deg);
            color: #0A97BE
        }

        .faq-box-question .faq-left-box-question-icon i {
            font-size: 30px
        }

        .faq-box.active .faq-left-box-question-icon {
            transform: rotate(45deg);
            color: #0A97BE
        }

        .faq-container {
            margin-inline: 20px
        }

        .faq-box.active .faq-left-box-question-para,
        .faq-box.active .faq-left-box-question-icon,
        .faq-box.active .faq-right-box-question p,
        .faq-box.active .faq-left-box-question p {
            color: #0A97BE;
            font-weight: 600
        }

        @media (max-width:786px) {
            .faq-left-box-question p {
                font-size: 14px
            }

            .faq-question-icon i {
                font-size: 14px
            }
        }

.cryptiecraft-footer-sidebar-links-v2-container {
  display:none;
}
