/* Denver EV Rentals — Main Stylesheet */
/* Edit this file to change colors, fonts, layout, and spacing */

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

    :root {
      --black:      #000000;
      --near-black: #1d1d1f;
      --white:      #ffffff;
      --off-white:  #f5f5f7;
      --grey:       #6e6e73;
      --light-grey: #86868b;
      --border:     #d2d2d7;
      --blue:       #0071e3;
      --blue-h:     #0077ed;
      --blue-l:     #2997ff;
      --green:      #30d158;
      --red:        #ff453a;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
      color: var(--near-black);
      background: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* ───── NAV ───── */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      height: 48px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 22px;
      background: rgba(0,0,0,0.78);
      backdrop-filter: saturate(180%) blur(20px);
      -webkit-backdrop-filter: saturate(180%) blur(20px);
      transition: background 0.4s;
    }
    #nav.scrolled {
      background: rgba(255,255,255,0.82);
    }
    .nav-logo {
      font-size: 16px; font-weight: 600; letter-spacing: -0.3px;
      color: rgba(255,255,255,0.92); text-decoration: none;
      transition: color 0.4s;
    }
    #nav.scrolled .nav-logo { color: var(--near-black); }
    .nav-links { display: flex; gap: 28px; list-style: none; }
    .nav-links a {
      font-size: 12px; color: rgba(255,255,255,0.72);
      text-decoration: none; transition: color 0.2s;
    }
    #nav.scrolled .nav-links a { color: rgba(0,0,0,0.6); }
    .nav-links a:hover { color: #fff; }
    #nav.scrolled .nav-links a:hover { color: var(--near-black); }
    .nav-btn {
      font-size: 12px; font-weight: 500;
      color: #fff; background: var(--blue);
      border: none; border-radius: 980px;
      padding: 6px 14px; cursor: pointer;
      text-decoration: none; transition: background 0.2s;
    }
    .nav-btn:hover { background: var(--blue-h); }

    /* ───── HERO ───── */
    .hero {
      min-height: 100vh;
      background: #000;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; padding: 80px 24px 60px;
      position: relative; overflow: hidden;
    }
    /* Glow orbs */
    .hero-orb1 {
      position: absolute; width: 900px; height: 900px;
      background: radial-gradient(ellipse, rgba(0,113,227,0.22) 0%, transparent 65%);
      top: -300px; left: 50%; transform: translateX(-50%);
      pointer-events: none;
    }
    .hero-orb2 {
      position: absolute; width: 600px; height: 600px;
      background: radial-gradient(ellipse, rgba(48,209,88,0.14) 0%, transparent 65%);
      bottom: -100px; right: 5%;
      pointer-events: none;
    }
    .hero-orb3 {
      position: absolute; width: 400px; height: 400px;
      background: radial-gradient(ellipse, rgba(41,151,255,0.1) 0%, transparent 70%);
      bottom: 10%; left: 5%;
      pointer-events: none;
    }
    .hero-eyebrow {
      font-size: 13px; font-weight: 600;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--blue-l); margin-bottom: 18px;
    }
    .hero h1 {
      font-size: clamp(44px, 8vw, 88px);
      font-weight: 700; letter-spacing: -2.5px; line-height: 1.03;
      color: #fff; max-width: 860px; margin-bottom: 22px;
    }
    .hero h1 .grad {
      background: linear-gradient(130deg, #2997ff 0%, #30d158 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-size: clamp(17px, 2.4vw, 23px);
      color: rgba(255,255,255,0.55); max-width: 560px;
      line-height: 1.5; margin-bottom: 40px; font-weight: 400;
    }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
    .btn-p {
      font-size: 17px; font-weight: 500; color: #fff;
      background: var(--blue); border-radius: 980px;
      padding: 14px 30px; text-decoration: none;
      transition: background 0.2s, transform 0.2s;
      display: inline-flex; align-items: center; gap: 6px;
    }
    .btn-p:hover { background: var(--blue-h); transform: scale(1.02); }
    .btn-s {
      font-size: 17px; font-weight: 500; color: var(--blue-l);
      background: transparent; border-radius: 980px;
      padding: 14px 30px; text-decoration: none;
      transition: color 0.2s;
      display: inline-flex; align-items: center; gap: 4px;
    }
    .btn-s:hover { color: #fff; }
    .btn-s::after { content: ' →'; }

    .scroll-hint {
      position: absolute; bottom: 30px; left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,0.25); font-size: 10px;
      letter-spacing: 2px; text-transform: uppercase;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      animation: bob 2.2s ease-in-out infinite;
    }
    @keyframes bob {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50%      { transform: translateX(-50%) translateY(7px); }
    }

    /* ───── STAT STRIP ───── */
    .stat-strip {
      background: var(--off-white);
      padding: 60px 24px;
    }
    .stat-grid {
      max-width: 900px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
      text-align: center;
    }
    .stat-val {
      font-size: clamp(40px, 5.5vw, 60px);
      font-weight: 700; letter-spacing: -2px; line-height: 1;
      color: var(--near-black); margin-bottom: 8px;
    }
    .stat-lbl { font-size: 15px; color: var(--grey); }

    /* ───── GENERIC SECTION ───── */
    .sec { padding: 120px 24px; }
    .sec-inner { max-width: 980px; margin: 0 auto; }
    .sec-dark  { background: var(--near-black); }
    .sec-black { background: #000; }
    .sec-off   { background: var(--off-white); }

    .eyebrow {
      font-size: 13px; font-weight: 600;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--blue); text-align: center; margin-bottom: 12px;
    }
    .sec-dark  .eyebrow,
    .sec-black .eyebrow { color: var(--blue-l); }

    .sec-title {
      font-size: clamp(34px, 5.5vw, 58px);
      font-weight: 700; letter-spacing: -1.8px; line-height: 1.06;
      text-align: center; margin-bottom: 16px;
      color: var(--near-black);
    }
    .sec-dark  .sec-title,
    .sec-black .sec-title { color: #fff; }

    .sec-sub {
      font-size: clamp(17px, 2vw, 21px);
      color: var(--grey); text-align: center;
      max-width: 600px; margin: 0 auto 64px;
      line-height: 1.52;
    }
    .sec-dark  .sec-sub { color: var(--light-grey); }
    .sec-black .sec-sub { color: rgba(255,255,255,0.48); }

    /* ───── FEATURE CARDS ───── */
    .feat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 18px;
    }
    .feat-card {
      background: var(--off-white); border-radius: 20px;
      padding: 36px 30px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .feat-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
    .feat-card.dark { background: #2c2c2e; }
    .feat-ico {
      width: 52px; height: 52px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
    }
    .feat-ico svg {
      width: 26px; height: 26px;
      stroke: currentColor;
      stroke-width: 1.75;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }
    .feat-ico.blue,   .adv-ico.blue   { background: rgba(0,113,227,0.1);  color: #0071e3; }
    .feat-ico.green,  .adv-ico.green  { background: rgba(48,209,88,0.1);  color: #30d158; }
    .feat-ico.orange, .adv-ico.orange { background: rgba(255,159,10,0.1); color: #ff9f0a; }
    .feat-card h3 {
      font-size: 19px; font-weight: 600; letter-spacing: -0.3px;
      margin-bottom: 10px; color: var(--near-black);
    }
    .feat-card.dark h3 { color: #fff; }
    .feat-card p { font-size: 15px; color: var(--grey); line-height: 1.55; }
    .feat-card.dark p { color: var(--light-grey); }

    /* ───── FLEET ───── */
    .fleet-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }
    .fleet-card {
      border-radius: 24px; padding: 36px 30px;
      position: relative; overflow: hidden;
      transition: transform 0.3s ease;
    }
    .fleet-card:hover { transform: translateY(-7px); }
    .fc1 { background: linear-gradient(135deg, #1c1c1e, #2e2e30); border: 1px solid rgba(255,255,255,0.08); }
    .fc2 { background: linear-gradient(135deg, #0c1f3f, #183880); border: 1px solid rgba(41,151,255,0.18); }
    .fc3 { background: linear-gradient(135deg, #0a200a, #1a3d20); border: 1px solid rgba(48,209,88,0.18); }

    .fleet-badge {
      display: inline-block; font-size: 11px; font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 4px 12px; border-radius: 980px; margin-bottom: 18px;
    }
    .fc1 .fleet-badge { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }
    .fc2 .fleet-badge { background: rgba(41,151,255,0.18); color: #2997ff; }
    .fc3 .fleet-badge { background: rgba(48,209,88,0.18); color: #30d158; }

    .fleet-photo {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 10;
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 24px;
      background: #0a0a0c;
    }
    .fleet-photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    .fleet-card:hover .fleet-photo img { transform: scale(1.04); }
    .fleet-photo::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.35) 100%);
      pointer-events: none;
    }

    .fleet-name {
      font-size: 26px; font-weight: 700; letter-spacing: -0.6px;
      color: #fff; margin-bottom: 4px;
    }
    .fleet-make { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 22px; }
    .fleet-price {
      display: flex; align-items: baseline; gap: 4px; margin-bottom: 22px;
    }
    .fleet-price .amt {
      font-size: 38px; font-weight: 700; letter-spacing: -1.5px; color: #fff;
    }
    .fleet-price .per { font-size: 15px; color: rgba(255,255,255,0.45); }
    .fleet-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .fleet-feats li {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px; color: rgba(255,255,255,0.65);
    }
    .check {
      width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
      background: rgba(48,209,88,0.15); border: 1px solid rgba(48,209,88,0.4);
      display: flex; align-items: center; justify-content: center;
    }
    .check::after { content: '✓'; font-size: 10px; color: #30d158; }

    /* ───── STEPS ───── */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .step {
      padding: 40px 28px; text-align: center; position: relative;
    }
    .step:not(:last-child)::after {
      content: ''; position: absolute;
      right: 0; top: 30%; height: 40%; width: 1px;
      background: var(--border);
    }
    .step-num {
      font-size: 52px; font-weight: 700; letter-spacing: -2px;
      line-height: 1; margin-bottom: 16px;
      background: linear-gradient(130deg, #2997ff, #30d158);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .step h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
    .step p { font-size: 14px; color: var(--grey); line-height: 1.55; }

    /* ───── EARNINGS ───── */
    .earn-layout {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 48px; align-items: start;
      margin-top: 64px;
    }
    .earn-left { display: flex; flex-direction: column; gap: 28px; }
    .earn-big {
      font-size: clamp(52px, 8vw, 86px); font-weight: 700;
      letter-spacing: -3px; color: #fff; line-height: 0.95;
    }
    .earn-big .grad {
      background: linear-gradient(130deg, #2997ff, #30d158);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .earn-lbl { font-size: 17px; color: rgba(255,255,255,0.45); margin-top: 6px; }
    .earn-divider { height: 1px; background: rgba(255,255,255,0.08); }
    .earn-sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .earn-sub-val {
      font-size: 30px; font-weight: 700; letter-spacing: -1px;
      color: rgba(255,255,255,0.88);
    }
    .earn-sub-val.red { color: var(--red); }
    .earn-sub-lbl { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 4px; }
    .earn-annual {
      font-size: 22px; font-weight: 700; letter-spacing: -0.5px; color: var(--green);
    }
    .earn-annual-lbl { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 4px; }

    /* Calculator card */
    .calc-card {
      background: #1c1c1e; border: 1px solid rgba(255,255,255,0.08);
      border-radius: 24px; padding: 36px;
    }
    .calc-card h3 {
      font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 24px;
    }
    .chip-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
    .chip {
      font-size: 12px; font-weight: 500;
      padding: 7px 14px; border-radius: 980px;
      border: 1px solid rgba(255,255,255,0.14);
      color: rgba(255,255,255,0.55);
      cursor: pointer; background: transparent;
      transition: all 0.2s; font-family: inherit;
    }
    .chip:hover { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }
    .chip.on { background: var(--blue); border-color: var(--blue); color: #fff; }
    .calc-lbl {
      display: flex; justify-content: space-between;
      font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 10px;
    }
    .calc-lbl strong { color: #fff; font-weight: 600; }
    input[type="range"] {
      width: 100%; -webkit-appearance: none;
      height: 3px; border-radius: 2px; background: #3a3a3c;
      outline: none; cursor: pointer; margin-bottom: 22px;
    }
    input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
      background: var(--blue); cursor: pointer;
      box-shadow: 0 2px 10px rgba(0,113,227,0.45);
    }
    .calc-result {
      background: rgba(0,113,227,0.1); border: 1px solid rgba(0,113,227,0.25);
      border-radius: 16px; padding: 20px 22px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
    }
    .cr-val { font-size: 22px; font-weight: 700; letter-spacing: -0.5px; color: #fff; }
    .cr-lbl { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }

    /* ───── EV ADVANTAGE ───── */
    .adv-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
    }
    .adv-card {
      background: var(--off-white); border-radius: 20px;
      padding: 32px 24px; text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .adv-card:hover { transform: translateY(-5px); box-shadow: 0 16px 32px rgba(0,0,0,0.07); }
    .adv-ico {
      width: 48px; height: 48px; border-radius: 12px;
      display: inline-flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
    }
    .adv-ico svg {
      width: 24px; height: 24px;
      stroke: currentColor;
      stroke-width: 1.75;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }
    .adv-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
    .adv-card p { font-size: 13px; color: var(--grey); line-height: 1.5; }

    /* ───── PLAYBOOK ───── */
    .art-featured {
      background: var(--off-white); border-radius: 24px;
      padding: 48px 44px; margin-bottom: 20px;
      display: flex; align-items: center; gap: 40px;
      cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
    }
    .art-featured:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0,0,0,0.09); }
    .art-feat-text { flex: 1; }
    .art-feat-text h3 {
      font-size: clamp(22px, 3vw, 30px); font-weight: 700;
      letter-spacing: -0.8px; margin: 10px 0 14px; color: var(--near-black);
    }
    .art-feat-text p { font-size: 16px; color: var(--grey); line-height: 1.6; margin-bottom: 20px; }
    .art-feat-graphic { flex-shrink: 0; }
    .art-tag {
      display: inline-block; font-size: 11px; font-weight: 600;
      letter-spacing: 1.2px; text-transform: uppercase;
      padding: 4px 10px; border-radius: 980px;
      background: var(--tc, rgba(0,113,227,0.1));
      color: var(--tc, var(--blue));
      --tc: var(--blue); --tb: rgba(0,113,227,0.1);
      background: var(--tb); color: var(--tc);
    }
    .art-read {
      font-size: 15px; font-weight: 500; color: var(--blue);
      display: inline-block;
    }
    .art-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 16px;
    }
    .art-card {
      background: var(--off-white); border-radius: 20px;
      padding: 30px 28px; cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
      display: flex; flex-direction: column; gap: 12px;
    }
    .art-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
    .art-card h4 {
      font-size: 17px; font-weight: 600; letter-spacing: -0.3px;
      color: var(--near-black); line-height: 1.35;
    }
    .art-card p { font-size: 14px; color: var(--grey); line-height: 1.55; flex: 1; }
    .art-card .art-read { font-size: 14px; margin-top: 4px; }

    /* Article drawer */
    #drawer {
      display: none; position: fixed; inset: 0; z-index: 9000;
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      align-items: flex-end; justify-content: flex-end;
    }
    #drawer.open { display: flex; }
    .drawer-panel {
      background: #fff; width: min(680px, 100%); height: 100vh;
      overflow: hidden; position: relative;
      display: flex; flex-direction: column;
      animation: slideIn 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    }
    @keyframes slideIn {
      from { transform: translateX(100%); }
      to   { transform: translateX(0); }
    }
    .drawer-close {
      position: absolute; top: 18px; right: 20px;
      width: 32px; height: 32px; border-radius: 50%;
      background: rgba(0,0,0,0.07); border: none;
      font-size: 13px; cursor: pointer; z-index: 10;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .drawer-close:hover { background: rgba(0,0,0,0.14); }
    .drawer-scroll {
      overflow-y: auto; padding: 52px 44px 60px;
      flex: 1;
    }
    .drawer-scroll::-webkit-scrollbar { width: 4px; }
    .drawer-scroll::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 2px; }

    /* Article content styles (inside drawer) */
    .art-body .art-tag { margin-bottom: 16px; }
    .art-body h1 {
      font-size: clamp(26px, 4vw, 36px); font-weight: 700;
      letter-spacing: -1px; line-height: 1.1;
      margin-bottom: 12px; color: var(--near-black);
    }
    .art-body .art-meta {
      font-size: 13px; color: var(--grey); margin-bottom: 32px;
      padding-bottom: 28px; border-bottom: 1px solid var(--border);
    }
    .art-body h2 {
      font-size: 20px; font-weight: 700; letter-spacing: -0.4px;
      margin: 32px 0 12px; color: var(--near-black);
    }
    .art-body p {
      font-size: 16px; color: #374151; line-height: 1.7;
      margin-bottom: 18px;
    }
    .art-body ul { margin: 0 0 18px 0; padding-left: 0; list-style: none; }
    .art-body ul li {
      font-size: 15px; color: #374151; line-height: 1.6;
      padding: 8px 0 8px 24px; position: relative;
      border-bottom: 1px solid var(--border);
    }
    .art-body ul li::before {
      content: ''; position: absolute; left: 0; top: 17px;
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--blue);
    }
    .art-body .tip-box {
      background: rgba(0,113,227,0.07); border-left: 3px solid var(--blue);
      border-radius: 0 12px 12px 0; padding: 16px 20px;
      margin: 24px 0; font-size: 15px; color: var(--near-black); line-height: 1.6;
    }
    .art-body .tip-box strong { color: var(--blue); }
    .art-body .highlight-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0;
    }
    .art-body .hl-card {
      background: var(--off-white); border-radius: 14px; padding: 18px 16px;
      text-align: center;
    }
    .art-body .hl-val { font-size: 26px; font-weight: 700; letter-spacing: -0.8px; color: var(--near-black); }
    .art-body .hl-lbl { font-size: 12px; color: var(--grey); margin-top: 4px; }

    @media (max-width: 600px) {
      .art-featured { flex-direction: column; padding: 28px 22px; }
      .art-feat-graphic { display: none; }
      .drawer-scroll { padding: 48px 22px 48px; }
      .art-body .highlight-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ───── APPLY ───── */
    .apply-wrap {
      background: #000; padding: 120px 24px; text-align: center;
    }
    .apply-inner { max-width: 680px; margin: 0 auto; }
    .apply-form {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 24px; padding: 40px;
      text-align: left;
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
      margin-top: 48px;
    }
    .ff { display: flex; flex-direction: column; gap: 7px; }
    .ff label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.5); }
    .ff input, .ff select {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px; color: #fff;
      font-size: 15px; font-family: inherit;
      padding: 12px 14px; outline: none;
      transition: border-color 0.2s; width: 100%;
      -webkit-appearance: none;
    }
    .ff input::placeholder { color: rgba(255,255,255,0.18); }
    .ff input:focus, .ff select:focus { border-color: var(--blue); }
    .ff select option { background: #2c2c2e; }
    .ff.full { grid-column: 1 / -1; }
    .form-submit {
      grid-column: 1 / -1;
      width: 100%; padding: 16px;
      font-size: 17px; font-weight: 600; font-family: inherit;
      color: #fff; background: var(--blue);
      border: none; border-radius: 12px;
      cursor: pointer; transition: all 0.2s; margin-top: 6px;
    }
    .form-submit:hover { background: var(--blue-h); transform: scale(1.01); }
    .contact-alts {
      display: flex; gap: 24px; justify-content: center;
      margin-top: 28px; flex-wrap: wrap;
      font-size: 15px; color: rgba(255,255,255,0.4);
    }
    .contact-alts a { color: var(--blue-l); text-decoration: none; }
    .contact-alts a:hover { text-decoration: underline; }

    /* ───── FOOTER ───── */
    footer {
      background: #1d1d1f; padding: 48px 24px 32px;
    }
    .foot-inner { max-width: 980px; margin: 0 auto; }
    .foot-top {
      display: flex; justify-content: space-between; align-items: flex-start;
      padding-bottom: 28px; border-bottom: 1px solid #3a3a3c; margin-bottom: 24px;
    }
    .foot-brand { font-size: 16px; font-weight: 600; color: #fff; letter-spacing: -0.3px; }
    .foot-tag { font-size: 13px; color: var(--light-grey); margin-top: 4px; }
    .foot-links { display: flex; gap: 56px; }
    .foot-col h4 { font-size: 12px; font-weight: 600; color: #fff; margin-bottom: 14px; }
    .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .foot-col ul li a {
      font-size: 12px; color: var(--light-grey);
      text-decoration: none; transition: color 0.2s;
    }
    .foot-col ul li a:hover { color: #fff; }
    .foot-bottom {
      display: flex; justify-content: space-between;
      font-size: 12px; color: #6e6e73;
    }

    /* ───── FADE-IN ANIMATIONS ───── */
    .fi {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .fi.vis { opacity: 1; transform: translateY(0); }
    .fi.d1 { transition-delay: 0.1s; }
    .fi.d2 { transition-delay: 0.2s; }
    .fi.d3 { transition-delay: 0.3s; }
    .fi.d4 { transition-delay: 0.4s; }

    /* ───── SUCCESS MODAL ───── */
    #modal {
      display: none; position: fixed; inset: 0; z-index: 9999;
      background: rgba(0,0,0,0.82);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      align-items: center; justify-content: center;
    }
    #modal.show { display: flex; }
    .modal-box {
      background: #1c1c1e; border: 1px solid rgba(255,255,255,0.1);
      border-radius: 28px; padding: 52px 44px; text-align: center;
      max-width: 380px; width: 90%; margin: 20px;
    }
    .modal-ico { font-size: 3rem; margin-bottom: 18px; }
    .modal-box h2 {
      color: #fff; font-size: 24px; font-weight: 700;
      letter-spacing: -0.5px; margin-bottom: 10px;
    }
    .modal-box p { color: rgba(255,255,255,0.5); font-size: 15px; line-height: 1.5; margin-bottom: 28px; }
    .modal-btn {
      background: var(--blue); color: #fff; border: none;
      border-radius: 980px; padding: 12px 30px;
      font-size: 15px; font-family: inherit; cursor: pointer;
      font-weight: 500; transition: background 0.2s;
    }
    .modal-btn:hover { background: var(--blue-h); }

    /* ───── PRIVACY MODAL ───── */
    #privacyModal {
      display: none; position: fixed; inset: 0; z-index: 9500;
      background: rgba(0,0,0,0.65);
      backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
      align-items: center; justify-content: center; padding: 20px;
    }
    #privacyModal.open { display: flex; }
    .priv-box {
      background: #fff; border-radius: 24px; padding: 0;
      max-width: 600px; width: 100%; max-height: 85vh;
      display: flex; flex-direction: column; overflow: hidden;
    }
    .priv-header {
      padding: 28px 32px 20px; border-bottom: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
      flex-shrink: 0;
    }
    .priv-header h2 { font-size: 20px; font-weight: 700; letter-spacing: -0.4px; }
    .priv-header span { font-size: 12px; color: var(--grey); }
    .priv-close {
      width: 30px; height: 30px; border-radius: 50%;
      background: rgba(0,0,0,0.07); border: none; font-size: 13px;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background 0.2s; flex-shrink: 0;
    }
    .priv-close:hover { background: rgba(0,0,0,0.14); }
    .priv-scroll {
      overflow-y: auto; padding: 28px 32px 32px; flex: 1;
    }
    .priv-scroll h3 {
      font-size: 15px; font-weight: 600; margin: 22px 0 8px; color: var(--near-black);
    }
    .priv-scroll h3:first-child { margin-top: 0; }
    .priv-scroll p { font-size: 14px; color: var(--grey); line-height: 1.65; margin-bottom: 10px; }
    .priv-scroll ul { padding-left: 18px; margin-bottom: 10px; }
    .priv-scroll ul li { font-size: 14px; color: var(--grey); line-height: 1.6; margin-bottom: 4px; }

    /* Cookie consent banner */
    #cookieBanner {
      position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
      z-index: 8000; width: calc(100% - 40px); max-width: 680px;
      background: rgba(29,29,31,0.96);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 18px; padding: 18px 22px;
      display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    }
    #cookieBanner p {
      font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.5; flex: 1; min-width: 200px;
    }
    #cookieBanner a { color: var(--blue-l); text-decoration: none; }
    .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
    .cookie-accept {
      font-size: 13px; font-weight: 500; padding: 8px 18px;
      background: var(--blue); color: #fff; border: none;
      border-radius: 980px; cursor: pointer; font-family: inherit;
      transition: background 0.2s;
    }
    .cookie-accept:hover { background: var(--blue-h); }
    .cookie-decline {
      font-size: 13px; font-weight: 500; padding: 8px 16px;
      background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
      border: none; border-radius: 980px; cursor: pointer; font-family: inherit;
      transition: background 0.2s;
    }
    .cookie-decline:hover { background: rgba(255,255,255,0.16); }

    /* Consent checkbox */
    .consent-row {
      grid-column: 1 / -1;
      display: flex; align-items: flex-start; gap: 10px;
    }
    .consent-row input[type="checkbox"] {
      width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
      accent-color: var(--blue); cursor: pointer;
    }
    .consent-row label {
      font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; cursor: pointer;
    }
    .consent-row a { color: var(--blue-l); text-decoration: none; }
    .consent-row a:hover { text-decoration: underline; }

    /* ───── RESPONSIVE ───── */
    @media (max-width: 860px) {
      .nav-links { display: none; }
      .steps-grid { grid-template-columns: 1fr 1fr; }
      .step:not(:last-child)::after { display: none; }
      .earn-layout { grid-template-columns: 1fr; }
      .foot-top { flex-direction: column; gap: 32px; }
      .foot-links { gap: 32px; }
      .foot-bottom { flex-direction: column; gap: 6px; }
    }
    @media (max-width: 600px) {
      .stat-grid { grid-template-columns: 1fr; text-align: center; }
      .steps-grid { grid-template-columns: 1fr; }
      .apply-form { grid-template-columns: 1fr; }
      .ff.full { grid-column: 1; }
      .calc-result { grid-template-columns: 1fr; }
    }