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

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    --primary: #354860;
    --primary-dark: #2a3a4d;
    --secondary: #4a5f7a;
    --accent: #6b8bb5;
    --cta: #fbbf24;
    --cta-dark: #f59e0b;
    --gradient-start: #354860;
    --gradient-end: #4a6fa5;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

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

.nav-close-container {
    display: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

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

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e5e7eb;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: var(--primary);
    border-left-color: var(--primary);
}

.dropdown-menu .dropdown-category {
    padding: 8px 20px 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 4px;
}

.dropdown-menu .dropdown-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 8px 0;
}

.nav-close {
    display: none;
}

.hero-focused {
    background: radial-gradient(circle at top right, rgba(53, 72, 96, 0.25), transparent 50%), var(--bg-light);
    padding: 140px 20px 100px;
}

.hero-focused__container {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-focused h1 {
    font-size: clamp(2.8rem, 4vw, 3.8rem);
    color: var(--text-dark);
    font-weight: 700;
}

.hero-focused__subheadline {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
}

.hero-focused__stat {
    background: #fff6e6;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 14px;
    padding: 18px 24px;
    font-size: 1.05rem;
    color: #92400e;
}

.hero-focused__stat strong {
    font-size: 1.4rem;
    color: #b45309;
}

.hero-focused__cta {
    align-self: center;
}

.problem {
    background: white;
}

.problem__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.problem__copy h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.problem__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 18px;
    font-size: 1.05rem;
    color: var(--text-light);
}

.problem__list span {
    color: var(--text-dark);
    font-weight: 600;
}

.problem__visual {
    display: flex;
    justify-content: center;
}

.problem-card {
    background: #111827;
    color: white;
    border-radius: 20px;
    padding: 28px;
    display: grid;
    gap: 12px;
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.25);
    max-width: 340px;
}

.problem-card__title {
    font-size: 1.2rem;
    font-weight: 600;
}

.problem-card__alias {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 14px;
    font-family: "SF Mono", "Roboto Mono", monospace;
    font-size: 0.95rem;
}

.problem-card__note {
    font-size: 0.9rem;
    opacity: 0.75;
}

.solution {
    background: var(--bg-light);
}

.solution__container {
    display: grid;
    gap: 40px;
    text-align: center;
}

.solution__visual {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.solution__panel {
    background: white;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
    text-align: left;
}

.solution__panel h3 {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.solution__panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
    color: var(--text-light);
}

.solution__panel--before {
    border-top: 4px solid #f97316;
}

.solution__panel--after {
    border-top: 4px solid #059669;
}

.solution__benefits {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.solution__benefit {
    background: #1f2937;
    color: white;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.proof {
    background: white;
}

.proof__container {
    display: grid;
    gap: 32px;
    align-items: start;
}

.proof__quote {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 32px;
    border-radius: 18px;
    font-size: 1.1rem;
    line-height: 1.7;
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.18);
}

.proof__quote cite {
    display: block;
    margin-top: 16px;
    font-size: 0.95rem;
    opacity: 0.85;
}

.proof__details {
    display: grid;
    gap: 20px;
}

.proof__stat {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.proof__stat span {
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
}

.proof__logos {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.6px;
}

.final-cta {
    background: #111827;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.final-cta__container {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.final-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.final-cta__contact {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
}

.nav-cta {
    background: var(--primary) !important;
    color: white !important;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    color: white !important;
    transform: translateY(-2px);
}

.nav-login {
    background: transparent !important;
    color: var(--primary) !important;
    padding: 8px 16px;
    border: 2px solid var(--primary);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-login:hover {
    background: var(--primary) !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Banner Styles */
.discount-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 40px;
    border-radius: 8px;
}

.discount-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

/* Adjust navbar back to normal */
.navbar {
    top: 0;
}

.hero {
    padding-top: 140px;
}

.page-hero {
    padding-top: 140px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Page container */
.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
}

/* Section Styles */
.section {
    padding: 80px 20px;
    max-width: 100%;
    overflow-x: hidden;
}

.section-alt {
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Button Styles */
.btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cta) 0%, var(--cta-dark) 100%);
    color: #1f2937;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.05);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

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

/* HOME PAGE STYLES */
.hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    padding: 140px 20px 80px;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="3" fill="rgba(255,255,255,0.4)"/><circle cx="800" cy="300" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="400" cy="600" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="900" cy="700" r="3" fill="rgba(255,255,255,0.4)"/></svg>');
    opacity: 0.6;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
}

.hero-subline {
    font-size: 1.25rem;
    margin-bottom: 28px;
    max-width: 620px;
    line-height: 1.6;
    opacity: 0.92;
}

.hero-benefits {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: 32px;
}

.hero-benefit {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-benefit-icon {
    font-size: 1.3rem;
    line-height: 1;
}

.hero-benefit p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.4;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-cta-link {
    width: 100%;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
}

.hero-cta-link:hover {
    color: #ffffff;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 24px;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.hero-trust-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-trust-badges span {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dashboard Preview */
.dashboard-preview {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) scale(1.02);
}

.dashboard-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.status-indicators {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-active {
    background: #dcfce7;
    color: #166534;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-active .status-dot {
    background: #22c55e;
}

.status-pending .status-dot {
    background: #f59e0b;
}

.workflow-steps {
    display: grid;
    gap: 12px;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    color: var(--text-dark);
}

.step-number {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-light);
    line-height: 1.6;
}

/* HOW IT WORKS PAGE STYLES */
.page-hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    padding: 140px 20px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.steps-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* PRICING PAGE STYLES */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-badge {
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    text-align: center;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.pricing-price {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-price .period {
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
}

/* FAQ STYLES */
.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 24px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--text-light);
    display: none;
}

.faq-answer.active {
    display: block;
}

/* CONTACT FORM STYLES */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.checkbox-label:hover {
    background-color: var(--bg-light);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.checkbox-label span {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.error-message {
    color: #dc2626;
    font-size: 0.9rem;
    margin-top: 6px;
}

/* Trust Strip */
.trust-strip {
    background: #f1f5f9;
    padding: 22px 0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-strip-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-light);
}

.trust-strip-label {
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.trust-strip-logos {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-strip-logos span {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.trust-strip-proof {
    font-weight: 600;
    color: var(--primary);
}

/* Testimonials */
.testimonials .section-header p {
    max-width: 760px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-cta {
    margin-top: 48px;
    padding: 28px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: white;
}

.testimonial-cta span {
    display: block;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Trust Builders */
.trust-builders {
    padding-top: 20px;
}

.trust-builders-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.trust-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
    text-align: left;
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.trust-card h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.trust-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.how-oversite {
    background: #ffffff;
}

.how-works-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.how-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.how-icon {
    font-size: 2rem;
}

.how-card h3 {
    margin: 0;
    color: var(--text-dark);
}

.how-card p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.how-summary {
    margin-top: 32px;
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.conversion-callout {
    background: #f9fafb;
}

.conversion-callout-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
    max-width: 960px;
    margin: 0 auto;
}

.conversion-callout-copy {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.conversion-callout h2 {
    font-size: 2.2rem;
    margin-bottom: 0;
}

.conversion-callout p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.conversion-callout .cta-buttons {
    gap: 16px;
    flex-wrap: wrap;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    text-align: left;
    padding: 80px 20px;
}

.cta-with-widget {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: 48px;
    align-items: stretch;
}

.cta-copy {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.cta-points li {
    position: relative;
    padding-left: 26px;
    font-size: 1rem;
    opacity: 0.9;
}

.cta-points li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--cta);
    font-weight: 700;
}

.cta-widget {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 16px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
}

.cta-widget .calendly-inline-widget {
    height: 100%;
    min-height: 520px;
}

.contact-scheduler {
    background: var(--bg-light);
}

.contact-scheduler .cta-copy h2 {
    margin-bottom: 8px;
}

.contact-scheduler .cta-copy p {
    color: var(--text-light);
}

.contact-scheduler .cta-widget {
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow);
}

.contact-calendly .calendly-inline-widget {
    min-height: 540px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Tablet and Small Screen Adjustments */
@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }

    .nav-cta,
    .nav-login {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

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

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

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

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

    .how-works-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-with-widget {
        grid-template-columns: 1fr;
    }

    .cta-widget {
        order: 2;
    }

    .conversion-callout-card {
        padding: 36px;
    }
}

/* Mobile and Small Tablet Responsive Design */
@media (max-width: 768px) {
    * {
        max-width: 100%;
    }

    .container,
    .nav-container,
    .section {
        max-width: 100%;
        overflow-x: hidden;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1001;
        font-size: 1.2rem;
    }

    .nav-links.active {
        display: flex;
    }

    /* Mobile dropdown styles */
    .nav-close-container {
        display: flex;
        width: 100%;
        justify-content: flex-end;
    }

    .nav-links .nav-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--text-dark);
        cursor: pointer;
    }

    .nav-links .nav-close:hover {
        color: var(--primary);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a,
    .nav-links .nav-cta,
    .nav-links .nav-login {
        width: 100%;
        display: inline-block;
    }

    .nav-links .nav-cta {
        margin-top: 8px;
    }

    .hero-subline {
        font-size: 1.05rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-benefits {
        margin-bottom: 28px;
    }

    .hero-benefit {
        flex-direction: row;
        text-align: left;
    }

    .hero-trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .trust-strip-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

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

    .testimonial-cta {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .trust-builders-grid {
        grid-template-columns: 1fr;
    }

    .how-works-grid {
        grid-template-columns: 1fr;
    }

    .cta-with-widget {
        grid-template-columns: 1fr;
    }

    .cta-widget {
        padding: 12px;
    }

    .floating-cta {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }

    .conversion-callout-card {
        padding: 28px;
    }

    .conversion-callout h2 {
        font-size: 1.9rem;
    }

    .contact-calendly .calendly-inline-widget {
        min-height: 520px;
    }

    .timeline-step {
        flex-direction: column !important;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .pricing-card.featured {
        transform: none;
    }

    /* Training comparison section mobile styles */
    .training-comparison {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .training-comparison > div {
        width: 100% !important;
    }

    .training-stat-card {
        margin-bottom: 16px !important;
    }

    .training-stat-card div:first-child {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .training-stat-card span {
        font-size: 1.1rem !important;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Hero Section Styles */
.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.hero-stat-item {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.hero-stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-focused__cta-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.hero-focused__cta-secondary:hover {
    background: var(--text-dark);
    color: white;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 16px 0 32px;
    max-width: 600px;
}

/* Enhanced Problem Section */
.problem-impact {
    margin-top: 24px;
    padding: 20px;
    background: #fff6e6;
    border-left: 4px solid var(--cta);
    border-radius: 8px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.problem-card__icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

/* Enhanced Solution Section */
.panel-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.solution__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.feature-highlight {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-highlight h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-highlight p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Enhanced CTA Section */
.final-cta__subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-benefits {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 1.05rem;
}

.benefit-check {
    font-size: 1.3rem;
    color: var(--cta);
    font-weight: bold;
}

.btn-large {
    font-size: 1.2rem;
    padding: 20px 40px;
}

.cta-contact-info {
    margin-top: 24px;
    text-align: center;
}

.cta-contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.final-cta__contact {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin: 8px 0;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.final-cta__contact:hover {
    color: white;
    text-decoration: underline;
}

/* Enhanced Pricing Styles */
.pricing-value-prop {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 20px 0;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
    line-height: 1.5;
}

.pricing-guarantee {
    text-align: center;
    padding: 12px;
    background: #f0fdf4;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.pricing-badge-secondary {
    background: var(--text-dark);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    text-align: center;
}

.pricing-features li strong {
    color: var(--text-dark);
}

.pricing-features li {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Enhanced Footer */
.footer-section-brand {
    max-width: 280px;
}
