:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-green: #00c853;
    --accent-green-hover: #00e676;
    --urgency-color: #ff3d00;
    --bg-light: #f5f5f7;
    --bg-dark: #111111;
    --text-main: #333333;
    --text-muted: #666666;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1.2;
}

.text-center {
    text-align: center;
}

.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--accent-green);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--accent-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.6);
}

.cta-large {
    font-size: 1.1rem;
    padding: 18px 24px;
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    white-space: normal;
}

/* Urgency Text */
.urgency-text {
    color: var(--urgency-color);
    font-weight: 800;
    font-size: 1.1rem;
    margin: 15px 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Section 1: Hero Bar */
.hero-bar {
    background-color: var(--bg-dark);
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Section 2: Main Hero */
.main-hero {
    padding: 80px 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 200, 83, 0.05) 0%, transparent 70%);
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hero-left {
    flex: 1 1 500px;
}

.hero-left h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.highlight-green {
    color: var(--accent-green);
    position: relative;
    white-space: nowrap;
}

.highlight-green::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(0, 200, 83, 0.2);
    z-index: -1;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.check-icon {
    color: #fff;
    background-color: var(--accent-green);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 3px;
    font-weight: bold;
}

.hero-right {
    flex: 1 1 400px;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1f1f1f, #333333);
    border-radius: var(--border-radius);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    cursor: pointer;
}

.video-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(255,255,255,0.9);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

.play-button {
    width: 70px;
    height: 70px;
    background-color: var(--urgency-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    padding-left: 5px;
    box-shadow: 0 0 0 10px rgba(255, 61, 0, 0.2);
    transition: transform 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

/* Section 3: CTA Bar Light */
.cta-bar-light {
    background-color: var(--bg-light);
    padding: 60px 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.cta-bar-light h2 {
    font-size: 2rem;
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Section 4: Why Choose Us */
.why-choose-us {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

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

.icon-placeholder {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card p {
    font-weight: 500;
    font-size: 1.05rem;
}

/* Section 5: Achievements Bar */
.achievements-bar {
    background-color: var(--bg-dark);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.achievements-bar h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    padding: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Section 6: Case Study */
.case-study {
    padding: 80px 0;
}

.case-study-box {
    border: 2px solid rgba(0, 200, 83, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    background-color: #fff;
    box-shadow: var(--box-shadow);
}

.case-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    display: block;
    margin: 0 auto 40px;
    box-shadow: var(--box-shadow);
}

.thumbnail-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #fff;
    color: var(--primary-color);
    padding: 10px 20px;
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.project-name {
    color: var(--urgency-color);
    font-weight: 800;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 20px;
}

.case-details {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.15rem;
}

.case-details li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
}

.case-details li:last-child {
    border-bottom: none;
}

.highlight-box {
    background-color: rgba(0, 200, 83, 0.1);
    color: #008f3b;
    font-weight: 800;
    font-size: 2rem;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 800px;
    border: 2px solid rgba(0, 200, 83, 0.3);
}

/* Section 7: Meet Founder */
.meet-founder {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.founder-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    max-width: 900px;
}

.founder-left {
    flex: 1 1 300px;
    text-align: center;
}

.profile-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #9c27b0, #673ab7);
    box-shadow: var(--box-shadow);
    border: 8px solid #fff;
}

.founder-left h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.founder-label {
    color: var(--text-muted);
    font-weight: 500;
}

.founder-right {
    flex: 1 1 400px;
}

.founder-right h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.founder-right p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Section 8: Sticky Bottom Bar */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    color: #fff;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.sticky-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-text {
    font-weight: 700;
    font-size: 1.2rem;
}

.sticky-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sticky-timer {
    font-size: 1rem;
    font-weight: 600;
    color: #cccccc;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#countdown {
    color: var(--urgency-color);
    font-weight: 800;
    font-size: 1.2rem;
    font-variant-numeric: tabular-nums;
    animation: pulse 2s infinite;
}

.sticky-btn {
    padding: 12px 24px;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-left h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .main-hero { padding: 40px 0; }
    .hero-left h1 { font-size: 2rem; }
    .section-title { font-size: 2rem; }
    .achievements-bar h2 { font-size: 1.8rem; }
    .stat-number { font-size: 2.2rem; }
    
    .sticky-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .case-study-box {
        padding: 30px 20px;
    }
    
    .highlight-box {
        font-size: 1.4rem;
        padding: 15px;
    }
    
    .features-grid, .stats-grid {
        grid-template-columns: 1fr;
    }

    .case-details li {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

/* Booking Popup */
.booking-popup {
    position: fixed;
    bottom: 110px;
    left: 20px;
    background-color: #ffc107;
    color: #000;
    padding: 15px 40px 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1001;
    font-size: 0.95rem;
    max-width: 320px;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.booking-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.booking-popup p {
    margin: 0;
    line-height: 1.4;
}

.close-popup {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}

/* ── OVERLAY ── */
#quiz-overlay {
  display:none; position:fixed; inset:0;
  background:rgba(0,0,0,0.6); z-index:9999;
  align-items:center; justify-content:center; padding:16px;
}
#quiz-overlay.active { display:flex; }

/* ── BOX ── */
#quiz-box {
  background:#fff; border-radius:20px;
  width:100%; max-width:580px; max-height:92vh;
  overflow-y:auto; position:relative;
  color: #111;
}

#close-btn {
  position:absolute; top:16px; right:20px;
  background:none; border:none; font-size:22px;
  cursor:pointer; color:#aaa; z-index:10;
}
#close-btn:hover { color:#555; }

/* ── PROGRESS ── */
#progress-bar-wrap {
  height:5px; background:#e8ecf7;
  border-radius:99px; overflow:hidden;
  margin-bottom:0;
}
#progress-bar {
  height:100%; background:#1a3fad;
  border-radius:99px; transition:width 0.4s ease;
  width:0%;
}

/* ── SCREENS ── */
.screen { padding:36px 32px 32px; }

/* INTRO */
#intro-screen { text-align:center; }
.intro-tag {
  display:inline-block; background:#eef1fb;
  color:#1a3fad; font-size:12px; font-weight:600;
  letter-spacing:.06em; padding:4px 14px;
  border-radius:99px; margin-bottom:18px;
  text-transform:uppercase;
}
.intro-title {
  font-size:24px; font-weight:700; color:#0d1b5e;
  line-height:1.35; margin-bottom:12px;
}
.intro-sub {
  font-size:14px; color:#666; line-height:1.7;
  margin-bottom:28px; max-width:420px; margin-left:auto; margin-right:auto;
}
#start-btn {
  background:#1a3fad; color:#fff; border:none;
  border-radius:12px; padding:15px 36px;
  font-size:16px; font-weight:600; cursor:pointer;
  width:100%; transition:background .2s;
}
#start-btn:hover { background:#1432a0; }
.intro-note { font-size:12px; color:#aaa; margin-top:12px; }

/* QUESTION SCREEN */
#question-screen { display:none; }
.q-header {
  display:flex; align-items:center;
  justify-content:space-between; margin-bottom:20px;
}
.q-counter {
  font-size:12px; font-weight:600; color:#1a3fad;
  background:#eef1fb; padding:4px 12px;
  border-radius:99px; letter-spacing:.04em;
}
.q-text {
  font-size:19px; font-weight:700; color:#0d1b5e;
  line-height:1.4; margin-bottom:20px;
}

/* RADIO OPTIONS */
.options { display:flex; flex-direction:column; gap:10px; }
.opt {
  display:flex; align-items:center; gap:14px;
  border:1.5px solid #e2e6f3; border-radius:12px;
  padding:14px 16px; cursor:pointer;
  transition:all .15s; background:#fafbff;
}
.opt:hover { border-color:#1a3fad; background:#f0f4ff; }
.opt.selected { border-color:#1a3fad; background:#eef1fb; }
.opt-radio {
  width:20px; height:20px; border-radius:50%;
  border:2px solid #c8d0e8; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  transition:all .15s;
}
.opt.selected .opt-radio {
  border-color:#1a3fad; background:#1a3fad;
}
.opt.selected .opt-radio::after {
  content:''; width:8px; height:8px;
  border-radius:50%; background:#fff;
}
.opt-label { font-size:15px; color:#1a2547; font-weight:500; }

/* TEXT INPUT QUESTION */
.text-input-wrap { margin-top:4px; }
.text-input-wrap input {
  width:100%; border:1.5px solid #e2e6f3;
  border-radius:12px; padding:14px 16px;
  font-size:15px; color:#1a2547; outline:none;
  background:#fafbff; transition:border .15s;
}
.text-input-wrap input:focus { border-color:#1a3fad; }
.text-input-wrap input::placeholder { color:#aab0c8; }

/* NEXT BTN */
#next-btn {
  display:none; width:100%; margin-top:20px;
  background:#1a3fad; color:#fff; border:none;
  border-radius:12px; padding:14px;
  font-size:15px; font-weight:600; cursor:pointer;
  transition:background .2s;
}
#next-btn:hover { background:#1432a0; }

/* CONTACT SCREEN */
#contact-screen { display:none; }
.contact-title {
  font-size:20px; font-weight:700; color:#0d1b5e;
  margin-bottom:6px;
}
.contact-sub {
  font-size:14px; color:#888; margin-bottom:24px;
  line-height:1.6;
}
.fields { display:flex; flex-direction:column; gap:16px; }
.field-group { display:flex; flex-direction:column; gap:6px; }
.field-group label {
  font-size:13px; font-weight:700; color:#0d1b5e;
  letter-spacing:.02em;
}
.field-group input {
  border:1.5px solid #e2e6f3; border-radius:12px;
  padding:13px 16px; font-size:15px; color:#1a2547;
  outline:none; background:#fafbff;
  transition:border .15s;
}
.field-group input:focus { border-color:#1a3fad; }
.field-group input::placeholder { color:#aab0c8; }

#submit-btn {
  width:100%; margin-top:8px;
  background:#1a3fad; color:#fff; border:none;
  border-radius:12px; padding:15px;
  font-size:16px; font-weight:600; cursor:pointer;
  transition:background .2s;
}
#submit-btn:hover { background:#1432a0; }
#submit-btn:disabled { background:#8fa3d4; cursor:not-allowed; }
.submit-note {
  font-size:12px; color:#aaa; text-align:center;
  margin-top:10px;
}

/* THANK YOU */
#thankyou-screen { display:none; text-align:center; padding:48px 32px; }
.ty-icon { font-size:52px; margin-bottom:16px; }
.ty-title { font-size:22px; font-weight:700; color:#0d1b5e; margin-bottom:10px; }
.ty-msg { font-size:14px; color:#666; line-height:1.7; }

@media(max-width:480px){
  .screen { padding:28px 20px 24px; }
  .q-text { font-size:17px; }
}
