/* ==========================================================================
   Ads Agency — Stylesheet (Design System & Interactive Aesthetics)
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Color Palette */
    --bg-dark: #07090e;
    --bg-card: rgba(13, 18, 30, 0.45);
    --bg-card-solid: #0d121e;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.16);

    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Theme Accents (Neon glow) */
    --color-primary: #6366f1;
    --color-primary-glow: rgba(99, 102, 241, 0.15);
    --color-accent: #a855f7;
    
    /* Platform Colors */
    --color-meta-start: #0081ff;
    --color-meta-end: #f752e0;
    --color-meta-glow: rgba(0, 129, 255, 0.2);

    --color-google-start: #ea4335;
    --color-google-end: #fbbc05;
    --color-google-glow: rgba(234, 67, 53, 0.15);

    --color-linkedin-start: #0077b5;
    --color-linkedin-end: #00a0dc;
    --color-linkedin-glow: rgba(0, 119, 181, 0.2);

    /* SVG Chart Themes */
    --chart-line-color: #6366f1;
    --chart-glow-start: #6366f1;

    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.2);
    --glass-blur: blur(16px);
}

/* --- CSS Reset & Base Elements --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

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

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

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

ul {
    list-style: none;
}

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

/* --- Glow Orbs Background --- */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    top: -10%;
    right: -5%;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    bottom: -15%;
    left: -10%;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--color-meta-start) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    opacity: 0.15;
}

/* --- Helpers & Utilities --- */
.gradient-text {
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }
.margin-top-20 { margin-top: 20px; }
.max-w-600 { max-width: 600px; margin-left: auto; margin-right: auto; }

/* --- Section Typography & Containers --- */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    max-width: 700px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

/* --- Header / Navigation Bar --- */
.header-top-bar {
    background: #04060a;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.75rem;
    color: var(--text-secondary);
    height: 34px;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.main-header.scrolled .header-top-bar {
    height: 0;
    opacity: 0;
    border-bottom-color: transparent;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.top-bar-left {
    display: flex;
    gap: 24px;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    transition: var(--transition-quick);
}

.top-bar-item:hover {
    color: var(--text-primary);
}

.top-bar-item i {
    width: 12px;
    height: 12px;
    color: var(--color-primary);
}

.top-bar-right {
    font-weight: 500;
    color: var(--text-muted);
}

@media (max-width: 480px) {
    .top-bar-right {
        display: none;
    }
    .top-bar-container {
        justify-content: center;
    }
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background: rgba(7, 9, 14, 0.75);
    backdrop-filter: var(--glass-blur);
    border-color: var(--border-color);
    padding: 12px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    padding: 8px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.logo-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-quick);
}

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

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

/* Currency Switcher in Header */
.currency-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2px;
}

.curr-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-quick);
}

.curr-btn.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.5rem;
}

/* --- Hero Section --- */
.hero-section {
    padding-top: 180px;
    padding-bottom: 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-primary);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    max-width: 900px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 650px;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
}

/* --- Metrics Ticker --- */
.metrics-ticker-wrapper {
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.ticker-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.metrics-ticker {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-val {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

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

/* --- Platforms Grid Section --- */
.platforms-section {
    background-color: rgba(7, 9, 14, 0.5);
}

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

.platform-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: var(--glass-blur);
    padding: 40px;
    border-radius: 16px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.platform-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-smooth);
}

.platform-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.platform-card:hover .platform-card-glow {
    opacity: 0.1;
}

.platform-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.brand-svg-icon {
    width: 28px;
    height: 28px;
    color: var(--text-primary);
}

/* Individual Platform Accents */
.platform-meta .platform-icon-box {
    background: linear-gradient(135deg, rgba(0, 129, 255, 0.1), rgba(247, 82, 224, 0.1));
    border-color: rgba(247, 82, 224, 0.2);
}
.platform-meta .brand-svg-icon {
    color: #e4405f;
}
.platform-meta .platform-card-glow {
    background: radial-gradient(circle at top right, var(--color-meta-start), transparent 60%);
}
.platform-meta:hover {
    box-shadow: 0 15px 35px rgba(247, 82, 224, 0.15);
    border-color: rgba(247, 82, 224, 0.3);
}

.platform-google .platform-icon-box {
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.05), rgba(251, 188, 5, 0.05));
    border-color: rgba(234, 67, 53, 0.15);
}
.platform-google .platform-card-glow {
    background: radial-gradient(circle at top right, var(--color-google-start), transparent 60%);
}
.platform-google:hover {
    box-shadow: 0 15px 35px rgba(234, 67, 53, 0.1);
    border-color: rgba(234, 67, 53, 0.3);
}

.platform-linkedin .platform-icon-box {
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.1), rgba(0, 160, 220, 0.1));
    border-color: rgba(0, 119, 181, 0.2);
}
.platform-linkedin .brand-svg-icon {
    color: #0077b5;
}
.platform-linkedin .platform-card-glow {
    background: radial-gradient(circle at top right, var(--color-linkedin-start), transparent 60%);
}
.platform-linkedin:hover {
    box-shadow: 0 15px 35px rgba(0, 119, 181, 0.15);
    border-color: rgba(0, 119, 181, 0.3);
}

.platform-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.platform-description {
    font-size: 0.95rem;
    margin-bottom: 24px;
    height: 72px;
}

.platform-list {
    margin-bottom: 32px;
}

.platform-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.platform-list li i {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

.platform-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.p-stat {
    display: flex;
    flex-direction: column;
}

.p-stat-val {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.p-stat-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- ROI Calculator Section --- */
.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.calc-benefit-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 16px;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.benefit-item p {
    font-size: 0.9rem;
}

/* Calculator Card Styling */
.calc-card {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.calc-header {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
}

.calc-header h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.calc-header p {
    font-size: 0.85rem;
}

.calc-body {
    padding: 30px;
}

.input-group {
    margin-bottom: 24px;
}

.input-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.input-labels label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.input-value-display {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
}

/* Range Slider Styles */
.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 0 10px var(--color-primary);
    transition: var(--transition-quick);
}

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

/* Custom Numeric Input field (Pricing Calculator specific) */
.custom-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0 16px;
    transition: var(--transition-quick);
}

.custom-input-wrap:focus-within {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.15);
}

.input-prefix {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-right: 8px;
}

.number-input-field {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    padding: 12px 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Hide standard number browser spin arrows */
.number-input-field::-webkit-outer-spin-button,
.number-input-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Dropdown styling */
.custom-select-wrapper {
    position: relative;
    margin-top: 8px;
}

.custom-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    appearance: none;
}

.custom-select-wrapper::after {
    content: '▾';
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.calc-divider {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin: 24px 0;
}

/* Calculator Results styling */
.calc-results {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.result-row:last-child {
    margin-bottom: 0;
    border-top: 1px dashed var(--border-color);
    padding-top: 14px;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.result-value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.glow-text-indigo {
    color: #818cf8;
    text-shadow: 0 0 12px rgba(129, 140, 248, 0.4);
}

.result-comparison {
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-comparison i {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.val-before {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.val-after {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
}

.highlight-value {
    font-size: 1.5rem;
    color: #34d399;
    text-shadow: 0 0 15px rgba(52, 211, 153, 0.3);
}

/* --- Client Dashboard Preview Section --- */
.dashboard-mock {
    width: 100%;
    height: 600px;
    background: #090d16;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    display: flex;
    overflow: hidden;
    margin-top: 40px;
}

.dash-sidebar {
    width: 220px;
    border-right: 1px solid var(--border-color);
    background: rgba(13, 18, 30, 0.5);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-shrink: 0;
}

.dash-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.dash-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dash-nav li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-quick);
}

.dash-nav li i {
    width: 18px;
    height: 18px;
}

.dash-nav li:hover, .dash-nav li.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.dash-nav li.active {
    border-left: 3px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
}

.dash-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 30px;
    overflow-y: auto;
}

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

.dash-title-section h3 {
    font-size: 1.25rem;
}

.dash-title-section p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dash-filters {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 4px;
}

.filter-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-quick);
}

.filter-btn:hover {
    color: var(--text-primary);
}

.filter-btn.active {
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Dashboard KPIs styling */
.dash-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.kpi-card {
    background: rgba(13, 18, 30, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition-smooth);
}

.kpi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.kpi-icon {
    width: 16px;
    height: 16px;
}

.kpi-val {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.kpi-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.kpi-trend i {
    width: 12px;
    height: 12px;
}

.trend-up {
    color: #10b981;
}

.trend-down {
    color: #ef4444;
}

/* Dashboard Chart styling */
.dash-chart-card {
    background: rgba(13, 18, 30, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-header h5 {
    font-size: 0.95rem;
    font-weight: 600;
}

.chart-legend {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-primary {
    background: var(--chart-line-color);
}

.chart-container {
    width: 100%;
    flex-grow: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dash-svg-chart {
    width: 100%;
    height: 180px;
    margin-top: 10px;
    overflow: visible;
}

/* SVG Chart Animations and styles */
#chartLinePath {
    stroke-dasharray: 2000;
    stroke-dashoffset: 0;
    animation: drawPath 2s ease-out forwards;
    transition: d 0.6s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.6s ease;
}

#chartAreaPath {
    transition: d 0.6s cubic-bezier(0.16, 1, 0.3, 1), fill 0.6s ease;
}

.dash-svg-chart circle {
    transition: cx 0.6s cubic-bezier(0.16, 1, 0.3, 1), cy 0.6s cubic-bezier(0.16, 1, 0.3, 1), fill 0.6s ease;
}

.chart-x-labels {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.01);
}

.service-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon-wrapper i {
    width: 20px;
    height: 20px;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* --- Pricing calculator Section --- */
.pricing-section {
    background-color: rgba(7, 9, 14, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.price-calc-card {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.input-lbl-main {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: block;
}

.term-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.term-option {
    cursor: pointer;
}

.term-option input {
    display: none;
}

.term-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    transition: var(--transition-smooth);
}

.term-option:hover .term-box {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.04);
}

.term-option input:checked + .term-box {
    border-color: var(--color-primary);
    background: rgba(99, 102, 241, 0.08);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.15);
}

.term-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.term-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.term-discount {
    font-size: 0.75rem;
    font-weight: 700;
    color: #34d399;
    background: rgba(52, 211, 153, 0.12);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Price Output Card Details */
.price-output-card {
    background: linear-gradient(135deg, rgba(13, 18, 30, 0.8) 0%, rgba(7, 9, 14, 0.95) 100%);
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-header-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 16px;
    border-radius: 100px;
    box-shadow: 0 0 15px var(--color-primary);
}

.price-val-block {
    text-align: center;
    margin-bottom: 24px;
    margin-top: 10px;
}

.calculated-price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-breakdown {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-breakdown li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.b-label {
    color: var(--text-secondary);
}

.b-val {
    font-weight: 600;
}

.text-green {
    color: #34d399;
}

.total-savings-row {
    border-top: 1px dashed var(--border-color);
    padding-top: 12px;
    margin-top: 4px;
}

.highlight-green {
    color: #34d399;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(52, 211, 153, 0.2);
}

.price-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.perk-icon {
    width: 14px;
    height: 14px;
    color: #34d399;
    flex-shrink: 0;
}

/* --- FAQ Accordion styling --- */
.faq-section {
    background-color: rgba(7, 9, 14, 0.5);
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.01);
}

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

.faq-trigger span {
    padding-right: 20px;
}

.faq-chevron {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.faq-item.open {
    background: rgba(255, 255, 255, 0.01);
    border-color: rgba(99, 102, 241, 0.2);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--color-primary);
}

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

.faq-answer-inner {
    padding: 0 24px 24px 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-top: 1px solid transparent;
}

.faq-item.open .faq-answer-inner {
    border-color: rgba(255, 255, 255, 0.04);
}

/* --- Case Studies Carousel Section --- */
.case-studies-section {
    background-color: rgba(7, 9, 14, 0.4);
}

.cases-carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.cases-carousel {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    position: relative;
    height: 400px;
}

.case-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: scale(0.96);
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    position: relative;
    z-index: 5;
}

.case-img-placeholder {
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    position: relative;
}

.case-img-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 9, 14, 0.2) 0%, rgba(7, 9, 14, 0.7) 100%);
    z-index: 1;
}

.meta-case-bg {
    background: linear-gradient(135deg, rgba(0, 129, 255, 0.35) 0%, rgba(247, 82, 224, 0.35) 100%), #0d121e;
}
.google-case-bg {
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.3) 0%, rgba(251, 188, 5, 0.3) 100%), #0d121e;
}
.linkedin-case-bg {
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.35) 0%, rgba(0, 160, 220, 0.35) 100%), #0d121e;
}

.case-tag {
    align-self: flex-start;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.case-glow-text {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    z-index: 2;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.case-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-client {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.case-body h4 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 16px;
}

.case-body p {
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.case-stats {
    display: flex;
    gap: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.case-stats div {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 2px;
}

.stat-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Carousel controls */
.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 0 20px;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-quick);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
}

.carousel-indicators {
    display: flex;
    gap: 8px;
}

.indicator {
    width: 24px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition-quick);
}

.indicator.active {
    background: var(--color-primary);
    width: 40px;
}

/* --- Consultation Funnel Section (Multi-step) --- */
.audit-wrapper {
    max-width: 760px;
    margin: 0 auto;
}

.audit-header {
    margin-bottom: 40px;
}

.audit-header h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

/* Progress bar indicators */
.step-progress {
    margin-bottom: 50px;
    position: relative;
    padding: 0 10px;
}

.progress-bar {
    position: absolute;
    top: 18px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 1;
    border-radius: 2px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.steps-indicators {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #090d16;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.step-dot.active {
    border-color: var(--color-primary);
    color: var(--text-primary);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

.step-dot.completed {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.step-dot-label {
    position: absolute;
    bottom: -24px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
}

.step-dot.active .step-dot-label, .step-dot.completed .step-dot-label {
    color: var(--text-primary);
}

/* Form Card details */
.audit-form-card {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    min-height: 380px;
    position: relative;
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.form-step.active {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.form-step h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.85rem;
    margin-bottom: 30px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    margin-top: 30px;
}

/* Radio Choice Grids (Step 1 & 2) */
.platform-selection-grid, .budget-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.budget-selection-grid {
    grid-template-columns: repeat(2, 1fr);
}

.platform-option, .budget-option {
    cursor: pointer;
}

.platform-option input, .budget-option input {
    display: none;
}

.platform-option .opt-box, .budget-option .opt-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    transition: var(--transition-smooth);
}

.opt-brand-svg {
    width: 32px;
    height: 32px;
    color: var(--text-secondary);
    transition: var(--transition-quick);
}

.platform-option .opt-box span, .budget-option .opt-box span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Radios hover & checked states */
.platform-option:hover .opt-box, .budget-option:hover .opt-box {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.04);
}

.platform-option input:checked + .opt-box, .budget-option input:checked + .opt-box {
    border-color: var(--color-primary);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.15);
}

.platform-option input:checked + .opt-box .opt-brand-svg {
    color: var(--color-primary);
}

.platform-option input:checked + .opt-box span, .budget-option input:checked + .opt-box span {
    color: var(--text-primary);
}

/* Step 3: Input forms */
.details-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-half label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group-half input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-primary);
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-quick);
}

.form-group-half input:focus {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Step 4: Success scheduler styling */
.success-screen {
    text-align: center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.2);
}

.success-icon i {
    width: 28px;
    height: 28px;
}

.success-text {
    font-size: 0.9rem;
    max-width: 500px;
    margin-bottom: 30px;
}

/* Calendar widget mock */
.calendar-picker {
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.day-slot {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: var(--transition-quick);
}

.day-slot:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.04);
}

.day-slot.active {
    border-color: var(--color-primary);
    background: rgba(99, 102, 241, 0.06);
}

.day-name {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.day-date {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.calendar-times {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.time-slot {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-quick);
}

.time-slot:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.time-slot.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
}

/* --- Footer Section --- */
.main-footer {
    background-color: #04060a;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.85rem;
    margin-bottom: 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.social-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
}

.social-links a i {
    width: 16px;
    height: 16px;
}

.footer-col h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 24px;
}

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

.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-col ul li a:hover {
    color: var(--text-primary);
}

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

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

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

/* --- Keyframe Animations --- */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}

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

@keyframes drawPath {
    from { stroke-dashoffset: 2000; }
    to { stroke-dashoffset: 0; }
}

/* --- Responsive Layout Breakpoints --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .dash-kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-mock {
        height: auto;
        flex-direction: column;
    }
    
    .dash-sidebar {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        gap: 0;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .dash-nav {
        flex-direction: row;
        gap: 8px;
    }
    
    .dash-nav li.active {
        border-left: none;
        border-bottom: 3px solid var(--color-primary);
        border-radius: 8px 8px 0 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .case-card {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .case-img-placeholder {
        min-height: 240px;
    }
    
    .cases-carousel {
        height: auto;
        min-height: 600px;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .metrics-ticker {
        gap: 20px;
    }

    .metric-divider {
        display: none;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .dash-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .platform-selection-grid {
        grid-template-columns: 1fr;
    }

    .budget-selection-grid {
        grid-template-columns: 1fr;
    }

    .term-selection-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .calendar-days {
        grid-template-columns: repeat(2, 1fr);
    }

    .calendar-times {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Mobile Header Layout */
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-dark);
        backdrop-filter: var(--glass-blur);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 32px;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-cta {
        display: none;
    }
}
