@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand Colors - Modern Corporate SaaS */
    --primary: #4F46E5;
    --primary-hover: #4338CA;
    --primary-light: #EEF2FF;
    --primary-rgb: 79, 70, 229;
    
    --accent: #06B6D4;
    --accent-hover: #0891B2;
    --accent-light: #ECFEFF;
    
    --emerald: #10B981;
    --emerald-light: #ECFDF5;
    --amber: #F59E0B;
    --amber-light: #FFFBEB;
    --danger: #EF4444;
    --danger-light: #FEF2F2;

    /* Backgrounds & Surfaces */
    --bg-page: #F8FAFC;
    --bg-surface: #FFFFFF;
    --bg-surface-glass: rgba(255, 255, 255, 0.88);
    --bg-subtle: #F1F5F9;
    --bg-subtle-hover: #E2E8F0;

    /* Typography Colors */
    --text-heading: #0F172A;
    --text-body: #334155;
    --text-muted: #64748B;
    --text-faint: #94A3B8;

    /* Borders */
    --border-subtle: #E2E8F0;
    --border-glass: rgba(226, 232, 240, 0.8);
    --border-focus: #4F46E5;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    --grad-primary-hover: linear-gradient(135deg, #4338CA 0%, #0891B2 100%);
    --grad-hero: radial-gradient(circle at 50% -20%, #EEF2FF 0%, #F8FAFC 70%);
    --grad-card-highlight: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    --grad-dark-banner: linear-gradient(135deg, #0F172A 0%, #1E1B4B 60%, #312E81 100%);
    --text-grad: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.05), 0 1px 4px -1px rgba(15, 23, 42, 0.03);
    --shadow-md: 0 10px 20px -5px rgba(15, 23, 42, 0.06), 0 3px 8px -2px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 18px 30px -8px rgba(15, 23, 42, 0.08), 0 6px 12px -3px rgba(15, 23, 42, 0.03);
    --shadow-xl: 0 20px 40px -10px rgba(79, 70, 229, 0.14);

    /* Radii */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 22px;
    --radius-full: 9999px;

    /* Layout */
    --max-w: 1200px;
}

/* ==========================================================================
   Base & Resets (Refined Corporate Typography Scale)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 15px; /* Scaled down base for more balanced reading */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: var(--text-heading);
    letter-spacing: -0.025em;
    font-weight: 700;
}

p {
    color: var(--text-body);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
}

.text-gradient {
    background: var(--text-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

/* ==========================================================================
   Buttons & Badges (Refined Size)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--grad-primary);
    color: #FFFFFF !important;
    box-shadow: 0 3px 12px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.32);
}

.btn-outline {
    background: var(--bg-surface);
    color: var(--text-heading) !important;
    border-color: var(--border-subtle);
    box-shadow: var(--shadow-xs);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-white {
    background: #FFFFFF;
    color: var(--primary) !important;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: #F8FAFC;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #FFFFFF !important;
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-xs);
}

.badge-emerald {
    background: var(--emerald-light);
    color: #059669;
    border-color: rgba(16, 185, 129, 0.2);
}

.badge-glow {
    position: relative;
    border-color: rgba(79, 70, 229, 0.25);
    background: linear-gradient(135deg, #FFFFFF 0%, #EEF2FF 100%);
}

.badge-glow::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 6px var(--primary);
    animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

/* ==========================================================================
   Section Headers (Scaled Down)
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 36px;
}

.section-label {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    line-height: 1.25;
    margin-bottom: 10px;
}

.section-sub {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ==========================================================================
   Header & Navbar (Clean, Max 4 links + 2 CTA buttons)
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-glass);
    transition: all 0.25s ease;
    height: 70px;
    display: flex;
    align-items: center;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    height: 64px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-logo img {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-body);
    transition: color 0.2s;
    padding: 4px 0;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.3rem;
    color: var(--text-heading);
    cursor: pointer;
    padding: 6px;
}

/* Mobile Nav */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: var(--bg-surface);
    z-index: 1002;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav .close-btn {
    align-self: flex-end;
    background: transparent;
    border: none;
    font-size: 1.3rem;
    color: var(--text-heading);
    cursor: pointer;
}

.mobile-nav a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-heading);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
}

@media (max-width: 860px) {
    .header-nav { display: none; }
    .menu-toggle { display: block; }
    .header-actions .btn { display: none; }
}

/* ==========================================================================
   Hero Section (Corporate Split Layout)
   ========================================================================== */
.hero-section {
    padding: 120px 0 60px;
    background: var(--grad-hero);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero-title {
    font-size: clamp(1.75rem, 3.2vw, 2.45rem);
    line-height: 1.2;
    margin: 16px 0 16px;
    letter-spacing: -0.03em;
}

.hero-sub {
    font-size: 0.96rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

@media (max-width: 960px) {
    .hero-cta-group {
        justify-content: center;
    }
}

.hero-metrics-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 12px 20px;
    background: var(--bg-surface-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    width: fit-content;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 960px) {
    .hero-metrics-bar {
        margin: 0 auto;
    }
}

.hero-metric-item {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-metric-item strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-heading);
}

.hero-metric-item span {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-corporate-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-subtle);
}

.hero-corporate-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.hero-corporate-visual:hover img {
    transform: scale(1.02);
}

.hero-live-badge-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
}

/* ==========================================================================
   Infinite Horizontal Marquee (Logos Only - No Names)
   ========================================================================== */
.social-proof-section {
    padding: 36px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}

.social-proof-title {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-faint);
    margin-bottom: 22px;
}

.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: infiniteScroll 28s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.company-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    min-width: 130px;
    padding: 10px 22px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
    box-shadow: var(--shadow-xs);
}

.company-logo-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.company-logo-card img {
    max-height: 38px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
}

/* ==========================================================================
   LIVE INTERACTIVE CONSOLE (Pure HTML/CSS/JS Interaction)
   ========================================================================== */
.live-interactive-section {
    padding: 80px 0;
    background: var(--bg-surface);
}

.console-container {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 1060px;
    margin: 0 auto;
}

.console-topbar {
    background: #0F172A;
    color: #FFFFFF;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.console-top-dots {
    display: flex;
    gap: 6px;
}

.console-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }

.console-tab-nav {
    display: flex;
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow-x: auto;
}

.console-tab-btn {
    padding: 12px 20px;
    border: none;
    background: transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}

.console-tab-btn:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.6);
}

.console-tab-btn.active {
    color: var(--primary);
    background: #FFFFFF;
    border-bottom-color: var(--primary);
}

.console-panel {
    display: none;
    padding: 30px 28px;
}

.console-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Console Internal Widgets */
.console-grid-2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}

@media (max-width: 800px) {
    .console-grid-2 { grid-template-columns: 1fr; }
}

.console-card-box {
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.console-action-item {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.85rem;
}

.console-risk-gauge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.8rem;
}

/* ==========================================================================
   Bento Grid (Refined Font Scale)
   ========================================================================== */
.features-section {
    padding: 80px 0;
    background: var(--bg-page);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.bento-col-8 { grid-column: span 8; }
.bento-col-4 { grid-column: span 4; }
.bento-col-6 { grid-column: span 6; }
.bento-col-12 { grid-column: span 12; }

@media (max-width: 960px) {
    .bento-col-8, .bento-col-4, .bento-col-6 { grid-column: span 12; }
}

.bento-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(79, 70, 229, 0.3);
}

.bento-card.highlight {
    background: linear-gradient(135deg, #FFFFFF 0%, #EEF2FF 100%);
    border-color: rgba(79, 70, 229, 0.2);
}

.bento-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.bento-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.bento-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ==========================================================================
   Corporate Value Showcase (Pairing Photography + Benefits)
   ========================================================================== */
.corporate-showcase-section {
    padding: 80px 0;
    background: var(--bg-surface);
}

.corp-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
}

@media (max-width: 860px) {
    .corp-split-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.corp-img-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-subtle);
}

.corp-img-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Problems & Pain Points
   ========================================================================== */
.problems-section {
    padding: 80px 0;
    background: var(--bg-page);
}

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

@media (max-width: 860px) {
    .problems-grid { grid-template-columns: 1fr; }
}

.problem-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all 0.25s ease;
}

.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(239, 68, 68, 0.3);
}

.problem-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--danger-light);
    color: var(--danger);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 1.12rem;
    margin-bottom: 8px;
}

.problem-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ==========================================================================
   Video Showcase Section
   ========================================================================== */
.video-section {
    padding: 80px 0;
    background: var(--bg-surface);
}

.video-card-container {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-subtle);
}

.video-thumbnail-wrap {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.video-thumbnail-wrap:hover img {
    transform: scale(1.03);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 2px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.25s;
}

.video-play-btn:hover {
    transform: scale(1.08);
    background: #FFFFFF;
}

/* Modal */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
}

.custom-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal-card {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    padding: 36px 30px;
    max-width: 480px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-subtle);
    text-align: center;
}

/* ==========================================================================
   Pricing Section (Refined Scale)
   ========================================================================== */
.pricing-section {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--bg-page) 0%, #EEF2FF 50%, var(--bg-page) 100%);
}

.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0 44px;
}

.pricing-toggle-box {
    display: inline-flex;
    background: #FFFFFF;
    border-radius: var(--radius-full);
    padding: 5px;
    gap: 4px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-xs);
}

.pricing-toggle-btn {
    padding: 8px 22px;
    border-radius: var(--radius-full);
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    color: var(--text-muted);
}

.pricing-toggle-btn.active {
    background: var(--primary);
    color: #FFFFFF;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.06fr 1fr;
    gap: 20px;
    align-items: end;
    max-width: 1080px;
    margin: 0 auto 40px;
}

@media (max-width: 960px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
}

.pricing-card {
    background: var(--bg-surface);
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    position: relative;
    transition: all 0.25s ease;
}

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

.pricing-card.featured {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFF 100%);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-xl);
    padding: 38px 28px;
    z-index: 2;
}

.featured-ribbon {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    color: #FFFFFF;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.plan-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1;
    margin: 12px 0 4px;
}

.plan-price-cents { font-size: 1.1rem; }
.plan-period { font-size: 0.82rem; color: var(--text-muted); }

.plan-features {
    list-style: none;
    margin: 22px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-features li {
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features li.disabled {
    color: var(--text-faint);
    text-decoration: line-through;
}

.plan-features i.fa-check { color: var(--emerald); font-size: 0.8rem; }
.plan-features i.fa-xmark { color: var(--text-faint); font-size: 0.8rem; }

.enterprise-banner {
    background: var(--grad-dark-banner);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    color: #FFFFFF;
    box-shadow: var(--shadow-lg);
    max-width: 1080px;
    margin: 0 auto;
}

/* ==========================================================================
   FAQ & Testimonials
   ========================================================================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-surface);
}

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

@media (max-width: 860px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

.testimonial-card {
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
}

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

.testimonial-stars {
    color: var(--amber);
    font-size: 0.82rem;
    margin-bottom: 12px;
    display: flex;
    gap: 3px;
}

.testimonial-quote {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-body);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
}

.author-info strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.86rem;
    color: var(--text-heading);
}

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

.faq-section {
    padding: 80px 0;
    background: var(--bg-page);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-xs);
}

.faq-q {
    padding: 18px 22px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.faq-q i {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: transform 0.25s ease;
}

.faq-item.active .faq-q i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-a-inner {
    padding: 0 22px 20px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Blog & CTA Final
   ========================================================================== */
.blog-section {
    padding: 80px 0;
    background: var(--bg-surface);
}

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

@media (max-width: 860px) {
    .blog-grid { grid-template-columns: 1fr; }
}

.blog-card {
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

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

.blog-card-img {
    height: 170px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.04);
}

.blog-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-date {
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    line-height: 1.35;
}

.blog-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    margin-top: auto;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.cta-final-section {
    padding: 80px 0;
    background: var(--grad-primary);
    color: #FFFFFF;
    text-align: center;
}

.cta-final-section h2 {
    color: #FFFFFF;
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    margin-bottom: 12px;
}

.cta-final-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    max-width: 580px;
    margin: 0 auto 28px;
}

.canal-section {
    padding: 60px 0;
    background: var(--bg-page);
}

.canal-card {
    max-width: 520px;
    margin: 0 auto;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 36px 30px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.canal-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.canal-card h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.canal-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.canal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.canal-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: var(--text-heading);
    outline: none;
    transition: border-color 0.2s;
}

.canal-input:focus {
    border-color: var(--primary);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #FFFFFF;
    border-top: 1px solid var(--border-subtle);
    padding: 48px 0 28px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

.footer-bottom {
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.78rem;
    color: var(--text-faint);
}

/* ==========================================================================
   Auth & Legal Layout
   ========================================================================== */
.auth-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 16px;
    background: radial-gradient(circle at 50% 0%, #EEF2FF 0%, #F8FAFC 80%);
}

.auth-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 440px;
    padding: 36px 32px;
}

.auth-card-header {
    text-align: center;
    margin-bottom: 26px;
}

.auth-card-header img {
    height: 38px;
    margin: 0 auto 16px;
}

.auth-card-header h1 {
    font-size: 1.45rem;
    margin-bottom: 6px;
}

.auth-card-header p {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.auth-form-group {
    margin-bottom: 16px;
    text-align: left;
}

.auth-form-group label {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.auth-form-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-heading);
    outline: none;
    transition: all 0.2s;
}

.auth-form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

.legal-content-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-xs);
    color: var(--text-body);
    line-height: 1.7;
    font-size: 0.92rem;
}

.legal-content-box h2, .legal-content-box h3 {
    margin-top: 28px;
    margin-bottom: 10px;
}

.legal-content-box p {
    margin-bottom: 14px;
}

.legal-content-box ul {
    margin-bottom: 18px;
    padding-left: 20px;
}

.legal-content-box li {
    margin-bottom: 6px;
}

/* ==========================================================================
   Hero Metrics Grid (Clean 4-column statistic cards)
   ========================================================================== */
.hero-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 24px;
    max-width: 500px;
}

@media (max-width: 960px) {
    .hero-metrics-grid {
        margin: 24px auto 0;
        max-width: 460px;
    }
}

@media (max-width: 520px) {
    .hero-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-metric-pill {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 10px 12px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: all 0.2s ease;
}

.hero-metric-pill:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.hero-metric-pill strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.2;
}

.hero-metric-pill span {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ==========================================================================
   How It Works Steps (4-card Grid)
   ========================================================================== */
.how-section {
    padding: 80px 0;
    background: var(--bg-page);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 28px;
}

@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 26px 20px;
    position: relative;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-xs);
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-heading);
}

.step-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
}