/* Dr Granny - Premium Ayurveda-Inspired AI Wellness */
/* Calm, premium design system with clear colour hierarchy */
/* 70% cream/white | 20% maroon | 8% teal | 2% gold */

:root {
    /* Backgrounds - 70% of visual weight */
    --cream: #FBF7F0;
    --white: #FFFFFF;
    
    /* Primary - 20% for brand identity */
    --deep-maroon: #4A0E0E;
    --maroon-red: #8B1A1A;
    
    /* Accent - 8% for CTAs and key blocks */
    --deep-teal: #2E5E4E;
    
    /* Gold - 2% for premium highlights only */
    --soft-gold: #D4A843;
    --bold-gold: #F5C518;
    --dark-gold: #7A6118;
    
    /* Neutrals */
    --text-dark: #2D2D2D;
    --text-muted: #5A5A5A;
    
    /* Tinted backgrounds - subtle section variation */
    --light-green: #E8F0EC;
    --light-gold: #FDF6E3;
    --light-rose: #FBF0EE;
    
    /* Legacy aliases */
    --deep-green: #2E5E4E;
    --light-green-tint: #E8F0EC;
    --light-gold-tint: #FDF6E3;
    --light-rose-tint: #FBF0EE;
    
    /* Design tokens */
    --border-radius: 20px;
    --border-radius-sm: 10px;
    --card-border: 1px solid rgba(74, 14, 14, 0.08);
    --shadow-sm: 0 2px 8px rgba(74, 14, 14, 0.04);
    --shadow-md: 0 4px 16px rgba(74, 14, 14, 0.06);
    --shadow-lg: 0 8px 32px rgba(74, 14, 14, 0.08);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Calibri', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
}

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

/* Typography - Strict consistent scale */
h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, serif;
    color: var(--deep-maroon);
    line-height: 1.12;
}

body, p, li, input, select, textarea, button {
    font-family: Calibri, Arial, sans-serif;
}

p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.65;
}

/* Header - Maroon Red Top Bar */
header {
    background: var(--maroon-red);
    color: var(--white);
    padding: 0.75rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--soft-gold);
    background: var(--white);
    padding: 2px;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--soft-gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--soft-gold);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--soft-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

/* Mobile Menu Overlay */
.nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--maroon-red);
    padding: 80px 2rem 2rem;
    gap: 0;
    z-index: 1000;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease;
}

.nav-links.mobile-open a {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.1rem;
}

.nav-links.mobile-open a::after {
    display: none;
}

.nav-links.mobile-open a:last-child {
    border-bottom: none;
}

/* Mobile menu close button */
.mobile-close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1002;
}

.nav-links.mobile-open + .mobile-close-btn,
.mobile-close-btn.show {
    display: block;
}

/* Overlay backdrop */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.menu-overlay.show {
    display: block;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Hero Section - Premium Calm Background */
.hero {
    background: var(--cream);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--maroon-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 168, 67, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-width: 400px;
        margin: 0 auto;
    }
}

.hero-headline {
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--deep-maroon);
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--deep-maroon);
    margin-bottom: 1.2rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.55;
    color: var(--text-dark);
    margin-bottom: 2rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.hero-credibility {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 2rem;
    font-style: italic;
}

/* Page Hero - For inner pages - Cream/light rose background */
.page-hero {
    background: linear-gradient(135deg, var(--light-rose) 0%, var(--cream) 100%);
    color: var(--deep-maroon);
    padding: 140px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--deep-maroon);
    margin-bottom: 1.2rem;
}

.page-hero p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 820px;
    margin: 0 auto;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.cta-button.primary {
    background: #1a3a32;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.cta-button.primary:hover {
    background: #143029;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background: #1a3a32;
    color: var(--white);
    border: 2px solid #1a3a32;
}

.cta-button.secondary:hover {
    background: #1a3a32;
    color: var(--white);
    border-color: #1a3a32;
    transform: translateY(-2px);
}

/* Section Styles - Calm backgrounds */
.section {
    padding: 80px 0;
}

.section-cream {
    background: var(--cream);
}

.section-white {
    background: var(--white);
}

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

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

.section-green-tint {
    background: var(--light-green);
}

/* Section light-rose */
.section-light-rose {
    background: var(--light-rose);
}

/* Section light-gold */
.section-light-gold {
    background: var(--light-gold);
}

/* CTA Section - Maroon gradient (primary) */
.section-cta-maroon {
    background: linear-gradient(135deg, var(--deep-maroon) 0%, var(--maroon-red) 100%);
    color: var(--cream);
}

.section-cta-maroon .section-title {
    color: var(--cream);
}

.section-cta-maroon .section-subtitle {
    color: rgba(251, 247, 240, 0.88);
}

.section-cta-maroon .cta-button.primary {
    background: #1a3a32;
    color: var(--white);
}

.section-cta-maroon .cta-button.secondary {
    background: #1a3a32;
    color: var(--white);
    border: 2px solid #1a3a32;
}

.section-cta-maroon .cta-button.secondary:hover {
    background: #143029;
    color: var(--white);
    border-color: #143029;
}

/* CTA Section - Light (secondary) */
.section-cta-light {
    background: var(--light-gold);
    color: var(--deep-maroon);
}

.section-cta-light .section-title {
    color: var(--deep-maroon);
}

.section-cta-light .section-subtitle {
    color: var(--text-muted);
}

/* Legacy - keep for backwards compatibility but redirect */
.section-teal {
    background: linear-gradient(135deg, var(--deep-maroon) 0%, var(--maroon-red) 100%);
    color: var(--cream);
}

.section-teal h2,
.section-teal h3,
.section-teal p {
    color: var(--cream);
}

.section-green {
    background: linear-gradient(135deg, var(--deep-maroon) 0%, var(--maroon-red) 100%);
    color: var(--cream);
}

.section-green h2,
.section-green h3,
.section-green p {
    color: var(--cream);
}

/* Section Title - Consistent scale */
.section-title {
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--deep-maroon);
    margin-bottom: 1rem;
    text-align: center;
}

/* Section Subtitle - Consistent scale */
.section-subtitle {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

/* Cards - Clean white with subtle borders */
.card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: var(--card-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.card-rose {
    background: var(--light-rose);
    border: none;
}

.card-gold {
    background: var(--light-gold);
    border: none;
}

.card-green {
    background: var(--light-green);
    border: none;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--light-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--deep-maroon);
}

.card h3 {
    font-size: clamp(1.25rem, 1.8vw, 1.55rem);
    line-height: 1.2;
    color: var(--deep-maroon);
    margin-bottom: 0.75rem;
}

.card p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-dark);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Visual Diagrams & Flows */
.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
    padding: 2rem;
}

@media (max-width: 1100px) {
    .flow-diagram {
        flex-wrap: wrap;
    }
}

.flow-step {
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    text-align: center;
    min-width: 120px;
}

.flow-arrow {
    color: var(--deep-teal);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Flywheel / Circular Diagram - Calm version */
.flywheel {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 2rem auto;
    border: 2px solid rgba(74, 14, 14, 0.15);
    border-radius: 50%;
}

.flywheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--deep-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 1rem;
    z-index: 2;
}

.flywheel-item {
    position: absolute;
    width: 90px;
    height: 90px;
    background: var(--white);
    border: 1px solid rgba(74, 14, 14, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--deep-maroon);
    padding: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.flywheel-item::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--soft-gold);
    border-radius: 50%;
    top: 5px;
    right: 5px;
}

/* Stack Diagram - Calm tinted layers */
.stack-diagram {
    max-width: 450px;
    margin: 2rem auto;
}

.stack-layer {
    padding: 1.25rem 1.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--deep-maroon);
    border: 1px solid rgba(74, 14, 14, 0.1);
    margin-bottom: -1px;
}

.stack-layer:first-child {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    background: var(--light-green);
}

.stack-layer:nth-child(2) {
    background: var(--light-gold);
}

.stack-layer:last-child {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    background: var(--light-rose);
}

/* Triangle / Market Gap Diagram - Clean white cards */
.triangle-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
}

.triangle-point {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-sm);
    border: var(--card-border);
    text-align: center;
    max-width: 280px;
    font-size: 0.95rem;
}

.triangle-point.highlight {
    background: var(--deep-maroon);
    color: var(--white);
    border: none;
}

/* Phone Mockup - Premium white/cream */
.phone-mockup {
    background: var(--white);
    border-radius: 28px;
    padding: 0.75rem;
    box-shadow: var(--shadow-md);
    max-width: 260px;
    margin: 0 auto;
    border: 3px solid var(--deep-maroon);
}

.phone-screen {
    background: var(--cream);
    border-radius: 20px;
    padding: 1.25rem;
    min-height: 350px;
}

.phone-header {
    font-weight: 700;
    color: var(--deep-maroon);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--soft-gold);
}

.phone-content {
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.phone-cta {
    background: var(--deep-teal);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.75rem;
}

/* Product Cards - Clean white, elegant */
.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: var(--card-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-image {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    overflow: hidden;
    height: 350px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-image.hero-product {
    background: var(--white);
}

.product-image.adjacent-product {
    background: var(--white);
}

.product-content {
    padding: 1.5rem;
}

.product-badge {
    display: inline-block;
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.hero {
    background: var(--light-green);
    color: var(--deep-teal);
}

.product-badge.adjacent {
    background: var(--light-rose);
    color: var(--maroon-red);
}

.product-category {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.35rem;
}

.product-title {
    font-size: clamp(1.25rem, 1.8vw, 1.55rem);
    line-height: 1.2;
    color: var(--deep-maroon);
    margin-bottom: 0.75rem;
}

.product-description {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-maroon);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-maroon);
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea,
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(74, 14, 14, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Calibri', Arial, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--deep-teal);
    box-shadow: 0 0 0 3px rgba(26, 58, 50, 0.1);
}

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

.form-checkbox-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

/* Footer - Dark green premium design */
footer {
    background: #1a3a32;
    color: var(--cream);
    padding: 3.5rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo-text {
    color: var(--soft-gold);
}

.footer-brand p {
    color: var(--cream);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0.75rem;
    opacity: 0.9;
}

.footer-section h4 {
    color: var(--soft-gold);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-section a {
    color: var(--cream);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: var(--transition);
    opacity: 0.9;
}

.footer-section a:hover {
    color: var(--soft-gold);
    opacity: 1;
}

.footer-section p {
    color: var(--cream);
    opacity: 0.9;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(251, 247, 240, 0.15);
    padding-top: 1.5rem;
    margin-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom p {
    color: var(--cream);
    opacity: 0.9;
}

/* Escalation Curve - Elegant and readable */
.escalation-curve {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border: var(--card-border);
}

.escalation-step {
    flex: 1;
    min-width: 80px;
    text-align: center;
}

.escalation-bar {
    border-radius: 6px 6px 0 0;
    margin-bottom: 0.5rem;
    min-height: 30px;
}

.escalation-bar.level-1 { background: var(--light-gold); height: 40px; }
.escalation-bar.level-2 { background: var(--light-rose); height: 60px; }
.escalation-bar.level-3 { background: #f5d4cf; height: 80px; }
.escalation-bar.level-4 { background: #e8b4ad; height: 100px; }
.escalation-bar.level-5 { background: var(--maroon-red); height: 120px; }

.escalation-label {
    font-size: 0.7rem;
    color: var(--deep-maroon);
    font-weight: 500;
    line-height: 1.3;
}

/* Team Cards - Clean and premium */
.team-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: left;
    border: var(--card-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.team-card h3 {
    font-size: clamp(1.25rem, 1.8vw, 1.55rem);
    line-height: 1.2;
    color: var(--deep-maroon);
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.team-credential {
    display: inline-block;
    background: var(--light-gold);
    color: var(--dark-gold);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
}

.team-bio {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
}

/* Compliance Note - Calm light gold tint */
.compliance-note {
    background: var(--light-gold);
    border-left: 3px solid var(--soft-gold);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    margin: 1.5rem 0;
}

.compliance-note p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

/* Badge styles */
.badge {
    display: inline-block;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-gold {
    background: var(--light-gold);
    color: var(--dark-gold);
}

.badge-rose {
    background: var(--light-rose);
    color: var(--maroon-red);
}

.badge-green {
    background: var(--light-green);
    color: var(--deep-teal);
}

/* Small accent underline */
.accent-underline {
    display: inline-block;
    border-bottom: 2px solid var(--soft-gold);
    padding-bottom: 2px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .page-hero {
        padding: 140px 0 60px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .flywheel {
        width: 300px;
        height: 300px;
    }
    
    .flywheel-center {
        width: 100px;
        height: 100px;
        font-size: 0.75rem;
    }
    
    .flywheel-item {
        width: 70px;
        height: 70px;
        font-size: 0.65rem;
    }
    
    .escalation-curve {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .escalation-step {
        flex: 1;
        min-width: 50px;
        text-align: center;
    }
    
    .escalation-bar {
        width: 100%;
        border-radius: 4px 4px 0 0;
        margin-bottom: 0.3rem;
    }
    
    .escalation-bar.level-1 { height: 30px; }
    .escalation-bar.level-2 { height: 45px; }
    .escalation-bar.level-3 { height: 60px; }
    .escalation-bar.level-4 { height: 75px; }
    .escalation-bar.level-5 { height: 90px; }
    
    .escalation-label {
        font-size: 0.6rem;
    }
    
    /* Fix flow diagram on mobile */
    .flow-diagram {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .flow-step {
        width: 100%;
        max-width: 280px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    /* Fix product card layout on mobile */
    .product-content {
        display: block;
    }
    
    .product-badge {
        display: inline-block;
        width: auto;
        height: auto;
        padding: 0.25rem 0.6rem;
        margin-right: 0.5rem;
    }
    
    .product-category {
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}
