/* ==========================================
   GrantFlow Marketing Website
   Brand: Teal #0F766E, Gold #F59E0B, Green #10B981
   ========================================== */

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

:root {
    --teal: #0F766E;
    --teal-dark: #0a5f58;
    --teal-light: #14b8a6;
    --teal-bg: #f0fdfa;
    --gold: #F59E0B;
    --gold-light: #fbbf24;
    --green: #10B981;
    --green-light: #34d399;
    --text: #0f172a;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-warm: #fefce8;
    --border: #e2e8f0;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.03);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ==========================================
   NAVBAR
   ========================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226,232,240,0.6);
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-xs);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.938rem;
    transition: color 0.2s;
    position: relative;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--teal);
    border-radius: 1px;
}

.btn-login {
    background: var(--teal) !important;
    color: white !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    transition: all 0.2s !important;
}

.btn-login:hover {
    background: var(--teal-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

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

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.938rem;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 118, 110, 0.3);
}

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

.btn-secondary:hover {
    background: var(--teal);
    color: white;
}

.btn-outline-hero {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline-hero:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.6);
}

.btn-white {
    background: white;
    color: var(--teal);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ==========================================
   SECTION HEADERS
   ========================================== */

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.813rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    background: var(--teal-bg);
    padding: 0.35rem 1rem;
    border-radius: 100px;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================
   HERO
   ========================================== */

.hero {
    background: linear-gradient(135deg, #0F766E 0%, #0d6b64 40%, #0a5f58 70%, #085550 100%);
    color: white;
    padding: 3rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    top: -120px;
    right: -60px;
    width: 400px;
    height: 400px;
    background: rgba(245, 158, 11, 0.08);
}

.shape-2 {
    bottom: -160px;
    left: -80px;
    width: 500px;
    height: 500px;
    background: rgba(16, 185, 129, 0.06);
}

.shape-3 {
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.02);
    transform: translate(-50%, -50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-logo-badge {
    margin-bottom: 2rem;
    display: inline-block;
}

.hero-logo {
    height: 198px;
    width: auto;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.hero-stat {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 1.25rem 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
}

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-light);
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.dashboard-mock {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.mock-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    background: #f1f5f9;
    border-bottom: 1px solid var(--border);
}

.mock-dots {
    display: flex;
    gap: 5px;
}

.mock-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mock-dots span:nth-child(1) { background: #ef4444; }
.mock-dots span:nth-child(2) { background: #f59e0b; }
.mock-dots span:nth-child(3) { background: #10b981; }

.mock-title {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.mock-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mock-card {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mc-teal { background: var(--teal-bg); }
.mc-gold { background: #fffbeb; }
.mc-green { background: #ecfdf5; }

.mc-label {
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--text);
    min-width: 70px;
}

.mc-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--teal);
    min-width: 80px;
}

.mc-gold .mc-value { color: var(--gold); }
.mc-green .mc-value { color: var(--green); }

.mc-bar {
    flex: 1;
    height: 6px;
    background: rgba(0,0,0,0.06);
    border-radius: 3px;
    overflow: hidden;
}

.mc-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease;
}

.mc-teal .mc-fill { background: var(--teal); }
.mc-gold .mc-fill { background: var(--gold); }
.mc-green .mc-fill { background: var(--green); }

/* ==========================================
   SOCIAL PROOF BAR
   ========================================== */

.social-proof {
    padding: 3rem 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.proof-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
}

.proof-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

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

.proof-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 0.25rem;
}

.proof-item span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ==========================================
   PROBLEM / SOLUTION
   ========================================== */

.problem-solution {
    padding: 6rem 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.comparison-card {
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    position: relative;
}

.card-before {
    background: #fef2f2;
    border-color: #fecaca;
}

.card-after {
    background: #ecfdf5;
    border-color: #a7f3d0;
}

.comparison-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.before-icon {
    background: #fee2e2;
    color: #ef4444;
}

.after-icon {
    background: #d1fae5;
    color: var(--green);
}

.comparison-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.comparison-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.comparison-card li {
    padding: 0.6rem 0;
    font-size: 0.938rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    line-height: 1.5;
}

.comparison-card li:last-child {
    border-bottom: none;
}

.card-before li::before {
    content: '\2715  ';
    color: #ef4444;
    font-weight: 700;
    margin-right: 0.25rem;
}

.card-after li::before {
    content: '\2713  ';
    color: var(--green);
    font-weight: 700;
    margin-right: 0.25rem;
}

.comparison-result {
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.938rem;
    text-align: center;
}

.before-result {
    background: #fee2e2;
    color: #dc2626;
}

.after-result {
    background: #d1fae5;
    color: #059669;
}

.impact-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--teal-bg), #ecfdf5);
    padding: 2rem 2.5rem;
    border-radius: var(--radius);
    border: 1px solid #a7f3d0;
}

.impact-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-banner p {
    font-size: 1.063rem;
    color: var(--text);
    line-height: 1.7;
}

/* ==========================================
   FEATURES
   ========================================== */

.features {
    padding: 6rem 0;
    background: var(--bg-alt);
}

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

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--teal-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.feature-number {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(15, 118, 110, 0.06);
    line-height: 1;
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.fi-teal { background: var(--teal); }
.fi-gold { background: var(--gold); }
.fi-green { background: var(--green); }

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: var(--bg-alt);
    border-radius: var(--radius-xs);
    border-left: 3px solid var(--gold);
    font-size: 0.875rem;
    color: var(--text);
}

.feature-metric svg {
    flex-shrink: 0;
    color: var(--gold);
}

/* ==========================================
   DASHBOARDS
   ========================================== */

.dashboards {
    padding: 6rem 0;
}

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

.dash-card {
    padding: 2rem;
    border-radius: var(--radius);
    background: white;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
}

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

.dash-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.di-1 { background: var(--teal-bg); color: var(--teal); }
.di-2 { background: #ede9fe; color: #7c3aed; }
.di-3 { background: #fef3c7; color: var(--gold); }
.di-4 { background: #ecfdf5; color: var(--green); }
.di-5 { background: #e0f2fe; color: #0284c7; }
.di-6 { background: #fef2f2; color: #ef4444; }

.dash-card h4 {
    font-size: 1.063rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.dash-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   WORKFLOW / STEPS
   ========================================== */

.workflow {
    padding: 6rem 0;
    background: var(--bg-alt);
}

.steps-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 3.5rem;
}

.timeline-line {
    position: absolute;
    left: 1.25rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--teal), var(--green));
    border-radius: 1px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-num {
    position: absolute;
    left: -3.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 1;
    box-shadow: 0 0 0 4px white;
}

.step-content {
    background: white;
    padding: 1.5rem 1.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    flex: 1;
    transition: all 0.2s;
}

.step-content:hover {
    box-shadow: var(--shadow);
    border-color: var(--teal-light);
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.step-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.workflow-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ==========================================
   AUDIENCES
   ========================================== */

.audiences {
    padding: 6rem 0;
}

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

.audience-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

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

.audience-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.ai-1 { background: var(--teal); }
.ai-2 { background: var(--gold); }
.ai-3 { background: var(--green); }

.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.audience-card > p {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.audience-checks {
    list-style: none;
}

.audience-checks li {
    padding: 0.4rem 0;
    font-size: 0.875rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.audience-checks li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #d1fae5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center no-repeat;
    background-size: 10px;
    flex-shrink: 0;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */

.testimonials {
    padding: 6rem 0;
    background: var(--bg-alt);
}

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

.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.testimonial-stars {
    color: var(--gold);
    font-size: 1.125rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    flex: 1;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--teal-bg);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.813rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.875rem;
    color: var(--text);
}

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

/* ==========================================
   FINAL CTA
   ========================================== */

.cta-final {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0F766E, #0d6b64 50%, #0a5f58);
    color: white;
    text-align: center;
}

.cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.cta-final h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.02em;
}

.cta-final p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-actions {
    margin-bottom: 1.5rem;
}

.cta-subtext {
    font-size: 0.875rem !important;
    color: rgba(255,255,255,0.6) !important;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: #0f172a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    border-radius: var(--radius-xs);
}

.footer-brand p {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 0.813rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: white;
    margin-bottom: 1rem;
}

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

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.813rem;
    color: #64748b;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        gap: 1rem;
    }

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

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 3rem 0 4rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-logo {
        height: 90px;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

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

    .section-header {
        margin-bottom: 2.5rem;
    }

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

    .comparison-grid,
    .features-grid,
    .dashboard-grid,
    .audience-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .proof-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .proof-divider {
        width: 60px;
        height: 1px;
    }

    .impact-banner {
        flex-direction: column;
        text-align: center;
    }

    .cta-final h2 {
        font-size: 1.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    section {
        padding: 4rem 0;
    }

    .problem-solution,
    .features,
    .dashboards,
    .workflow,
    .audiences,
    .testimonials,
    .cta-final {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.625rem;
    }

    .container {
        padding: 0 1.25rem;
    }

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

/* ==========================================
   LEAD CAPTURE FORM
   ========================================== */

.get-info-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0F766E, #0d6b64 50%, #0a5f58);
    color: white;
}

.get-info-cta .section-tag {
    background: rgba(255,255,255,0.15);
    color: white;
}

.get-info-cta .section-header h2 {
    color: white;
}

.get-info-cta .section-desc {
    color: rgba(255,255,255,0.8);
}

.form-container {
    max-width: 720px;
    margin: 0 auto;
}

.info-form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    color: var(--text);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xs);
    font-size: 0.938rem;
    font-family: inherit;
    color: var(--text);
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

.form-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1.75rem 0;
}

.form-submit {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1rem;
    font-size: 1rem;
}

.form-note {
    text-align: center;
    font-size: 0.813rem;
    color: var(--text-light);
    margin-top: 0.75rem;
}

.form-success {
    background: white;
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    text-align: center;
    color: var(--text);
}

.success-icon {
    color: var(--green);
    margin-bottom: 1.25rem;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.form-success p {
    font-size: 1.063rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

    .info-form {
        padding: 1.5rem;
    }

    .get-info-cta {
        padding: 4rem 0;
    }
}

/* ==========================================
   SUBPAGE SUPPORT (hero-short, etc.)
   ========================================== */

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

.hero-short {
    padding: 3rem 0;
    background: linear-gradient(135deg, #0F766E 0%, #0d5f58 100%);
    color: white;
}

.hero-short .hero-grid,
.hero-short .hero-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.hero-short h1 {
    font-size: 2rem;
    color: white;
    text-align: center;
}

.hero-short .section-subtitle,
.hero-short .subtitle,
.hero-short p {
    color: rgba(255,255,255,0.85);
    text-align: center;
}

h2 {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Subpage specifics - keep compatibility */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: white;
}

.stat {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    text-align: center;
    backdrop-filter: blur(8px);
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gold-light);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.813rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* Subpage detail sections */
.detailed-workflow { padding: 4rem 0; }
.detailed-workflow h2 { margin-bottom: 0.5rem; }
.workflow-detail {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    margin: 3rem 0;
}
.detail-text {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--radius);
}
.detail-text h3 {
    color: var(--teal);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}
.process-steps { list-style: decimal; padding-left: 1.5rem; }
.process-steps li { margin-bottom: 0.75rem; line-height: 1.6; }
.process-steps ul { list-style: disc; margin-left: 2rem; margin-top: 0.5rem; }
.process-steps ul li { margin-bottom: 0.5rem; }
.divider { width: 2px; height: 100%; background: var(--border); min-height: 300px; }

.feature-highlight-box {
    background: linear-gradient(135deg, var(--teal-bg), #ecfdf5);
    padding: 2rem;
    border-radius: var(--radius);
    margin: 3rem 0;
}
.feature-highlight-box h4 { color: var(--teal); text-align: center; margin-bottom: 2rem; }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.highlight-item { background: white; padding: 1.5rem; border-radius: var(--radius-xs); border-left: 4px solid var(--gold); }
.highlight-item strong { color: var(--teal); display: block; margin-bottom: 0.5rem; }
.highlight-item p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }

.tech-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.tech-stats .stat { background: var(--bg-alt); color: var(--text); border: 1px solid var(--border); }
.tech-stats .stat-number { color: var(--teal); font-size: 1.75rem; }
.tech-stats .stat-label { color: var(--text-secondary); }

.audience-detail-header { text-align: center; margin-bottom: 3rem; }
.audience-detail-header h2 { font-size: 2.25rem; margin-bottom: 0.5rem; }
.role-overview { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin: 3rem 0; }
.role-section h3 { color: var(--teal); margin-bottom: 2rem; font-size: 1.25rem; }
.pain-points { display: flex; flex-direction: column; gap: 1rem; }
.pain-point { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: var(--bg-alt); border-radius: var(--radius-xs); border-left: 4px solid #ef4444; }
.pain-point .icon { font-size: 1.5rem; flex-shrink: 0; }
.pain-point p { color: var(--text); line-height: 1.5; }
.benefits-list { display: flex; flex-direction: column; gap: 1rem; }
.benefit { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: linear-gradient(135deg, rgba(16,185,129,0.05), var(--teal-bg)); border-radius: var(--radius-xs); border-left: 4px solid var(--green); }
.benefit .icon { font-size: 1.5rem; color: var(--green); flex-shrink: 0; }
.benefit h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.benefit p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.5; }

.cta-box { background: linear-gradient(135deg, var(--teal-bg), #fef3c7); padding: 2rem; border-radius: var(--radius); border: 2px solid var(--teal); text-align: center; margin-top: 2rem; }
.cta-box h4 { color: var(--teal); margin-bottom: 1rem; }
.cta-box p { color: var(--text); line-height: 1.7; }

.monthly-rhythm { padding: 4rem 0; }
.technical { padding: 4rem 0; }
.technical h2 { margin-bottom: 1rem; }
.tech-detail { background: var(--bg-alt); padding: 2rem; border-radius: var(--radius); margin: 2rem 0; }
.tech-detail h3 { color: var(--teal); margin-bottom: 1.25rem; }
.tech-detail ol { list-style: decimal; padding-left: 1.5rem; }
.tech-detail li { margin-bottom: 0.75rem; line-height: 1.6; }
.comparison-section { padding: 4rem 0; }
table { width: 100%; border-collapse: collapse; background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
thead { background: var(--teal); color: white; }
th { padding: 1.25rem; text-align: left; font-weight: 600; }
td { padding: 1.25rem; border-bottom: 1px solid var(--border); }
tbody tr:hover { background: var(--bg-alt); }
tbody tr td:first-child { font-weight: 600; color: var(--teal); }
.comparison-table { overflow-x: auto; margin: 3rem 0; }

.timeline { display: flex; flex-direction: column; gap: 2rem; margin: 3rem 0; }
.timeline-item { display: grid; grid-template-columns: 150px 1fr; gap: 2rem; padding: 2rem; background: white; border: 1px solid var(--border); border-radius: var(--radius); }
.timeline-date { font-weight: 600; color: var(--teal); font-size: 0.95rem; }
.timeline-content h4 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.timeline-content p { color: var(--text-secondary); font-size: 0.95rem; }
.savings-box { background: linear-gradient(135deg, #0F766E, #0d5f58); color: white; padding: 3rem; border-radius: var(--radius); text-align: center; margin: 3rem 0; }
.savings-box h3 { color: white; margin-bottom: 1rem; }
.savings-box p { margin-bottom: 1rem; line-height: 1.8; }

@media (max-width: 768px) {
    .workflow-detail { grid-template-columns: 1fr; }
    .divider { width: 100%; height: 2px; min-height: 2px; }
    .highlight-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-stats { grid-template-columns: 1fr; }
    .role-overview { grid-template-columns: 1fr; }
    .timeline-item { grid-template-columns: 1fr; }
    .hero-container { grid-template-columns: 1fr; }
}
