/* 
   🌌 SANA "Emerald Aurora" Design System - MASTER CSS
   Status: FINAL POLISHED (Clean + Soft Aurora Background)
*/

:root {
    /* --- BRAND: SOFT & CLEAN --- */
    --emerald-500: #00A676;
    --emerald-600: #047857;
    --emerald-900: #064E3B;

    --mint-soft: #A7F3D0;
    --blue-soft: #BFDBFE;

    /* --- GLASS URIS --- */
    --glass-bg: rgba(255, 255, 255, 0.90);
    /* Very clean white glass */
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    --glass-blur: 20px;

    /* --- TEXT & SURFACE --- */
    --bg-page: #F0FDF4;
    --text-main: #1F2937;
    --text-muted: #6B7280;
    --input-bg: #FFFFFF;
    --input-border: #E5E7EB;

    /* --- FONTS --- */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* 🌙 DARK MODE (Balanced) */
[data-theme="dark"] {
    --emerald-500: #10B981;
    --bg-page: #0f172a;
    --glass-bg: rgba(30, 41, 59, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --input-bg: rgba(15, 23, 42, 0.6);
    --input-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: var(--font-body);
    /* Base soft gradient */
    background: linear-gradient(135deg, #F0FDF4 0%, #E0F2FE 100%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* DARK MODE: Deep space background with subtle aurora */
[data-theme="dark"] body {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0c4a6e 100%);
}

/* --- ORBS (Restored & Softened for Depth) --- */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    display: block !important;
    /* Force visibility */
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.6;
    animation: floatOrb 15s infinite alternate ease-in-out;
}

.orb-1 {
    /* Soft Mint */
    width: 60vh;
    height: 60vh;
    background: radial-gradient(circle, #6EE7B7, #34D399);
    top: -10%;
    left: -10%;
}

.orb-2 {
    /* Soft Blue/Cyan */
    width: 50vh;
    height: 50vh;
    background: radial-gradient(circle, #A5F3FC, #60A5FA);
    bottom: -10%;
    right: -5%;
    animation-delay: -5s;
}

/* orb-3 REMOVIDO - causava a mancha cinza */
.orb-3 {
    display: none !important;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 40px) scale(1.05);
    }
}

/* --- 💎 GLASS PANEL --- */
.login-container {
    width: 100%;
    max-width: 1000px;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.glass-panel {
    display: flex;
    width: 100%;
    background: var(--glass-bg);
    border-radius: 32px;
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    min-height: 600px;
    border: 1px solid white;
    /* Crisp white border */
}

/* LEFT: Branding */
.panel-left {
    flex: 1;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Centraliza horizontalmente */
    text-align: center;
    position: relative;
    border-right: 1px solid rgba(0, 0, 0, 0.03);
}

/* For pages with header - align content same as login */
.panel-left.align-top {
    justify-content: flex-start;
    padding-top: 80px;
}

.brand-logo {
    height: 220px;
    width: auto;
    margin-bottom: 2rem;
}

.brand-text h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--emerald-600);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

[data-theme="dark"] .brand-text h2 {
    color: var(--emerald-500);
}

.brand-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* FIX: Removing the "Mancha" (Glass Decoration) */
.glass-decoration {
    display: none;
    /* Hiding the artifact */
}

/* RIGHT: Form */
.panel-right {
    flex: 1.2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #FFFFFF;
}

[data-theme="dark"] .panel-right {
    background: rgba(15, 23, 42, 0.8);
}


/* --- FORM ELEMENTS --- */
.form-header h3 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

/* FIX: Container precisa de position relative para os ícones absolutos */
.input-field {
    position: relative;
}

.input-field input {
    width: 100%;
    padding: 16px 16px 16px 45px;
    border: 1px solid var(--input-border);
    border-radius: 12px;
    background: var(--input-bg);
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
    transition: 0.2s;
}

.input-field input:focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 4px rgba(0, 166, 118, 0.1);
}

[data-theme="dark"] .input-field input {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(255, 255, 255, 0.15);
    color: #F8FAFC;
}

[data-theme="dark"] .input-field input::placeholder {
    color: #94A3B8;
}

.input-field i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
}

/* Button */
.btn-login {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--emerald-500) 0%, var(--emerald-600) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 166, 118, 0.3);
    transition: 0.2s;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -5px rgba(0, 166, 118, 0.4);
}

.login-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.login-footer a {
    color: var(--emerald-600);
    font-weight: 600;
    text-decoration: none;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid transparent;
    color: var(--emerald-600);
    font-weight: 600;
    transition: 0.2s;
}

.btn-ghost:hover {
    text-decoration: underline;
    color: var(--emerald-500);
}


/* THEME TOGGLE */
.floating-icon {
    position: fixed;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.floating-icon:hover {
    background: rgba(255, 255, 255, 0.5);
    /* Subtle hover bg */
    border-radius: 50%;
    color: var(--emerald-500);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .glass-panel {
        flex-direction: column;
    }

    .panel-left {
        padding: 40px;
        min-height: 200px;
    }

    .panel-right {
        padding: 40px 20px;
    }
}

/* ============================================
   🌐 INTERNAL PAGES (Proposta, Contato)
   ============================================ */

/* Body override for internal pages */
body.internal-page {
    display: block;
    background: linear-gradient(180deg, #F0FDF4 0%, #E0F2FE 50%, #FFFFFF 100%);
    min-height: 100vh;
}

[data-theme="dark"] body.internal-page {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* --- HEADER --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .site-header {
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.site-header .logo img {
    height: 40px;
    width: auto;
}

.site-header .logo span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald-600);
}

[data-theme="dark"] .site-header .logo span {
    color: var(--emerald-500);
}

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

.site-header nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: 0.2s;
}

.site-header nav a:hover,
.site-header nav a.active {
    color: var(--emerald-500);
}

.site-header .btn-header {
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.site-header .btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 166, 118, 0.3);
}

/* --- PAGE CONTAINER --- */
.page-container {
    padding-top: 100px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* --- HERO SECTION --- */
.hero-section {
    text-align: center;
    padding: 4rem 0;
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section h1 .gradient-text {
    background: linear-gradient(135deg, var(--emerald-500), #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* --- CONTENT SECTIONS --- */
.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
    text-align: center;
}

.content-section .subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

/* --- CARDS GRID --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.content-card {
    background: var(--glass-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: 0.3s;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.content-card .card-icon {
    font-size: 2.5rem;
    color: var(--emerald-500);
    margin-bottom: 1rem;
}

.content-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.content-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.content-card .badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: rgba(0, 166, 118, 0.1);
    color: var(--emerald-600);
}

/* --- TIMELINE --- */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--emerald-500), var(--blue-soft));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--emerald-500);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--emerald-500);
}

.timeline-item h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.timeline-item .year {
    font-size: 0.85rem;
    color: var(--emerald-500);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--text-muted);
}

/* --- QUOTE BLOCK --- */
.quote-block {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.05));
    border-left: 4px solid var(--emerald-500);
    padding: 2rem;
    border-radius: 0 16px 16px 0;
    margin: 2rem 0;
}

.quote-block p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.6;
}

/* --- CTA SECTION --- */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    border-radius: 24px;
    margin: 4rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-section .btn-cta {
    display: inline-block;
    background: white;
    color: var(--emerald-600);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.cta-section .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* --- FOOTER --- */
.site-footer {
    background: var(--glass-bg);
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 4rem;
}

[data-theme="dark"] .site-footer {
    background: rgba(15, 23, 42, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald-500);
    margin-bottom: 0.5rem;
}

.site-footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- FORM STYLES (Internal) --- */
.contact-form {
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--input-border);
    border-radius: 12px;
    background: var(--input-bg);
    color: var(--text-main);
    font-size: 1rem;
    transition: 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 4px rgba(0, 166, 118, 0.1);
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 166, 118, 0.3);
}

/* RESPONSIVE (Internal Pages) */
@media (max-width: 768px) {
    .site-header {
        padding: 1rem;
    }

    /* Floating theme toggle - move to left on mobile to avoid hamburger */
    .floating-icon {
        right: 70px;
        top: 20px;
    }

    /* Hide desktop nav, show hamburger */
    .site-header nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    [data-theme="dark"] .site-header nav {
        background: rgba(15, 23, 42, 0.95);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-header nav.active {
        display: flex;
    }

    .site-header nav a {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        text-align: center;
    }

    .site-header nav a:hover {
        background: rgba(0, 166, 118, 0.1);
    }

    /* Hamburger button */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 28px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        margin-left: auto;
    }

    .menu-toggle span {
        width: 100%;
        height: 3px;
        background: var(--text-main);
        border-radius: 3px;
        transition: 0.3s;
    }

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

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

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .page-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Desktop: hide hamburger */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}

/* ============================================
   🎯 NOVAS SEÇÕES (cVortex-inspired)
   ============================================ */

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Primary Button - used in hero and dashboard */
a.btn-primary,
.hero-ctas .btn-primary {
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600)) !important;
    color: white !important;
    padding: 1rem 2rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 166, 118, 0.3);
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
}

a.btn-primary:hover,
.hero-ctas .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 166, 118, 0.4);
    color: white !important;
}

/* Secondary Button - outline style */
a.btn-secondary,
.hero-ctas .btn-secondary {
    background: transparent !important;
    color: var(--emerald-500) !important;
    padding: 1rem 2rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border: 2px solid var(--emerald-500) !important;
    transition: 0.3s;
    display: inline-flex !important;
    align-items: center;
}

a.btn-secondary:hover,
.hero-ctas .btn-secondary:hover {
    background: var(--emerald-500) !important;
    color: white !important;
}

/* Dashboard Embed */
.dashboard-preview-section {
    text-align: center;
}

.dashboard-embed-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid var(--glass-border);
    background: #f4f7f6;
}

.dashboard-embed {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 20px;
    transform: scale(0.95);
    transform-origin: top center;
}

.dashboard-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    justify-content: center;
}

/* Partnership Badge */
.partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--glass-bg);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.partnership-badge .google-icon {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    flex-shrink: 0;
}

.partnership-badge i.fab.fa-google {
    font-size: 1.1rem;
    color: #4285F4;
}

.partnership-badge span {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
}

/* Google Icon SVG fix */
svg.google-icon {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    min-width: 22px !important;
    display: inline-block !important;
}

/* Testimonials */
.testimonials-section {
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: white !important;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-quote::before {
    content: '"';
    font-size: 2rem;
    color: var(--emerald-500);
    line-height: 0;
    vertical-align: -0.3em;
    margin-right: 0.25rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author i {
    font-size: 2.5rem;
    color: var(--emerald-500);
}

.testimonial-author strong {
    display: block;
    color: var(--text-main);
}

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

/* Dark mode adjustments */
[data-theme="dark"] .dashboard-embed-wrapper {
    border-color: rgba(255, 255, 255, 0.1);
    background: #1e293b;
}

[data-theme="dark"] .partnership-badge {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .btn-secondary {
    border-color: var(--emerald-500);
    color: var(--emerald-500);
}

[data-theme="dark"] .testimonial-card {
    background: rgba(30, 41, 59, 0.85);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .google-icon path {
    filter: brightness(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-embed {
        height: 350px;
    }

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

    .hero-section .btn-primary,
    .hero-section .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }
}