/* ========== LOCAL FONTS (self-hosted WOFF2) ========== */
/* Montserrat - variable font, weights 400-900 */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url(fonts/montserrat-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url(fonts/montserrat-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Inter - variable font, weights 400-700 */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url(fonts/inter-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url(fonts/inter-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
    --red: #E50914;
    --red-dark: #c5070f;
    --red-light: #fee2e2;
    --red-gradient: linear-gradient(135deg, #E50914 0%, #F43F5E 100%);
    --red-glow: 0 0 30px rgba(229, 9, 20, 0.25);
    --green: #22c55e;
    --green-dark: #16a34a;
    --dark: #1f2937;
    --dark-2: #374151;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --gray-lighter: #d1d5db;
    --bg: #ffffff;
    --bg-soft: #f9fafb;
    --bg-muted: #f3f4f6;
    --bg-section: #f8fafc;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
    --shadow-premium: 0 30px 60px -12px rgba(0,0,0,0.2), 0 0 40px rgba(229,9,20,0.04);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========== SCROLL PROGRESS BAR ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--red-gradient);
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(229,9,20,0.5);
}

/* ========== PREFERS REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .scroll-progress { display: none; }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

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

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

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

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--red-gradient);
    color: #fff;
    box-shadow: 0 4px 14px rgba(229, 9, 20, 0.35);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}
.btn-primary:hover::before {
    left: 100%;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.45);
}
.btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(229, 9, 20, 0.3);
}
.btn-primary:focus-visible {
    outline: 3px solid rgba(229, 9, 20, 0.5);
    outline-offset: 3px;
}

.btn-ghost {
    background: rgba(255,255,255,0.6);
    color: var(--dark);
    border: 1.5px solid var(--gray-lighter);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(229,9,20,0.04);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 14px;
}

.btn-full {
    width: 100%;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 14px;
}

/* ========== NAVBAR ========== */
.navbar {
    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 rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

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

.navbar-logo img {
    height: 36px;
    width: auto;
}

.navbar-by-avigon {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: -8px;
    padding-left: 16px;
    border-left: 1px solid rgba(0,0,0,0.1);
}
.navbar-by-avigon span {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.navbar-by-avigon img {
    height: 22px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.navbar-by-avigon:hover img {
    opacity: 1;
}

.navbar-links {
    display: flex;
    gap: 32px;
}

.navbar-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-2);
    position: relative;
}
.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: var(--transition);
}
.navbar-links a:hover::after {
    width: 100%;
}
.navbar-links a:hover {
    color: var(--red);
}

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

.navbar-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--dark-2);
    transition: all 0.3s ease;
}
.navbar-social:hover {
    color: var(--red);
    background: rgba(229,9,20,0.06);
}

.navbar-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}
.navbar-phone:hover {
    color: var(--red);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 12px;
    background: #fff;
    border-top: 1px solid var(--bg-muted);
}
.mobile-menu a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    color: var(--dark-2);
}
.navbar-phone-mobile {
    font-weight: 600 !important;
    color: var(--red) !important;
}

/* ========== HERO ========== */
.hero {
    padding: 160px 0 110px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, #ffffff 0%, #fef7f7 35%, #fafbfc 60%, var(--bg-soft) 100%);
}

/* Hero entrance animations */
.hero-content {
    animation: heroContentIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes heroContentIn {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
.hero-visual {
    animation: heroVisualIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
}
@keyframes heroVisualIn {
    0% { opacity: 0; transform: translateX(60px) scale(0.95); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 70%;
    height: 90%;
    background: radial-gradient(ellipse at center, rgba(229,9,20,0.05) 0%, transparent 55%);
    pointer-events: none;
    animation: heroGlowFloat 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(229,9,20,0.03) 0%, transparent 55%);
    pointer-events: none;
    animation: heroGlowFloat 10s ease-in-out infinite reverse;
}

@keyframes heroGlowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, -10px) scale(1.05); }
}

.hero-bg-gradient {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(229,9,20,0.07) 0%, transparent 65%);
    pointer-events: none;
    animation: heroGlowFloat 12s ease-in-out infinite 2s;
}

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

.hero-audience-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(229, 9, 20, 0.06);
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 28px;
    border: 1px solid rgba(229, 9, 20, 0.12);
    animation: heroBadgeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    opacity: 0;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.hero-badge:hover {
    background: rgba(229, 9, 20, 0.1);
    border-color: rgba(229, 9, 20, 0.2);
    transform: translateY(-1px);
}
@keyframes heroBadgeIn {
    0% { opacity: 0; transform: translateY(-10px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse-dot 2s infinite;
    box-shadow: 0 0 8px rgba(229,9,20,0.4);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px rgba(229,9,20,0.4); }
    50% { opacity: 0.5; transform: scale(1.5); box-shadow: 0 0 16px rgba(229,9,20,0.2); }
}

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

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

.hero-sub {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 24px 28px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--gray-lighter), transparent);
}

.hero-stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--dark) 0%, var(--red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
    margin-top: 2px;
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

/* Dekoracyjny bloczek za zdjęciem */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    right: -16px;
    bottom: -16px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(229,9,20,0.08) 0%, rgba(244,63,94,0.04) 100%);
    border: 1.5px solid rgba(229,9,20,0.1);
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-wrapper:hover::before {
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(229,9,20,0.1) 0%, rgba(244,63,94,0.06) 100%);
    border-color: rgba(229,9,20,0.15);
}

/* Drugi bloczek - dots pattern */
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -24px;
    width: 120px;
    height: 120px;
    z-index: -2;
    background-image: radial-gradient(circle, rgba(229,9,20,0.15) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.6;
}

.hero-image-wrapper > img {
    border-radius: var(--radius-xl);
    box-shadow: 0 32px 64px -16px rgba(0,0,0,0.18), 0 8px 24px -8px rgba(0,0,0,0.08);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
    width: 100%;
}
.hero-image-wrapper:hover > img {
    transform: scale(1.02) rotate(0.3deg);
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.22), 0 12px 32px -8px rgba(0,0,0,0.1);
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 20px;
    border-radius: 14px;
    box-shadow: 0 12px 32px -8px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(255,255,255,0.6);
    animation: float 4s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-float-card:hover {
    box-shadow: 0 16px 40px -8px rgba(0,0,0,0.16), 0 6px 12px rgba(0,0,0,0.06);
}

.hero-float-1 {
    top: 16%;
    left: -48px;
    animation-delay: 0s;
}

.hero-float-2 {
    bottom: 16%;
    right: -36px;
    animation-delay: 1.5s;
}

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

.float-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.float-icon-green { background: var(--green); box-shadow: 0 4px 12px rgba(34,197,94,0.3); }
.float-icon-red { background: var(--red); box-shadow: 0 4px 12px rgba(229,9,20,0.3); }

.float-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}
.float-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

/* ========== LOGOS ========== */
.logos-section {
    padding: 40px 0;
    border-top: 1px solid var(--bg-muted);
    border-bottom: 1px solid var(--bg-muted);
    background: var(--bg-soft);
    overflow: hidden;
}

.logos-label {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.logos-track-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 48px;
    animation: scroll-logos 40s linear infinite;
    width: max-content;
}

.logos-track img {
    height: 36px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
    flex-shrink: 0;
}
.logos-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

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

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.section-header.fade-up-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.section-header.fade-up-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: var(--red-light);
    border-radius: 100px;
}

.section-tag-light {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

/* ========== VSL VIDEO ========== */
.vsl-section {
    padding: 80px 0;
    background: var(--bg);
}

.vsl-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.vsl-player {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 60px -10px rgba(0,0,0,0.2), 0 18px 36px -18px rgba(0,0,0,0.15);
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.08);
}

.vsl-player::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition);
}

.vsl-player:hover::before {
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.2) 100%);
}

.vsl-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vsl-player:hover .vsl-thumbnail {
    transform: scale(1.03);
}

.vsl-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    filter: drop-shadow(0 8px 24px rgba(229,9,20,0.4));
}
.vsl-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
    filter: drop-shadow(0 12px 32px rgba(229,9,20,0.5));
}

.vsl-play-btn svg circle {
    transition: var(--transition);
}
.vsl-player:hover .vsl-play-btn svg circle {
    fill: rgba(229,9,20,1);
}

.vsl-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.vsl-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

/* ========== PAIN POINTS ========== */
.pain-section {
    padding: 80px 0;
    background: var(--bg-section);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.pain-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--bg-muted);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}
.pain-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: linear-gradient(135deg, rgba(229,9,20,0.03) 0%, transparent 60%);
    pointer-events: none;
}
.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px -12px rgba(229,9,20,0.12), 0 12px 24px -8px rgba(0,0,0,0.08);
    border-color: rgba(229,9,20,0.15);
}
.pain-card:hover::after {
    opacity: 1;
}

.pain-card-visual {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.pain-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.75);
}

.pain-card:hover .pain-card-visual img {
    transform: scale(1.06);
    filter: brightness(0.6);
}

.pain-card-visual-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(229, 9, 20, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(229,9,20,0.3);
}

.pain-card-body {
    padding: 28px 24px;
    flex: 1;
}

.pain-card-solution {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 14px;
    padding: 12px 14px;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 10px;
}

.pain-solution-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #16a34a;
}

.pain-solution-label svg {
    flex-shrink: 0;
}

.pain-card-solution span {
    font-size: 13px;
    font-weight: 500;
    color: #15803d;
    line-height: 1.5;
}

.pain-card-solution span strong {
    font-weight: 700;
    color: #166534;
}

.pain-section-cta {
    text-align: center;
    margin-top: 48px;
}

.pain-section-cta p {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}

.pain-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pain-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ========== SERVICES ========== */
.services-section {
    padding: 100px 0;
    background: var(--bg);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.service-card-reverse {
    direction: rtl;
}
.service-card-reverse > * {
    direction: ltr;
}

.service-card-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-card-img {
    box-shadow: var(--shadow-premium);
    transform: translateY(-4px);
}

.service-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0,0,0,0.06);
    pointer-events: none;
}

.service-card-img img {
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card-img:hover img {
    transform: scale(1.04);
}

.service-card-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    background: var(--red-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.12;
    line-height: 1;
    margin-bottom: 8px;
    transition: all 0.4s ease;
}
.service-card:hover .service-card-number {
    opacity: 0.25;
    transform: translateX(4px);
}

.service-card-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 14px;
}

.service-card-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-2);
}
.service-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ========== PROCESS PRO ========== */
.process-pro-section {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.process-pro-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

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

.process-pro-glow-1 {
    top: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: rgba(229, 9, 20, 0.12);
}

.process-pro-glow-2 {
    bottom: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: rgba(59, 130, 246, 0.06);
}

.process-pro-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Timeline */
.process-pro-timeline {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

/* Connector */
.process-pro-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 60px;
}

.process-pro-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(229,9,20,0.4), rgba(229,9,20,0.4));
}

.process-pro-step:first-child .process-pro-line:first-child {
    background: transparent;
}

.process-pro-line-last {
    background: linear-gradient(to bottom, rgba(229,9,20,0.4), transparent) !important;
}

.process-pro-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--red-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 20px rgba(229,9,20,0.3), 0 4px 14px rgba(229,9,20,0.2);
    z-index: 2;
}

.process-pro-dot span {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.process-pro-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(229,9,20,0.3);
    animation: processProPulse 2.5s ease-in-out infinite;
}

@keyframes processProPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 0; }
}

.process-pro-dot-final {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 0 20px rgba(34,197,94,0.3), 0 4px 14px rgba(34,197,94,0.2);
}

.process-pro-dot-final .process-pro-pulse {
    border-color: rgba(34,197,94,0.3);
}

/* Step */
.process-pro-step {
    position: relative;
    padding-left: 90px;
    padding-bottom: 48px;
    min-height: 100px;
}

.process-pro-step:last-child {
    padding-bottom: 0;
}

/* Card */
.process-pro-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    background: rgba(20,25,40,0.92);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-pro-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229,9,20,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(229,9,20,0.06);
}

.process-pro-card-reverse {
    grid-template-columns: 1fr 300px;
}

.process-pro-card-reverse .process-pro-card-img {
    order: 2;
}

.process-pro-card-featured {
    border-color: rgba(34,197,94,0.15);
    background: rgba(34,197,94,0.03);
}

.process-pro-card-featured:hover {
    border-color: rgba(34,197,94,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(34,197,94,0.08);
}

/* Card Image */
.process-pro-card-img {
    position: relative;
    overflow: hidden;
    min-height: 260px;
}

/* Allow illustrations to overflow visible (no clipping) */
.process-pro-card-img.process-pro-illust {
    overflow: visible;
}

.process-pro-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-pro-card:hover .process-pro-card-img img {
    transform: scale(1.08);
}

/* ========== PROCESS STEP ILLUSTRATIONS ========== */
.process-pro-illust {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border-radius: 20px 20px 0 0;
}

.process-pro-card-reverse .process-pro-illust {
    border-radius: 20px 20px 0 0;
}

.process-illust-scene {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Step 1 — Phone / Call */
.process-pro-illust-1 {
    background: linear-gradient(145deg, #1a0a12 0%, #2d0a14 50%, #1a0a20 100%);
}

.pi-phone-device {
    width: 90px;
    height: 160px;
    background: #1f2937;
    border-radius: 16px;
    border: 2px solid rgba(229,9,20,0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.pi-phone-screen {
    flex: 1;
    background: #111827;
    margin: 6px;
    border-radius: 10px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pi-contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
}

.pi-contact-active {
    background: rgba(229,9,20,0.15);
    border: 1px solid rgba(229,9,20,0.25);
}

.pi-avatar-sm {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.pi-avatar-red {
    background: rgba(229,9,20,0.4);
}

.pi-text-line {
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.08);
}

/* Wave rings */
.pi-wave {
    position: absolute;
    border: 2px solid rgba(229,9,20,0.25);
    border-radius: 50%;
    z-index: 1;
    animation: piWaveExpand 3s ease-out infinite;
}

.pi-wave-1 {
    width: 120px; height: 120px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    animation-delay: 0s;
}

.pi-wave-2 {
    width: 160px; height: 160px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    animation-delay: 0.6s;
}

.pi-wave-3 {
    width: 200px; height: 200px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    animation-delay: 1.2s;
}

@keyframes piWaveExpand {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

/* Floating badges */
.pi-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    z-index: 3;
    animation: piFloatBadge 4s ease-in-out infinite;
}

.pi-float-badge-1 {
    bottom: 20px; right: 10px;
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.3);
    color: #22c55e;
}

.pi-float-badge-2 {
    bottom: 20px; left: 10px;
    background: rgba(59,130,246,0.15);
    border: 1px solid rgba(59,130,246,0.3);
    color: #60a5fa;
}

.pi-float-badge-3 {
    bottom: 20px; right: 10px;
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.3);
    color: #22c55e;
}

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

/* Step 2 — Laptop / Video Call */
.process-pro-illust-2 {
    background: linear-gradient(145deg, #0a0f1a 0%, #0a1528 50%, #0a0f1a 100%);
}

.pi-laptop {
    width: 180px;
    position: relative;
    z-index: 2;
}

.pi-laptop-screen {
    background: #111827;
    border: 2px solid rgba(59,130,246,0.25);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    padding: 10px;
    min-height: 120px;
}

.pi-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 8px;
}

.pi-video-tile {
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.pi-avatar-lg {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E50914, #F43F5E);
}

.pi-avatar-lg-alt {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.pi-video-name {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

.pi-video-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 6px 0;
}

.pi-video-bar-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.pi-dot-red {
    background: rgba(229,9,20,0.5);
}

.pi-dot-blue {
    background: rgba(59,130,246,0.5);
}

.pi-laptop-base {
    height: 8px;
    background: #1f2937;
    border-radius: 0 0 4px 4px;
    margin: 0 -4px;
    border: 2px solid rgba(59,130,246,0.15);
    border-top: 1px solid rgba(59,130,246,0.1);
}

/* Step 3 — Document / Contract */
.process-pro-illust-3 {
    background: linear-gradient(145deg, #0a1a0f 0%, #0a2014 50%, #0a1a1a 100%);
}

.pi-document {
    width: 140px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 12px;
    padding: 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.pi-doc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pi-doc-logo {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: linear-gradient(135deg, #E50914, #F43F5E);
    flex-shrink: 0;
}

.pi-doc-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.pi-doc-body .pi-text-line {
    height: 5px;
    background: rgba(255,255,255,0.06);
}

.pi-doc-signature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px dashed rgba(255,255,255,0.08);
}

.pi-signature-line svg {
    opacity: 0.8;
}

.pi-doc-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(34,197,94,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: piCheckPulse 2s ease-in-out infinite;
}

@keyframes piCheckPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.2); }
    50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* Step 4 — 3 Pillars */
.process-pro-illust-4 {
    background: linear-gradient(145deg, #1a150a 0%, #201a0a 50%, #1a150a 100%);
}

.pi-pillars-wrap {
    display: flex;
    gap: 14px;
    align-items: flex-end;
    z-index: 2;
    position: relative;
}

.pi-pillar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.pi-pillar-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pi-pillar-col-1 .pi-pillar-icon-wrap {
    background: linear-gradient(135deg, #E50914, #F43F5E);
}

.pi-pillar-col-2 .pi-pillar-icon-wrap {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.pi-pillar-col-3 .pi-pillar-icon-wrap {
    background: linear-gradient(135deg, #22c55e, #4ade80);
}

.pi-pillar-col span {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    color: rgba(255,255,255,0.5);
    text-align: center;
    white-space: nowrap;
}

.pi-pillar-bar {
    width: 32px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.pi-bar-fill {
    width: 100%;
    border-radius: 4px 4px 0 0;
    animation: piBarGrow 2s ease-out forwards;
}

.pi-bar-1 {
    height: 70%;
    background: linear-gradient(to top, rgba(229,9,20,0.6), rgba(229,9,20,0.2));
    animation-delay: 0.2s;
}

.pi-bar-2 {
    height: 85%;
    background: linear-gradient(to top, rgba(59,130,246,0.6), rgba(59,130,246,0.2));
    animation-delay: 0.5s;
}

.pi-bar-3 {
    height: 60%;
    background: linear-gradient(to top, rgba(34,197,94,0.6), rgba(34,197,94,0.2));
    animation-delay: 0.8s;
}

.pi-connect-lines {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 50px;
    z-index: 1;
}

.pi-connect-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.12), rgba(255,255,255,0.05));
}

.pi-result-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(251,191,36,0.12);
    border: 1px solid rgba(251,191,36,0.3);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #fbbf24;
    white-space: nowrap;
    z-index: 3;
    animation: piFloatBadge 4s ease-in-out infinite;
}

.process-pro-badge-gold {
    background: linear-gradient(135deg, rgba(251,191,36,0.8), rgba(245,158,11,0.8)) !important;
    color: #fff !important;
}

/* Responsive illustrations */
@media (max-width: 768px) {
    .process-illust-scene {
        width: 180px;
        height: 180px;
    }
    .pi-phone-device {
        width: 75px;
        height: 130px;
    }
    .pi-laptop {
        width: 150px;
    }
    .pi-document {
        width: 120px;
        padding: 12px;
    }
    .pi-pillar-icon-wrap {
        width: 34px;
        height: 34px;
    }
}

.process-pro-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    padding: 8px 14px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

.process-pro-badge-gold {
    background: rgba(229,9,20,0.7);
    border-color: rgba(229,9,20,0.3);
}

/* Card Body */
.process-pro-card-body {
    padding: 36px 32px;
}

.process-pro-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(229,9,20,0.8);
    background: rgba(229,9,20,0.1);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.process-pro-tag-gold {
    color: #22c55e;
    background: rgba(34,197,94,0.1);
}

.process-pro-card-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.process-pro-card-body > p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 20px;
}

.process-pro-card-body > p strong {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}

/* Details List */
.process-pro-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.process-pro-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}

.process-pro-details li svg {
    flex-shrink: 0;
}

/* 3 Pillars */
.process-pro-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.process-pro-pillar {
    text-align: center;
    padding: 16px 10px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.process-pro-pillar:hover {
    border-color: rgba(229,9,20,0.2);
    background: rgba(229,9,20,0.05);
}

.process-pro-pillar-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(229,9,20,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.process-pro-pillar strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.process-pro-pillar span {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    line-height: 1.3;
}

/* Mystery blur on pillars — tease the system */
.process-pro-pillars {
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
    position: relative;
}

.process-pro-note {
    font-size: 12px !important;
    color: rgba(255,255,255,0.35) !important;
    font-style: italic;
    margin-bottom: 0 !important;
}

/* CTA */
.process-pro-cta {
    text-align: center;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.process-pro-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

/* Process Pro Responsive */
@media (max-width: 1024px) {
    .process-pro-card,
    .process-pro-card-reverse {
        grid-template-columns: 1fr;
    }
    .process-pro-card-reverse .process-pro-card-img {
        order: 0;
    }
    .process-pro-card-img {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .process-pro-section {
        padding: 80px 0;
    }
    .process-pro-connector {
        width: 40px;
    }
    .process-pro-dot {
        width: 36px;
        height: 36px;
    }
    .process-pro-dot span {
        font-size: 14px;
    }
    .process-pro-step {
        padding-left: 60px;
        padding-bottom: 32px;
    }
    .process-pro-card-body {
        padding: 24px 20px;
    }
    .process-pro-card-body h3 {
        font-size: 18px;
    }
    .process-pro-pillars {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .process-pro-pillar {
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
        padding: 12px 14px;
    }
    .process-pro-pillar-icon {
        margin: 0;
    }
    .process-pro-card-img {
        min-height: 160px;
    }
}

/* ========== PROCESS ILLUSTRATIONS (CSS/SVG) ========== */
.process-pro-illust {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.process-illust-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

/* Illustration 1 - Phone Call */
.process-pro-illust-1 {
    background: linear-gradient(135deg, #1a0a0c 0%, #1f1020 50%, #0f172a 100%);
}

.pi-phone-device {
    width: 120px;
    background: #1e1e32;
    border-radius: 20px;
    padding: 8px;
    border: 1.5px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.pi-phone-screen {
    background: #111;
    border-radius: 14px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pi-contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
}

.pi-contact-active {
    background: rgba(229,9,20,0.12);
    border: 1px solid rgba(229,9,20,0.2);
}

.pi-avatar-sm {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.pi-avatar-red {
    background: var(--red-gradient);
}

.pi-text-line {
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.08);
}

.pi-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px solid rgba(229,9,20,0.15);
    animation: piWaveExpand 3s ease-out infinite;
    opacity: 0;
}

.pi-wave-1 { width: 160px; height: 160px; animation-delay: 0s; }
.pi-wave-2 { width: 220px; height: 220px; animation-delay: 0.6s; }
.pi-wave-3 { width: 280px; height: 280px; animation-delay: 1.2s; }

@keyframes piWaveExpand {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}

/* Floating badges */
.pi-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(30,35,50,0.85);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    animation: float 4s ease-in-out infinite;
    z-index: 3;
}

.pi-float-badge-1 { bottom: 20px; right: 20px; animation-delay: 0.5s; }
.pi-float-badge-2 { top: 20px; right: 20px; animation-delay: 1s; }
.pi-float-badge-3 { bottom: 24px; right: 24px; animation-delay: 0.3s; }

/* Illustration 2 - Video Call / Laptop */
.process-pro-illust-2 {
    background: linear-gradient(135deg, #0a1628 0%, #111d33 50%, #0f172a 100%);
}

.pi-laptop {
    position: relative;
    z-index: 2;
}

.pi-laptop-screen {
    width: 260px;
    background: #1e2240;
    border-radius: 12px 12px 0 0;
    border: 2px solid rgba(59,130,246,0.35);
    border-bottom: none;
    padding: 12px;
    box-shadow: 0 -10px 40px rgba(59,130,246,0.15), 0 20px 50px rgba(0,0,0,0.5);
}

.pi-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: 6px;
}

.pi-video-tile {
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 20px 10px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.06);
}

.pi-video-main {
    border: 1px solid rgba(229,9,20,0.3);
    background: rgba(229,9,20,0.08);
}

.pi-avatar-lg {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--red-gradient);
}

.pi-avatar-lg-alt {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.pi-video-name {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
}

.pi-video-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 6px;
}

.pi-video-bar-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.pi-dot-red { background: #E50914; box-shadow: 0 0 8px rgba(229,9,20,0.4); }
.pi-dot-blue { background: #3b82f6; box-shadow: 0 0 8px rgba(59,130,246,0.4); }

.pi-laptop-base {
    width: 300px;
    height: 12px;
    background: #2a2a44;
    border-radius: 0 0 6px 6px;
    margin: 0 auto;
    border: 1.5px solid rgba(59,130,246,0.2);
    border-top: none;
}

.pi-laptop-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(59,130,246,0.7);
}

/* Illustration 3 - Document/Contract */
.process-pro-illust-3 {
    background: linear-gradient(135deg, #0d1a0d 0%, #0f1f14 50%, #0f172a 100%);
}

.pi-document {
    width: 160px;
    background: rgba(30,35,50,0.9);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px;
    position: relative;
    z-index: 2;
}

.pi-doc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pi-doc-logo {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: var(--red-gradient);
    flex-shrink: 0;
}

.pi-doc-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.pi-doc-body .pi-text-line {
    height: 5px;
    background: rgba(255,255,255,0.06);
}

.pi-doc-signature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px dashed rgba(255,255,255,0.1);
}

.pi-signature-line {
    opacity: 0.8;
}

.pi-doc-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(34,197,94,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(34,197,94,0.3);
}

/* Illustration 4 - 3 Pillars */
.process-pro-illust-4 {
    background: linear-gradient(135deg, #1a0a02 0%, #1f1008 50%, #1a0f00 100%);
}

.pi-pillars-wrap {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 2;
    filter: blur(5px);
    user-select: none;
}

.pi-pillar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 70px;
}

.pi-pillar-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.pi-pillar-col-1 .pi-pillar-icon-wrap { background: var(--red-gradient); }
.pi-pillar-col-2 .pi-pillar-icon-wrap { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.pi-pillar-col-3 .pi-pillar-icon-wrap { background: linear-gradient(135deg, #22c55e, #16a34a); }

.pi-pillar-col span {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

.pi-pillar-bar {
    width: 100%;
    height: 60px;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.06);
}

.pi-bar-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 5px 5px;
    animation: piBarGrow 2s ease-out forwards;
    opacity: 0;
}

.pi-bar-1 {
    height: 75%;
    background: linear-gradient(180deg, rgba(229,9,20,0.4), rgba(229,9,20,0.15));
    animation-delay: 0.3s;
}
.pi-bar-2 {
    height: 60%;
    background: linear-gradient(180deg, rgba(59,130,246,0.4), rgba(59,130,246,0.15));
    animation-delay: 0.6s;
}
.pi-bar-3 {
    height: 85%;
    background: linear-gradient(180deg, rgba(34,197,94,0.4), rgba(34,197,94,0.15));
    animation-delay: 0.9s;
}

@keyframes piBarGrow {
    0% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
    100% { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
}

.pi-connect-lines {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 54px;
    z-index: 1;
}

.pi-connect-line {
    width: 24px;
    height: 2px;
    background: rgba(255,255,255,0.08);
}

.pi-result-badge {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(251,191,36,0.1);
    border: 1px solid rgba(251,191,36,0.2);
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #fbbf24;
    white-space: nowrap;
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

/* Responsive illustrations */
@media (max-width: 768px) {
    .process-pro-illust {
        min-height: 200px;
    }
    .pi-phone-device { width: 100px; }
    .pi-laptop-screen { width: 160px; }
    .pi-laptop-base { width: 190px; }
    .pi-document { width: 140px; }
    .pi-pillar-col { width: 56px; }
    .pi-wave-3 { display: none; }
}

/* ========== BENEFITS ========== */
.benefits-section {
    padding: 100px 0;
    background: var(--bg);
}

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

.benefit-card {
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1), 0 0 0 1px rgba(229,9,20,0.08);
    border-color: rgba(229,9,20,0.1);
    background: #fff;
}
.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ========== NICHE SPECIALIZATION ========== */
.niche-section {
    padding: 100px 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.niche-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

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

.niche-content .section-tag {
    margin-bottom: 16px;
}

.niche-content h2 {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    line-height: 1.2;
}

.niche-lead {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.niche-lead strong {
    color: var(--dark);
    font-weight: 700;
}

/* Stats Bar */
.niche-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 36px 40px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--bg-muted);
    box-shadow: var(--shadow-sm);
    margin-bottom: 48px;
}

.niche-stat {
    text-align: center;
}

.niche-stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    background: var(--red-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    line-height: 1;
}

.niche-stat-label {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5;
    font-weight: 500;
}

.niche-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--bg-muted);
    flex-shrink: 0;
}

/* Advantages Grid */
.niche-advantages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.niche-adv {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--bg-muted);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.niche-adv::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red-gradient);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.niche-adv:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px -8px rgba(229,9,20,0.1), var(--shadow-md);
    border-color: rgba(229,9,20,0.12);
}

.niche-adv:hover::before {
    transform: scaleY(1);
}

.niche-adv:hover .niche-adv-icon {
    background: var(--red-gradient);
    transition: all 0.3s ease;
}
.niche-adv:hover .niche-adv-icon svg {
    stroke: #fff;
    transition: all 0.3s ease;
}

.niche-adv-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-md);
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.niche-adv h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--dark);
}

.niche-adv p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .niche-content h2 {
        font-size: 28px;
    }
    .niche-stats-bar {
        flex-direction: column;
        gap: 20px;
        padding: 28px 20px;
    }
    .niche-stat-divider {
        width: 60px;
        height: 1px;
    }
    .niche-stat-number {
        font-size: 28px;
    }
    .niche-advantages {
        grid-template-columns: 1fr;
    }
}

/* ========== MARKETING DEPARTMENT BANNER ========== */
.dept-banner-section {
    padding: 0 0 80px;
    background: var(--bg-section);
}

.dept-banner {
    position: relative;
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: 48px 48px 36px;
    overflow: hidden;
}

.dept-banner-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(229, 9, 20, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.dept-banner-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
}

.dept-banner-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: var(--radius-lg);
    background: var(--red-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(229, 9, 20, 0.35);
}

.dept-banner-text {
    flex: 1;
}

.dept-banner-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.dept-banner-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 600px;
}

.dept-banner-text strong {
    color: #fff;
    font-weight: 700;
}

.dept-banner-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dept-team-tags {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.dept-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    padding: 8px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.dept-tag:hover {
    border-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.1);
}

.dept-tag-highlight {
    background: rgba(229, 9, 20, 0.15);
    border-color: rgba(229, 9, 20, 0.3);
    color: rgba(255,255,255,0.8);
}

.dept-tag-highlight:hover {
    background: rgba(229, 9, 20, 0.25);
    border-color: rgba(229, 9, 20, 0.4);
    color: #fff;
}

@media (max-width: 768px) {
    .dept-banner {
        padding: 32px 24px 28px;
    }
    .dept-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .dept-banner-text h3 {
        font-size: 20px;
    }
    .dept-banner-text p {
        max-width: 100%;
    }
    .dept-team-tags {
        justify-content: center;
    }
}

/* ========== CALCULATOR ========== */
.calculator-section {
    padding: 100px 0;
    background: var(--dark);
    color: #fff;
}

.calculator-section .section-tag {
    background: rgba(229, 9, 20, 0.2);
    color: #ff6b6b;
}

.calculator-section .section-header h2 {
    color: #fff;
}
.calculator-section .section-header p {
    color: rgba(255,255,255,0.6);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.calc-input-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}

.calc-input-group label svg {
    opacity: 0.5;
    flex-shrink: 0;
}

.calc-range-wrapper {
    position: relative;
}

.calc-range {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255,255,255,0.15);
    border-radius: 100px;
    outline: none;
    cursor: pointer;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 2px 8px rgba(229, 9, 20, 0.5);
    cursor: pointer;
}
.calc-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 2px 8px rgba(229, 9, 20, 0.5);
    cursor: pointer;
    border: none;
}

.calc-range-value {
    text-align: right;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-top: 8px;
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc-result-card {
    background: rgba(30,35,50,0.92);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.calc-result-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.calc-result-highlight {
    background: rgba(229, 9, 20, 0.15);
    border-color: rgba(229, 9, 20, 0.3);
    padding: 32px;
}

.calc-result-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}

.calc-result-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.calc-result-highlight .calc-result-value {
    font-size: 42px;
    background: linear-gradient(135deg, #22c55e, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calc-result-sub {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

.calc-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.calc-results-grid .calc-result-value {
    font-size: 24px;
}

.calc-result-green {
    color: var(--green) !important;
}

.calc-result-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(229,9,20,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.calc-cost-per-lead {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
}

.calc-cost-per-lead svg {
    flex-shrink: 0;
    opacity: 0.5;
}

.calc-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255,255,255,0.3);
    margin-top: 4px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

.calc-disclaimer svg {
    flex-shrink: 0;
    margin-top: 1px;
    opacity: 0.4;
}

/* ========== SPONSORING ========== */
.sponsoring-section {
    padding: 100px 0;
    background: var(--bg);
}

.sponsoring-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.sponsoring-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--bg-muted);
    transition: var(--transition);
    position: relative;
    text-decoration: none;
    color: inherit;
}
.sponsoring-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15), 0 0 0 1px rgba(229,9,20,0.08);
    border-color: rgba(229,9,20,0.15);
}

.sponsoring-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--red-gradient);
    padding: 5px 12px;
    border-radius: 100px;
}

.sponsoring-card-image {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.sponsoring-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sponsoring-card:hover .sponsoring-card-image img {
    transform: scale(1.05);
}

.sponsoring-card-content {
    padding: 28px;
}

.sponsoring-card-content h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.sponsoring-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 12px !important;
}

.sponsoring-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.sponsoring-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    transition: var(--transition);
}

.sponsoring-card:hover .sponsoring-link {
    gap: 10px;
}

@media (max-width: 768px) {
    .sponsoring-grid {
        grid-template-columns: 1fr;
    }
    .sponsoring-card-image {
        height: 200px;
    }
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    padding: 100px 0;
    background: #0f1117;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(229,9,20,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.testimonials-section .section-header h2 {
    color: #fff;
}
.testimonials-section .section-header p {
    color: rgba(255,255,255,0.5);
}
.testimonials-section .section-tag {
    background: rgba(229,9,20,0.15);
    color: #ff6b6b;
}

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

.testimonial-card {
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.07);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(10px);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(229,9,20,0.15);
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.4);
}

.testimonial-featured {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(229,9,20,0.08) 0%, rgba(255,255,255,0.04) 100%);
    border-color: rgba(229,9,20,0.15);
    padding: 48px 52px;
    position: relative;
    overflow: hidden;
}
.testimonial-featured::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: Georgia, serif;
    font-size: 120px;
    line-height: 1;
    color: rgba(229,9,20,0.08);
    pointer-events: none;
}
.testimonial-featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
}
.testimonial-featured .testimonial-text {
    font-size: 17px;
    line-height: 1.85;
    font-style: italic;
    color: rgba(255,255,255,0.85);
}
.testimonial-featured .testimonial-author {
    border-top: none;
    padding-top: 0;
}

.testimonial-quote-mark {
    display: none;
}

.testimonial-text {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1);
}

.testimonial-author strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.testimonial-author span {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

/* ========== SCREENSHOTS CAROUSEL ========== */
.screenshots-section {
    padding: 80px 0;
    background: var(--bg);
    overflow: hidden;
}

.screenshots-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 -24px;
    padding: 0 24px;
}

.screenshots-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}
.screenshots-track:active {
    cursor: grabbing;
}

.screenshot-item {
    flex-shrink: 0;
    width: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.screenshot-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}
.screenshot-item img {
    width: 100%;
    height: auto;
}

.screenshots-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.screenshot-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gray-lighter);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark);
}
.screenshot-btn:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-light);
}

/* ========== INSTAGRAM SECTION ========== */
/* ========== INSTAGRAM SECTION ========== */
.instagram-section {
    padding: 100px 0;
    background: var(--bg);
    overflow: hidden;
}

/* Highlights Bar */
.ig-highlights-bar {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
}

.ig-highlight-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.ig-highlight-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    padding: 3px;
    background: var(--red-gradient);
    transition: var(--transition);
}

.ig-highlight-btn:hover .ig-highlight-ring {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(229, 9, 20, 0.35);
}

.ig-highlight-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ig-highlight-btn span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-2);
}

/* Instagram Embed Grid */
.ig-embed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.ig-embed-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: #fff;
    border: 1px solid var(--bg-muted);
    transition: var(--transition);
}

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

.ig-embed-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.ig-embed-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ig-embed-card:hover .ig-embed-thumb img {
    transform: scale(1.05);
}

.ig-embed-play {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.ig-embed-card:hover .ig-embed-play {
    background: rgba(229, 9, 20, 0.85);
    transform: scale(1.1);
}

/* CTA Card */
.ig-embed-cta {
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fef2f2 0%, #fff1f2 40%, #fff 100%);
    border-color: var(--red-light);
}

.ig-embed-cta:hover {
    transform: none;
    box-shadow: none;
}

.ig-embed-cta-inner {
    text-align: center;
    padding: 32px 20px;
}

.ig-cta-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 2px 12px rgba(229, 9, 20, 0.15);
}

.ig-embed-cta-inner h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--dark);
}

.ig-embed-cta-inner p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 16px;
}

.ig-profile-btn {
    font-size: 13px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .ig-highlights-bar {
        gap: 20px;
    }
    .ig-highlight-ring {
        width: 60px;
        height: 60px;
    }
    .ig-embed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .ig-embed-cta {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .ig-embed-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

/* ========== FAQ ========== */
.faq-section {
    padding: 100px 0;
    background: var(--bg-section);
}

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

.faq-item {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--bg-muted);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item:hover {
    border-color: rgba(229,9,20,0.12);
}
.faq-item.active {
    border-color: rgba(229,9,20,0.2);
    box-shadow: 0 8px 30px -6px rgba(229,9,20,0.08), var(--shadow);
    background: linear-gradient(135deg, #fff 0%, #fef8f8 100%);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}
.faq-question:hover {
    color: var(--red);
}

.faq-question svg {
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--gray);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--red);
}

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

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

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

/* ========== CTA / CONTACT ========== */
.cta-section {
    padding: 100px 0;
    background: var(--dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229,9,20,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cta-content h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-content > p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.cta-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.cta-contact-direct p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
.cta-phone:hover {
    color: var(--red);
}

.cta-form-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}
.cta-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red-gradient);
}
.cta-form-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 80px -15px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.1);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-2);
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-lighter);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--dark);
    transition: var(--transition);
    outline: none;
    background: var(--bg-soft);
}
.form-group input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
    background: #fff;
}
.form-group input::placeholder {
    color: var(--gray-light);
}

.form-consents {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
    margin-bottom: 16px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5;
}
.form-checkbox input[type="checkbox"] {
    display: none;
}
.form-checkbox .checkmark {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
    margin-top: 1px;
}
.form-checkbox input:checked + .checkmark {
    background: var(--red);
    border-color: var(--red);
}
.form-checkbox input:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-disclaimer {
    font-size: 12px;
    color: var(--gray);
    margin-top: 12px;
    text-align: center;
    line-height: 1.5;
}

/* ========== SUCCESS POPUP ========== */
.success-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.success-popup-overlay.active {
    display: flex;
}
.success-popup {
    background: #fff;
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    animation: popupIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popupIn {
    0% { opacity: 0; transform: scale(0.85) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}
.success-popup-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(34,197,94,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.success-popup h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}
.success-popup p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 28px;
}
.success-popup .btn {
    min-width: 160px;
}

/* ========== FOOTER ========== */
.footer {
    padding: 60px 0 0;
    background: #111827;
    color: rgba(255,255,255,0.7);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 16px;
}

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

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    padding: 4px 0;
}
.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-partner {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.footer-partner img {
    height: 22px;
    width: auto;
    opacity: 0.4;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero h1 {
        font-size: 42px;
    }
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    .live-counter-badge {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }
    .hero-float-1 { left: 0; }
    .hero-float-2 { right: 0; }
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
    .service-card,
    .service-card-reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .service-card-reverse {
        direction: ltr;
    }
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-featured {
        grid-column: 1 / -1;
    }
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .navbar-links,
    .navbar-actions {
        display: none;
    }
    .navbar-by-avigon {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .mobile-menu.active {
        display: flex;
    }
    .hero {
        padding: 100px 0 60px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero-sub {
        font-size: 15px;
    }
    .hero-stats {
        gap: 20px;
    }
    .hero-stat-number {
        font-size: 22px;
    }
    .hero-float-card {
        display: none;
    }
    .section-header h2 {
        font-size: 28px;
    }
    .pain-grid {
        grid-template-columns: 1fr;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-featured {
        padding: 28px;
    }
    .testimonial-featured::before {
        font-size: 80px;
        top: 10px;
        left: 20px;
    }
    .testimonials-rating-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 20px 24px;
    }
    .calc-results-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .pain-card-visual {
        height: 100px;
    }
    .screenshot-item {
        width: 240px;
    }
    .cta-form-card {
        padding: 28px;
    }
    .hero-ctas {
        flex-direction: column;
    }
    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    .hero-stat-divider {
        display: none;
    }
    .section-header h2 {
        font-size: 24px;
    }
    .screenshot-item {
        width: 200px;
    }
}

/* ========== ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in from left */
.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from right */
.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale in */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Blur reveal */
.blur-in {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.blur-in.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* ========== PREMIUM DETAILS ========== */
::selection {
    background: rgba(229, 9, 20, 0.15);
    color: var(--dark);
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-muted);
}
::-webkit-scrollbar-thumb {
    background: var(--gray-lighter);
    border-radius: 100px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gray-light);
}

/* Mobile toggle animation */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Pulse animation on CTA */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 14px rgba(229, 9, 20, 0.35); }
    50% { box-shadow: 0 4px 20px rgba(229, 9, 20, 0.55), 0 0 40px rgba(229, 9, 20, 0.15); }
}

.btn-lg.btn-primary {
    animation: pulse-glow 3s ease-in-out infinite;
}
.btn-lg.btn-primary:hover {
    animation: none;
}

/* Gradient text shimmer */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.text-gradient {
    background: linear-gradient(90deg, #E50914, #F43F5E, #E50914);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    will-change: background-position;
}

/* Range slider filled track */
input[type="range"] {
    background: linear-gradient(to right, var(--red) 0%, var(--red) var(--value, 50%), rgba(255,255,255,0.15) var(--value, 50%), rgba(255,255,255,0.15) 100%);
}

/* Screenshot item subtle border */
.screenshot-item {
    border: 1px solid rgba(0,0,0,0.06);
}

/* Process step hover */
.process-pro-step:hover .process-pro-dot {
    transform: scale(1.1);
    transition: var(--transition);
}
.process-pro-dot {
    transition: var(--transition);
}

/* Benefit card gradient hover */
.benefit-card:hover .benefit-icon {
    background: var(--red-gradient);
    transition: var(--transition);
}
.benefit-card:hover .benefit-icon svg {
    stroke: #fff;
    transition: var(--transition);
}

/* FAQ smooth transition */
.faq-question span {
    transition: var(--transition);
}
.faq-item.active .faq-question span {
    color: var(--red);
}

/* Form focus glow */
.form-group input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.08);
    background: #fff;
}

/* Navbar active link */
.navbar-links a.active {
    color: var(--red);
}
.navbar-links a.active::after {
    width: 100%;
}

/* ========== SERVICE MORE BUTTON ========== */
.btn-service-more {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 14px;
}

/* ========== MODALS ========== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.modal {
    background: #fff;
    border-radius: var(--radius-xl);
    max-width: 860px;
    width: 100%;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin: auto;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: var(--bg-muted);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark);
}
.modal-close:hover {
    background: var(--red-light);
    color: var(--red);
    transform: rotate(90deg);
}

.modal-header {
    padding: 48px 48px 32px;
    border-bottom: 1px solid var(--bg-muted);
}

.modal-header .section-tag {
    margin-bottom: 16px;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    padding-right: 40px;
}

.modal-header p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* Modal Steps */
.modal-steps {
    padding: 0 48px;
}

.modal-step {
    padding: 36px 0;
    border-bottom: 1px solid var(--bg-muted);
}
.modal-step:last-child {
    border-bottom: none;
}

.modal-step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.modal-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red-gradient);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(229, 9, 20, 0.25);
}

.modal-step-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.modal-step-body {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: start;
}

.modal-step-body img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.modal-step-text p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 14px;
}

.modal-step-text ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-step-text ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-2);
}

.modal-step-text ul li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Modal CTA Strip (Google Ads 3 pillars) */
.modal-cta-strip {
    padding: 0 48px 32px;
}

.modal-cta-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

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

.modal-pillar {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    border: 1px solid var(--bg-muted);
}

.modal-pillar strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 4px;
}

.modal-pillar span {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.4;
}

/* Modal Stats Grid (Wizytówka) */
.modal-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 0 48px 32px;
}

.modal-stat {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 20px 14px;
    text-align: center;
    border: 1px solid var(--bg-muted);
}

.modal-stat strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 4px;
}

.modal-stat span {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.3;
}

/* Modal Footer */
.modal-footer {
    padding: 32px 48px 48px;
    text-align: center;
    border-top: 1px solid var(--bg-muted);
    background: var(--bg-soft);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.modal-footer .modal-cta {
    margin-bottom: 12px;
}

.modal-price {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

/* Modal body scroll lock */
body.modal-open {
    overflow: hidden;
}

/* ========== IFRAME PREVIEW OVERLAY ========== */
.iframe-preview-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.iframe-preview-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: rgba(30, 30, 30, 0.95);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.iframe-preview-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.iframe-preview-dots {
    display: flex;
    gap: 6px;
}
.iframe-preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}
.iframe-preview-dots span:first-child { background: #ff5f57; }
.iframe-preview-dots span:nth-child(2) { background: #febc2e; }
.iframe-preview-dots span:last-child { background: #28c840; }

.iframe-preview-url {
    font-family: 'Inter', monospace;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    padding: 6px 16px;
    border-radius: 8px;
    max-width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.iframe-preview-external {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.iframe-preview-external:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.iframe-preview-close {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: none;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.iframe-preview-close:hover {
    background: #E50914;
    color: #fff;
}

.iframe-preview-device-toggle {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 10px 0;
    background: rgba(30, 30, 30, 0.8);
    flex-shrink: 0;
}

.device-btn {
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
}
.device-btn:hover {
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
}
.device-btn.active {
    background: rgba(229, 9, 20, 0.2);
    border-color: var(--red);
    color: #fff;
}

.iframe-preview-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.iframe-preview-frame {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.iframe-preview-frame[data-device="tablet"] {
    width: 768px;
    max-width: 100%;
}

.iframe-preview-frame[data-device="mobile"] {
    width: 375px;
    max-width: 100%;
    border-radius: 24px;
}

.iframe-preview-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: rgba(255,255,255,0.6);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.iframe-preview-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.iframe-loader-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* body lock for iframe preview */
body.iframe-preview-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .iframe-preview-topbar {
        padding: 10px 16px;
    }
    .iframe-preview-url {
        display: none;
    }
    .iframe-preview-body {
        padding: 10px;
    }
    .iframe-preview-device-toggle {
        display: none;
    }
}

/* Modal Showcase (Landing Page iframes) */
.modal-showcase {
    padding: 32px 48px 40px;
    border-top: 1px solid var(--bg-muted);
    background: var(--bg-soft);
}

.modal-showcase h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: var(--dark);
}

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

.showcase-card {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--bg-muted);
    transition: var(--transition);
    cursor: pointer;
}
.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red-light);
}

.showcase-preview {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #f0f0f0;
}

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

.showcase-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(145deg, #f8f9fa 0%, #eef0f3 50%, #e9ecef 100%);
    cursor: pointer;
    transition: var(--transition);
}

.showcase-placeholder:hover {
    background: linear-gradient(145deg, #f0f1f4 0%, #e9ecef 50%, #dde0e4 100%);
}

.showcase-placeholder-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(229, 9, 20, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.showcase-placeholder:hover .showcase-placeholder-icon {
    background: var(--red);
    transform: scale(1.05);
}

.showcase-placeholder-icon svg {
    stroke: var(--red);
    transition: var(--transition);
}

.showcase-placeholder:hover .showcase-placeholder-icon svg {
    stroke: #fff;
}

.showcase-placeholder-name {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    text-align: center;
    line-height: 1.3;
}

.showcase-load-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #6b7280;
    transition: var(--transition);
}

.showcase-placeholder:hover .showcase-load-btn {
    color: var(--red);
}

.showcase-placeholder.loading .showcase-placeholder-icon {
    background: var(--red);
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.showcase-placeholder.loading .showcase-placeholder-icon svg {
    stroke: #fff;
}

.showcase-placeholder.loading .showcase-load-btn {
    color: var(--red);
}

.showcase-placeholder.loading .showcase-load-btn span {
    display: none;
}

.showcase-placeholder.loading .showcase-load-btn::after {
    content: 'Ładowanie strony...';
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}

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

.showcase-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: rgba(229, 9, 20, 0.9);
    padding: 8px 14px;
    border-radius: 100px;
}

.showcase-label {
    display: block;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-2);
    text-align: center;
    border-top: 1px solid var(--bg-muted);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 20px 12px;
    }
    .modal-header {
        padding: 32px 24px 24px;
    }
    .modal-header h2 {
        font-size: 22px;
    }
    .modal-steps {
        padding: 0 24px;
    }
    .modal-step-body {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .modal-step-body img {
        max-height: 200px;
        object-fit: cover;
    }
    .modal-pillars {
        grid-template-columns: 1fr;
    }
    .modal-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 24px 24px;
    }
    .modal-footer {
        padding: 24px;
    }
    .modal-cta-strip {
        padding: 0 24px 24px;
    }
    .modal-showcase {
        padding: 24px;
    }
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .showcase-preview {
        height: 140px;
    }
}

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

/* ========== LEAD FLOW PROCESS ANIMATION - CINEMA ========== */
.lead-flow-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0c1220 0%, #111827 40%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.lead-flow-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(229,9,20,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(34,197,94,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.lead-flow-section .section-header h2 { color: #fff; }
.lead-flow-section .section-header p { color: rgba(255,255,255,0.5); }
.lead-flow-section .section-tag {
    background: rgba(229,9,20,0.15);
    color: #ff6b7a;
    border: 1px solid rgba(229,9,20,0.2);
}

/* Background decorations */
.lf-bg-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}
.lf-bg-deco-1 {
    width: 400px; height: 400px;
    top: 10%; right: -10%;
    background: rgba(229,9,20,0.06);
    animation: lfDecoFloat 12s ease-in-out infinite;
}
.lf-bg-deco-2 {
    width: 300px; height: 300px;
    bottom: 15%; left: -8%;
    background: rgba(34,197,94,0.04);
    animation: lfDecoFloat 15s ease-in-out infinite reverse;
}
.lf-bg-deco-3 {
    width: 200px; height: 200px;
    top: 50%; left: 40%;
    background: rgba(244,63,94,0.03);
    animation: lfDecoFloat 10s ease-in-out infinite 3s;
}

@keyframes lfDecoFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -15px) scale(1.05); }
    66% { transform: translate(-15px, 10px) scale(0.95); }
}

/* ===== CINEMA CONTAINER ===== */
.lf-cinema {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* ===== SCENE LAYOUT ===== */
.lf-scene {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 520px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.lf-scene-active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

.lf-scene-entering {
    display: grid;
    animation: lfSceneIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lf-scene-leaving {
    display: grid;
    animation: lfSceneOut 0.3s ease forwards;
}

@keyframes lfSceneIn {
    0% { opacity: 0; transform: translateX(40px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes lfSceneOut {
    0% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(-40px); }
}

/* ===== SCENE INFO (Right side text) ===== */
.lf-scene-info {
    padding: 20px 0;
}

.lf-scene-step {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #E50914;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lf-scene-step::after {
    content: '';
    height: 1px;
    flex: 1;
    max-width: 60px;
    background: linear-gradient(90deg, rgba(229,9,20,0.4), transparent);
}

.lf-scene-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.lf-scene-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 28px;
}

.lf-scene-stats {
    display: flex;
    gap: 32px;
}

.lf-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lf-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.lf-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
}

/* ===== SCENE 1: AD PHONE MOCKUP ===== */
.lf-ad-phone {
    display: flex;
    justify-content: center;
}

.lf-phone-frame {
    width: 280px;
    background: #1a1a2e;
    border-radius: 36px;
    padding: 12px;
    border: 2px solid rgba(255,255,255,0.08);
    box-shadow:
        0 30px 60px -15px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.05) inset,
        0 0 80px rgba(229,9,20,0.08);
    position: relative;
}

.lf-phone-frame-dark {
    background: #0d0d1a;
    border-color: rgba(255,255,255,0.06);
}

.lf-phone-notch {
    width: 100px;
    height: 24px;
    background: inherit;
    border-radius: 0 0 16px 16px;
    margin: 0 auto 8px;
    position: relative;
    z-index: 2;
}

.lf-phone-content {
    background: #111;
    border-radius: 24px;
    overflow: hidden;
    min-height: 420px;
}

/* Facebook Ad Mockup */
.lf-fb-ad {
    position: relative;
}

.lf-fb-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 14px 10px;
}

.lf-fb-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--red-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
}

.lf-fb-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lf-fb-name {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
}

.lf-fb-sponsored {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    gap: 4px;
}

.lf-fb-sponsored svg { color: rgba(255,255,255,0.25); }

.lf-fb-text {
    padding: 0 14px 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

.lf-fb-image {
    background: linear-gradient(135deg, #1a0a0c 0%, #2a0f14 50%, #1a0a0c 100%);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.lf-fb-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(229,9,20,0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(244,63,94,0.1) 0%, transparent 60%);
}

.lf-fb-image-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lf-fb-image-content svg {
    opacity: 0.6;
}

.lf-fb-image-content span {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.lf-fb-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.lf-fb-cta span {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
}

.lf-fb-btn {
    background: rgba(229,9,20,0.2);
    color: #ff6b7a;
    border: 1px solid rgba(229,9,20,0.3);
    padding: 6px 16px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    cursor: default;
    transition: all 0.3s ease;
}

/* Finger tap animation */
.lf-finger-tap {
    position: absolute;
    bottom: 30px;
    right: 40px;
    opacity: 0;
    transform: scale(0.8);
    animation: lfFingerTap 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(229,9,20,0.4));
}

@keyframes lfFingerTap {
    0%, 100% { opacity: 0; transform: scale(0.8) translateY(10px); }
    20% { opacity: 1; transform: scale(1) translateY(0); }
    30% { transform: scale(0.9) translateY(2px); }
    40% { transform: scale(1) translateY(0); opacity: 1; }
    70% { opacity: 1; }
    85% { opacity: 0; }
}

/* ===== SCENE 1: ADS DUAL LAYOUT ===== */
.lf-scene-visual-ads {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: center;
}

.lf-ad-label {
    text-align: center;
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
}

/* Google Search Ad Mockup */
.lf-google-ad {
    display: flex;
    flex-direction: column;
}

.lf-google-frame {
    width: 280px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 20px 50px -10px rgba(0,0,0,0.3),
        0 0 0 1px rgba(0,0,0,0.05);
}

.lf-google-searchbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.lf-google-query {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #1f2937;
    font-weight: 500;
}

.lf-google-results {
    padding: 8px 0;
}

.lf-google-result {
    padding: 10px 16px;
}

.lf-google-sponsored {
    background: rgba(255,251,235,0.5);
    border-left: 3px solid transparent;
}

.lf-google-result-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #1a73e8;
    background: rgba(26,115,232,0.08);
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 4px;
}

.lf-google-result-url {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #70757a;
    margin-bottom: 2px;
}

.lf-google-result-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a0dab;
    margin-bottom: 4px;
    line-height: 1.3;
}

.lf-google-result-desc {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #4d5156;
    line-height: 1.4;
}

.lf-google-organic {
    opacity: 0.45;
}

.lf-google-result-title-dim {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1a0dab;
    margin-bottom: 3px;
}

.lf-google-result-desc-dim {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #4d5156;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .lf-scene-visual-ads {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .lf-google-frame {
        width: 260px;
    }
}

/* ===== SCENE 2: LANDING PAGE MOCKUP ===== */
.lf-lp-mockup {
    display: flex;
    justify-content: center;
}

.lf-browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #1e1e2e;
    border-radius: 16px 16px 0 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lf-browser-dots {
    display: flex;
    gap: 5px;
}

.lf-browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.lf-browser-dots span:nth-child(1) { background: #ff5f57; }
.lf-browser-dots span:nth-child(2) { background: #ffbd2e; }
.lf-browser-dots span:nth-child(3) { background: #28c840; }

.lf-browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 5px 10px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: rgba(255,255,255,0.45);
}

.lf-lp-content {
    width: 300px;
    background: #fff;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.4);
}

/* LP Hero */
.lf-lp-hero {
    position: relative;
    padding: 16px 16px 12px;
    overflow: hidden;
}

.lf-lp-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a0a12 0%, #2d0a14 60%, #1a0a20 100%);
}

.lf-lp-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ccircle cx='30' cy='30' r='0.8' fill='rgba(229,9,20,0.15)'/%3E%3C/svg%3E");
}

.lf-lp-hero-text {
    position: relative;
    z-index: 1;
}

.lf-lp-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--red-gradient);
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.lf-lp-hero-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
}

.lf-lp-hero-text h4 strong {
    color: #F43F5E;
}

.lf-lp-hero-stats {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lf-lp-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lf-lp-hero-stat strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
}

.lf-lp-hero-stat span {
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    color: rgba(255,255,255,0.45);
}

.lf-lp-hero-stat-divider {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.12);
}

/* LP Form */
.lf-lp-form {
    padding: 12px 16px;
}

.lf-lp-form-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f3f4f6;
}

.lf-lp-fields {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.lf-lp-field label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
    margin-bottom: 3px;
}

.lf-lp-input {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 7px 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #1f2937;
    display: flex;
    align-items: center;
    min-height: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lf-lp-field-filled .lf-lp-input {
    border-color: rgba(34,197,94,0.35);
    background: rgba(34,197,94,0.03);
}

.lf-lp-field-active .lf-lp-input {
    border-color: rgba(229,9,20,0.35);
    box-shadow: 0 0 0 2px rgba(229,9,20,0.08);
    background: #fff;
}

.lf-lp-field-active .lf-typing-text {
    color: #1f2937;
}

.lf-lp-field-active .lf-cursor {
    color: #E50914;
    animation: lfCursorBlink 0.8s step-end infinite;
    margin-left: 1px;
    font-weight: 300;
}

.lf-lp-submit {
    width: 100%;
    background: var(--red-gradient);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: default;
    box-shadow: 0 4px 16px rgba(229,9,20,0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lf-lp-submit.lf-submit-loading-state {
    background: linear-gradient(135deg, #c7080f 0%, #d4354a 100%);
}

.lf-lp-submit.lf-submit-done-state {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 4px 16px rgba(34,197,94,0.25);
}

/* LP Trust badges */
.lf-lp-trust {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 8px 18px 14px;
}

.lf-lp-trust-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lf-lp-trust-item span {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    font-weight: 600;
    color: #6b7280;
}

/* Typing & cursor (shared) */
.lf-typing-text {
    color: rgba(255,255,255,0.85);
}

.lf-cursor {
    color: #E50914;
    animation: lfCursorBlink 0.8s step-end infinite;
    margin-left: 1px;
    font-weight: 300;
}

@keyframes lfCursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@media (max-width: 480px) {
    .lf-lp-content {
        width: 280px;
    }
}

.lf-submit-loading svg {
    animation: lfSpinner 1s linear infinite;
}

@keyframes lfSpinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== SCENE 3: NOTIFICATION DEMO ===== */
.lf-notification-demo {
    display: flex;
    justify-content: center;
}

.lf-notif-phone {
    display: flex;
    justify-content: center;
}

.lf-phone-lockscreen {
    background: linear-gradient(180deg, #0a0a1a 0%, #111 100%) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 16px 20px;
    position: relative;
}

.lf-lockscreen-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 200;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.lf-lockscreen-date {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 30px;
}

/* Notification items */
.lf-notif-stack {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lf-notif-item {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    border: 1px solid rgba(255,255,255,0.06);
}

.lf-notif-item.lf-notif-visible {
    animation: lfNotifSlide 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes lfNotifSlide {
    0% { opacity: 0; transform: translateY(-20px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

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

.lf-notif-icon-sms { background: #22c55e; }
.lf-notif-icon-email { background: #1a73e8; }
.lf-notif-icon-crm { background: #E50914; }

.lf-notif-content {
    flex: 1;
    min-width: 0;
}

.lf-notif-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.lf-notif-app {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.lf-notif-when {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
}

.lf-notif-title {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lf-notif-body {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lf-notif-sms.lf-notif-visible {
    background: rgba(34,197,94,0.1);
    border-color: rgba(34,197,94,0.15);
}

/* Vibration ring */
.lf-vibration-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(229,9,20,0.2);
    border-radius: 40px;
    opacity: 0;
    pointer-events: none;
}

.lf-vibration-ring.lf-vibrate {
    animation: lfVibrate 0.6s ease-out;
}

@keyframes lfVibrate {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.15); }
}

/* ===== SCENE 3: SPLIT LAYOUT (Notifications LUB Incoming Call) ===== */
.lf-scene-visual-split {
    display: flex;
    align-items: stretch;
    gap: 24px;
    justify-content: center;
}

.lf-scene-visual-split > .lf-notification-demo {
    flex: 1;
    max-width: 280px;
}

.lf-scene-visual-split > .lf-incoming-call-demo {
    flex: 1;
    max-width: 280px;
    display: flex;
    flex-direction: column;
}

/* Split section labels */
.lf-split-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    text-align: center;
    margin-bottom: 12px;
}

/* LUB divider (vertical) */
.lf-or-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    flex-shrink: 0;
}

.lf-or-line {
    width: 1px;
    flex: 1;
    min-height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15), transparent);
}

.lf-or-divider > span {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.15em;
    padding: 8px 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

/* Incoming Call Demo */
.lf-incoming-screen {
    background: linear-gradient(180deg, #0a1a0a 0%, #0a0a1a 100%);
    border-radius: 28px;
    padding: 32px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5);
    flex: 1;
}

.lf-incoming-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 20%, rgba(34,197,94,0.08) 0%, transparent 60%),
        radial-gradient(circle at 50% 80%, rgba(34,197,94,0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* Pulsing rings around avatar */
.lf-incoming-ring {
    position: absolute;
    top: 26px;
    left: 50%;
    width: 72px;
    height: 72px;
    transform: translateX(-50%);
    border-radius: 50%;
    border: 2px solid rgba(34,197,94,0.2);
    opacity: 0;
}

.lf-incoming-ring-1 {
    animation: lfIncomingRing 2s ease-out infinite;
}

.lf-incoming-ring-2 {
    animation: lfIncomingRing 2s ease-out infinite 0.6s;
}

@keyframes lfIncomingRing {
    0% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    100% { opacity: 0; transform: translateX(-50%) scale(2.5); }
}

/* Avatar */
.lf-incoming-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(34,197,94,0.12);
    border: 2px solid rgba(34,197,94,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.lf-incoming-avatar svg {
    opacity: 0.7;
}

/* Caller info */
.lf-incoming-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    z-index: 1;
}

.lf-incoming-status {
    font-size: 11px;
    color: #22c55e;
    margin-bottom: 16px;
    z-index: 1;
    animation: lfStatusPulse 1.5s ease-in-out infinite;
}

@keyframes lfStatusPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Speech bubble */
.lf-incoming-bubble {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    padding: 10px 14px;
    font-size: 10.5px;
    line-height: 1.55;
    color: rgba(255,255,255,0.55);
    font-style: italic;
    margin-bottom: 18px;
    z-index: 1;
    align-self: stretch;
    text-align: left;
}

/* Call action buttons */
.lf-incoming-actions {
    display: flex;
    gap: 32px;
    z-index: 1;
}

.lf-incoming-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.lf-incoming-btn:hover {
    transform: scale(1.1);
}

.lf-incoming-decline {
    background: #E50914;
    box-shadow: 0 4px 16px rgba(229,9,20,0.35);
}

.lf-incoming-accept {
    background: #22c55e;
    box-shadow: 0 4px 16px rgba(34,197,94,0.35);
    animation: lfAcceptPulse 1.5s ease-in-out infinite;
}

@keyframes lfAcceptPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(34,197,94,0.35); }
    50% { box-shadow: 0 4px 24px rgba(34,197,94,0.55), 0 0 0 6px rgba(34,197,94,0.1); }
}

/* ===== SCENE 4: CALL DEMO ===== */
.lf-call-demo {
    display: flex;
    justify-content: center;
}

.lf-call-screen {
    width: 280px;
    min-height: 480px;
    background: linear-gradient(180deg, #1a0a0c 0%, #0a0a1a 100%);
    border-radius: 36px;
    padding: 40px 24px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.5);
}

.lf-call-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 30%, rgba(229,9,20,0.1) 0%, transparent 60%),
        radial-gradient(circle at 50% 80%, rgba(244,63,94,0.05) 0%, transparent 60%);
}

.lf-call-avatar-wrap {
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
}

.lf-call-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(229,9,20,0.15);
    opacity: 0;
}

.lf-call-ring.lf-ring-active {
    animation: lfCallRing 2s ease-out infinite;
}

.lf-call-ring-2.lf-ring-active { animation-delay: 0.5s; }
.lf-call-ring-3.lf-ring-active { animation-delay: 1s; }

@keyframes lfCallRing {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0; transform: scale(2); }
}

.lf-call-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lf-call-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    z-index: 1;
}

.lf-call-status {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
    z-index: 1;
    transition: color 0.3s ease;
}

.lf-call-status.lf-connected {
    color: #22c55e;
}

.lf-call-timer {
    font-family: 'Inter', monospace;
    font-size: 14px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 24px;
    z-index: 1;
    display: none;
}

.lf-call-timer.lf-timer-visible {
    display: block;
}

.lf-call-actions {
    display: flex;
    gap: 20px;
    z-index: 1;
    margin-bottom: 24px;
}

.lf-call-action-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lf-call-end {
    background: #E50914;
    box-shadow: 0 4px 20px rgba(229,9,20,0.4);
}

/* Conversation bubbles */
.lf-call-bubbles {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1;
    margin-top: auto;
    padding-top: 16px;
}

.lf-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 11px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(10px);
}

.lf-bubble.lf-bubble-visible {
    animation: lfBubbleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes lfBubbleIn {
    0% { opacity: 0; transform: translateY(10px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.lf-bubble-out {
    background: var(--red-gradient);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.lf-bubble-in {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

/* ===== SCENE 5: SUCCESS CARD ===== */
.lf-success-demo {
    display: flex;
    justify-content: center;
}

.lf-success-card {
    width: 380px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 36px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.lf-success-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.lf-success-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.lf-confetti-piece {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    animation: lfConfettiFall 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
}

@keyframes lfConfettiFall {
    0% { transform: translateY(-20px) rotate(0deg) scale(0); opacity: 0; }
    20% { opacity: 1; transform: translateY(0) rotate(90deg) scale(1); }
    100% { transform: translateY(300px) rotate(720deg) scale(0.5); opacity: 0; }
}

.lf-success-check {
    text-align: center;
    margin-bottom: 16px;
}

.lf-check-circle {
    stroke-dasharray: 63;
    stroke-dashoffset: 63;
}

.lf-success-card.lf-success-animating .lf-check-circle {
    animation: lfCircleDraw 0.8s ease forwards;
}

.lf-check-mark {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
}

.lf-success-card.lf-success-animating .lf-check-mark {
    animation: lfCheckDraw 0.4s ease forwards 0.6s;
}

@keyframes lfCircleDraw {
    0% { stroke-dashoffset: 63; }
    100% { stroke-dashoffset: 0; }
}

@keyframes lfCheckDraw {
    0% { stroke-dashoffset: 20; }
    100% { stroke-dashoffset: 0; }
}

.lf-success-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #22c55e;
    text-align: center;
    margin-bottom: 24px;
}

.lf-success-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.lf-success-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.lf-success-row span {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

.lf-success-row strong {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

.lf-success-highlight {
    color: #22c55e !important;
    font-size: 16px !important;
    font-weight: 800 !important;
}

/* Timeline in success */
.lf-success-timeline {
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.lf-timeline-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    position: relative;
    padding-left: 24px;
}

.lf-timeline-item::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 24px;
    width: 1px;
    height: calc(100% - 8px);
    background: rgba(255,255,255,0.06);
}

.lf-timeline-item:last-child::before { display: none; }

.lf-timeline-dot {
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    background: #111;
}

.lf-timeline-done .lf-timeline-dot {
    border-color: #22c55e;
    background: rgba(34,197,94,0.2);
}

.lf-timeline-done .lf-timeline-dot::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
}

.lf-timeline-item::before {
    background: rgba(34,197,94,0.2);
}

.lf-timeline-done span:first-of-type {
    color: rgba(255,255,255,0.65);
    flex: 1;
}

.lf-timeline-time {
    color: rgba(255,255,255,0.3) !important;
    font-size: 11px !important;
    font-weight: 500;
}

.lf-timeline-final .lf-timeline-dot {
    border-color: #22c55e;
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34,197,94,0.4);
}

/* ===== SCENE NAVIGATION ===== */
.lf-nav {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lf-nav-progress {
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    overflow: hidden;
}

.lf-nav-progress-bar {
    height: 100%;
    width: 20%;
    background: var(--red-gradient);
    border-radius: 3px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(229,9,20,0.3);
}

.lf-nav-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.lf-nav-dot {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    padding: 8px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lf-nav-dot-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    transition: color 0.3s ease;
}

.lf-nav-dot:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
}

.lf-nav-dot:hover .lf-nav-dot-label {
    color: rgba(255,255,255,0.7);
}

.lf-nav-dot-active {
    background: rgba(229,9,20,0.12);
    border-color: rgba(229,9,20,0.25);
}

.lf-nav-dot-active .lf-nav-dot-label {
    color: #ff6b7a;
}

.lf-nav-dot-active:hover {
    background: rgba(229,9,20,0.15);
}

.lf-nav-arrows {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.lf-nav-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255,255,255,0.5);
}

.lf-nav-arrow:hover:not(:disabled) {
    background: rgba(229,9,20,0.1);
    border-color: rgba(229,9,20,0.2);
    color: #fff;
}

.lf-nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ===== HERO DECORATION (replaces Lottie) ===== */
.hero-animated-decoration {
    position: absolute;
    top: 60%;
    right: -5%;
    width: 200px;
    height: 200px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.hero-deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(229,9,20,0.3);
}

.hero-deco-ring-1 {
    inset: 0;
    animation: heroDecoSpin 20s linear infinite;
}

.hero-deco-ring-2 {
    inset: 20%;
    border-color: rgba(244,63,94,0.2);
    animation: heroDecoSpin 15s linear infinite reverse;
}

@keyframes heroDecoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-deco-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(229,9,20,0.4);
    animation: heroDecoPulse 3s ease-in-out infinite;
}

.hero-deco-dot-1 { top: 10%; left: 50%; animation-delay: 0s; }
.hero-deco-dot-2 { top: 70%; left: 15%; animation-delay: 1s; }
.hero-deco-dot-3 { top: 40%; right: 10%; animation-delay: 2s; }

@keyframes heroDecoPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* ===== LEAD FLOW RESPONSIVE ===== */
@media (max-width: 1024px) {
    .lf-scene {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }
    .lf-scene-info {
        text-align: center;
    }
    .lf-scene-stats {
        justify-content: center;
    }
    .lf-scene-step {
        justify-content: center;
    }
    .lf-scene-step::after {
        display: none;
    }
    .lf-scene-visual-split {
        gap: 16px;
    }
    .lf-scene-visual-split > .lf-notification-demo,
    .lf-scene-visual-split > .lf-incoming-call-demo {
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    .lead-flow-section {
        padding: 80px 0;
    }
    .lf-phone-frame {
        width: 250px;
    }
    .lf-form-card {
        width: 300px;
    }
    .lf-call-screen {
        width: 250px;
    }
    .lf-success-card {
        width: 320px;
    }
    .lf-scene-title {
        font-size: 22px;
    }
    .lf-nav-dots {
        flex-wrap: wrap;
    }
    .lf-nav-dot {
        padding: 6px 12px;
    }
    .lf-nav-dot-label {
        font-size: 10px;
    }
    .lf-call-bubbles {
        display: none;
    }
    /* Split layout: stack vertically on mobile */
    .lf-scene-visual-split {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .lf-scene-visual-split > .lf-notification-demo,
    .lf-scene-visual-split > .lf-incoming-call-demo {
        max-width: 280px;
        width: 100%;
    }
    .lf-or-divider {
        flex-direction: row;
        padding: 8px 0;
        gap: 16px;
    }
    .lf-or-line {
        width: auto;
        height: 1px;
        min-height: unset;
        min-width: 40px;
        flex: 1;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    }
    .lf-incoming-screen {
        padding: 24px 16px 20px;
        border-radius: 24px;
    }
    .lf-incoming-bubble {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .lf-phone-frame {
        width: 220px;
    }
    .lf-form-card {
        width: 260px;
        padding: 20px;
    }
    .lf-success-card {
        width: 280px;
        padding: 24px;
    }
    .lf-stat-value {
        font-size: 20px;
    }
    .lf-scene-visual-split > .lf-notification-demo,
    .lf-scene-visual-split > .lf-incoming-call-demo {
        max-width: 250px;
    }
    .lf-incoming-name {
        font-size: 14px;
    }
    .lf-incoming-avatar {
        width: 48px;
        height: 48px;
    }
    .lf-incoming-avatar svg {
        width: 22px;
        height: 22px;
    }
    .lf-incoming-ring {
        top: 22px;
        width: 60px;
        height: 60px;
    }
    .lf-incoming-btn {
        width: 38px;
        height: 38px;
    }
}

/* ========== FLOATING PARTICLES ========== */
.particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(229,9,20,0.3);
    animation: particleFloat linear infinite;
}

.particle:nth-child(odd) {
    background: rgba(244,63,94,0.2);
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* ========== COUNTER BADGE (animated) ========== */
.live-counter-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.15);
    border-radius: 100px;
    margin-top: 24px;
    animation: counterBadgeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
    opacity: 0;
}

.live-counter-badge .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: smsBadgePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(34,197,94,0.4);
}

.live-counter-badge span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.live-counter-badge strong {
    font-weight: 700;
    color: var(--green);
}

@keyframes counterBadgeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Avigon Media "Powered by" in hero */
.hero-powered-by {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.hero-powered-by:hover {
    opacity: 1;
}
.hero-powered-by span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero-powered-by img {
    height: 42px;
    width: auto;
    background: #1a1a1a;
    padding: 8px 16px;
    border-radius: 8px;
}

/* ========== STICKY MOBILE CTA ========== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-sticky-cta .btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px 24px;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
    /* Add padding at bottom to prevent content being hidden behind sticky CTA */
    .footer {
        padding-bottom: 80px;
    }
}

/* ========== ENHANCED FORM INTERACTIONS ========== */
.form-group {
    position: relative;
}

.form-group input {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus {
    transform: translateY(-1px);
}

.form-group input:focus-visible {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.1), 0 4px 12px rgba(229, 9, 20, 0.08);
}

/* ========== SECTION DIVIDER ANIMATIONS ========== */
.section-divider {
    width: 60px;
    height: 4px;
    background: var(--red-gradient);
    border-radius: 100px;
    margin: 0 auto 24px;
    position: relative;
    overflow: hidden;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    left: 0;
    animation: dividerShimmer 3s ease-in-out infinite;
    will-change: transform;
}

@keyframes dividerShimmer {
    0% { transform: translateX(-200%); }
    100% { transform: translateX(400%); }
}

/* ========== SCREENSHOT LIGHTBOX ========== */
.screenshot-lightbox {
    position: fixed;
    inset: 0;
    z-index: 4000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.screenshot-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.screenshot-lightbox-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    flex-shrink: 0;
}

.screenshot-lightbox-counter {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
}

.screenshot-lightbox-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.screenshot-lightbox-close:hover {
    background: var(--red);
    color: #fff;
}

.screenshot-lightbox-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 60px;
    overflow: hidden;
}

.screenshot-lightbox-img-wrapper {
    max-height: 85vh;
    max-width: 420px;
    overflow-y: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}

.screenshot-lightbox-img-wrapper::-webkit-scrollbar {
    width: 4px;
}
.screenshot-lightbox-img-wrapper::-webkit-scrollbar-track {
    background: transparent;
}
.screenshot-lightbox-img-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 100px;
}

.screenshot-lightbox-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Navigation Arrows */
.screenshot-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}
.screenshot-lightbox-nav:hover {
    background: rgba(229,9,20,0.3);
    border-color: rgba(229,9,20,0.5);
    color: #fff;
}

.screenshot-lightbox-prev { left: 12px; }
.screenshot-lightbox-next { right: 12px; }

/* Thumbnails strip at bottom */
.screenshot-lightbox-thumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    overflow-x: auto;
    flex-shrink: 0;
    scrollbar-width: none;
}
.screenshot-lightbox-thumbs::-webkit-scrollbar { display: none; }

.screenshot-lightbox-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.4;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.screenshot-lightbox-thumb.active {
    border-color: var(--red);
    opacity: 1;
}

.screenshot-lightbox-thumb:hover {
    opacity: 0.8;
}

.screenshot-lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .screenshot-lightbox-body {
        padding: 0 20px;
    }
    .screenshot-lightbox-nav {
        width: 36px;
        height: 36px;
    }
    .screenshot-lightbox-prev { left: 4px; }
    .screenshot-lightbox-next { right: 4px; }
    .screenshot-lightbox-img-wrapper {
        max-width: 340px;
        max-height: 75vh;
    }
}

/* ========== TESTIMONIALS PREMIUM UPGRADE ========== */
/* Star rating */
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
}

/* Google review badge */
.testimonial-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(66, 133, 244, 0.1);
    border: 1px solid rgba(66, 133, 244, 0.2);
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 16px;
}

/* Aggregate rating bar — dark theme */
.testimonials-rating-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    padding: 24px 36px;
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-rating-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.testimonials-rating-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonials-rating-stars {
    display: flex;
    gap: 3px;
}

.testimonials-rating-count {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.testimonials-rating-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
}

/* ========== URGENCY RIBBON ========== */
.urgency-ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    background: linear-gradient(90deg, #0f172a, #1e293b, #0f172a);
    border-top: 1px solid rgba(229,9,20,0.15);
    border-bottom: 1px solid rgba(229,9,20,0.15);
}

.urgency-ribbon-icon {
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.urgency-ribbon span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.urgency-ribbon strong {
    color: #ff6b7a;
    font-weight: 700;
}

/* ========== TRUST COUNTER BAR ========== */
.trust-counter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 24px 0;
    margin-top: 24px;
    border-top: 1px solid var(--bg-muted);
}

.trust-counter-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-counter-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-counter-icon-green { background: rgba(34,197,94,0.1); }
.trust-counter-icon-red { background: rgba(229,9,20,0.1); }

.trust-counter-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
}

.trust-counter-label {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

/* ========== FLOATING PHONE BUTTON ========== */
.floating-phone {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    background: var(--red-gradient);
    border-radius: 100px;
    padding: 6px;
    padding-left: 20px;
    box-shadow: 0 8px 30px rgba(229, 9, 20, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatingPhonePulse 3s ease-in-out infinite;
}

.floating-phone:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 40px rgba(229, 9, 20, 0.45);
    animation: none;
}

.floating-phone::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 100px;
    border: 2px solid rgba(229,9,20,0.25);
    animation: floatingPhoneRing 3s ease-in-out infinite;
    pointer-events: none;
}

.floating-phone-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    letter-spacing: 0.01em;
    margin-right: 12px;
}

.floating-phone-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.floating-phone:hover .floating-phone-btn {
    background: rgba(255,255,255,0.25);
}

@keyframes floatingPhonePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

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

@media (max-width: 768px) {
    .floating-phone {
        bottom: 80px;
        right: 16px;
        padding-left: 16px;
    }
    .floating-phone-number {
        font-size: 13px;
        margin-right: 8px;
    }
    .floating-phone-btn {
        width: 42px;
        height: 42px;
    }
}

/* ========== BACKGROUND PATTERNS ========== */
.bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.bg-pattern-dots {
    background-image: radial-gradient(rgba(229,9,20,0.04) 1px, transparent 1px);
    background-size: 30px 30px;
}

.bg-pattern-grid {
    background-image:
        linear-gradient(rgba(229,9,20,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(229,9,20,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.bg-pattern-diagonal {
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(229,9,20,0.015) 20px,
        rgba(229,9,20,0.015) 21px
    );
}

/* Make sections with patterns relative */
.pain-section,
.benefits-section,
.faq-section,
.testimonials-section,
.niche-section,
.screenshots-section {
    position: relative;
}

/* Hero enhanced background — subtle LN monogram pattern */
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    /* Repeating LN monogram using inline SVG — subtle brand watermark */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Ctext x='90' y='100' text-anchor='middle' font-family='Montserrat,sans-serif' font-weight='800' font-size='42' fill='%239ca3af' opacity='0.08' letter-spacing='4'%3ELN%3C/text%3E%3C/svg%3E");
    background-size: 180px 180px;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229,9,20,0.04) 0%, transparent 70%);
    animation: heroBgFloat 8s ease-in-out infinite;
}

.hero-bg-pattern::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229,9,20,0.025) 0%, transparent 70%);
    animation: heroBgFloat 10s ease-in-out infinite reverse;
}

@keyframes heroBgFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -15px); }
    66% { transform: translate(-15px, 10px); }
}
