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

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
    --primary: #16007A;
    --primary-light: #3811C9;
    --primary-dark: #0A003D;
    --primary-glow: rgba(22, 0, 122, 0.15);
    --accent: #FF3B3B;
    --accent-glow: rgba(255, 59, 59, 0.2);
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FD;
    --bg-dark: #0A003D;
    --text-primary: #111111;
    --text-secondary: #666666;
    --text-light: #FFFFFF;
    --text-muted: #A0AEC0;
    --border-color: #EAEAEA;
    --border-dark: rgba(255, 255, 255, 0.1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(22, 0, 122, 0.07), 0 10px 10px -5px rgba(22, 0, 122, 0.03);
    --shadow-accent: 0 10px 20px -5px rgba(255, 59, 59, 0.3);
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --max-width: 1200px;
}

/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* --- BUTTON SYSTEM --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(22, 0, 122, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.02);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--text-light);
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 59, 59, 0.4);
}

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

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* --- ANIMATION CLASS UTILITIES --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- CONTAINERS & WRAPPERS --- */
.section {
    padding: 100px 0;
    position: relative;
}

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

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

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* --- 1. NAVBAR --- */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: var(--max-width);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar-scrolled {
    top: 10px;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.9);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
    margin-left: 2px;
}

/* Middle menu container - pill style */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(10, 0, 61, 0.04);
    padding: 4px;
    border-radius: var(--radius-full);
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 18px;
    border-radius: var(--radius-full);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar-cta .btn {
    padding: 10px 22px;
    font-size: 14px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

/* --- 2. HERO SECTION --- */
.hero {
    min-height: 100vh;
    padding-top: 160px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(22, 0, 122, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(255, 59, 59, 0.03) 0%, transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 580px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--primary);
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.5;
}

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

.hero-mockup {
    position: relative;
    width: 100%;
    height: 480px;
}

/* Graphic dashboard style mockup */
.mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    overflow: hidden;
}

/* Dynamic floating elements to mimic reference and suggest SaaS premium */
.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

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

.dash-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: #E2E8F0;
}

.dash-dot:nth-child(1) { background-color: #FF5F56; }
.dash-dot:nth-child(2) { background-color: #FFBD2E; }
.dash-dot:nth-child(3) { background-color: #27C93F; }

.dash-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(0,0,0,0.05);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.dashboard-main-chart {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 16px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-color);
}

.chart-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
    padding-top: 10px;
}

.chart-bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 12%;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar {
    width: 100%;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
    animation: growBar 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: bottom;
    height: 0;
}

.chart-bar.alt {
    background: linear-gradient(180deg, #818cf8 0%, var(--primary-light) 100%);
}

.chart-bar-col:nth-child(1) .chart-bar { --height: 40%; }
.chart-bar-col:nth-child(2) .chart-bar { --height: 60%; }
.chart-bar-col:nth-child(3) .chart-bar { --height: 50%; }
.chart-bar-col:nth-child(4) .chart-bar { --height: 80%; }
.chart-bar-col:nth-child(5) .chart-bar { --height: 70%; }
.chart-bar-col:nth-child(6) .chart-bar { --height: 95%; }
.chart-bar-col:nth-child(7) .chart-bar { --height: 85%; }

@keyframes growBar {
    to { height: var(--height); }
}

.chart-label {
    font-size: 9px;
    color: var(--text-secondary);
    margin-top: 6px;
}

.dashboard-side-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mini-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.mini-card-label {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
}

.mini-card-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.mini-card-badge {
    align-self: flex-start;
    font-size: 10px;
    font-weight: 600;
    color: #27C93F;
    background-color: rgba(39, 201, 63, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 4px;
}

.dashboard-footer {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer-box {
    flex: 1;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background-color: rgba(22, 0, 122, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.footer-box-text {
    display: flex;
    flex-direction: column;
}

.footer-box-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
}

.footer-box-desc {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Floating dynamic cards mimicking reference elements */
.float-card {
    position: absolute;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatAnim 6s ease-in-out infinite;
    z-index: 10;
}

.float-card-1 {
    top: 10%;
    left: -15%;
    animation-delay: 0s;
}

.float-card-2 {
    bottom: 12%;
    right: -10%;
    animation-delay: 2s;
}

.float-card-3 {
    top: 55%;
    left: -10%;
    animation-delay: 4s;
    background-color: var(--primary);
    color: var(--text-light);
    border-color: var(--primary-light);
}

.float-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 59, 59, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-card-3 .float-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.float-info h4 {
    font-size: 13px;
    font-weight: 700;
}

.float-info p {
    font-size: 11px;
    opacity: 0.8;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

/* --- 3. CLIENT LOGOS BELT --- */
.logos-belt {
    padding: 40px 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.logos-title {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.logos-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.6;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-item:hover {
    opacity: 1;
    color: var(--primary);
}

.logo-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* --- 4. WHY CHOOSE US (DARK BLUE SECTION) --- */
.why-us {
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow: hidden;
}

.why-us .section-header h2 {
    color: var(--text-light);
}

.why-us .section-header p {
    color: var(--text-muted);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-us-item {
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 16px;
    cursor: pointer;
}

.why-us-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    padding: 8px 0;
}

.why-us-item.active .why-us-trigger {
    color: var(--text-light);
}

.why-us-icon {
    font-size: 20px;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-fast);
}

.why-us-item.active .why-us-icon {
    opacity: 1;
    transform: translateX(0);
}

.why-us-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 14px;
    color: var(--text-muted);
    padding-right: 20px;
}

.why-us-item.active .why-us-content {
    max-height: 100px;
    margin-top: 8px;
}

.why-us-preview {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.why-us-preview-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.why-us-preview-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.badge-green {
    font-size: 11px;
    font-weight: 600;
    color: #4ade80;
    background-color: rgba(74, 222, 128, 0.1);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.why-us-chart {
    height: 180px;
    display: flex;
    align-items: flex-end;
    gap: 14px;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
}

/* SVG Line graph style representation inside dark container */
.svg-graph-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.grid-line {
    position: absolute;
    width: 100%;
    border-top: 1px dashed rgba(255, 255, 255, 0.05);
}

.grid-line-1 { top: 25%; }
.grid-line-2 { top: 50%; }
.grid-line-3 { top: 75%; }

.why-us-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-us-stat-box {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-dark);
    padding: 16px;
    border-radius: var(--radius-md);
}

.why-us-stat-num {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
}

.why-us-stat-lbl {
    font-size: 11px;
    color: var(--text-muted);
}

/* --- 5. SERVICES SECTION --- */
.services {
    background-color: var(--bg-light);
}

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

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(22, 0, 122, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-container {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background-color: var(--bg-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon-container {
    background-color: var(--primary);
    color: var(--bg-white);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link span {
    transition: var(--transition-fast);
}

.service-card:hover .service-link span {
    transform: translateX(4px);
}

/* Service-specific mini previews matching premium layout detail */
.service-illustration {
    margin-top: 20px;
    height: 80px;
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.ill-bar {
    position: absolute;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    height: 6px;
    border-radius: var(--radius-full);
}

.ill-circle {
    position: absolute;
    border-radius: var(--radius-full);
    border: 2px solid var(--accent);
}

/* --- 6. RESULTS SECTION --- */
.results {
    background-color: var(--bg-white);
}

.results-dashboard-wrapper {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.results-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.results-header-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.results-header-info p {
    font-size: 13px;
    color: var(--text-secondary);
}

.results-timeframe {
    display: flex;
    gap: 8px;
    background-color: var(--bg-white);
    padding: 4px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
}

.timeframe-btn {
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    border: none;
    background: transparent;
    cursor: pointer;
}

.timeframe-btn.active {
    background-color: var(--primary);
    color: var(--text-light);
}

.results-chart-canvas {
    height: 280px;
    position: relative;
    width: 100%;
}

.results-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

/* Col 1: Statistics list */
.results-stats-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.results-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.results-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-glow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-stat-details {
    display: flex;
    flex-direction: column;
}

.results-stat-num {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.results-stat-lbl {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Col 2: Interactive simulator */
.results-simulator-col {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sim-header h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.sim-header p {
    font-size: 11px;
    color: var(--text-secondary);
}

.sim-control {
    margin: 20px 0;
}

.sim-control-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.sim-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    border-radius: var(--radius-full);
    background-color: var(--bg-light);
    outline: none;
    border: 1px solid var(--border-color);
}

.sim-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    background-color: var(--accent);
    cursor: pointer;
    box-shadow: var(--shadow-accent);
    transition: var(--transition-fast);
}

.sim-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.sim-outputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background-color: var(--bg-light);
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.sim-output-box {
    display: flex;
    flex-direction: column;
}

.sim-output-lbl {
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 500;
}

.sim-output-val {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

/* Col 3: Testimonial badge */
.results-quote-col {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    font-size: 40px;
    line-height: 1;
    color: var(--accent);
    opacity: 0.8;
}

.quote-text {
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    margin: 20px 0;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quote-author-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.2);
}

.quote-author-info h5 {
    font-size: 13px;
    font-weight: 700;
}

.quote-author-info p {
    font-size: 11px;
    opacity: 0.7;
}

/* --- 7. TESTIMONIALS SECTION --- */
.testimonials {
    background-color: var(--bg-light);
}

.testimonials-arch-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.avatar-arch {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
    width: 100%;
}

.arch-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    border: 3px solid var(--bg-white);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    opacity: 0.4;
    transform: scale(0.85);
}

.arch-avatar:hover {
    opacity: 0.8;
    transform: scale(0.95);
}

.arch-avatar.active {
    width: 80px;
    height: 80px;
    opacity: 1;
    transform: scale(1.1);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.testimonial-display-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    text-align: center;
    width: 100%;
    position: relative;
}

.testimonial-quote {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.testimonial-author-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
}

.testimonial-author-role {
    font-size: 13px;
    color: var(--text-secondary);
}

.testimonial-nav {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.testimonial-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.testimonial-nav-btn:hover {
    background-color: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
}

/* --- 8. PRICING PLANS SECTION --- */
.pricing {
    background-color: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    height: 100%;
}

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

/* Starter Dark Blue Plan styles matching layout reference */
.pricing-card.starter {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-color: var(--primary-dark);
}

.pricing-card.starter h3,
.pricing-card.starter .plan-price,
.pricing-card.starter .feature-list li {
    color: var(--text-light);
}

.pricing-card.starter .feature-list li svg {
    color: var(--accent);
}

/* Highlighted Essential Plan */
.pricing-card.highlighted {
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-lg);
}

.badge-featured {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    background-color: var(--accent);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.plan-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}

.plan-header p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-card.starter .plan-header p {
    color: var(--text-muted);
}

.plan-price-wrapper {
    margin-bottom: 30px;
}

.plan-price {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.plan-period {
    font-size: 13px;
    color: var(--text-secondary);
}

.pricing-card.starter .plan-period {
    color: var(--text-muted);
}

.feature-list {
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-list li svg {
    color: var(--primary);
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
}

/* --- 9. FAQ SECTION --- */
.faq {
    background-color: var(--bg-light);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(22, 0, 122, 0.1);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

.faq-icon-circle {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.faq-card.active .faq-icon-circle {
    transform: rotate(180deg);
    background-color: var(--primary);
    color: var(--text-light);
}

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

.faq-content-inner {
    padding: 0 24px 24px 24px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-card.active .faq-content {
    max-height: 200px;
}

/* --- 10. CTA FINAL --- */
.cta-final {
    background-color: var(--bg-white);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Soft design accents inside CTA box */
.cta-box::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: var(--radius-full);
    background: radial-gradient(circle, rgba(255, 59, 59, 0.15) 0%, transparent 60%);
    top: -200px;
    right: -200px;
}

.cta-box-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-box p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.whatsapp-color {
    background-color: #25D366;
    color: var(--text-light);
}

.whatsapp-color:hover {
    background-color: #20ba5a;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* --- 11. FOOTER --- */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding-top: 80px;
    padding-bottom: 40px;
    border-top: 1px solid var(--border-dark);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-circle {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.social-circle:hover {
    background-color: var(--accent);
    color: var(--text-light);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
    position: relative;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-newsletter p {
    font-size: 13px;
    color: var(--text-muted);
}

.newsletter-form {
    display: flex;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid var(--border-dark);
    padding: 4px;
    border-radius: var(--radius-full);
    width: 100%;
}

.newsletter-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 8px 16px;
    color: var(--text-light);
    font-size: 13px;
    outline: none;
    font-family: inherit;
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-submit {
    background-color: var(--accent);
    border: none;
    color: var(--text-light);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.newsletter-submit:hover {
    background-color: #ff5252;
    transform: scale(1.05);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-dark);
    padding-top: 30px;
    font-size: 12px;
    color: var(--text-muted);
}

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

/* --- RESPONSIVIDADE (DESKTOP FIRST) --- */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 44px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .pricing-grid .pricing-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 30px;
    }
    .navbar {
        width: calc(100% - 24px);
    }
    .hamburger {
        display: flex;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--bg-white);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        padding: 20px;
        gap: 12px;
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
    .navbar-cta .btn {
        display: none; /* Hide top CTA on mobile */
    }
    .hero {
        padding-top: 120px;
        min-height: auto;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-mockup {
        height: 380px;
    }
    .float-card-1 {
        left: -5%;
        top: 5%;
    }
    .float-card-2 {
        right: -5%;
        bottom: 5%;
    }
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .results-bottom-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid .pricing-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 15px;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .results-dashboard-wrapper {
        padding: 20px;
    }
    .results-dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .results-timeframe {
        width: 100%;
        justify-content: space-between;
    }
    .testimonial-display-card {
        padding: 24px;
    }
    .testimonial-quote {
        font-size: 15px;
    }
    .avatar-arch {
        gap: 12px;
    }
    .arch-avatar {
        width: 44px;
        height: 44px;
    }
    .arch-avatar.active {
        width: 56px;
        height: 56px;
    }
    .cta-box {
        padding: 40px 20px;
    }
    .cta-box h2 {
        font-size: 28px;
    }
    .cta-actions .btn {
        width: 100%;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
}
