/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #00C2FF;
    --accent-dark: #0099CC;
    --accent-glow: rgba(0, 194, 255, 0.15);
    --accent-glow-strong: rgba(0, 194, 255, 0.3);
    --dark: #0B0F19;
    --dark-card: #111827;
    --dark-border: #1E293B;
    --text-white: #ffffff;
    --text-light: #94A3B8;
    --text-muted: #64748B;
    --bg-white: #ffffff;
    --bg-light: #F8FAFC;
    --bg-subtle: #F1F5F9;
    --green: #10B981;
    --red: #EF4444;
    --orange: #F59E0B;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-accent: 0 8px 30px rgba(0, 194, 255, 0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1E293B;
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul, ol {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 194, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 194, 255, 0.6); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-size: 26px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

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

.logo-text {
    display: inline;
    color: inherit;
}

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

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

.main-nav a {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    transition: color 0.2s;
    position: relative;
}

.main-nav a:hover {
    color: var(--accent);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

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

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

.header-cta {
    background: var(--accent);
    color: white;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.header-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
}

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

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

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

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #0B0F19 0%, #111827 40%, #0F172A 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 194, 255, 0.1);
    border: 1px solid rgba(0, 194, 255, 0.2);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease both;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
    animation: fadeInUp 0.7s ease 0.1s both;
}

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

.hero-subtitle {
    font-size: 19px;
    color: var(--text-light);
    max-width: 520px;
    margin-bottom: 16px;
    line-height: 1.7;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-subtitle strong {
    color: white;
}

.hero-offer-strip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 32px;
    animation: fadeInUp 0.7s ease 0.25s both;
}

.hero-offer-strip .original-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--red);
    text-decoration: line-through;
    opacity: 0.7;
}

.hero-offer-strip .new-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--green);
}

.hero-offer-strip .savings {
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    background: rgba(16, 185, 129, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: white;
    font-weight: 800;
    font-size: 17px;
    padding: 16px 36px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    animation: pulse-glow 2.5s infinite;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 194, 255, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 30px;
    border-radius: var(--radius);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 194, 255, 0.05);
}

.hero-trust-line {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
    animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-trust-line i {
    color: var(--accent);
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    animation: fadeInRight 0.8s ease 0.3s both;
    perspective: 1200px;
}

/* ===== 3D BROWSER MOCKUP ===== */
.browser-3d {
    position: relative;
    transform: rotateY(-8deg) rotateX(4deg);
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
}

.browser-3d:hover {
    transform: rotateY(-2deg) rotateX(1deg);
}

.browser-frame {
    background: #1E293B;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.browser-bar {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    background: #0F172A;
    border-bottom: 1px solid #334155;
    gap: 16px;
}

.browser-dots {
    display: flex;
    gap: 7px;
    flex-shrink: 0;
}

.browser-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #10B981; }

.browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1E293B;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    color: #94A3B8;
}

.browser-url i {
    color: #10B981;
    font-size: 11px;
}

.browser-body {
    padding: 0;
    background: #0F172A;
    min-height: 320px;
    overflow: hidden;
}

/* Mock website content inside browser */
.mock-hero {
    padding: 24px 24px 20px;
    background: linear-gradient(160deg, #0F172A, #1E293B);
}

.mock-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.mock-logo-block {
    width: 80px;
    height: 12px;
    background: var(--accent);
    border-radius: 4px;
    opacity: 0.8;
}

.mock-nav-links {
    display: flex;
    gap: 10px;
}

.mock-nav-links span {
    width: 40px;
    height: 8px;
    background: rgba(148, 163, 184, 0.3);
    border-radius: 4px;
    display: block;
}

.mock-content {
    max-width: 70%;
}

.mock-badge-line {
    width: 100px;
    height: 10px;
    background: rgba(0, 194, 255, 0.2);
    border-radius: 10px;
    margin-bottom: 16px;
    animation: shimmer 3s linear infinite;
    background-size: 200% 100%;
    background-image: linear-gradient(90deg, rgba(0,194,255,0.1) 0%, rgba(0,194,255,0.3) 50%, rgba(0,194,255,0.1) 100%);
}

.mock-headline {
    width: 100%;
    height: 14px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    margin-bottom: 8px;
}

.mock-headline.short {
    width: 65%;
    margin-bottom: 16px;
}

.mock-text {
    width: 100%;
    height: 8px;
    background: rgba(148, 163, 184, 0.3);
    border-radius: 4px;
    margin-bottom: 6px;
}

.mock-text.med {
    width: 80%;
    margin-bottom: 20px;
}

.mock-cta-row {
    display: flex;
    gap: 10px;
}

.mock-btn {
    height: 14px;
    border-radius: 4px;
}

.mock-btn.primary {
    width: 90px;
    background: var(--accent);
    animation: pulse-glow 2.5s infinite;
}

.mock-btn.outline {
    width: 70px;
    border: 1.5px solid rgba(148, 163, 184, 0.3);
}

.mock-cards-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 20px 24px 28px;
    background: rgba(241, 245, 249, 0.03);
}

.mock-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 16px 12px;
    transition: transform 0.3s;
}

.browser-3d:hover .mock-card:nth-child(1) { transform: translateY(-3px); transition-delay: 0s; }
.browser-3d:hover .mock-card:nth-child(2) { transform: translateY(-3px); transition-delay: 0.1s; }
.browser-3d:hover .mock-card:nth-child(3) { transform: translateY(-3px); transition-delay: 0.2s; }

.mock-card-icon {
    width: 28px;
    height: 28px;
    background: rgba(0, 194, 255, 0.15);
    border-radius: 8px;
    margin-bottom: 10px;
}

.mock-card-line {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 6px;
}

.mock-card-line.short {
    width: 60%;
    margin-bottom: 0;
}

/* Floating elements around browser */
.floating-elements {
    position: absolute;
    inset: -30px;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.float-element.el-1 {
    top: 10%;
    right: -20px;
    background: #10B981;
    color: white;
    animation: float 3s ease-in-out infinite;
}

.float-element.el-2 {
    bottom: 25%;
    right: -15px;
    background: #F59E0B;
    color: white;
    animation: float 3.5s ease-in-out 0.5s infinite;
}

.float-element.el-3 {
    top: 30%;
    left: -20px;
    background: var(--accent);
    color: white;
    animation: float 4s ease-in-out 1s infinite;
}

.float-element.el-4 {
    bottom: 10%;
    left: -10px;
    background: #8B5CF6;
    color: white;
    animation: float 3.2s ease-in-out 0.3s infinite;
}

/* ===== 3D GLOBE ===== */
.globe-container {
    width: 100%;
    height: 460px;
    border-radius: var(--radius-lg);
    overflow: visible;
    position: relative;
    background: radial-gradient(ellipse at center, #0B1224 0%, #060A14 100%);
    box-shadow: var(--shadow-lg);
}

/* Globe floating notification cards */
.globe-notif-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 14px;
    z-index: 20;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.globe-notif-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.globe-notif-card.exiting {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
}

.globe-notif-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.globe-notif-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.globe-notif-text {
    font-size: 12px;
    font-weight: 600;
    color: #F1F5F9;
    line-height: 1.2;
}

.globe-notif-city {
    font-size: 10px;
    color: #64748B;
    font-weight: 500;
}

.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent);
    filter: blur(120px);
    opacity: 0.15;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* ===== LOGOS / TRUST BAR ===== */
.trust-bar {
    padding: 60px 0;
    background: var(--bg-light);
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.trust-bar-inner {
    text-align: center;
}

.trust-bar-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-logos .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
}

.trust-logos .trust-item i {
    font-size: 32px;
    color: var(--text-light);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: var(--dark);
}

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

.stat-card {
    padding: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span {
    color: var(--accent);
}

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

/* ===== SECTION STYLES ===== */
.section {
    padding: 100px 0;
}

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

.section-dark {
    background: var(--dark);
    color: white;
}

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

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-dark .section-title {
    color: white;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PROBLEM / PAIN SECTION ===== */
.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pain-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.25;
}

.pain-content p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.pain-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.pain-item .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.pain-item .icon-circle.red {
    background: rgba(239, 68, 68, 0.1);
    color: var(--red);
}

.pain-item .text h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.pain-item .text p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
}

.pain-image .globe-container {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===== WHY US GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-glow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--accent);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--accent);
    color: white;
}

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

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

/* ===== HOW IT WORKS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    border-radius: 3px;
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--accent);
    color: white;
    font-size: 28px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-accent);
    position: relative;
}

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

.step-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 300px;
    margin: 0 auto;
}

/* ===== WHAT YOU GET ===== */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.deliverable-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.deliverable-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-glow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    margin: 0 auto 18px;
}

.deliverable-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

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

/* ===== PRICING SECTION ===== */
.pricing-wrapper {
    max-width: 560px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid var(--accent);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 194, 255, 0.12);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent-glow);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.pricing-popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}

.pricing-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

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

.pricing-original {
    font-size: 28px;
    font-weight: 700;
    color: var(--red);
    text-decoration: line-through;
    opacity: 0.6;
}

.pricing-current {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -2px;
}

.pricing-flat {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-savings {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.pricing-features {
    border-top: 1px solid #E2E8F0;
    padding-top: 28px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-feature .check {
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-feature .check i {
    font-size: 11px;
    color: var(--green);
}

.pricing-feature span {
    font-size: 15px;
    color: #334155;
    font-weight: 500;
}

.pricing-tech {
    margin-top: 20px;
    padding-top: 20px;
    margin-bottom: 24px;
    border-top: 1px solid #E2E8F0;
    text-align: center;
}

.pricing-tech-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94A3B8;
    display: block;
    margin-bottom: 12px;
}

.pricing-tech-stack {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pricing-tech-stack span {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    background: #F1F5F9;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pricing-tech-stack span i {
    color: var(--accent);
    font-size: 13px;
}

.btn-checkout {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--accent);
    color: white;
    font-weight: 800;
    font-size: 18px;
    padding: 18px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-checkout:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.pricing-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.pricing-trust i {
    color: var(--accent);
}

.pricing-guarantee {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* ===== PORTFOLIO / SHOWCASE ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    border: 1px solid #E2E8F0;
    transition: all 0.4s ease;
    cursor: pointer;
}

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

.portfolio-preview {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #F1F5F9;
}

.portfolio-preview iframe {
    width: 200%;
    height: 200%;
    border: none;
    transform: scale(0.5);
    transform-origin: top left;
    pointer-events: none;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 25, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.preview-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: var(--shadow-accent);
}

.preview-btn:hover {
    background: var(--accent-dark);
    transform: scale(1.05);
}

.portfolio-card .portfolio-info {
    padding: 24px;
}

.portfolio-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.portfolio-card .portfolio-category {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(11, 15, 25, 0.95);
    display: none;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: #111827;
    border-bottom: 1px solid #1F2937;
    flex-shrink: 0;
}

.lightbox-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.lightbox-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lightbox-device-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #374151;
    background: transparent;
    color: #9CA3AF;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-device-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.lightbox-device-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.lightbox-close {
    width: 40px;
    height: 40px;
    border: 1px solid #EF4444;
    background: transparent;
    color: #EF4444;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

.lightbox-close:hover {
    background: #EF4444;
    color: white;
}

.lightbox-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
}

.lightbox-iframe-wrapper {
    width: 100%;
    height: 100%;
    max-width: 1200px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: max-width 0.4s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-iframe-wrapper.tablet {
    max-width: 768px;
}

.lightbox-iframe-wrapper.mobile {
    max-width: 375px;
}

.lightbox-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

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

.testimonial-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all 0.3s ease;
}

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

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
    color: var(--orange);
    font-size: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: #334155;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid #E2E8F0;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 22px;
    flex-shrink: 0;
}

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

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

/* ===== INLINE CTA BANNERS ===== */
.inline-cta {
    padding: 0;
    background: linear-gradient(135deg, #0D2137 0%, #0B0F19 100%);
    border-top: 1px solid rgba(0, 194, 255, 0.1);
    border-bottom: 1px solid rgba(0, 194, 255, 0.1);
}

.inline-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 36px;
    background: rgba(0, 194, 255, 0.04);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 194, 255, 0.08);
}

.inline-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.inline-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0, 194, 255, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.inline-cta-icon.pulse-icon {
    background: rgba(255, 107, 53, 0.15);
    color: #FF6B35;
    animation: pulse-glow 2s infinite;
}

.inline-cta-content h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 4px;
    font-weight: 700;
}

.inline-cta-content p {
    font-size: 14px;
    color: #94A3B8;
    margin: 0;
    line-height: 1.5;
}

.inline-cta-dark {
    background: linear-gradient(135deg, #060A14 0%, #0B1224 100%);
}

.inline-cta-urgency .inline-cta-inner {
    background: rgba(255, 107, 53, 0.04);
    border-color: rgba(255, 107, 53, 0.12);
}

.inline-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.inline-cta-micro {
    font-size: 11px;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-sm {
    padding: 12px 24px !important;
    font-size: 14px !important;
    white-space: nowrap;
}

/* ===== LEAD MAGNET STRIP ===== */
.lead-magnet-strip {
    padding: 0;
    background: linear-gradient(135deg, #0B2E1A 0%, #0B0F19 100%);
    border-top: 1px solid rgba(16, 185, 129, 0.15);
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

.lead-magnet-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 32px 40px;
    background: rgba(16, 185, 129, 0.04);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
}

.lead-magnet-badge {
    position: absolute;
    top: -12px;
    left: 32px;
    background: #10B981;
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lead-magnet-content {
    flex: 1;
}

.lead-magnet-content h3 {
    font-size: 18px;
    color: white;
    font-weight: 700;
    margin-bottom: 4px;
}

.lead-magnet-content p {
    font-size: 14px;
    color: #94A3B8;
    margin: 0;
    line-height: 1.5;
}

.lead-magnet-form {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.lead-magnet-input {
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: white;
    font-size: 14px;
    font-family: inherit;
    width: 240px;
    outline: none;
    transition: border-color 0.3s;
}

.lead-magnet-input:focus {
    border-color: #10B981;
}

.lead-magnet-input::placeholder {
    color: #64748B;
}

/* ===== STICKY BOTTOM BAR ===== */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 194, 255, 0.15);
    padding: 12px 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.sticky-cta-price {
    font-size: 16px;
    color: white;
}

.sticky-cta-price s {
    color: #64748B;
    font-size: 14px;
    margin-right: 4px;
}

.sticky-cta-price strong {
    color: var(--accent);
    font-size: 22px;
    font-weight: 800;
}

.sticky-cta-text {
    font-size: 13px;
    color: #94A3B8;
}

.sticky-cta-btn {
    animation: pulse-glow 2.5s infinite;
}

/* ===== EXIT INTENT POPUP ===== */
.exit-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.exit-popup-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    background: linear-gradient(160deg, #0F172A, #1E293B);
    border: 1px solid rgba(0, 194, 255, 0.15);
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 520px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.exit-popup-overlay.visible .exit-popup {
    transform: scale(1) translateY(0);
}

.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #94A3B8;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.exit-popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.exit-popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 194, 255, 0.12);
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.exit-popup h3 {
    font-size: 28px;
    color: white;
    font-weight: 800;
    margin-bottom: 12px;
}

.exit-popup p {
    font-size: 15px;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 28px;
}

.exit-popup-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 16px;
}

.exit-popup-input {
    flex: 1;
    max-width: 280px;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: white;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.exit-popup-input:focus {
    border-color: var(--accent);
}

.exit-popup-input::placeholder {
    color: #64748B;
}

.exit-popup-note {
    font-size: 12px;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table thead th {
    padding: 18px 24px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--bg-subtle);
    color: var(--text-muted);
}

.comparison-table thead th:last-child {
    background: var(--accent);
    color: white;
    text-align: center;
}

.comparison-table tbody td {
    padding: 16px 24px;
    font-size: 15px;
    color: #334155;
    border-bottom: 1px solid #E2E8F0;
}

.comparison-table tbody td:last-child {
    text-align: center;
    background: rgba(0, 194, 255, 0.03);
}

.comparison-table .check-green {
    color: var(--green);
    font-size: 18px;
}

.comparison-table .x-red {
    color: var(--red);
    font-size: 18px;
}

/* ===== FAQ SECTION ===== */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(0, 194, 255, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    transition: color 0.3s;
    gap: 16px;
}

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

.faq-question .faq-toggle {
    width: 32px;
    height: 32px;
    background: var(--bg-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--accent);
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

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

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #0B0F19 0%, #111827 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: var(--accent-glow);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    position: relative;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
}

.cta-section .btn-primary {
    position: relative;
}

/* ===== ALACTIC TRUST SECTION ===== */
.alactic-section {
    padding: 80px 0;
    background: linear-gradient(160deg, #060A14 0%, #0B1224 50%, #0F172A 100%);
    border-top: 1px solid rgba(0, 194, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.alactic-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.alactic-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent);
    background: rgba(0, 194, 255, 0.08);
    padding: 6px 20px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.alactic-brand h3 {
    font-size: 36px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.alactic-brand h3 span {
    font-weight: 400;
    color: #94A3B8;
}

.alactic-tagline {
    font-size: 16px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 28px;
}

.alactic-body p {
    font-size: 15px;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 12px;
}

.alactic-body p strong {
    color: white;
}

.alactic-stats {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.alactic-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #CBD5E1;
}

.alactic-stat i {
    color: var(--accent);
    font-size: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 194, 255, 0.08);
    border-radius: 10px;
}

/* ===== FOOTER ===== */
.footer {
    background: #030508;
    padding: 70px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    font-size: 26px;
    font-weight: 600;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--accent);
}

.footer-logo .logo-text {
    display: inline;
    color: inherit;
}

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

.footer-desc {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94A3B8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a,
.footer-col ul li {
    font-size: 14px;
    color: #64748B;
    transition: color 0.2s;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: var(--accent);
    font-size: 13px;
    width: 16px;
}

.footer-trust-badges {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-trust-badges span {
    font-size: 11px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-trust-badges span i {
    color: #10B981;
    font-size: 10px;
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: #475569;
}

.footer-bottom p strong {
    color: #94A3B8;
}

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

.footer-legal a {
    font-size: 13px;
    color: #475569;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 42px;
    }

    .section-title {
        font-size: 34px;
    }

    .features-grid,
    .testimonials-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .main-nav {
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px 24px;
        gap: 0;
        border-bottom: 1px solid #E2E8F0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 14px 0;
        border-bottom: 1px solid #F1F5F9;
        font-size: 15px;
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .main-nav a::after {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image-wrapper {
        order: 2;
        perspective: 800px;
    }

    .browser-3d {
        transform: rotateY(-4deg) rotateX(2deg);
    }

    .floating-elements {
        display: none;
    }

    .globe-container {
        height: 320px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 17px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-offer-strip {
        justify-content: center;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-trust-line {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .features-grid,
    .steps-grid,
    .testimonials-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .feature-card {
        padding: 24px 18px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .feature-card h3 {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 13px;
    }

    .steps-grid::before {
        display: none;
    }

    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .deliverable-card {
        padding: 20px 16px;
    }

    .deliverable-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .deliverable-card h4 {
        font-size: 14px;
    }

    .deliverable-card p {
        font-size: 12px;
    }

    .pain-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pain-image {
        order: -1;
    }

    .pricing-card {
        padding: 36px 24px;
    }

    .pricing-current {
        font-size: 46px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .comparison-table {
        display: block;
        overflow-x: visible;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .comparison-table tbody tr {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
        background: white;
        border: 1px solid #E2E8F0;
        border-radius: 12px;
        padding: 16px;
        position: relative;
    }

    .comparison-table tbody tr::before {
        display: none;
    }

    .comparison-table tbody td {
        padding: 6px 4px;
        border: none;
        text-align: center;
        font-size: 13px;
    }

    .comparison-table tbody td:first-child {
        grid-column: 1 / -1;
        text-align: center;
        font-weight: 700;
        font-size: 14px;
        color: var(--dark);
        padding-bottom: 8px;
        border-bottom: 1px solid #F1F5F9;
        margin-bottom: 4px;
    }

    .comparison-table tbody td:nth-child(2)::before {
        content: "DIY";
        display: block;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #94A3B8;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .comparison-table tbody td:nth-child(3)::before {
        content: "Agencies";
        display: block;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #94A3B8;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .comparison-table tbody td:last-child {
        background: rgba(0, 194, 255, 0.08);
        border-radius: 8px;
        padding: 6px 8px;
    }

    .comparison-table tbody td:last-child::before {
        content: "ReachCure";
        display: block;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--accent);
        font-weight: 700;
        margin-bottom: 4px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-col ul {
        columns: 2;
    }

    .footer-contact li {
        justify-content: flex-start;
    }

    .footer-trust-badges {
        justify-content: flex-start;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: left;
        gap: 12px;
    }

    .footer-legal {
        justify-content: flex-start;
    }

    .alactic-brand h3 {
        font-size: 28px;
    }

    .alactic-stats {
        gap: 20px;
    }

    .cta-section h2 {
        font-size: 30px;
    }

    /* CTA banners responsive */
    .inline-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 20px;
    }

    .inline-cta-content {
        flex-direction: column;
        gap: 14px;
    }

    .lead-magnet-inner {
        flex-direction: column;
        text-align: center;
        padding: 32px 20px;
        gap: 20px;
    }

    .lead-magnet-form {
        flex-direction: column;
        width: 100%;
    }

    .lead-magnet-input {
        width: 100%;
    }

    .lead-magnet-badge {
        left: 50%;
        transform: translateX(-50%);
    }

    .sticky-cta-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .sticky-cta-left {
        flex-direction: column;
        gap: 4px;
    }

    .exit-popup {
        padding: 36px 24px;
    }

    .exit-popup h3 {
        font-size: 22px;
    }

    .exit-popup-form {
        flex-direction: column;
    }

    .exit-popup-input {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-offer-strip {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

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

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .deliverable-card {
        padding: 16px 12px;
    }

    .deliverable-icon {
        width: 38px;
        height: 38px;
    }

    .deliverable-icon i {
        font-size: 16px;
    }

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

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

/* ===== POLICY PAGES ===== */
.policy-section {
    padding-top: 120px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.policy-updated {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 32px;
}

.policy-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 36px;
    margin-bottom: 14px;
}

.policy-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.policy-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.policy-content ul li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 6px;
}

.policy-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.policy-content a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.policy-content a:hover {
    text-decoration: underline;
}

.policy-contact {
    margin-top: 8px;
}

.policy-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-contact li::before {
    display: none !important;
}

.policy-contact li i {
    color: var(--accent);
    width: 18px;
    text-align: center;
}

.policy-highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #FFF7ED;
    border: 1px solid #FDBA74;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
}

.policy-highlight i {
    color: #F97316;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.policy-highlight div {
    font-size: 15px;
    line-height: 1.7;
    color: #9A3412;
}

.policy-highlight strong {
    font-weight: 700;
}

@media (max-width: 768px) {
    .policy-content h1 {
        font-size: 28px;
    }

    .policy-content h2 {
        font-size: 19px;
    }

    .policy-highlight {
        padding: 16px 18px;
    }
}
