/* ============================================
   LANDING PAGES — SHARED STYLES
   TeachComplete Marketing Site
   ============================================ */

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Bricolage Grotesque', Arial, sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

/* ============================================
   NAV BAR
   ============================================ */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px;
    transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
    background: transparent;
}

.landing-nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
    padding: 10px 48px;
}

.landing-nav.nav-solid {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #0C1B33;
}

.nav-logo .accent {
    color: #059669;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #059669;
}

.nav-links a.active {
    color: #059669;
    font-weight: 600;
}

.nav-cta {
    padding: 9px 22px;
    background: #059669;
    color: #fff !important;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
    background: #047857;
    transform: translateY(-1px);
}

/* ============================================
   HERO (Home page — full height)
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 48px 80px;
    background: linear-gradient(135deg, #f0fdf8 0%, #ecfdf5 30%, #f8faf9 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.04);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.03);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(5, 150, 105, 0.08);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #059669;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #0C1B33;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: #059669;
}

.hero p {
    font-size: 19px;
    color: #555;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 36px;
}

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

/* ============================================
   PAGE HERO (Sub-pages — shorter)
   ============================================ */
.page-hero {
    padding: 160px 48px 80px;
    text-align: center;
    background: linear-gradient(135deg, #f0fdf8 0%, #ecfdf5 30%, #f8faf9 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.04);
}

.page-hero .section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #059669;
    margin-bottom: 12px;
}

.page-hero h1 {
    font-size: 46px;
    font-weight: 800;
    color: #0C1B33;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #059669;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: #0C1B33;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: #059669;
    transform: translateY(-2px);
}

/* ============================================
   SECTION BASE
   ============================================ */
.section {
    padding: 100px 48px;
}

.section-alt {
    background: #f8faf9;
}

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

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #059669;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0C1B33;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

/* ============================================
   CONTENT BLOCKS (for sub-pages)
   ============================================ */
.content-container {
    max-width: 1100px;
    margin: 0 auto;
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

/* Icon + text row */
.content-block {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 48px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.08);
    border-radius: 14px;
    font-size: 26px;
}

.content-block h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0C1B33;
    margin-bottom: 10px;
}

.content-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 12px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* Full-width text section */
.text-section {
    margin-bottom: 48px;
}

.text-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0C1B33;
    margin-bottom: 12px;
}

.text-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 16px;
}

.text-section p:last-child {
    margin-bottom: 0;
}

/* Highlight callout box */
.callout {
    padding: 28px 32px;
    background: rgba(5, 150, 105, 0.04);
    border: 1px solid rgba(5, 150, 105, 0.12);
    border-radius: 12px;
    margin: 32px 0;
}

.callout p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
}

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

.callout-dark {
    padding: 28px 32px;
    background: #0C1B33;
    border-radius: 12px;
    margin: 32px 0;
}

.callout-dark p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.callout-dark strong {
    color: #10b981;
}

/* ============================================
   PHILOSOPHY CARDS (home teaser + philosophy page)
   ============================================ */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 36px 28px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.section-alt .philosophy-card {
    background: #fff;
}

.philosophy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.philosophy-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.08);
    border-radius: 14px;
    margin-bottom: 20px;
    font-size: 24px;
}

.philosophy-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0C1B33;
    margin-bottom: 10px;
}

.philosophy-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.65;
}

/* ============================================
   COMPLETE / FEATURES SECTION
   ============================================ */
.complete-container {
    max-width: 1100px;
    margin: 0 auto;
}

.complete-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.complete-meaning {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
}

.complete-meaning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.complete-meaning.differentiation::before {
    background: linear-gradient(90deg, #059669, #10b981);
}

.complete-meaning.coverage::before {
    background: linear-gradient(90deg, #0C1B33, #1e3a5f);
}

.complete-meaning .meaning-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(5, 150, 105, 0.1);
    margin-bottom: 8px;
    line-height: 1;
}

.complete-meaning.coverage .meaning-number {
    color: rgba(12, 27, 51, 0.1);
}

.complete-meaning h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0C1B33;
    margin-bottom: 12px;
}

.complete-meaning p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.cycle-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cycle-step {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(5, 150, 105, 0.06);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #059669;
}

.coverage-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.coverage-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(12, 27, 51, 0.05);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #0C1B33;
}

/* Feature cards grid (features page) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.08);
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 22px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0C1B33;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-container {
    display: flex;
    align-items: flex-start;
    gap: 64px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-photo {
    flex-shrink: 0;
    width: 280px;
    height: 280px;
    border-radius: 24px;
    background: linear-gradient(135deg, #e6f7f0, #d1fae5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #059669;
}

.about-photo-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.5;
}

.about-photo-placeholder span {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.6;
}

.about-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0C1B33;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text p strong {
    color: #0C1B33;
}

/* Video placeholders */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.video-placeholder {
    background: #f8faf9;
    border: 2px dashed #ddd;
    border-radius: 16px;
    padding: 60px 32px;
    text-align: center;
    transition: border-color 0.2s;
}

.video-placeholder:hover {
    border-color: #059669;
}

.video-placeholder-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: rgba(5, 150, 105, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0C1B33;
    margin-bottom: 6px;
}

.video-placeholder p {
    font-size: 14px;
    color: #999;
}

/* Social links */
.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #0C1B33;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border-color: #059669;
}

.social-link svg {
    flex-shrink: 0;
}

.social-link .coming-soon {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   PRIVACY SECTION
   ============================================ */
.privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 28px 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.section-alt .privacy-card {
    background: #fff;
}

.privacy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.privacy-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.08);
    border-radius: 12px;
    font-size: 22px;
}

.privacy-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0C1B33;
    margin-bottom: 6px;
}

.privacy-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Privacy — full-width cards for expanded content */
.privacy-card.full-width {
    grid-column: 1 / -1;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-philosophy {
    text-align: center;
    max-width: 680px;
    margin: -20px auto 48px;
    padding: 24px 32px;
    background: rgba(5, 150, 105, 0.04);
    border: 1px solid rgba(5, 150, 105, 0.1);
    border-radius: 12px;
}

.pricing-philosophy p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 820px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.pricing-card.featured {
    border-color: #059669;
}

.pricing-card.featured::after {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: #059669;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0C1B33;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 44px;
    font-weight: 800;
    color: #0C1B33;
    margin-bottom: 4px;
}

.pricing-card .price-note {
    font-size: 14px;
    color: #999;
    margin-bottom: 28px;
}

.pricing-card .price span {
    font-size: 18px;
    font-weight: 500;
    color: #999;
}

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

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #f5f5f5;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: #059669;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.pricing-btn.primary {
    background: #059669;
    color: #fff;
}

.pricing-btn.primary:hover {
    background: #047857;
}

.pricing-btn.outline {
    background: transparent;
    color: #0C1B33;
    border: 2px solid #e0e0e0;
}

.pricing-btn.outline:hover {
    border-color: #059669;
    color: #059669;
}

/* Cost breakdown visual */
.cost-breakdown {
    max-width: 600px;
    margin: 0 auto;
}

.cost-bar {
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    margin-bottom: 16px;
}

.cost-bar-ai {
    background: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.cost-bar-ops {
    background: #0C1B33;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
}

.cost-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.cost-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
}

.cost-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
}

.cost-legend-dot.ai {
    background: #059669;
}

.cost-legend-dot.ops {
    background: #0C1B33;
}

/* ============================================
   HOME TEASER CARDS
   ============================================ */
.teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.teaser-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 36px 28px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.teaser-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.teaser-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.08);
    border-radius: 14px;
    margin-bottom: 20px;
    font-size: 24px;
}

.teaser-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0C1B33;
    margin-bottom: 10px;
}

.teaser-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}

.teaser-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #059669;
    transition: gap 0.2s;
}

.teaser-link:hover {
    gap: 10px;
}

/* ============================================
   FOOTER
   ============================================ */
.landing-footer {
    background: #0C1B33;
    color: #fff;
    padding: 60px 48px 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .wordmark {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-brand .accent {
    color: #10b981;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 300px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #10b981;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   CTA BANNER (bottom of sub-pages)
   ============================================ */
.cta-banner {
    text-align: center;
    padding: 80px 48px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.cta-banner h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #fff;
    color: #059669;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.cta-banner .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .landing-nav {
        padding: 12px 24px;
    }

    .landing-nav.scrolled {
        padding: 10px 24px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .hero {
        padding: 100px 24px 60px;
    }

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

    .hero p {
        font-size: 17px;
    }

    .page-hero {
        padding: 120px 24px 60px;
    }

    .page-hero h1 {
        font-size: 34px;
    }

    .section {
        padding: 64px 24px;
    }

    .philosophy-grid,
    .teaser-grid {
        grid-template-columns: 1fr;
    }

    .complete-dual {
        grid-template-columns: 1fr;
    }

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

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-photo {
        width: 200px;
        height: 200px;
    }

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

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .footer-links {
        gap: 32px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .content-block {
        flex-direction: column;
        gap: 16px;
    }

    .cta-banner {
        padding: 60px 24px;
    }

    .cta-banner h2 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .nav-links a:not(.nav-cta) {
        display: none;
    }

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

    .page-hero h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .cost-legend {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}
