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

/* ==========================================================================
   DESIGN TOKENS & RESET
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --primary-rgb: 37, 99, 235;
    
    --secondary: #0ea5e9;
    --secondary-light: #38bdf8;
    
    --success: #22c55e;
    --success-dark: #16a34a;
    --success-rgb: 34, 197, 94;
    
    --dark: #0f172a;
    --dark-light: #1e293b;
    --text-main: #334155;
    --text-muted: #64748b;
    
    --bg-main: #ffffff;
    --bg-subtle: #f8fafc;
    --bg-glass: rgba(255, 255, 255, 0.85);
    
    --border: #e2e8f0;
    --border-hover: #cbd5e1;
    
    /* Layout & Shadows */
    --font-sans: 'Outfit', sans-serif;
    --header-height: 80px;
    --container-width: 1280px;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.02);
    --shadow-md: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 2px 8px -1px rgba(15, 23, 42, 0.02);
    --shadow-lg: 0 12px 30px -4px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
    --shadow-xl: 0 20px 40px -8px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.04);
    --shadow-premium: 0 30px 60px -15px rgba(37, 99, 235, 0.08), 0 10px 20px -5px rgba(0,0,0,0.03);
    
    /* Border Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

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

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

button {
    font-family: var(--font-sans);
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition);
}

/* ==========================================================================
   REUSABLE UTILITIES & LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

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

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

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    padding: 4px 12px;
    background-color: rgba(var(--primary-rgb), 0.08);
    border-radius: var(--radius-full);
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 17px;
    color: var(--text-muted);
}

/* Typography Helpers */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.35);
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--text-main);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background-color: var(--bg-subtle);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--success);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(var(--success-rgb), 0.25);
}

.btn-whatsapp:hover {
    background-color: var(--success-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--success-rgb), 0.35);
}

.btn-lg {
    padding: 15px 32px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

/* Card Styling base */
.card-premium {
    background-color: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition);
}

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

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.site-header.header-scrolled {
    background-color: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 70px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--dark);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.logo-text span {
    color: var(--primary);
}

/* Navigation Links */
.nav-links-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

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

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

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

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

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

/* Burger menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1010;
}

.burger-menu span {
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Burger Animation */
.burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.burger-menu.active span:nth-child(2) {
    opacity: 0;
}
.burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 160px 0 100px 0;
    background-color: var(--bg-subtle);
    background-image: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
                      radial-gradient(circle at 10% 80%, rgba(14, 165, 233, 0.03) 0%, transparent 50%);
    overflow: hidden;
}

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

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

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #ffffff;
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.trust-badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
}

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

/* Premium ePaper CSS Mockup */
.hero-visual {
    position: relative;
    width: 100%;
}

.epaper-viewer-mockup {
    width: 100%;
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

/* Viewer Topbar */
.viewer-topbar {
    background-color: var(--bg-subtle);
    border-bottom: 1px solid var(--border);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.viewer-brand {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.viewer-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.viewer-btn-dummy {
    width: 24px;
    height: 24px;
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.viewer-page-indicator {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    background-color: #ffffff;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid var(--border);
}

/* Viewer Main Layout */
.viewer-body {
    padding: 18px;
    background-color: #f1f5f9;
}

.newspaper-page-mockup {
    background-color: #ffffff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    aspect-ratio: 1 / 1.35;
    position: relative;
    border: 1px solid var(--border);
}

.newspaper-header {
    text-align: center;
    border-bottom: 2px solid var(--dark);
    padding-bottom: 6px;
}

.paper-kicker {
    font-size: 7px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
}

.newspaper-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: 1px;
    margin: 1px 0;
    line-height: 1.1;
}

.newspaper-meta {
    display: flex;
    justify-content: space-between;
    font-size: 7px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    border-top: 1px solid var(--border);
    padding-top: 4px;
    margin-top: 2px;
}

.newspaper-grid {
    display: grid;
    grid-template-columns: 1.7fr 1.3fr;
    gap: 14px;
    flex-grow: 1;
}

.news-main-column {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.news-img-banner {
    width: 100%;
    height: 72px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(14, 165, 233, 0.08) 100%);
    border: 1px dashed rgba(var(--primary-rgb), 0.25);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-illustration {
    opacity: 0.8;
}

.news-headline-main {
    font-family: 'Georgia', serif;
    font-size: 10.5px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
}

.news-paragraph-main {
    font-size: 8px;
    line-height: 1.45;
    color: var(--text-main);
    text-align: justify;
}

.news-side-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-left: 1px solid var(--border);
    padding-left: 12px;
}

.side-story-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.side-story-label {
    font-size: 6px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.5px;
}

.side-story-title {
    font-family: 'Georgia', serif;
    font-size: 9px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
}

.side-story-desc {
    font-size: 7.5px;
    line-height: 1.35;
    color: var(--text-muted);
}

/* Interactive Mapping Pulse */
.clickable-news-area {
    position: absolute;
    top: 24%;
    left: 4%;
    width: 54%;
    height: 72%;
    border: 1px dashed var(--primary);
    background-color: rgba(37, 99, 235, 0.06);
    border-radius: 4px;
    cursor: pointer;
    animation: area-glow 2.5s infinite;
}

.clickable-badge {
    position: absolute;
    top: -8px;
    right: 4px;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 6px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    white-space: nowrap;
}

/* News Clip Popup Mockup */
.news-clip-popup {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-color: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    padding: 20px;
    display: flex;
    flex-direction: column;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: var(--transition-bounce);
}

.news-clip-popup.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 24px;
    font-weight: 300;
    color: var(--text-muted);
    transition: var(--transition);
}

.popup-close-btn:hover {
    color: var(--dark);
    transform: scale(1.1);
}

.popup-scroll-content {
    overflow-y: auto;
    height: 100%;
    padding-right: 4px;
    text-align: left;
}

.popup-scroll-content::-webkit-scrollbar {
    width: 4px;
}

.popup-scroll-content::-webkit-scrollbar-thumb {
    background-color: var(--border-hover);
    border-radius: 4px;
}

.popup-category {
    font-size: 9px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.popup-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    margin: 4px 0;
}

.popup-meta {
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 6px;
}

.popup-body {
    font-size: 12px;
    color: var(--text-main);
    line-height: 1.5;
}

.popup-body p {
    margin-bottom: 8px;
}


/* Page Thumbnails Bar */
.viewer-thumbnails {
    background-color: var(--bg-subtle);
    border-top: 1px solid var(--border);
    padding: 10px 18px;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.thumbnail-dummy {
    width: 28px;
    height: 36px;
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: 2px;
    opacity: 0.6;
}

.thumbnail-dummy.active {
    opacity: 1;
    border-color: var(--primary);
    box-shadow: 0 0 4px rgba(var(--primary-rgb), 0.2);
}

/* Floating UI Badges */
.floating-badge {
    position: absolute;
    background: var(--bg-glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.fb-1 {
    top: -20px;
    left: -20px;
    animation: float-y 5s ease-in-out infinite;
}

.fb-2 {
    bottom: 25px;
    right: -25px;
    animation: float-y 6s ease-in-out infinite 1s;
}

.fb-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.fb-1 .fb-icon {
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}

.fb-2 .fb-icon {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.fb-text {
    display: flex;
    flex-direction: column;
}

.fb-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fb-val {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark);
    margin-top: -2px;
}

/* ==========================================================================
   CLIENT LOGOS
   ========================================================================== */
.clients-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.clients-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 30px;
}

.logo-wall-wrapper {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -ms-overflow-style: none;  /* Hide scrollbar IE/Edge */
}

.logo-wall-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.logo-wall {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    min-width: max-content;
    padding: 10px 0;
}

.dummy-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.45;
    transition: var(--transition);
    font-weight: 800;
    font-size: 15px;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.dummy-logo:hover {
    opacity: 0.9;
}

.dummy-logo-symbol {
    width: 22px;
    height: 22px;
    border: 2px solid var(--dark);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* ==========================================================================
   CORE FEATURES
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.feature-icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(var(--primary-rgb), 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon-box {
    background-color: var(--primary);
    color: #ffffff;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   HOW IT WORKS (TIMELINE)
   ========================================================================== */
.how-it-works-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    margin-top: 40px;
}

.timeline-connector {
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 30%, var(--border) 60%);
    z-index: 1;
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 2;
    background-color: var(--bg-subtle);
    padding: 0 10px;
}

.step-number-box {
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin: 0 auto 24px auto;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.timeline-step:hover .step-number-box {
    border-color: var(--primary);
    color: #ffffff;
    background-color: var(--primary);
    transform: scale(1.05);
}

.timeline-step h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.timeline-step p {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 280px;
    margin: 0 auto;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.service-icon-box {
    width: 64px;
    height: 64px;
    background-color: rgba(14, 165, 233, 0.08);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background-color: var(--secondary);
    color: #ffffff;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

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

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

.service-link:hover {
    gap: 10px;
}

/* ==========================================================================
   PLATFORM SHOWCASE (ADMIN DASHBOARD)
   ========================================================================== */
.showcase-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 48px;
    align-items: center;
}

.showcase-content {
    max-width: 520px;
}

.showcase-visual {
    width: 100%;
}

.dashboard-panel-mockup {
    width: 100%;
    background-color: #0f172a; /* Sleek dark-mode look for dashboard mockup */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    color: #f8fafc;
}

.dashboard-topbar {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-logo {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--secondary-light);
}

.dashboard-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.db-pill {
    font-size: 10px;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    color: #cbd5e1;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 1fr 2.8fr;
    height: 380px;
}

/* Admin Sidebar */
.dashboard-sidebar {
    background-color: #0b0f19;
    border-right: 1px solid rgba(255,255,255,0.04);
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.db-side-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
    color: #94a3b8;
}

.db-side-link.active {
    background-color: rgba(37, 99, 235, 0.15);
    color: #ffffff;
}

/* Admin Main panel */
.dashboard-main {
    padding: 20px;
    overflow-y: auto;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dashboard-main::-webkit-scrollbar {
    display: none;
}

/* Widgets Row */
.db-widgets-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.db-widget {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
}

.db-w-label {
    font-size: 9px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
}

.db-w-val {
    font-size: 16px;
    font-weight: 800;
    margin-top: 2px;
}

.db-w-trend {
    font-size: 8px;
    color: var(--success);
    margin-top: 2px;
    font-weight: 700;
}

/* PDF Upload & Activity Section */
.db-bottom-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
}

.db-upload-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.db-upload-icon {
    font-size: 20px;
    color: var(--secondary-light);
}

.db-upload-btn {
    font-size: 11px;
    font-weight: 700;
    background-color: var(--primary);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

.db-upload-btn:hover {
    background-color: var(--primary-light);
}

.dashboard-progress-status {
    display: none;
    font-size: 9px;
    color: var(--secondary-light);
    font-weight: 600;
}

.dashboard-progress-container {
    width: 100%;
    height: 4px;
    background-color: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 4px;
}

.dashboard-progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--secondary-light);
    transition: width 0.2s ease;
}

.db-chart-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.db-chart-title {
    font-size: 10px;
    font-weight: 700;
    color: #cbd5e1;
    text-transform: uppercase;
}

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

.dashboard-chart-bar {
    width: 12px;
    background: linear-gradient(180deg, var(--secondary-light) 0%, var(--primary) 100%);
    border-radius: 2px 2px 0 0;
    transition: var(--transition-slow);
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
    margin-top: 40px;
}

.pricing-card {
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

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

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: scale(1.03);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: var(--shadow-premium);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.2);
}

.price-header {
    margin-bottom: 24px;
}

.price-tier {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.price-currency-val {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1px;
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.price-desc {
    font-size: 13px;
    color: var(--text-muted);
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.price-features li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

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

.pricing-card.popular .price-features li svg {
    color: var(--secondary);
}

.price-btn {
    width: 100%;
}

/* ==========================================================================
   WHY EPAPERWALE
   ========================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.why-card {
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    gap: 24px;
    transition: var(--transition);
}

.why-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.why-num {
    font-size: 40px;
    font-weight: 800;
    color: rgba(var(--primary-rgb), 0.15);
    line-height: 1;
}

.why-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.why-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 10px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--secondary-light);
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #f59e0b; /* Golden stars */
}

.testimonial-text {
    font-size: 15px;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    background-color: rgba(var(--primary-rgb), 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
}

.user-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    background-color: #ffffff;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon-wrapper {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-icon-wrapper svg {
    transition: var(--transition);
}

/* Accordion Answers Panel */
.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    padding: 0 28px 24px 28px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Open State */
.faq-item.open {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-item.open .faq-question {
    color: var(--primary);
}

.faq-item.open .faq-icon-wrapper {
    background-color: var(--primary);
    color: #ffffff;
}

.faq-item.open .faq-icon-wrapper svg {
    transform: rotate(45deg);
}

/* ==========================================================================
   CONTACT & CTA SECTION
   ========================================================================== */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-details-col {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-title-group h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-title-group p {
    font-size: 16px;
    color: var(--text-muted);
}

.contact-cards-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-card-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(var(--primary-rgb), 0.06);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-card-info p {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.4;
}

/* Contact/Demo Form */
.contact-form-card {
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

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

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-light);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--font-sans);
    color: var(--dark);
    background-color: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.form-control:focus {
    background-color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

textarea.form-control {
    resize: none;
    min-height: 110px;
}

.form-btn-submit {
    width: 100%;
    margin-top: 10px;
}

/* ==========================================================================
   FINAL PREMIUM CTA STRIP
   ========================================================================== */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    text-align: center;
}

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

.final-cta-section h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.final-cta-section p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

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

.final-cta-section .btn-secondary {
    color: var(--primary);
    border: none;
}

.final-cta-section .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--dark);
    color: #cbd5e1;
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.footer-brand-col .logo {
    color: #ffffff;
}

.footer-brand-col .logo-icon {
    color: #ffffff;
}

.footer-brand-desc {
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
}

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

.social-link-item {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition);
}

.social-link-item:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.footer-col h3 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

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

.footer-link {
    font-size: 14px;
    color: #94a3b8;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    font-size: 13px;
    color: #64748b;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.legal-link {
    font-size: 13px;
    color: #64748b;
}

.legal-link:hover {
    color: #ffffff;
}

/* ==========================================================================
   INTERACTIVE FLOATING & UTILITY COMPONENTS
   ========================================================================== */
/* Fixed Floating WhatsApp Widget */
.floating-whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-tooltip {
    background-color: var(--dark);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--transition);
    white-space: nowrap;
}

.floating-whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-pulse-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--success);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(var(--success-rgb), 0.4);
    position: relative;
    transition: var(--transition-bounce);
}

.whatsapp-pulse-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(var(--success-rgb), 0.5);
    animation: pulse-ring 1.8s infinite;
}

.whatsapp-pulse-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

.whatsapp-pulse-btn svg {
    width: 28px;
    height: 28px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--success-rgb), 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(var(--success-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--success-rgb), 0);
    }
}

@keyframes pulse-dot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes float-y {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes area-glow {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); border-color: rgba(37, 99, 235, 0.8); }
    50% { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); border-color: rgba(37, 99, 235, 0.2); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); border-color: rgba(37, 99, 235, 0.8); }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .trust-badge {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 580px;
        margin: 0 auto;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .showcase-content {
        max-width: 100%;
        text-align: center;
    }
    
    .showcase-visual {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .site-header {
        background-color: var(--bg-glass);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
    }
    
    /* Hamburger Menu Activation */
    .burger-menu {
        display: flex;
    }
    
    .nav-links-wrapper {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-glass);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        padding: 40px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-slow);
        z-index: 999;
    }
    
    .nav-links-wrapper.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 20px;
    }
    
    /* How it works mobile timeline */
    .how-it-works-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline-connector {
        top: 0;
        left: 50%;
        width: 2px;
        height: 80%;
        transform: translateX(-50%);
        background: linear-gradient(180deg, var(--primary) 30%, var(--border) 60%);
    }
    
    .timeline-step {
        background-color: var(--bg-main);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 40px auto 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 580px) {
    .section-title {
        font-size: 30px;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .floating-badge {
        display: none; /* Hide floating badges on very small viewports to save space */
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-card {
        padding: 24px;
    }
    
    .why-card {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }
    
    .final-cta-section h2 {
        font-size: 28px;
    }
    
    .final-cta-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 16px;
    }
    
    .final-cta-actions .btn {
        width: 100%;
    }
}
