/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #102435;
    --primary-light: #1a3a52;
    --accent: #d1b247;
    --accent-hover: #bca03e;
    --text: #333;
    --text-light: #666;
    --white: #fff;
    --off-white: #f8f9fa;
    --border: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
}

h1, h2 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    line-height: 1.3;
}

h3, h4 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-nav {
    padding: 10px 24px;
    background-color: var(--accent);
    color: var(--primary);
}

.btn-large {
    padding: 18px 48px;
    font-size: 16px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: filter 0.3s ease;
}

.logo-text {
    font-family: 'Inter Tight', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    transition: color 0.3s ease;
}

.navbar.scrolled .logo-text {
    color: var(--primary);
}

.navbar.scrolled .logo-img {
    filter: none;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--text);
}

.nav-links a:hover {
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.navbar.scrolled .mobile-menu-btn span {
    background-color: var(--primary);
}

/* ========================================
   HERO SECTION WITH CHAOS ANIMATION
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.chaos-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.chaos-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    color: rgba(255, 255, 255, 0.3);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 6s ease-in-out infinite;
}

.chaos-icon svg {
    width: 100%;
    height: 100%;
}

/* Initial chaotic positions */
.chaos-icon[data-icon="email"] { top: 15%; left: 8%; animation-delay: 0s; }
.chaos-icon[data-icon="calendar"] { top: 25%; left: 85%; animation-delay: 0.5s; }
.chaos-icon[data-icon="task"] { top: 60%; left: 5%; animation-delay: 1s; }
.chaos-icon[data-icon="doc"] { top: 70%; left: 90%; animation-delay: 1.5s; }
.chaos-icon[data-icon="clock"] { top: 10%; left: 45%; animation-delay: 2s; }
.chaos-icon[data-icon="chart"] { top: 80%; left: 40%; animation-delay: 2.5s; }
.chaos-icon[data-icon="folder"] { top: 35%; left: 15%; animation-delay: 3s; }
.chaos-icon[data-icon="message"] { top: 45%; left: 80%; animation-delay: 3.5s; }
.chaos-icon[data-icon="users"] { top: 85%; left: 20%; animation-delay: 4s; }
.chaos-icon[data-icon="dollar"] { top: 20%; left: 70%; animation-delay: 4.5s; }
.chaos-icon[data-icon="bell"] { top: 55%; left: 25%; animation-delay: 5s; }
.chaos-icon[data-icon="clipboard"] { top: 40%; left: 60%; animation-delay: 5.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-3deg); }
    75% { transform: translateY(-25px) rotate(3deg); }
}

/* Tamed state - organized grid */
.hero.tamed .chaos-icon {
    animation: none;
    color: var(--accent);
    opacity: 1;
}

.hero.tamed .chaos-icon[data-icon="email"] { top: 20%; left: 20%; transform: rotate(0deg) scale(1.1); }
.hero.tamed .chaos-icon[data-icon="calendar"] { top: 20%; left: 35%; transform: rotate(0deg) scale(1.1); }
.hero.tamed .chaos-icon[data-icon="task"] { top: 20%; left: 50%; transform: rotate(0deg) scale(1.1); }
.hero.tamed .chaos-icon[data-icon="doc"] { top: 20%; left: 65%; transform: rotate(0deg) scale(1.1); }
.hero.tamed .chaos-icon[data-icon="clock"] { top: 20%; left: 80%; transform: rotate(0deg) scale(1.1); }
.hero.tamed .chaos-icon[data-icon="chart"] { top: 75%; left: 20%; transform: rotate(0deg) scale(1.1); }
.hero.tamed .chaos-icon[data-icon="folder"] { top: 75%; left: 35%; transform: rotate(0deg) scale(1.1); }
.hero.tamed .chaos-icon[data-icon="message"] { top: 75%; left: 50%; transform: rotate(0deg) scale(1.1); }
.hero.tamed .chaos-icon[data-icon="users"] { top: 75%; left: 65%; transform: rotate(0deg) scale(1.1); }
.hero.tamed .chaos-icon[data-icon="dollar"] { top: 75%; left: 80%; transform: rotate(0deg) scale(1.1); }
.hero.tamed .chaos-icon[data-icon="bell"] { top: 47.5%; left: 15%; transform: rotate(0deg) scale(1.1); }
.hero.tamed .chaos-icon[data-icon="clipboard"] { top: 47.5%; left: 85%; transform: rotate(0deg) scale(1.1); }

.hero h1 {
    font-size: 64px;
    color: var(--white);
    margin-bottom: 24px;
}

.hero .subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn-tame {
    position: relative;
    overflow: hidden;
}

.btn-tame .btn-text-tamed {
    display: none;
}

.btn-tame.tamed .btn-text {
    display: none;
}

.btn-tame.tamed .btn-text-tamed {
    display: inline;
}

.btn-tame.tamed {
    background-color: #4CAF50;
    color: white;
}

/* ========================================
   LIVE STATS DASHBOARD
   ======================================== */
.stats-dashboard {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    padding: 60px 0;
    margin-top: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-family: 'Inter Tight', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   CHAOS QUIZ
   ======================================== */
.chaos-quiz {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.quiz-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.quiz-intro h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 16px;
}

.quiz-intro p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

/* Quiz Progress */
.quiz-progress {
    margin-bottom: 40px;
}

.quiz-progress-bar {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.quiz-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--accent);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.quiz-progress-text {
    font-size: 14px;
    color: var(--text-light);
}

/* Questions */
.question-container {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.question h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 24px;
    text-align: center;
}

.answers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.answer-btn {
    padding: 18px 24px;
    background: var(--off-white);
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.answer-btn:hover {
    border-color: var(--accent);
    background: #fff;
    transform: translateX(5px);
}

.answer-btn.selected {
    border-color: var(--accent);
    background: rgba(209, 178, 71, 0.1);
}

/* Results */
.quiz-results {
    text-align: center;
}

.results-score {
    margin-bottom: 40px;
}

.score-circle {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
}

.score-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-bg {
    fill: none;
    stroke: var(--border);
    stroke-width: 8;
}

.score-fill {
    fill: none;
    stroke: var(--accent);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1.5s ease;
}

.score-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Inter Tight', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
}

.results-score h3 {
    font-size: 24px;
    color: var(--primary);
}

.results-breakdown {
    background: var(--off-white);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.results-breakdown h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 16px;
}

.results-breakdown ul {
    list-style: none;
}

.results-breakdown li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

.results-breakdown li:last-child {
    border-bottom: none;
}

.results-breakdown li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
}

.results-cta p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 24px;
}

.results-cta .btn {
    margin: 0 10px 10px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 120px 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 8px;
}

.founder-title {
    font-size: 16px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-image {
    display: flex;
    justify-content: center;
    max-width: 400px;
}

.founder-photo {
    width: 400px;
    height: 500px;
    max-width: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Trust Section */
.trust-section {
    padding: 40px 0;
    background-color: var(--primary);
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.trust-item svg {
    color: var(--accent);
}

.trust-item span {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Sections (Business Manager & Systems Strategist) */
.service-section {
    padding: 120px 0;
    background-color: var(--off-white);
}

.service-section.alt-bg {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.service-section.alt-bg h2,
.service-section.alt-bg .packages-title {
    color: var(--white);
}

.service-section.alt-bg .service-description {
    color: rgba(255, 255, 255, 0.85);
}

.service-section.alt-bg .pricing-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-section.alt-bg .pricing-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
}

.service-section.alt-bg .pricing-card h3,
.service-section.alt-bg .pricing-card .price {
    color: var(--white);
}

.service-section.alt-bg .pricing-card .price span,
.service-section.alt-bg .pricing-card .response-time {
    color: rgba(255, 255, 255, 0.7);
}

.service-section.alt-bg .pricing-card.popular {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent);
}

.service-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.service-icon-large {
    color: var(--accent);
    margin-bottom: 24px;
}

.service-section h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 24px;
}

.service-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.packages-title {
    font-size: 28px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 40px;
}

/* VIP Section */
.vip-section {
    padding: 80px 0;
    background-color: var(--white);
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background-color: var(--white);
}

.pricing h2 {
    font-size: 48px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
    font-size: 18px;
}

.pricing-group {
    margin-bottom: 60px;
}

.pricing-group-title {
    font-size: 32px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 8px;
}

.pricing-group-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 16px;
}

.packages-hint {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 30px;
    font-style: italic;
}

.service-section.alt-bg .packages-hint {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.pricing-grid.strategist-pricing {
    grid-template-columns: repeat(4, 1fr);
}

/* Flip Card Styles */
.flip-card {
    perspective: 1000px;
    height: 350px;
    position: relative;
    cursor: pointer;
    /* Ensure the card stays in its grid cell */
    overflow: visible;
    z-index: 1;
}

.flip-card:hover {
    z-index: 10;
}

.flip-card.flipped {
    z-index: 20;
}

.flip-card.popular {
    z-index: 2;
}

.flip-card.popular:hover,
.flip-card.popular.flipped {
    z-index: 20;
}

.flip-card .popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: var(--primary);
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    z-index: 100;
    pointer-events: none;
    white-space: nowrap;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transform-origin: center center;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 25px 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.flip-card-front {
    justify-content: center;
}

.flip-card-back {
    transform: rotateY(180deg);
    justify-content: flex-start;
    padding-top: 20px;
}

.flip-card.popular .flip-card-front,
.flip-card.popular .flip-card-back {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(209, 178, 71, 0.2);
}


/* Alt background (Systems Strategist) flip card styles */
.service-section.alt-bg .flip-card-front,
.service-section.alt-bg .flip-card-back {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-section.alt-bg .flip-card.popular .flip-card-front,
.service-section.alt-bg .flip-card.popular .flip-card-back {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
}

.service-section.alt-bg .flip-card-front h3,
.service-section.alt-bg .flip-card-front .price,
.service-section.alt-bg .flip-card-back h3 {
    color: var(--white);
}

.service-section.alt-bg .flip-card-front .price span,
.service-section.alt-bg .flip-card-front .response-time,
.service-section.alt-bg .flip-card-front .flip-hint,
.service-section.alt-bg .flip-card-back .package-features li {
    color: rgba(255, 255, 255, 0.7);
}

.service-section.alt-bg .flip-card-front .flip-hint {
    color: var(--accent);
}

.flip-hint {
    font-size: 12px;
    color: var(--accent);
    margin-top: auto;
    padding-top: 10px;
}

.flip-card-front h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.flip-card-front .price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.flip-card-front .price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.flip-card-front .response-time {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 0;
}

.flip-card-back h3 {
    font-size: 20px;
    margin-bottom: 6px;
    flex-shrink: 0;
}

.package-subtitle {
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 12px;
    width: 100%;
    padding: 0 5px;
    flex: 1;
    overflow-y: auto;
}

.package-features li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--text-light);
    position: relative;
    padding-left: 18px;
    line-height: 1.4;
}

.package-features li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.flip-card-back .btn {
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 12px;
}

/* Alt background flip card styles */
.service-section.alt-bg .flip-hint {
    color: var(--accent);
}

.service-section.alt-bg .package-subtitle {
    color: var(--accent);
}

.service-section.alt-bg .package-features li {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--accent);
}

.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(209, 178, 71, 0.2);
}


.pricing-card h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.pricing-card .price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
}

.response-time {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 14px;
}

/* VIP Day */
.vip-day {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    padding: 60px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    color: var(--white);
}

.vip-day h3 {
    font-size: 36px;
    margin-bottom: 16px;
}

.vip-day p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.vip-day ul {
    list-style: none;
}

.vip-day ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.vip-day ul li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

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

.vip-pricing .price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.vip-pricing .discount {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 24px;
}

/* Testimonials Section - Scrolling Marquee */
.testimonials {
    padding: 80px 0;
    background-color: var(--off-white);
    overflow: hidden;
    position: relative;
}

.testimonials h2 {
    font-size: 48px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 60px;
}

/* Fade edges */
.testimonials::before,
.testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.testimonials::before {
    left: 0;
    background: linear-gradient(90deg, var(--off-white) 0%, transparent 100%);
}

.testimonials::after {
    right: 0;
    background: linear-gradient(270deg, var(--off-white) 0%, transparent 100%);
}

.testimonial-marquee-wrapper {
    width: 100%;
    overflow: hidden;
}

.testimonial-marquee-track {
    display: flex;
    width: fit-content;
    animation: testimonialMarquee 60s linear infinite;
}

.testimonial-marquee-track:hover {
    animation-play-state: paused;
}

.testimonial-marquee-content {
    display: flex;
    gap: 30px;
    padding: 0 15px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    min-width: 400px;
    max-width: 400px;
    flex-shrink: 0;
}

.quote-icon {
    font-family: 'Inter Tight', sans-serif;
    font-size: 48px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.5;
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.testimonial-author strong {
    display: block;
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

@keyframes testimonialMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Getting Started Section */
.getting-started {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.getting-started h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 16px;
}

.getting-started .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter Tight', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 24px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.step-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

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

/* Contact Section */
.contact {
    padding: 120px 0;
    background-color: var(--white);
}

.contact h2 {
    font-size: 48px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 16px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent);
}

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

.cta-note {
    margin-top: 16px;
    color: var(--text-light);
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    display: inline-block;
    padding: 10px 24px;
    background-color: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* ========================================
   CURSOR TRAIL EFFECT
   ======================================== */
.cursor-trail {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-size: 16px;
    opacity: 1;
    transition: none;
    animation: cursorFade 1s ease-out forwards;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(209, 178, 71, 0.5);
}

.cursor-trail.sparkle {
    font-size: 12px;
}

.cursor-trail.checkmark {
    font-size: 14px;
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

@keyframes cursorFade {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-15px) scale(1.2) rotate(10deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-30px) scale(0.5) rotate(20deg);
    }
}

/* Disable on mobile/touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-trail {
        display: none;
    }
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vip-day {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--primary);
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--white);
        font-size: 24px;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero .subtitle {
        font-size: 16px;
    }

    .chaos-icon {
        width: 30px;
        height: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 11px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .founder-photo {
        width: 100%;
        max-width: 300px;
        height: 350px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid,
    .pricing-grid.strategist-pricing {
        grid-template-columns: 1fr 1fr;
    }

    .flip-card {
        height: 320px;
    }

    .flip-card-front h3 {
        font-size: 18px;
    }

    .flip-card-front .price {
        font-size: 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .step-card {
        padding: 30px 24px;
    }

    h2 {
        font-size: 36px !important;
    }

    .pricing-group-title {
        font-size: 24px;
    }

    .service-section h2 {
        font-size: 36px;
    }

    .packages-title {
        font-size: 22px;
    }

    .service-description {
        font-size: 16px;
    }

    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 30px;
    }

    .testimonials::before,
    .testimonials::after {
        width: 50px;
    }

    .vip-day {
        padding: 40px 30px;
    }

    .quiz-wrapper {
        padding: 40px 24px;
    }

    .quiz-intro h2 {
        font-size: 32px;
    }

    #deskCanvas {
        height: 350px;
    }

    .desk-text h2 {
        font-size: 32px;
    }
}

/* ========================================
   FAQ PAGE STYLES
   ======================================== */
.faq-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 160px 20px 80px;
    text-align: center;
    color: var(--white);
}

.faq-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.faq-header p {
    font-size: 18px;
    opacity: 0.85;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.faq-category h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-question svg {
    transition: transform 0.3s ease;
    color: var(--accent);
    flex-shrink: 0;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.faq-answer ul,
.faq-answer ol {
    margin: 12px 0;
    padding-left: 24px;
    color: var(--text-light);
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.faq-cta {
    text-align: center;
    padding: 60px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-cta h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
}

.faq-cta p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 18px;
}

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

    .faq-header h1 {
        font-size: 36px;
    }

    .faq-cta {
        padding: 40px 24px;
    }
}

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

    .stat-card {
        padding: 20px 15px;
    }

    .pricing-grid,
    .pricing-grid.strategist-pricing {
        grid-template-columns: 1fr;
    }

    .flip-card {
        height: 320px;
    }

    .package-features li {
        font-size: 12px;
    }
}
