/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    --primary-blue: #0056b3;
    --primary-green: #2ECC71;
    --bg-color: #ffffff;
    --section-grey: #f4f7f9;
    --card-bg: #ffffff;
    --text-dark: #333;
    --text-light: #666;
    --accent-orange: #FF9500;
    --border-color: #e0e0e0;
}

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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    /* padding-bottom: 80px; Removed to fix gaps */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main { flex: 1; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* =========================================
   NAVIGATION & HEADER
   ========================================= */
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 1rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo, .logo { height: 100px; display: block; width: auto; }

.main-nav .nav-list { display: flex; gap: 2rem; }
.main-nav a { font-weight: 600; color: var(--text-dark); font-size: 1.1rem; }
.main-nav a:hover { color: var(--primary-blue); }

.btn-account {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-account:hover { background-color: var(--primary-blue); color: white; }

@media (max-width: 768px) {
    .nav-container { flex-wrap: wrap; }
    .main-nav { order: 3; width: 100%; margin-top: 15px; display: block; border-top: 1px solid #eee; padding-top: 15px; }
    .main-nav .nav-list { flex-direction: column; gap: 15px; text-align: center; }
    .nav-logo { height: 60px; }
}

/* =========================================
   HOMEPAGE SECTIONS
   ========================================= */
.hero {
    background: linear-gradient(135deg, var(--primary-blue), #003d80);
    color: white;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    min-height: 600px;
}
.hero-container {
    max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-text { text-align: left; }
.hero-badge {
    color: white; font-weight: bold; text-transform: uppercase; font-size: 1.2rem; margin-bottom: 1rem; display: inline-block; letter-spacing: 1px;
}
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; line-height: 1.1; font-weight: 800; }
.hero-sub { font-size: 1.3rem; margin-bottom: 2.5rem; opacity: 0.95; max-width: 500px; }
.cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-button {
    padding: 18px 35px; border-radius: 50px; font-weight: 700; font-size: 1.1rem; box-shadow: 0 4px 6px rgba(0,0,0,0.2); text-align: center;
}
.cta-button.primary { background-color: var(--accent-orange); color: white; }
.cta-button.primary:hover { background-color: #e68a00; transform: translateY(-2px); }
.cta-button.secondary { background-color: white; color: var(--primary-blue); }
.cta-button.secondary:hover { background-color: #f0f0f0; transform: translateY(-2px); }

.hero-video { width: 100%; }
.video-frame {
    position: relative; padding-bottom: 56.25%; height: 0; border-radius: 20px; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3); background: #000; border: 4px solid rgba(255,255,255,0.2);
}
.video-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; gap: 3rem; }
    .hero-text { text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .cta-group { justify-content: center; }
    .hero { padding: 3rem 1rem; }
}

/* =========================================
   PROCESS SECTION (Grid Fix Applied Here)
   ========================================= */
.section { padding: 5rem 1rem; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.5rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.section-header p { color: var(--text-light); font-size: 1.2rem; }

/* YOUR NEW RESPONSIVE GRID CSS */
.process-grid {
  display: flex;
  flex-direction: column;  /* Stack on mobile */
  gap: 2rem;
  align-items: center;
}

.process-step {
  flex: 1;
  text-align: center;
  max-width: 300px;
  padding: 1rem;
}

.step-number {
  display: inline-block;
  width: 3.5rem; /* Slightly bigger for visibility */
  height: 3.5rem;
  line-height: 3.5rem;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.process-step h3 { margin: 0.5rem 0; color: var(--primary-blue); font-size: 1.3rem; }
.process-step p { margin: 0.5rem 0; color: var(--text-light); }

@media (min-width: 768px) {
  .process-grid {
    flex-direction: row;  /* Horizontal on Desktop */
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
  }
  .process-step {
    flex: 1;
    max-width: none;
  }
}

/* =========================================
   AUTH PAGE (Login / Signup Split)
   ========================================= */
.auth-container {
    max-width: 1000px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Side by side */
    gap: 40px;
    padding: 0 20px;
}

.auth-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.auth-header { text-align: center; margin-bottom: 20px; }
.auth-header h2 { color: var(--primary-blue); }

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid #ddd;
    text-decoration: none;
}

.google-btn { background: white; color: #333; }
.fb-btn { background: #1877F2; color: white; border: none; }
.google-btn:hover { background: #f5f5f5; }
.fb-btn:hover { background: #1565c0; }

.divider { text-align: center; margin: 20px 0; position: relative; }
.divider span { background: white; padding: 0 10px; color: #999; font-size: 0.9rem; position: relative; z-index: 1; }
.divider::before {
    content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: #eee; z-index: 0;
}

.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 0.9rem; }
.form-group input {
    width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 1rem;
}

@media (max-width: 800px) {
    .auth-container { grid-template-columns: 1fr; }
}

/* =========================================
   DASHBOARD & CHECKLIST
   ========================================= */
.dashboard-header {
    background: var(--primary-blue);
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.dashboard-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.checklist-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.checklist-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    transition: 0.2s;
}
.checklist-item:last-child { border-bottom: none; }
.checklist-item:hover { background: #fcfcfc; }

.status-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
}

.status-done { background: #e8f5e9; color: var(--primary-green); }
.status-pending { background: #fff3e0; color: var(--accent-orange); }
.status-locked { background: #f5f5f5; color: #ccc; }

.item-details { flex-grow: 1; }
.item-details h4 { margin: 0; font-size: 1.1rem; }
.item-details p { margin: 5px 0 0; font-size: 0.9rem; color: #666; }

.item-action {
    padding: 8px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: bold; text-decoration: none;
}
.btn-resume { border: 1px solid var(--primary-blue); color: var(--primary-blue); }
.btn-resume:hover { background: var(--primary-blue); color: white; }
.btn-edit { color: #999; }
.btn-edit:hover { color: var(--primary-blue); text-decoration: underline; }

@media (max-width: 800px) {
    .dashboard-grid { grid-template-columns: 1fr; }
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.features { background-color: var(--section-grey); width: 100%; max-width: 100%; }
.features-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.feature-card {
    background: white; padding: 3rem 2rem; border-radius: 16px; text-align: center; border: 1px solid #eee; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.feature-card:hover { transform: translateY(-10px); border-color: var(--primary-green); }
.icon-circle {
    width: 80px; height: 80px; background: #e8f5e9; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--primary-green); font-size: 2.5rem;
}

/* =========================================
   FOOTER
   ========================================= */
footer { background: #1a1a1a; color: #fff; padding: 4rem 1rem 1rem; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { color: var(--primary-green); margin-bottom: 1.5rem; font-size: 1.2rem; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col a:hover { color: var(--primary-green); text-decoration: underline; }
.footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 2rem; font-size: 0.9rem; color: #888; }

/* =========================================
   QUIZ, TOOLTIP & FORM UTILITIES (Preserved)
   ========================================= */
.container { max-width: 800px; margin: 30px auto; padding: 0 15px; }

.progress-wrapper { flex-grow: 1; margin-left: 30px; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-light); margin-bottom: 5px; }
.progress-track { background: #eee; height: 8px; border-radius: 4px; overflow: hidden; }
.progress-fill { background: linear-gradient(90deg, var(--primary-blue), var(--primary-green)); height: 100%; transition: width 0.4s ease; }

.question-card {
    background: var(--card-bg); padding: 25px; border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02); border: 1px solid var(--border-color);
    margin-bottom: 20px; position: relative;
}
.critical-card { border-left: 5px solid var(--primary-green); }
.badge-critical { 
    position: absolute; top: -10px; right: 20px; background: var(--primary-green); color: white; 
    font-size: 0.75rem; padding: 4px 10px; border-radius: 20px; font-weight: bold;
}
.q-num {
    background: var(--primary-blue); color: white; width: 30px; height: 30px; 
    display: flex; align-items: center; justify-content: center; border-radius: 50%; 
    font-size: 0.9rem; font-weight: bold; margin-right: 10px; flex-shrink: 0;
}
.q-header { display: flex; align-items: center; margin-bottom: 20px; }
.q-label { display: block; font-size: 1.2rem; font-weight: 600; margin-bottom: 0; line-height: 1.5; flex-grow: 1; margin-right: 10px; }

.tooltip-container { position: relative; display: inline-block; cursor: pointer; margin-left: 8px; }
.tooltip-icon { color: #4A90E2; font-size: 1.3rem; }
.tooltip-text {
    visibility: hidden; width: 220px; background-color: #333; color: #fff; text-align: center;
    border-radius: 6px; padding: 8px; position: absolute; z-index: 10; bottom: 140%; left: 50%; margin-left: -110px;
    opacity: 0; transition: opacity 0.3s; font-size: 0.9rem; font-weight: normal; box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.tooltip-text::after {
    content: ""; position: absolute; top: 100%; left: 50%; margin-left: -5px;
    border-width: 5px; border-style: solid; border-color: #333 transparent transparent transparent;
}
.tooltip-container:hover .tooltip-text { visibility: visible; opacity: 1; }

/* Toggles (Wrapper 35) */
.checkbox-wrapper-35 .switch { display: none; }
.checkbox-wrapper-35 .switch + label {
  align-items: center; color: #333 !important; cursor: pointer; display: flex;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 18px; line-height: 1.5;
  position: relative; user-select: none; font-weight: 800;
}
.checkbox-wrapper-35 .switch + label::before {
  background-color: #7fffd4; border-radius: 500px; height: 40px; margin-right: 15px;
  transition: background-color 0.125s ease-out; width: 70px; content: ''; display: block;
}
.checkbox-wrapper-35 .switch + label::after {
  background-color: #fff; border-radius: 50%; height: 34px; left: 3px; position: absolute; top: 3px;
  transition: transform 0.125s ease-out; width: 34px; content: ''; display: block;
  box-shadow: 0 3px 1px 0 rgba(37, 34, 71, 0.05), 0 2px 2px 0 rgba(37, 34, 71, 0.1);
}
.checkbox-wrapper-35 .switch + label .switch-x-text { display: block; margin-right: .8em; font-size: 1.2rem; }
.checkbox-wrapper-35 .switch + label .switch-x-toggletext {
  display: block; font-weight: 900; height: 28px; overflow: hidden; position: relative; width: 120px; text-align: left;
}
.checkbox-wrapper-35 .switch + label .switch-x-unchecked,
.checkbox-wrapper-35 .switch + label .switch-x-checked {
  left: 0; position: absolute; top: 0; transition: transform 0.125s ease-out, opacity 0.125s ease-out; color: #000 !important;
}
.checkbox-wrapper-35 .switch + label .switch-x-unchecked { opacity: 1; transform: none; }
.checkbox-wrapper-35 .switch + label .switch-x-checked { opacity: 0; transform: translate3d(0, 100%, 0); }
.checkbox-wrapper-35 .switch:checked + label::before { background-color: #228B22; }
.checkbox-wrapper-35 .switch:checked + label::after { transform: translate3d(30px, 0, 0); }
.checkbox-wrapper-35 .switch:checked + label .switch-x-unchecked { opacity: 0; transform: translate3d(0, -100%, 0); }
.checkbox-wrapper-35 .switch:checked + label .switch-x-checked { opacity: 1; transform: none; }

/* Likert & Slider styles */
.likert-container { display: flex; justify-content: space-between; gap: 5px; margin-top: 15px; }
.likert-opt { flex: 1; text-align: center; position: relative; }
.likert-opt input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.likert-opt label {
    display: block; padding: 10px 5px; border: 2px solid #eee; border-radius: 8px;
    font-size: 0.85rem; color: var(--text-light); cursor: pointer; transition: all 0.2s; background: #fafafa;
}
.likert-opt label:hover { border-color: var(--primary-blue); color: var(--primary-blue); }
.likert-opt input:checked + label {
    background-color: #e6f0ff; border-color: var(--primary-blue); color: var(--primary-blue); font-weight: bold;
    transform: translateY(-2px); box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
@media (max-width: 600px) {
    .likert-container { flex-direction: column; }
    .likert-opt label { text-align: left; padding-left: 15px; }
}

.slider-wrapper {
    display: flex; align-items: center; gap: 15px; background: #f8f9fa; padding: 15px; border-radius: 8px; margin-top: 15px;
}
.styled-slider { flex-grow: 1; cursor: pointer; accent-color: var(--primary-green); }
.slider-label { font-size: 0.85rem; font-weight: bold; color: var(--primary-blue); width: 100px; }
.slider-label.right { text-align: right; }
.slider-value { text-align: center; margin-top: 10px; font-weight: bold; color: var(--primary-green); }

.quiz-nav { display: flex; justify-content: space-between; margin-top: 30px; padding-top: 20px; border-top: 1px solid #eee; }
.error-text { color: #e74c3c; text-align: center; margin-top: 15px; font-weight: bold; }
.conditional-text { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 8px; margin-top: 15px; font-family: inherit; }

:root {
    --primary-blue: #0056b3;
    --primary-green: #2ECC71;
    --bg-color: #ffffff;
    --section-grey: #f4f7f9;
    --card-bg: #ffffff;
    --text-dark: #333;
    --text-light: #666;
    --accent-orange: #FF9500;
    --border-color: #e0e0e0;
}

/* ... (Keep Reset, Body, Main Header styles) ... */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: var(--bg-color); color: var(--text-dark); line-height: 1.6; min-height: 100vh; display: flex; flex-direction: column; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* HEADER & NAV */
.main-header { background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; padding: 0.5rem 1rem; }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.nav-logo, .logo { height: 100px; display: block; width: auto; }

/* Desktop Nav */
.main-nav .nav-list { display: flex; gap: 2rem; }
.main-nav a { font-weight: 600; color: var(--text-dark); font-size: 1.1rem; }
.main-nav a:hover { color: var(--primary-blue); }

.nav-actions { display: flex; align-items: center; gap: 15px; }

.btn-account {
    background-color: transparent; border: 2px solid var(--primary-blue); color: var(--primary-blue);
    padding: 10px 25px; border-radius: 30px; font-weight: 700; display: flex; align-items: center; gap: 8px;
}
.btn-account:hover { background-color: var(--primary-blue); color: white; }

/* HAMBURGER MENU (Mobile) */
.hamburger-btn {
    display: none; font-size: 1.5rem; color: var(--text-dark); background: none; border: none; cursor: pointer;
}

/* Slide-out Drawer */
.mobile-menu {
    position: fixed; top: 0; right: -300px; width: 300px; height: 100vh;
    background: white; box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 2000; transition: right 0.3s ease; padding: 20px;
    display: flex; flex-direction: column;
}
.mobile-menu.active { right: 0; }

.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 1500;
    display: none;
}
.mobile-menu-overlay.active { display: block; }

.close-btn {
    align-self: flex-end; background: none; border: none; font-size: 2rem; cursor: pointer; color: #666;
}

.mobile-nav-list { margin-top: 20px; }
.mobile-nav-list li { border-bottom: 1px solid #eee; }
.mobile-nav-list a {
    display: block; padding: 15px 0; font-size: 1.2rem; font-weight: 600; color: var(--text-dark);
}

/* MOBILE QUERY */
@media (max-width: 768px) {
    .main-nav { display: none; } /* Hide desktop links */
    .hamburger-btn { display: block; } /* Show hamburger */
    .nav-logo { height: 60px; }
    .btn-account { padding: 8px 15px; font-size: 0.9rem; } /* Smaller account btn */
}

/* MARKETING PAGE SPECIFIC */
.marketing-header { text-align: center; padding: 60px 20px; background: white; }
.marketing-header h1 { color: var(--primary-blue); font-size: 2.5rem; margin-bottom: 10px; }
.subtext { font-size: 1.2rem; max-width: 600px; margin: 0 auto; color: #666; }

.marketing-grid { max-width: 900px; margin: 40px auto; display: grid; gap: 20px; padding: 0 20px; }
.benefit-card { 
    background: white; padding: 30px; border-radius: 12px; border-left: 6px solid var(--primary-green); 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.benefit-card h2 { color: var(--text-dark); font-size: 1.5rem; display: flex; align-items: center; gap: 10px; }
.benefit-card p { color: var(--text-light); font-size: 1.1rem; margin-top: 10px; }

.cta-container { text-align: center; margin: 60px 0; }
.btn-massive { 
    background: var(--accent-orange); color: white; padding: 20px 50px; font-size: 1.5rem; 
    border-radius: 50px; font-weight: bold; text-decoration: none; 
    box-shadow: 0 10px 25px rgba(255, 149, 0, 0.3); transition: transform 0.2s; display: inline-block;
}
.btn-massive:hover { transform: scale(1.05); }

/* UI PREVIEW SECTION */
.ui-showcase { background: var(--section-grey); padding: 60px 20px; }
.ui-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.ui-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.05); text-align: center; padding-bottom: 20px; }
.ui-card p { padding: 0 20px; color: #666; font-size: 0.9rem; }
.ui-placeholder {
    height: 200px; background: #e0e7ff; display: flex; flex-direction: column; 
    align-items: center; justify-content: center; color: var(--primary-blue);
    margin-bottom: 20px;
}
.ui-placeholder i { font-size: 3rem; margin-bottom: 10px; }
.ui-placeholder span { font-weight: bold; }

img[src*="logo.jpg"] {
    transform: scale(1.3);  /* 30% bigger (1.0 = original, 1.3 = +30%) */
    transform-origin: center;  /* Scales from center to avoid shifting */
}

/* =========================================
   PAYMENT & MARKETING SPLASH
   ========================================= */
.payment-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Left Side Marketing */
.pay-header { font-size: 2.5rem; color: var(--primary-blue); line-height: 1.2; margin-bottom: 15px; }
.pay-sub { font-size: 1.2rem; color: #666; margin-bottom: 40px; }

.benefit-list { display: flex; flex-direction: column; gap: 30px; }
.benefit-item { display: flex; gap: 20px; align-items: flex-start; }
.b-icon { 
    font-size: 1.5rem; color: var(--primary-green); 
    background: #e8f5e9; width: 60px; height: 60px; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 50%; flex-shrink: 0;
}
.benefit-item h4 { margin: 0 0 5px 0; font-size: 1.1rem; color: #333; }
.benefit-item p { margin: 0; color: #666; line-height: 1.5; }

/* Right Side Card */
.payment-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #eee;
    position: sticky;
    top: 100px;
}

.card-header {
    background: linear-gradient(135deg, var(--primary-blue), #003d80);
    color: white;
    padding: 30px;
    text-align: center;
}
.card-header h3 { color: white; margin-bottom: 10px; font-size: 1.5rem; opacity: 0.9; }

.price { font-size: 4rem; font-weight: 800; line-height: 1; display: flex; justify-content: center; align-items: flex-start; }
.currency { font-size: 2rem; margin-top: 10px; }
.period { font-size: 1rem; font-weight: normal; align-self: flex-end; margin-bottom: 10px; opacity: 0.8; }

.card-body { padding: 30px; }

.check-list { margin-bottom: 30px; }
.check-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; font-weight: 500; color: #444; }
.check-list li i { color: var(--primary-green); }

.btn-pay {
    width: 100%;
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 5px 15px rgba(255, 149, 0, 0.3);
}
.btn-pay:hover { transform: translateY(-3px); background: #e68a00; }

.secure-note { text-align: center; margin-top: 15px; font-size: 0.85rem; color: #888; }
.secure-note i { color: #4caf50; margin-right: 5px; }

.guarantee {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .payment-layout { grid-template-columns: 1fr; gap: 40px; }
    .payment-card { position: static; }
    .pay-header { font-size: 2rem; }
}

/* =========================================
   GLOBAL BUTTON OVERRIDES (Fixing "Windows 97" Look)
   ========================================= */

/* Target all button types to ensure no ugly defaults remain */
button, 
input[type="submit"], 
input[type="button"], 
input[type="reset"] {
    /* 1. Reset Default Styles */
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    
    /* 2. Apply Brand Styling */
    background-color: var(--primary-blue); /* Matches your brand blue */
    color: white;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    
    /* 3. Shape & Spacing */
    padding: 14px 28px;
    border-radius: 50px; /* Pill shape like your homepage buttons */
    width: auto;         /* Prevents them from stretching 100% unless specified */
    min-width: 120px;    /* Ensures they aren't too small */
    
    /* 4. Interaction & Depth */
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 86, 179, 0.2); /* Soft blue shadow */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 0.5px;
}

/* Hover Effect - Slight Lift */
button:hover, 
input[type="submit"]:hover, 
input[type="button"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 86, 179, 0.3);
    background-color: #004494; /* Slightly darker blue */
}

/* Active/Click Effect - Push Down */
button:active, 
input[type="submit"]:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 5px rgba(0, 86, 179, 0.3);
}

/* OPTIONAL: Make "Sign In" buttons grey/ghost if they are secondary */
/* Usage: <button class="btn-secondary">Sign In</button> */
button.btn-secondary,
input[type="button"].btn-secondary {
    background-color: #f0f2f5;
    color: var(--text-dark);
    box-shadow: none;
}
button.btn-secondary:hover {
    background-color: #e4e6e9;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Fix for Full-Width buttons in forms (like "Create Account") */
.form-group button,
.form-group input[type="submit"] {
    width: 100%;
    margin-top: 10px;
}

/* =========================================
   MOBILE OPTIMIZATION (Add/Replace at bottom of file)
   ========================================= */

@media (max-width: 768px) {
    /* 1. NAVBAR FIXES */
    /* Keep Logo and Actions in one straight line, never wrap */
    .nav-container {
        flex-wrap: nowrap !important;
        padding: 10px 15px;
    }

   /* Adds padding to the "How will you use..." header on mobile */
    body > div > h1, body > div > p { 
        padding-left: 20px; 
        padding-right: 20px; 
    }
    /* INCREASED LOGO SIZE HERE (90px is 50% bigger than previous 60px) */
    .nav-logo, .logo {
        height: 5rem !important; 
        width: auto;
    }

    /* Ensure My Account and Hamburger stay side-by-side */
    .nav-actions {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px; /* Space between button and hamburger */
        white-space: nowrap;
    }

    /* Shrink the My Account button slightly to fit */
    .btn-account {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    /* Ensure Hamburger is visible and sized correctly */
    .hamburger-btn {
        display: block !important;
        margin-left: 5px;
        font-size: 1.4rem;
    }

    /* 2. ROLE SELECT PAGE FIXES */
    .role-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* Perfectly center items */
        justify-content: center;
        width: 100%;
        padding: 0 20px; /* Prevent touching edges */
        margin-top: 30px;
        box-sizing: border-box;
    }

    .role-card {
        width: 100%;
        max-width: 340px; /* Ensures card fits on iPhone SE/Pixel */
        margin: 0 0 20px 0; /* Add space between stacked cards */
        padding: 25px; /* Reduce padding from 40px to save space */
        box-sizing: border-box;
    }

    /* 3. GENERAL MOBILE FIXES */
    body, html { overflow-x: hidden; width: 100%; }
    
    /* Hero */
    .hero-text { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .cta-group { justify-content: center; }
    .gallery { width: 100%; max-width: 300px; margin: 0 auto; }

    /* Process Grid */
    .process-grid { display: flex; flex-direction: column; align-items: center; width: 100%; }
    .process-step { max-width: 300px; margin: 0 auto 30px auto; }
    
    /* Footer */
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}

/* Extra small screens (Quiz Fixes) */
@media (max-width: 600px) {
    .slider-wrapper { flex-direction: column; gap: 5px; padding: 15px 10px; }
    .slider-label { width: 100%; text-align: center !important; }
    .likert-container { flex-direction: column; }
    .likert-opt label { text-align: left; padding-left: 15px; }
    
    /* Tweak header logo on very small screens to make room for actions */
    .nav-logo { height: 40px; }
}

/* =========================================
   HOUSE ANIMATION & NEW MARKETING UI
   ========================================= */

/* The House Container */
.house-wrapper {
    position: relative;
    height: 350px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    perspective: 1000px; /* Essential for 3D door swing */
}

/* The CSS House (Your Asset + Modern Tweaks) */
.house {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    height: 200px; width: 260px;
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 2;
}

/* Roof */
.house::before {
    content: ''; position: absolute;
    top: -95px; left: 33px;
    height: 183px; width: 183.5px;
    background: #fff;
    transform: rotate(45deg);
    border-top: 10px solid var(--primary-blue);
    border-left: 10px solid var(--primary-blue);
    z-index: 2;
}
/* Chimney */
.house::after {
    content: ''; position: absolute;
    top: -70px; left: 15px;
    height: 70px; width: 30px;
    background: var(--primary-blue);
    z-index: 1;
}

/* Window */
.window {
    position: absolute;
    top: 35px; left: 25px;
    height: 80px; width: 70px;
    background: #d4f1f9;
    z-index: 3;
    border: 4px solid var(--primary-blue);
    overflow: hidden;
}
.window::before, .window::after {
    content: ''; position: absolute; background: var(--primary-blue);
}
.window::before { top: 0; left: 50%; height: 100%; width: 2px; transform: translateX(-50%); }
.window::after { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }

/* The Door (Animated) */
.door {
    position: absolute;
    top: 70px; left: 150px;
    height: 130px; width: 70px;
    background: var(--primary-blue);
    z-index: 5; /* Higher than reveal content initially */
    transform-origin: left center; /* Swing from hinge */
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.door.open {
    transform: rotateY(-120deg); /* Swing open */
}

.door::before {
    content: ''; position: absolute;
    top: 50%; right: 10px;
    height: 8px; width: 8px;
    border-radius: 50%;
    background: gold;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* The "Secret" Content Inside the Door */
.reveal-content {
    position: absolute;
    top: 70px; left: 150px;
    height: 130px; width: 70px;
    background: #fffbeb; /* Light yellow inside light */
    z-index: 4; /* Behind door */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: bold;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
}

/* Polished Marketing Cards */
.value-section {
    background: white;
    padding: 80px 20px;
}
.value-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.math-card {
    background: var(--section-grey);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-green);
    margin-bottom: 20px;
}
.math-title { font-size: 1.2rem; color: var(--primary-blue); font-weight: bold; margin-bottom: 10px; }
.math-stat { font-size: 2.5rem; font-weight: 800; color: var(--text-dark); }
.math-sub { font-size: 0.9rem; color: #666; }

/* Mobile tweaks for new section */
@media (max-width: 768px) {
    .value-container { grid-template-columns: 1fr; }
    .house-wrapper { transform: scale(0.8); } /* Shrink house slightly on mobile */
}

/* --- MARKETING GRID LAYOUT --- */
.marketing-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: 1 column */
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .marketing-grid {
        grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns */
    }
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%; /* Ensures all boxes are same height */
    
    /* The "L" shaped border */
    border-left: 6px solid #ccc;
    border-bottom: 6px solid #ccc;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* --- COLOR VARIANTS --- */
/* Blue Card */
.benefit-card.card-blue {
    border-left-color: #0056b3;
    border-bottom-color: #0056b3;
}

/* Orange Card */
.benefit-card.card-orange {
    border-left-color: #e67e22;
    border-bottom-color: #e67e22;
}

/* Green Card */
.benefit-card.card-green {
    border-left-color: #27ae60;
    border-bottom-color: #27ae60;
}

/* --- FOOTER STYLES --- */
footer {
    background-color: #333;
    color: #fff;
    padding: 60px 20px 20px;
    margin-top: auto; /* Pushes footer to bottom if page is short */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* =========================================
   MOBILE FIXES FOR ISSUES 1-6
   ========================================= */

/* --- ISSUE 1: IDENTITY VERIFICATION HEADER OVERFLOW --- */
/* Target specific header on background-gather page if possible or apply globally to form-card h1 */
.form-card h1 {
    font-size: clamp(1.5rem, 5vw, 2.2rem) !important; /* Responsive sizing */
    line-height: 1.2;
    word-wrap: break-word; /* Ensure wrapping */
    padding: 0 10px;
}

/* --- ISSUE 2: DASHBOARD BUTTON WRAPPING --- */
/* Fix checklist items on mobile to prevent squished buttons */
@media (max-width: 480px) {
    .checklist-item {
        flex-wrap: nowrap; /* Prevent wrapping to new lines if possible */
        gap: 10px;
        padding: 15px;
    }
    .status-icon {
        margin-right: 10px;
        width: 32px; height: 32px; font-size: 1rem; /* Smaller icon */
    }
    .item-details h4 {
        font-size: 0.95rem; /* Smaller text */
    }
    .item-details p {
        font-size: 0.8rem;
    }
    .item-action {
        padding: 6px 10px;
        font-size: 0.8rem;
        min-width: auto; /* Allow shrinking */
    }
    /* If button text is strictly too long, force stack nicely */
    .checklist-item.stack-mobile {
        flex-wrap: wrap;
    }
}

/* --- ISSUE 3: LANDING INFO CARD CLIPPING --- */
/* Ensure sufficient top spacing for fixed header */
.marketing-header {
    padding-top: 80px !important; /* Push content down */
    margin-top: 0; /* Remove negative margins if any */
}
/* Specifically for the header h1 inside marketing */
.marketing-header h1 {
    font-size: clamp(2rem, 8vw, 3.5rem) !important;
    line-height: 1.1;
    padding: 0 15px;
}

/* --- ISSUE 4: ZERO SCAMMERS TYPOGRAPHY --- */
/* Fix alignment in math cards */
.math-card .math-stat {
    display: flex;
    align-items: baseline; /* Align text baselines */
    flex-wrap: wrap; /* Allow wrapping if needed */
    gap: 8px;
    line-height: 1.2;
}
.math-stat span {
    font-size: 1rem;
    font-weight: normal;
    white-space: nowrap;
}
/* Specific fix for "Zero scammers" */
@media (max-width: 400px) {
    .math-stat { font-size: 2rem !important; }
}

/* --- ISSUE 5: CONTACT BUTTON OVERFLOW --- */
/* Fix long emails in buttons */
.btn-massive, .cta-button, .btn-pay {
    max-width: 100%;
    white-space: normal !important; /* Allow wrapping */
    word-break: break-word; /* Break long emails */
    padding: 15px 20px !important; /* Reduce padding on mobile */
    text-align: center;
    line-height: 1.3;
}
.cta-container {
    padding: 0 20px; /* Safety padding */
}

/* --- ISSUE 6: PROFILE INTERESTS GRID --- */
/* Fix options grid for mobile */
.options-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important; /* Smaller min-width */
    gap: 8px !important;
}
.check-label {
    padding: 10px 8px !important; /* Smaller padding */
    font-size: 0.85rem !important;
}

@media (max-width: 400px) {
    .options-grid {
        grid-template-columns: 1fr !important; /* Stack single column on very small screens */
    }
    .check-