:root {
    --bg-color: #0A192F;
    /* Deepest Navy */
    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    --accent-blue: #0077B5;
    /* Electric Blue */
    --accent-blue-hover: #4F5BFF;
    --accent-glow: rgba(0, 119, 181, 0.4);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Inter', sans-serif;
    --font-mono: 'Space Grotesk', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Responsive Utilities (Mobile Only) */
@media (max-width: 768px) {
    .flex-col {
        display: flex !important;
        flex-direction: column !important;
    }

    .items-center {
        align-items: center !important;
    }

    .w-full {
        width: 100% !important;
    }

    .max-w-full {
        max-width: 100% !important;
    }

    .text-center {
        text-align: center !important;
    }

    .mx-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

html {
    scroll-behavior: initial;
    /* Lenis handles it now */
    cursor: none;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

@media (max-width: 1024px) {
    html {
        cursor: auto;
        scroll-behavior: smooth;
        /* Revert for touch */
    }
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 119, 181, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 119, 181, 0.05) 0%, transparent 40%),
        radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 119, 181, 0.07) 0%, transparent 50%);
    pointer-events: none;
}

/* 1. Mobil Izgara (Grid) Kurtarması */
.blueprint-grid {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.05;
    background-image:
        linear-gradient(to right, rgba(59, 130, 246, 0.5) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(59, 130, 246, 0.5) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}


body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.01;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

@keyframes slowDrift {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05) translate(1%, 2%);
        opacity: 1;
    }

    100% {
        transform: scale(1.1) translate(2%, 0%);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    body {
        background-color: #0A192F !important;
    }

    body::before {
        opacity: 0.25 !important;
    }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
}

p {
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
    font-size: 1rem;
    will-change: transform;
}

.btn-primary {
    background-color: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.1), rgba(0, 119, 181, 0.3));
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
}

.btn-secondary:hover {
    color: var(--accent-blue);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--accent-blue);
    background-color: rgba(0, 119, 181, 0.05);
}

/* Pulse Animation */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 119, 181, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 119, 181, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 119, 181, 0);
    }
}

.pulse-btn {
    animation: pulseGlow 2s infinite;
}

/* Global Fixes */
body {
    overflow-x: clip !important;
    background-color: #0A192F;
}

/* ── CLASSIC HEADER ─────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links .btn {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.open {
    display: flex;
}

.mobile-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.2s ease;
}

.mobile-link:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* ── HERO — 2-COLUMN ─────────────────────────────────────── */
.hero {
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0A192F;
}


.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-container {
        display: flex;
        flex-direction: column;
        text-align: center;
        width: 100%;
        padding: 0 15px;
    }
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 20px;
}

.text-accent {
    color: var(--accent-blue);
}

.hero p {
    color: #94A3B8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 3D Carousel System (Refined) */
.carousel-3d-scene {
    width: 100%;
    height: 500px;
    perspective: 2500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-3d-inner {
    width: 300px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s linear;
    cursor: grab;
}

.carousel-3d-inner:active {
    cursor: grabbing;
}

.carousel-panel {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    /* Pure White */
    border: 2px solid #3B82F6;
    /* Brighter Blue Border */
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: none !important;
    /* Zero Shadow Rule */
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease, opacity 0.6s ease;
    backface-visibility: hidden;
}


/* Glare Effect */
.carousel-panel::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 45%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 55%);
    transform: rotate(-45deg);
    pointer-events: none;
    z-index: 2;
}

.carousel-panel img {
    width: 100%;
    height: calc(100% - 35px);
    /* Leave room for label */
    object-fit: cover;
    opacity: 0.9;
    background: #000;
}

.panel-label {
    width: 100%;
    height: 35px;
    background: #FFFFFF;
    color: #3B82F6;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
}


/* 5 Panels positioning */
.carousel-panel:nth-child(1) {
    transform: rotateY(0deg) translateZ(320px);
}

.carousel-panel:nth-child(2) {
    transform: rotateY(72deg) translateZ(320px);
}

.carousel-panel:nth-child(3) {
    transform: rotateY(144deg) translateZ(320px);
}

.carousel-panel:nth-child(4) {
    transform: rotateY(216deg) translateZ(320px);
}

.carousel-panel:nth-child(5) {
    transform: rotateY(288deg) translateZ(320px);
}

/* PC Carousel - Nefes Alan Evren Efekti (Breathing Aura) */
.breathing-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #3B82F6 0%, #1E3A8A 50%, transparent 80%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    animation: breathing 4.5s ease-in-out infinite;
}

@keyframes breathing {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.5;
    }
}


@keyframes rotateRing {
    to {
        transform: rotateZ(360deg);
    }
}

/* Floating Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(10, 25, 47, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.carousel-control:hover {
    background: rgba(0, 119, 181, 0.2);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    color: #fff;
    border-color: rgba(59, 130, 246, 0.8);
}

.carousel-control svg {
    width: 24px;
    height: 24px;
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

/* Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    cursor: pointer;
}

.carousel-dot.active {
    background: var(--accent-blue);
    box-shadow: 0 0 10px var(--accent-blue);
    transform: scale(1.5);
}

/* Hardware Acceleration for 60fps */
.carousel-3d-scene,
.carousel-3d-inner,
.carousel-panel,
.aura-rings {
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media (max-width: 768px) {
    .carousel-3d-scene {
        width: 100%;
        height: 400px;
        margin-top: 40px;
        margin-bottom: 60px;
        /* Extra space for controls */
        transform: scale(0.75);
        /* Scale down the entire mechanism */
        transform-origin: top center;
        justify-content: center;
    }

    /* Touch-friendly Controls */
    .carousel-control {
        width: 60px;
        height: 60px;
        background: rgba(10, 25, 47, 0.9);
        border: 2px solid rgba(59, 130, 246, 0.4);
        top: auto;
        bottom: -60px;
        transform: none;
        /* Reset vertical centering */
    }

    .carousel-control svg {
        width: 28px;
        height: 28px;
    }

    .carousel-control.prev-btn {
        left: 15%;
    }

    .carousel-control.next-btn {
        right: 15%;
    }

    /* Reposition Dots */
    .carousel-dots {
        bottom: -90px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 768px) {
    .hero {
        background: #0A192F;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        margin: 0 auto;
        gap: 30px;
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 !important;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem) !important;
        text-align: center !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero p {
        text-align: center !important;
        width: 100% !important;
        max-width: 450px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-buttons {
        justify-content: center !important;
        width: 100% !important;
        gap: 12px !important;
    }

    .hero-visual {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}

.hero-mockup-wrap:hover .mockup-screen {
    transform: rotateY(-20deg) rotateX(10deg);
}

.mockup-screen img {
    width: 100%;
    display: block;
}

/* Background Pulsing Glow */
.mockup-glow {
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(0, 119, 181, 0.4) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% {
        opacity: 0.4;
        transform: scale(0.9);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes mockupFloat {

    0%,
    100% {
        transform: translateY(0) rotateY(-18deg);
    }

    50% {
        transform: translateY(-15px) rotateY(-18deg);
    }
}

.social-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 6px 14px 6px 6px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: #94A3B8;
}

.avatars {
    display: flex;
    margin-right: 4px;
}

.avatar-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #0A192F;
    margin-left: -8px;
    object-fit: cover;
}

.avatar-img:first-child {
    margin-left: 0;
}

.social-proof-badge strong {
    color: #FFFFFF;
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 40px;
    }
}

/* ── FEATURE CARDS ───────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px 22px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(0, 119, 181, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.85rem;
    color: #94A3B8;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section {
    padding: 100px 0;
    background: #0A192F;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px 24px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 193, 7, 0.2);
    transform: translateY(-4px);
}

.stars {
    font-size: 1rem;
    color: #FBBF24;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-card>p {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A192F, #0077B5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: #94A3B8;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ============================================
   HERO TYPOGRAPHY — THE ANTI-CIRTLAK
   ============================================ */
/* Outline Animated Text */
.text-outline-animate {
    -webkit-text-stroke: 1px var(--accent-blue);
    color: transparent;
    background: linear-gradient(90deg,
            rgba(0, 119, 181, 0) 0%,
            rgba(0, 119, 181, 1) 50%,
            rgba(0, 119, 181, 0) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: outlineFlow 3s linear infinite;
    display: inline-block;
}

@keyframes outlineFlow {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Hero Image Container Refinement */
.hero-visual .mockup-screen {
    border-radius: 2rem;
    border: 1px solid rgba(0, 119, 181, 0.3);
    box-shadow: 0 0 40px rgba(0, 119, 181, 0.15);
}

.hero-aura-word {
    color: #93c5fd;
    text-shadow: 0 0 20px rgba(0, 119, 181, 0.4), 0 0 60px rgba(0, 119, 181, 0.15);
}

/* Blueprint CTA Button */
.btn-blueprint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #0A192F;
    border: 1.5px solid #0077B5;
    color: #FFFFFF;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.btn-blueprint:hover {
    background: #0077B5;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 119, 181, 0.15), 0 0 30px rgba(0, 119, 181, 0.3);
    transform: translateY(-2px);
}

/* Dock: icons only */
.dock-item span {
    display: none !important;
}

.dock-item {
    padding: 13px 16px !important;
    gap: 0 !important;
}

.dock-cta {
    padding: 13px 20px !important;
}

/* Kinetic Void Hero BG */
.portal-hero {
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0, 119, 181, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(0, 119, 181, 0.08) 0%, transparent 60%),
        #0A192F !important;
}

/* ============================================
   THE GATED BLUEPRINT — CERT CARDS
   ============================================ */
.blueprint-cert-section {
    position: relative;
    padding: 100px 0 120px;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 119, 181, 0.05) 0%, transparent 70%), #0A192F;
    overflow: hidden;
}

.code-rain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 60px;
    overflow: hidden;
    z-index: 0;
}

.code-line {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: rgba(96, 165, 250, 0.04);
    white-space: nowrap;
    animation: codeScroll 20s linear infinite;
    letter-spacing: 0.05em;
}

.code-line:nth-child(even) {
    animation-duration: 25s;
    animation-direction: reverse;
    color: rgba(0, 119, 181, 0.03);
}

.code-line:nth-child(3n) {
    animation-duration: 30s;
    margin-left: 100px;
}

@keyframes codeScroll {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-600px);
        opacity: 0;
    }
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.cert-card {
    position: relative;
    background: rgba(10, 25, 47, 0.85);
    border: 1px solid rgba(0, 119, 181, 0.12);
    border-radius: 20px;
    padding: 28px 22px;
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.cert-card:hover {
    border-color: rgba(0, 119, 181, 0.45);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 119, 181, 0.1);
    transform: translateY(-6px);
}

.cert-schema {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.cert-schema svg {
    width: 100%;
    height: 100%;
    padding: 10px;
}

.cert-card:hover .cert-schema {
    opacity: 1;
}

.cert-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cert-icon {
    font-size: 1.8rem;
}

.cert-badge {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #0077B5;
    background: rgba(0, 119, 181, 0.1);
    border: 1px solid rgba(0, 119, 181, 0.25);
    border-radius: 4px;
    padding: 3px 8px;
}

.cert-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 8px;
}

.cert-card p {
    font-size: 0.82rem;
    color: #94A3B8;
    line-height: 1.55;
    margin: 0 0 16px;
}

.cert-guarantee {
    font-size: 0.75rem;
    font-weight: 600;
    color: #34d399;
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.15);
    border-radius: 6px;
    padding: 6px 10px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .cert-grid {
        display: none;
    }
}

/* Mobile timeline */
.cert-timeline {
    display: none;
    position: relative;
    padding-left: 40px;
    z-index: 2;
}

@media (max-width: 640px) {
    .cert-timeline {
        display: block;
    }
}

.timeline-track {
    position: absolute;
    left: 9px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 119, 181, 0.15);
    border-radius: 2px;
}

.timeline-fill {
    width: 100%;
    background: linear-gradient(to bottom, #0077B5, #06b6d4);
    border-radius: 2px;
    transition: height 0.6s ease;
    height: 0%;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.tl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0077B5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: -30px;
    color: #fff;
    box-shadow: 0 0 12px rgba(0, 119, 181, 0.5);
}

.tl-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 4px;
}

.tl-content p {
    font-size: 0.85rem;
    color: #94A3B8;
    margin: 0;
}

/* ============================================
   5-STAR SOCIAL PROOF WALL
   ============================================ */
.social-proof-wall {
    padding: 100px 0 120px;
    background: #0A192F;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.proof-card {
    background: rgba(10, 25, 47, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px 28px;
    backdrop-filter: blur(12px);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.proof-card:hover {
    border-color: rgba(255, 193, 7, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.05);
    transform: translateY(-4px);
}

.proof-stars {
    font-size: 1.1rem;
    color: #FFD700;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.proof-quote {
    font-size: 0.95rem;
    color: #94A3B8;
    line-height: 1.7;
    margin: 0 0 24px;
    font-style: italic;
}

.proof-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.proof-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A192F, #0077B5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.3);
}

.proof-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.proof-title {
    font-size: 0.75rem;
    color: #94A3B8;
}

@media (max-width: 900px) {
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ============================================
   FAQ: BOLD APPLE STYLE
   ============================================ */
.capsule-trigger {
    font-family: 'Inter', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.05rem !important;
    color: #fff !important;
    letter-spacing: -0.02em;
}

.capsule.open .capsule-trigger {
    color: #0077B5 !important;
}

/* ============================================
   FLOATING DOCK — GLASSMORPHISM REVIVAL
   ============================================ */
.floating-dock {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: rgba(10, 25, 47, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 10px 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 119, 181, 0.1);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.dock-container {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 10px 14px;
    border-radius: 80px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.dock-item:hover {
    color: #0077B5;
    background: rgba(0, 119, 181, 0.12);
    transform: translateY(-4px);
}

.dock-item svg {
    transition: filter 0.3s ease;
}

.dock-item:hover svg {
    filter: drop-shadow(0 0 6px rgba(96, 165, 250, 0.6));
}

.dock-cta {
    background: linear-gradient(135deg, #0077B5, #0077B5);
    color: #fff !important;
    padding: 10px 20px;
    box-shadow: 0 0 20px rgba(0, 119, 181, 0.4);
}

.dock-cta:hover {
    background: linear-gradient(135deg, #0077B5, #0077B5) !important;
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 0 30px rgba(0, 119, 181, 0.6) !important;
}

/* ============================================
   iPHONE 16 PRO FRAME
   ============================================ */
.iphone-universe {
    position: relative;
    width: 420px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    perspective: 1200px;
}

.iphone-frame {
    position: relative;
    width: 230px;
    height: 470px;
    transform-style: preserve-3d;
    animation: iphoneFloat 4s ease-in-out infinite;
    transition: transform 0.15s ease-out;
    z-index: 3;
}

@keyframes iphoneFloat {

    0%,
    100% {
        transform: translateY(0) rotateX(2deg) rotateY(-8deg);
    }

    50% {
        transform: translateY(-18px) rotateX(-2deg) rotateY(-6deg);
    }
}

.iphone-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #1c1c1e 0%, #2c2c2e 40%, #112240 100%);
    border-radius: 44px;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.5),
        0 30px 80px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 60px rgba(0, 119, 181, 0.15);
}

/* Side rails */
.iphone-side {
    position: absolute;
    background: linear-gradient(180deg, #3a3a3c, #2c2c2e);
    z-index: 4;
}

.iphone-side-left {
    left: -3px;
    top: 15%;
    height: 70%;
    width: 3px;
    border-radius: 2px 0 0 2px;
}

.iphone-side-right {
    right: -3px;
    top: 15%;
    height: 70%;
    width: 3px;
    border-radius: 0 2px 2px 0;
}

.iphone-side-top {
    top: -3px;
    left: 10%;
    width: 80%;
    height: 3px;
    border-radius: 2px 2px 0 0;
}

.iphone-side-bottom {
    bottom: -3px;
    left: 10%;
    width: 80%;
    height: 3px;
    border-radius: 0 0 2px 2px;
}

.dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: #000;
    border-radius: 20px;
    z-index: 5;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.iphone-screen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 43px;
    overflow: hidden;
    background: linear-gradient(135deg, #0A192F 0%, #0A192F 100%);
}

.iphone-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 43px;
}

/* badge-c position */
.badge-c {
    top: 50%;
    right: -10px;
    animation-delay: 0.8s;
    transform: translateY(-50%);
}

@media (max-width: 992px) {
    .iphone-universe {
        width: 340px;
        height: 420px;
    }

    .iphone-frame {
        width: 180px;
        height: 370px;
    }
}

@media (max-width: 768px) {
    .iphone-universe {
        width: 260px;
        height: 320px;
        margin: 0 auto;
    }

    .iphone-frame {
        width: 140px;
        height: 280px;
    }

    .dynamic-island {
        width: 70px;
        height: 20px;
    }
}

/* ============================================
   TECH-NODE GRID — KINETIC CIRCUIT BOARD
   ============================================ */
.tech-node-section {
    padding: 100px 0 120px;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 119, 181, 0.06) 0%, transparent 70%), #0A192F;
}

.tech-node-grid {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 560px;
    margin: 0 auto;
}

.node-paths {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.node-beam {
    filter: drop-shadow(0 0 6px #0077B5);
}

.node-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.node-center-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 119, 181, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: breatheRing 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(0, 119, 181, 0.2);
}

.node-center-dot {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0077B5, #0077B5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
    box-shadow: 0 0 30px rgba(0, 119, 181, 0.5);
    position: relative;
    z-index: 2;
}

.tech-node {
    position: absolute;
    width: 160px;
    background: rgba(10, 25, 47, 0.95);
    border: 1px solid rgba(0, 119, 181, 0.2);
    border-radius: 18px;
    padding: 20px 18px;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.tech-node:hover {
    border-color: rgba(0, 119, 181, 0.6);
    box-shadow: 0 0 30px rgba(0, 119, 181, 0.15);
    transform: scale(1.05);
}

/* 4-corner positions matching the SVG paths */
.node-tl {
    top: 5%;
    left: 5%;
}

.node-tr {
    top: 5%;
    right: 5%;
}

.node-bl {
    bottom: 5%;
    left: 5%;
}

.node-br {
    bottom: 5%;
    right: 5%;
}

.node-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
    transition: transform 0.3s ease;
}

.tech-node:hover .node-icon {
    transform: scale(1.3) translateY(-4px);
}

.tech-node h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.tech-node p {
    font-size: 0.8rem;
    color: #94A3B8;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .tech-node-grid {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .node-paths {
        display: none;
    }

    .node-center {
        display: none;
    }

    .tech-node {
        position: static;
        width: 100%;
    }
}

/* ============================================
   APPLE-STYLE CAPSULE FAQ OVERRIDE
   ============================================ */
.capsule {
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    background: transparent !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.capsule:hover {
    background: rgba(255, 255, 255, 0.02) !important;
}

.capsule.open {
    background: rgba(255, 255, 255, 0.03) !important;
    border-bottom-color: var(--accent-blue) !important;
}

.capsule-trigger {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    font-family: 'Space Grotesk', sans-serif !important;
    color: #FFFFFF !important;
    /* text-slate-100 */
    padding: 32px 0 !important;
    letter-spacing: -0.02em;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
}

.capsule-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
    color: var(--accent-blue);
}

.capsule.open .capsule-icon {
    transform: rotate(180deg);
}

.capsule-inner {
    color: var(--text-muted) !important;
    padding: 0 0 24px !important;
    font-size: 1rem !important;
    line-height: 1.7;
}

/* ============================================
   CUSTOM CURSOR GLOW
   ============================================ */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 119, 181, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .cursor-glow {
        display: none;
    }
}

/* ============================================
   NAVBAR: THE INVISIBLE GUARD
   ============================================ */
.invisible-guard {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.invisible-guard.scrolled {
    background: rgba(10, 25, 47, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 0;
}

.guard-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.guard-inner::before,
.guard-inner::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 119, 181, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    filter: blur(100px);
}

.guard-inner::before {
    top: -200px;
    left: -150px;
}

.guard-inner::after {
    top: -200px;
    right: -150px;
}

.guard-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    z-index: 100;
    position: relative;
    mix-blend-mode: difference;
    color: #fff;
}

.guard-logo span {
    color: #0077B5;
    mix-blend-mode: normal;
}

/* Override mix-blend on dark sections */
.invisible-guard.scrolled .guard-logo {
    mix-blend-mode: normal;
}

.btn-ghost-neon {
    display: inline-block;
    padding: 10px 28px;
    border: 1.5px solid rgba(0, 119, 181, 0.7);
    color: #0077B5;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    backdrop-filter: blur(4px);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.15), inset 0 0 15px rgba(0, 119, 181, 0.05);
}

.btn-ghost-neon:hover {
    background: rgba(0, 119, 181, 0.15);
    color: #fff;
    box-shadow: 0 0 30px rgba(0, 119, 181, 0.4), inset 0 0 20px rgba(0, 119, 181, 0.1);
    transform: translateY(-2px);
}

/* ============================================
   DIGITAL UNIVERSE HERO
   ============================================ */
.digital-universe {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.universe-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 119, 181, 0.2);
    box-shadow: 0 0 30px rgba(0, 119, 181, 0.05);
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation: breatheRing 4s ease-in-out infinite;
}

.ring-2 {
    width: 72%;
    height: 72%;
    animation: breatheRing 4s ease-in-out infinite 0.8s;
    border-color: rgba(0, 119, 181, 0.3);
}

.ring-3 {
    width: 44%;
    height: 44%;
    animation: breatheRing 4s ease-in-out infinite 1.6s;
    border-color: rgba(0, 119, 181, 0.5);
    background: rgba(0, 119, 181, 0.03);
}

@keyframes breatheRing {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.holo-stack {
    position: relative;
    width: 200px;
    height: 340px;
    transform-style: preserve-3d;
    perspective: 1000px;
    z-index: 2;
}

.holo-card {
    position: absolute;
    width: 180px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
}

.hc-1 {
    top: 0;
    left: 0;
    height: 300px;
    z-index: 3;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 119, 181, 0.1);
}

.hc-2 {
    top: 20px;
    left: 20px;
    height: 280px;
    z-index: 2;
    opacity: 0.7;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.holo-card-inner {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.hc-nav {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.hc-hero-bar {
    height: 80px;
    background: linear-gradient(135deg, #0A192F 0%, #0A192F 100%);
    border-radius: 12px;
}

.hc-content-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hc-content-rows span {
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
}

.hc-content-rows span:nth-child(2) {
    width: 75%;
}

.hc-cta {
    height: 28px;
    background: rgba(0, 119, 181, 0.3);
    border-radius: 8px;
    width: 60%;
    border: 1px solid rgba(0, 119, 181, 0.4);
}

.holo-glare {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 35%, rgba(255, 255, 255, 0.12) 50%, transparent 65%);
    pointer-events: none;
    transition: transform 0.15s ease-out;
}

.univ-badge {
    position: absolute;
    padding: 6px 14px;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 119, 181, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0077B5;
    box-shadow: 0 0 20px rgba(0, 119, 181, 0.2);
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 5;
}

.badge-a {
    top: 40px;
    right: 0;
    animation-delay: 0s;
}

.badge-b {
    bottom: 60px;
    left: 0;
    animation-delay: 1.5s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    .digital-universe {
        width: 360px;
        height: 360px;
        margin: 0 auto;
    }

    .holo-stack {
        width: 150px;
        height: 260px;
    }

    .hc-1,
    .hc-2 {
        width: 140px;
    }
}

@media (max-width: 768px) {
    .digital-universe {
        width: 280px;
        height: 280px;
    }
}

/* ============================================
   BENTO CARDS: HEARTBEAT PULSE
   ============================================ */


/* ============================================
   ENCRYPTED TESTIMONIALS (Signal/Telegram Elite)
   ============================================ */
.encrypted-testimonials {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(0, 119, 181, 0.03) 0%, transparent 70%);
}

.enc-chat {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.enc-bubble {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 85%;
}

.eb-left {
    align-self: flex-start;
}

.eb-right {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.eb-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A192F, #0077B5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.3);
}

.eb-body {
    background: rgba(22, 33, 54, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    border-top-left-radius: 4px;
    padding: 18px 22px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.eb-body-right {
    border-radius: 18px;
    border-top-right-radius: 4px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.5) 0%, rgba(10, 25, 47, 0.8) 100%);
    border-color: rgba(0, 119, 181, 0.2);
}

.eb-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.eb-name {
    font-size: 0.85rem;
    font-weight: 800;
    color: #0077B5;
}

.eb-verified {
    font-size: 0.7rem;
    color: #34d399;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: verifiedPulse 2s ease-in-out infinite;
}

@keyframes verifiedPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.eb-body p {
    color: #94A3B8;
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 12px;
}

.eb-footer {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: right;
}

.eb-check {
    color: #34d399;
    margin-left: 4px;
}

@media (max-width: 768px) {
    .enc-bubble {
        max-width: 95%;
    }
}

/* ============================================
   FAQ: DIGITAL CAPSULES — THE MORPHING MYSTERY
   ============================================ */
/* Digital Capsule Section Background Unified Below */

.capsule-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.capsule {
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
    background: transparent;
}

.capsule.open {
    border-color: rgba(0, 119, 181, 0.5);
    background: rgba(10, 25, 47, 0.6);
    box-shadow: 0 0 40px rgba(0, 119, 181, 0.1), inset 0 0 20px rgba(0, 119, 181, 0.03);
}

.capsule-trigger {
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.capsule.open .capsule-trigger {
    color: #0077B5;
    font-weight: 600;
}

.capsule-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #94A3B8;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), color 0.3s ease;
}

.capsule.open .capsule-icon {
    transform: rotate(180deg);
    color: #0077B5;
}

.capsule-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.capsule.open .capsule-body {
    grid-template-rows: 1fr;
}

.capsule-inner {
    overflow: hidden;
    padding: 0 0 28px !important;
    color: #94A3B8;
    /* Lighter slate */
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.7;
}

.capsule.open .capsule-inner {
    padding-bottom: 24px;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }
}

/* Header (Desktop Only) */
.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(10, 25, 47, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    padding: 12px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    cursor: default;
}

.logo span {
    color: var(--accent-blue);
}

.desktop-nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--text-main);
}

/* Floating Dock (The Floating Galaxy) */
.mobile-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 9998;
    background: linear-gradient(to bottom, var(--bg-color) 0%, transparent 100%);
}

.floating-dock {
    position: fixed;
    bottom: 24px;
    /* bottom-6 = 24px */
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 119, 181, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dock-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dock-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dock-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px) scale(1.2);
    color: var(--accent-blue);
}

.dock-cta {
    background: var(--accent-blue);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.dock-cta:hover {
    background: var(--accent-blue-hover);
    transform: translateY(-8px) scale(1.3) rotate(5deg);
}

@media (max-width: 768px) {
    .floating-dock {
        bottom: 20px;
        width: 90%;
        justify-content: center;
    }

    .dock-container {
        gap: 10%;
        justify-content: space-between;
        width: 100%;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1010;
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(15px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-nav-link {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.mobile-nav-overlay.active .mobile-nav-link {
    transform: translateY(0);
    opacity: 1;
}

/* Stagger animation for links */
.mobile-nav-overlay.active .mobile-nav-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-nav-link:hover {
    color: var(--accent-blue);
}

.mobile-btn-link {
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--accent-blue);
    border-radius: 8px;
    font-size: 1.5rem;
    color: #fff !important;
}

/* Portal Hero */
.portal-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.portal-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

@media (max-width: 992px) {
    .portal-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-portal-wrap {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .portal-container {
        padding-top: 80px;
        /* space for mobile-top-bar */
    }

    .crystal-sheet {
        width: 240px;
        height: 400px;
    }
}

.portal-text-glow {
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 119, 181, 0.8), 0 0 40px rgba(0, 119, 181, 0.4);
}

.hero-portal-wrap {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2000px;
}

.portal-aura {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(0, 119, 181, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(0, 119, 181, 0.2), inset 0 0 60px rgba(0, 119, 181, 0.2);
    animation: rotateAura 20s linear infinite;
}

.portal-aura::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(0, 119, 181, 0.1);
    border-radius: 50%;
    animation: rotateAura 15s linear infinite reverse;
}

@keyframes rotateAura {
    from {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

.portal-core {
    position: relative;
    z-index: 3;
    transform-style: preserve-3d;
}

.glass-sheet-target {
    width: 280px;
    height: 480px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    position: relative;
    transform: rotateY(-15deg) rotateX(10deg);
    transition: transform 0.2s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.glass-sheet-content {
    width: 100%;
    height: 100%;
    padding: 20px;
}

.sheet-ui-mockup {
    width: 100%;
    height: 100%;
    background: #0A192F;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
}

.mockup-nav {
    height: 30px;
    background: rgba(0, 119, 181, 0.2);
    border-radius: 6px;
}

.mockup-hero {
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.mockup-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mockup-cards span {
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.glass-reflection {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.1) 50%, transparent 55%);
    animation: reflectionSlide 5s infinite;
}

@keyframes reflectionSlide {
    0% {
        transform: translate(-30%, -30%);
    }

    100% {
        transform: translate(30%, 30%);
    }
}

.orbital {
    position: absolute;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.orb-1 {
    top: 20%;
    right: 10%;
    animation: orbit1 10s ease-in-out infinite;
}

.orb-2 {
    bottom: 20%;
    left: 10%;
    animation: orbit2 8s ease-in-out infinite;
}

@keyframes orbit1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, 30px);
    }
}

@keyframes orbit2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -20px);
    }
}

/* Kinetic Grid Section */
.kinetic-grid-section {
    padding: 100px 0;
    background: #0A192F;
    position: relative;
    overflow: hidden;
}

.kinetic-bg-text {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.1;
}

.scrolling-text {
    font-size: 12vw;
    font-weight: 900;
    white-space: nowrap;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    line-height: 1;
    animation: marquee 40s linear infinite;
}

.scrolling-text.reverse {
    animation: marqueeReverse 40s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marqueeReverse {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.data-chip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.data-chip {
    background: rgba(10, 25, 47, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

.data-chip:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-blue);
    background: rgba(10, 25, 47, 0.95);
}

.chip-inner {
    position: relative;
    z-index: 2;
}

.chip-icon {
    margin-bottom: 20px;
}

.data-chip h3 {
    margin-bottom: 15px;
    color: #fff;
}

/* Form Fixes */
.quote-form {
    width: 100%;
    box-sizing: border-box;
}

.input-field input,
.input-field select,
.quote-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: block;
}

@media (max-width: 768px) {
    .contact-box {
        padding: 40px 20px;
        width: 100%;
        box-sizing: border-box;
    }
}

.chip-glow {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(circle at var(--px, 50%) var(--py, 50%), rgba(0, 119, 181, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.data-chip:hover .chip-glow {
    opacity: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10;
    animation: particleOut 1s forwards ease-out;
}

@keyframes particleOut {
    to {
        transform: translate(var(--dx), var(--dy)) scale(0);
        opacity: 0;
    }
}

/* Wallet Stack Section */
.wallet-stack-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.wallet-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 150px;
    /* Reduced gap since sticky will close it */
    padding-bottom: 200px;
}

@media (max-width: 768px) {
    .wallet-container {
        padding: 0 15px;
        gap: 100px;
    }
}

.wallet-card {
    position: sticky;
    top: 120px;
    width: 100%;
    max-width: 900px;
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    transform-origin: top center;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wallet-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.5s ease;
}

.wallet-card:hover .wallet-card-bg {
    transform: scale(1.1);
}

.wallet-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.wallet-card-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    right: 50px;
    z-index: 2;
}

.card-tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--accent-blue);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
}

.wallet-card h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.wallet-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-bottom: 30px;
}

.discover-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: all 0.3s;
}

.discover-link:hover {
    color: #fff;
    transform: translateX(10px);
}

/* Sticky Logic Classes */
.wallet-card.is-stacked {
    filter: blur(2px);
    opacity: 0.6;
}

@media (max-width: 768px) {
    .portal-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-portal-wrap {
        margin-top: 50px;
        height: 400px;
    }

    .glass-sheet-target {
        width: 220px;
        height: 380px;
    }

    .wallet-card {
        height: 400px;
        top: 100px;
    }

    .wallet-card-content {
        bottom: 30px;
        left: 30px;
        right: 30px;
    }

    .wallet-card h3 {
        font-size: 1.8rem;
    }
}

/* Fluid Morphing Accordion */
.split-faq-section {
    padding: 100px 0;
}

.faq-pill {
    background: rgba(10, 25, 47, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-pill.active {
    background: #0A192F;
    /* Night Blue Morph */
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-pill-header {
    padding: 25px 30px;
    background: transparent;
    border: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-pill-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-pill.active .faq-pill-body {
    grid-template-rows: 1fr;
}

.faq-pill-inner {
    overflow: hidden;
}

.faq-pill-content {
    padding: 0 30px 30px;
    color: rgba(255, 255, 255, 0.8);
}

.pill-icon {
    font-size: 1.5rem;
    transition: transform 0.5s ease;
}

.faq-pill.active .pill-icon {
    transform: rotate(45deg);
}


/* Existing Components Polish */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

/* Decorative background glow */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--accent-blue);
    filter: blur(200px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    perspective: 1000px;
}

/* Float Anim */
@keyframes float {
    0% {
        transform: translateY(0px) rotateY(-10deg) rotateX(5deg);
    }

    50% {
        transform: translateY(-15px) rotateY(-10deg) rotateX(5deg);
    }

    100% {
        transform: translateY(0px) rotateY(-10deg) rotateX(5deg);
    }
}

.image-wrapper {
    position: relative;
    border-radius: 12px;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

.image-wrapper:hover {
    transform: rotateY(0) rotateX(0);
    animation: none;
}

.image-wrapper img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--card-border);
}

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: -1;
}

/* Before After Slider */
.before-after-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--card-border);
}

.img-after {
    display: block;
    width: 100%;
    height: auto;
}

.img-before-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-right: 2px solid white;
    z-index: 1;
}

.img-before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    object-position: left;
    filter: sepia(0.5) contrast(0.8);
}

.slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: white;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 2;
}

.slider-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 3;
}

.slider-label {
    position: absolute;
    bottom: 10px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.8rem;
    border-radius: 4px;
    pointer-events: none;
    z-index: 1;
}

.label-before {
    left: 10px;
}

.label-after {
    right: 10px;
}

/* Scarcity Bar */
.scarcity-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    font-size: 0.9rem;
    color: var(--accent-blue);
    font-weight: 500;
}

.pulsing-fire {
    display: inline-block;
    animation: pulseFire 2s infinite;
}

@keyframes pulseFire {
    0% {
        transform: scale(1);
        opacity: 1;
        text-shadow: 0 0 5px rgba(255, 71, 87, 0.5);
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
        text-shadow: 0 0 15px rgba(255, 71, 87, 0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
        text-shadow: 0 0 5px rgba(255, 71, 87, 0.5);
    }
}

/* Social Proof */
.social-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid var(--card-border);
}

.avatars {
    display: flex;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent-blue);
    border: 2px solid var(--bg-color);
    margin-left: -10px;
}

.avatar:nth-child(2) {
    background: #00bfff;
}

.avatar:nth-child(3) {
    background: #8a2be2;
}

.social-proof-badge span {
    font-size: 0.9rem;
    color: #ccc;
}

.avatar-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--bg-color);
    margin-left: -10px;
    object-fit: cover;
}

.avatar-img:first-child {
    margin-left: 0;
}

.client-logos {
    display: flex;
    gap: 20px;
    margin: 15px 0 30px 0;
    opacity: 0.5;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.3s, transform 0.3s, color 0.3s;
    letter-spacing: 1px;
}

.text-logo {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.text-logo span {
    font-weight: 300;
    font-size: 0.8rem;
    opacity: 0.7;
}

.logo-item:hover {
    filter: grayscale(0%) brightness(1);
    transform: translateY(-2px);
    color: var(--accent-blue);
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-desc {
    text-align: center;
    max-width: 600px;
    margin: -40px auto 60px;
    font-size: 1.1rem;
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.trust-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.icon-wrap {
    width: 70px;
    height: 70px;
    background: rgba(0, 119, 181, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon {
    font-size: 2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.mini-testimonial {
    max-width: 600px;
    margin: 50px auto 0;
    text-align: center;
    padding: 20px;
    background: rgba(0, 119, 181, 0.05);
    border-radius: 12px;
    border: 1px dashed rgba(0, 119, 181, 0.3);
}

.mini-testimonial p {
    font-style: italic;
    margin-bottom: 10px;
    color: #e0e0e0;
    font-size: 1.1rem;
}

/* Packages Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), rgba(0, 119, 181, 0.05));
    border-color: var(--accent-blue);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px var(--accent-glow);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 0.95rem;
    margin-bottom: 25px;
    color: #ccc;
}

.features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features hr {
    border: none;
    border-top: 1px solid var(--card-border);
    margin: 15px 0;
}

.features li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

.features li.highlight {
    font-weight: 600;
    color: white;
}

.delivery {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.delivery span {
    color: white;
    font-weight: 600;
}

.pricing-card .btn {
    width: 100%;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.portfolio-item {
    cursor: pointer;
}

.img-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
}

.img-container:hover img {
    transform: scale(1.05);
}

.img-container:hover .overlay {
    opacity: 1;
}

.portfolio-item h3 {
    margin-top: 20px;
    font-size: 1.3rem;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(5px);
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #ddd;
}

.testimonial-card h4 {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
    opacity: 0.8;
}

/* Blueprint Terminal UI (Nasıl Çalışırız) */
.blueprint-section {
    position: relative;
    overflow: hidden;
}

.terminal-ui {
    background: #0A192F;
    border: 1px solid var(--accent-blue);
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    /* Normal dark shadow instead of blue glow */
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.terminal-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--card-border);
}

.terminal-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.terminal-title {
    margin-left: auto;
    margin-right: auto;
    font-family: monospace;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-right: 40px;
    /* offset for dots to center properly */
}

.terminal-body {
    display: flex;
    flex-wrap: wrap;
}

.blueprint-menu {
    flex: 1 1 350px;
    background: rgba(0, 0, 0, 0.4);
    border-right: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
}

.blueprint-tab {
    position: relative;
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 20px 25px;
    text-align: left;
    font-size: 1rem;
    font-family: var(--font-sans);
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.blueprint-tab:hover {
    background: rgba(255, 255, 255, 0.03);
    color: white;
}

.blueprint-tab.active {
    color: white;
    background: rgba(0, 119, 181, 0.1);
    border-left: 3px solid var(--accent-blue);
    font-weight: 600;
}

.bp-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--accent-blue);
    width: 0%;
    transition: width 0.1s linear;
}

.blueprint-content {
    flex: 2 1 500px;
    padding: 40px;
    position: relative;
    min-height: 300px;
}

.blueprint-pane {
    display: none;
    animation: slideInBlue 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes slideInBlue {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: drop-shadow(0 0 15px rgba(0, 119, 181, 0.6));
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: drop-shadow(0 0 0 rgba(0, 119, 181, 0));
    }
}

.blueprint-pane.active {
    display: block;
}

.blueprint-pane h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.blueprint-pane p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.blueprint-outputs {
    background: rgba(0, 119, 181, 0.05);
    border-left: 3px solid var(--accent-blue);
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

.blueprint-outputs strong {
    display: block;
    color: white;
    margin-bottom: 10px;
    font-family: monospace;
}

.blueprint-outputs ul {
    list-style: none;
    padding-left: 0;
}

.blueprint-outputs ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.blueprint-outputs ul li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-family: monospace;
    font-weight: bold;
    opacity: 0.5;
}

/* Bento Grid (Üretim Standartları) */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.bento-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    text-align: left;
}

.bento-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 119, 181, 0.1);
    border-color: rgba(0, 119, 181, 0.4);
}

.bento-box h4 {
    margin: 15px 0 10px;
    font-size: 1.2rem;
    color: white;
}

.bento-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Lighthouse Scores */
.lighthouse-scores {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.score-ring {
    position: relative;
    width: 80px;
    height: 80px;
    text-align: center;
}

.score-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(39, 201, 63, 0.1);
    stroke-width: 3;
}

.circle {
    fill: none;
    stroke: #27c93f;
    stroke-width: 3;
    stroke-linecap: round;
}

.score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: #27c93f;
    font-family: monospace;
}

.score-ring span {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
    transform: translateX(-15%);
    /* adjust centering */
}

/* Tech Stack Marquee */
.tech-stack {
    padding: 60px 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.marquee-scroller {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.marquee-content span {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    margin: 0 40px;
    letter-spacing: 2px;
    transition: color 0.3s, -webkit-text-stroke 0.3s;
}

.marquee-content span:hover {
    color: var(--text-main);
    -webkit-text-stroke: 1px var(--text-main);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

@keyframes scroll {
    to {
        transform: translateX(-50%);
    }
}

/* FAQ Styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.25rem;
    font-family: var(--font-display);
    font-weight: 700;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent-blue);
}

.faq-question .icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.open .faq-question .icon {
    transform: rotate(45deg);
    color: var(--accent-blue);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    color: var(--text-muted);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding-bottom: 25px;
}

/* WhatsApp Action */
.faq-action {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed var(--card-border);
}

.faq-action p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: white;
}

.whatsapp-btn {
    border-color: #25D366;
    color: #25D366;
}

.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
    color: #25D366;
}

/* Contact Section */
.contact-box {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--accent-blue);
    filter: blur(150px);
    opacity: 0.15;
    z-index: 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.form-group.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-field,
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #e0e0e0;
}

input,
select,
textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: white;
    padding: 14px 16px;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
    margin-top: 10px;
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--card-border);
    padding: 40px 0;
    margin-top: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.secret-message {
    text-align: center;
    font-size: 0.75rem;
    color: #2a2f3a;
    margin-top: 50px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    cursor: default;
}

.secret-message:hover {
    color: var(--accent-blue);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .footer-links a {
        margin-left: 0;
    }

    footer p {
        line-height: 1.8;
    }
}



/* Easter Egg (Hover Code) */
.easter-egg {
    position: relative;
    cursor: crosshair;
    display: inline-block;
    transition: color 0.2s;
}

.easter-egg:hover {
    color: transparent;
}

.easter-egg:hover::after {
    content: attr(data-code);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-blue);
    font-family: monospace;
    font-size: 0.9em;
    font-weight: bold;
    background: rgba(26, 26, 29, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    border: 1px solid var(--accent-blue);
    box-shadow: 0 0 10px rgba(0, 119, 181, 0.4);
    z-index: 10;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@media (min-width: 769px) {
    .floating-wa {
        display: none;
    }
}

/* Animations Core */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards ease-out;
}

/* Reveal Animations (Blur-to-Focus Overhaul) */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    filter: blur(8px);
    will-change: transform, opacity, filter;
    transition:
        opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal {
    transform: translateY(40px);
}

.reveal-up {
    transform: translateY(60px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal.reveal-visible,
.reveal-left.reveal-visible,
.reveal-right.reveal-visible,
.reveal-up.reveal-visible {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
    filter: blur(0) !important;
}

/* Stagger Children Logic */
.pricing-pane.active .minimal-card:nth-child(1),
.apple-bento-grid .bento-item:nth-child(1) {
    transition-delay: 0.1s;
}

.pricing-pane.active .minimal-card:nth-child(2),
.apple-bento-grid .bento-item:nth-child(2) {
    transition-delay: 0.25s;
}

.pricing-pane.active .minimal-card:nth-child(3),
.apple-bento-grid .bento-item:nth-child(3) {
    transition-delay: 0.4s;
}

.pricing-pane.active .minimal-card:nth-child(4),
.apple-bento-grid .bento-item:nth-child(4) {
    transition-delay: 0.55s;
}

/* Custom Cursor Styles */
.cursor-outer {
    position: fixed;
    width: 35px;
    height: 35px;
    border: 1px solid var(--accent-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s, background 0.3s;
    transform: translate(-50%, -50%);
}

.cursor-inner {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--accent-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transition: transform 0.1s ease-out;
    transform: translate(-50%, -50%);
}

.cursor-hover .cursor-outer {
    width: 60px;
    height: 60px;
    background: rgba(0, 119, 181, 0.1);
    border-color: var(--accent-blue);
}

@media (max-width: 1024px) {

    .cursor-outer,
    .cursor-inner {
        display: none;
    }
}

.blueprint-section,
.ide-section,
#paketler,
.digital-capsule-section,
#teklif,
footer {
    position: relative;
    background: transparent !important;
    /* Fixed background is on body now */
    overflow: hidden;
    border: none !important;
    margin-top: 0 !important;
}

.blueprint-section::before,
.ide-section::before,
#paketler::before,
.digital-capsule-section::before,
#teklif::before,
footer::before {
    display: none;
    /* Removed local grids */
}

#paketler {
    padding-top: 100px;
    padding-bottom: 0px;
}

.digital-capsule-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

#teklif {
    padding-top: 20px;
    padding-bottom: 100px;
}

footer {
    padding-top: 80px;
    padding-bottom: 40px;
}

footer .logo {
    color: #ffffff !important;
}

footer .logo .accent-dot {
    color: #0077B5 !important;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-blue);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
    z-index: 2;
}

/* Fix Popular Badge Mobile */
@media (max-width: 768px) {
    .popular-badge {
        position: relative;
        top: 0;
        right: 0;
        margin: 0 auto 20px auto;
        display: table;
        text-align: center;
    }
}

/* Button Overhaul */
.btn {
    font-family: var(--font-mono) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    /* tracking-widest */
    font-weight: 700 !important;
    /* Bold as requested */
    text-align: center;
}

.delay-1 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
    transition-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Portal Hero Overhaul */
.portal-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 70% 50%, rgba(0, 119, 181, 0.05) 0%, transparent 50%);
}

.portal-aura {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 2px solid rgba(0, 119, 181, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 100px rgba(0, 119, 181, 0.1), inset 0 0 100px rgba(0, 119, 181, 0.1);
    animation: rotateAura 30s linear infinite;
}

@keyframes rotateAura {
    from {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

.crystal-sheet {
    width: 320px;
    height: 550px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    position: relative;
    transform-style: preserve-3d;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    transition: transform 0.1s ease-out;
}

.crystal-content {
    width: 100%;
    height: 100%;
    padding: 20px;
    transform: translateZ(30px);
}

.crystal-ui-mockup {
    width: 100%;
    height: 100%;
    background: #0A192F;
    border-radius: 25px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.crystal-reflection {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 45%, rgba(255, 255, 255, 0.1) 50%, transparent 55%);
    pointer-events: none;
}

/* Bento Kinetic Grid */
.kinetic-bento-section {
    padding: 120px 0;
    background: #0A192F;
    position: relative;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 320px);
    gap: 25px;
}



/* Social Proof Message Bubbles */
.chat-wall {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.chat-bubble {
    max-width: 80%;
    padding: 25px 30px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.bubble-left {
    align-self: flex-start;
    background: rgba(17, 34, 64, 0.8);
    border-bottom-left-radius: 8px;
}

.bubble-right {
    align-self: flex-end;
    background: linear-gradient(135deg, #0A192F 0%, #0A192F 100%);
    border-bottom-right-radius: 8px;
}

.bubble-sender {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.bubble-text {
    font-size: 1.15rem;
    color: #FFFFFF;
    line-height: 1.6;
}

.bubble-time {
    font-size: 0.75rem;
    text-align: right;
    margin-top: 15px;
    opacity: 0.4;
}

/* Morphing Mystery FAQ */
.faq-pill {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 25px !important;
    margin-bottom: 15px !important;
}

.faq-pill.active {
    background: #0A192F !important;
    /* Deep Titanium */
    border-color: var(--accent-blue) !important;
}

.faq-pill-header {
    background: transparent !important;
    padding: 35px !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
}

/* Glow Button & Mobile Optimization */
.glow-btn {
    box-shadow: 0 0 20px rgba(0, 119, 181, 0.4);
    transition: all 0.4s ease;
}

.glow-btn:hover {
    box-shadow: 0 0 40px rgba(0, 119, 181, 0.8);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-lg,
    .bento-md,
    .bento-sm {
        grid-column: span 1;
        padding: 30px;
    }

    .chat-bubble {
        max-width: 95%;
    }
}

/* ==========================================================
   INTERACTIVE SHOWCASE (ÖRNEK SİTELER)
   ========================================================== */
.showcase-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.showcase-mockup {
    position: relative;
    width: 100%;
    border-radius: 12px;
    background: #112240;
    padding: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-frame {
    border-radius: 8px;
    overflow: hidden;
    background: #0A192F;
}

.mockup-header {
    background: #334155;
    padding: 10px;
    display: flex;
    gap: 8px;
}

.mockup-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.mockup-screen {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    background: #0A192F;
}

.mockup-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: opacity 0.5s ease-in-out;
}

.showcase-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.showcase-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-item:hover,
.showcase-item.active {
    background: rgba(0, 119, 181, 0.1);
    /* Primary Blue 10% */
    border-color: #0077B5;
    transform: translateX(10px);
}

.showcase-item h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #fff;
    transition: color 0.3s;
}

.showcase-item.active h3 {
    color: #0077B5;
}

.showcase-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* ==========================================================
   ÜRETİM STANDARTLARI (GERÇEK KOD MATRİSİ)
   ========================================================== */
.dev-console-section .network-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    margin-top: 50px;
}

.network-node {
    background: rgba(10, 25, 47, 0.95);
    border: 1px solid rgba(0, 119, 181, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 2;
}

.network-grid::after {
    /* Optional connector line behind */
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    background: repeating-linear-gradient(to right, #0077B5, #0077B5 4px, transparent 4px, transparent 10px);
    z-index: 1;
    opacity: 0.3;
}

.network-node:hover {
    transform: translateY(-5px);
    border-color: #0077B5;
    box-shadow: 0 10px 30px rgba(0, 119, 181, 0.15);
}

.node-icon lord-icon {
    transition: filter 0.3s ease, transform 0.5s ease;
}

.network-node:hover .node-icon lord-icon {
    filter: drop-shadow(0 0 10px #0077B5);
    transform: rotateY(180deg);
}

.matrix-code {
    position: absolute;
    bottom: -150px;
    left: 10px;
    right: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    color: #FFFFFF;
    opacity: 0;
    line-height: 1.5;
    pointer-events: none;
    transition: bottom 0.6s ease, opacity 0.4s ease;
    z-index: 0;
    text-shadow: 0 0 5px #FFFFFF;
}

.network-node:hover .matrix-code {
    bottom: 20px;
    opacity: 0.05;
}

/* ==========================================================
   ÇÖZÜM PAKETLERİ (PREMIUM PRICING)
   ========================================================== */
.premium-pricing-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.premium-pricing-grid .pricing-card {
    height: 100%;
}

.premium-pricing-grid .pricing-card.basic,
.premium-pricing-grid .pricing-card.advanced {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: scale(0.95);
    z-index: 1;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.premium-pricing-grid .pricing-card.basic:hover,
.premium-pricing-grid .pricing-card.advanced:hover {
    opacity: 1;
    transform: scale(0.97);
}

.premium-pricing-grid .pricing-card.business.popular {
    background: #0A192F;
    border: 2px solid #0077B5;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 119, 181, 0.2);
    z-index: 2;
    position: relative;
}

.premium-pricing-grid .pricing-card.business.popular:hover {
    transform: scale(1.08);
}

.badge.glow-badge {
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.5);
    background: #0077B5;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(0, 119, 181, 0.4);
}

.chk-icon {
    color: #0077B5;
    font-weight: bold;
    margin-right: 8px;
}

/* ==========================================================
   SPOTLIGHT CARDS (NEDEN BİZİ TERCİH ETMELİSİNİZ)
   ========================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-card {
    background: #0A192F;
    border: 1px solid #112240;
    /* border-slate-800 */
    border-radius: 1.5rem;
    /* rounded-2xl */
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-height: 220px;
}

.bento-card:hover {
    border-color: rgba(0, 119, 181, 0.5);
    box-shadow: 0 0 20px rgba(0, 119, 181, 0.1);
}

.bento-spotlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
            rgba(0, 119, 181, 0.08),
            transparent 40%);
}

.bento-card:hover .bento-spotlight {
    opacity: 1;
}

.bento-icon {
    color: #0077B5;
    margin-bottom: 0.25rem;
}

.bento-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.bento-card p {
    color: #94A3B8;
    /* text-slate-400 */
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   IDE WINDOW (ÜRETİM STANDARTLARI)
   ========================================================== */
.ide-section {
    padding: 100px 0;
    background: #0A192F;
}

.ide-window {
    background: #0A192F;
    border: 1px solid #30363d;
    border-radius: 16px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    max-width: 1000px;
    margin: 4rem auto 0;
    position: relative;
}

.ide-header {
    background: #112240;
    padding: 0 16px;
    height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #30363d;
}

.ide-controls {
    display: flex;
    gap: 8px;
    margin-right: 32px;
}

.ide-controls .control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red {
    background: #ff5f56;
}

.control.yellow {
    background: #ffbd2e;
}

.control.green {
    background: #27c93f;
}

.ide-tabs-wrapper {
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
}

.ide-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.ide-tabs {
    display: flex;
    height: 48px;
}

.ide-tab {
    background: transparent;
    border: none;
    border-right: 1px solid #30363d;
    padding: 0 20px;
    color: #94A3B8;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    white-space: nowrap;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.ide-tab.active {
    background: #0A192F;
    color: #FFFFFF;
}

.tab-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--accent-blue);
    width: 0%;
    transition: width 0.1s linear;
}

.ide-body {
    display: flex;
    min-height: 450px;
}

.ide-code-panel {
    flex: 1.4;
    background: #0A192F;
    padding: 32px;
    display: flex;
    border-right: 1px solid #30363d;
    overflow: hidden;
}

.code-line-numbers {
    display: flex;
    flex-direction: column;
    color: #484f58;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.85rem;
    text-align: right;
    padding-right: 20px;
    user-select: none;
    line-height: 1.6;
}

.code-content {
    flex: 1;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #c9d1d9;
}

.code-block {
    display: none;
}

.code-block.active {
    display: block;
    animation: codeIn 0.3s ease;
}

@keyframes codeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Syntax Highlighting */
.keyword {
    color: #ff7b72;
}

.function {
    color: #d2a8ff;
}

.string {
    color: #a5d6ff;
}

.number {
    color: #f2cc60;
}

.ide-benefit-panel {
    flex: 1;
    padding: 48px;
    background: #0A192F;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #0077B5;
    margin-bottom: 1rem;
}

.benefit-content {
    display: none;
}

.benefit-content.active {
    display: block;
    animation: benefitIn 0.4s ease;
}

@keyframes benefitIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-content h3 {
    font-size: 1.75rem;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.benefit-content p {
    color: #94A3B8;
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .ide-body {
        flex-direction: column;
    }

    .ide-code-panel {
        display: none;
    }

    .ide-benefit-panel {
        padding: 40px 24px;
        text-align: center;
    }

    .benefit-content h3 {
        font-size: 1.5rem;
    }
}

/* ========================================================== */


/* ==========================================================
   SCROLL REVEAL TYPOGRAPHY (NEDEN BİZ?)
   ========================================================== */
.scroll-reveal-container {
    display: flex;
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 100px;
}

.sr-left {
    flex: 1;
    position: sticky;
    top: 150px;
}

.sr-left .section-title {
    font-size: 4rem;
    line-height: 1.1;
    text-align: left;
    margin: 0;
}

.sr-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.sr-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.sr-icon {
    flex-shrink: 0;
    margin-top: 10px;
}

.sr-text {
    font-size: 2.5rem;
    line-height: 1.4;
    color: rgba(226, 232, 240, 0.2);
    /* very dark/dim text initially */
    transition: color 0.5s ease;
}

.sr-item.revealed .sr-text {
    color: rgba(226, 232, 240, 1);
}

.sr-text .highlight {
    color: rgba(0, 119, 181, 0.2);
    transition: color 0.5s ease, text-shadow 0.5s ease;
}

.sr-item.revealed .sr-text .highlight {
    color: #0077B5;
    text-shadow: 0 0 15px rgba(0, 119, 181, 0.4);
}

/* ==========================================================
   ENCRYPTED CHAT BUBBLES (MÜŞTERİLER NE DİYOR)
   ========================================================== */
.chat-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.chat-bubble {
    max-width: 80%;
    padding: 25px 30px;
    border-radius: 20px;
    background: #112240;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.chat-bubble.left {
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.chat-bubble.right {
    align-self: flex-end;
    border-bottom-right-radius: 5px;
    background: #0A192F;
    border-color: rgba(0, 119, 181, 0.3);
}

.bubble-content p {
    font-size: 1.15rem;
    color: #FFFFFF;
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.chat-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.chat-name {
    color: #94A3B8;
    font-weight: bold;
}

.chat-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #0077B5;
    font-weight: 500;
}

.chat-verified svg {
    width: 14px;
    height: 14px;
}

/* Enhanced Fade Up for Bubbles */
.chat-bubble.fade-up {
    transform: translateY(40px);
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.chat-bubble.fade-up.active {
    transform: translateY(0);
    opacity: 1;
}

/* Infinite Customer Scroll */
.customer-scroller {
    width: 100%;
    overflow: hidden;
    padding: 3rem 0;
    position: relative;
    background: rgba(10, 25, 47, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.customer-marquee {
    display: flex;
    width: max-content;
    gap: 4rem;
    animation: marqueeScroll 40s linear infinite;
}

.customer-marquee span {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.customer-marquee span:hover {
    color: var(--accent-blue);
}

.customer-scroller:hover .customer-marquee {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Pricing (Teklifler) Fix */
@media (max-width: 768px) {
    .dynamic-tier-container {
        padding: 0 10px;
    }

    .dynamic-card {
        width: 100% !important;
        position: relative;
    }

    .tier-toggle {
        flex-direction: column;
        gap: 0.5rem;
        background: transparent;
        padding: 0;
    }

    .tier-btn {
        width: 100%;
        border: 1px solid var(--card-border);
        background: var(--card-bg);
    }

    .section-title {
        font-size: 2rem !important;
    }

    h1 {
        font-size: 2.25rem !important;
    }

    .btn {
        padding: 16px 28px !important;
        /* Larger touch targets */
    }
}

/* ==========================================================
   DYNAMIC TIER CARD (ÇÖZÜM PAKETLERİ)
   ========================================================== */
.dynamic-tier-section {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at center, #112240 0%, #0A192F 70%);
}

.dynamic-tier-container {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    /* Ensure equal height */
}

@media (max-width: 1024px) {
    .dynamic-tier-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 768px) {

    body,
    html {
        overflow-x: clip !important;
        /* safe alternative to hidden for sticky */
    }

    .dynamic-tier-section,
    .dynamic-tier-section .container {
        overflow: visible !important;
        display: block !important;
    }

    .dynamic-tier-container {
        display: block !important;
        /* prevent flex flattening */
        width: 100%;
        padding: 0 20px;
        overflow: visible !important;
    }

    .dynamic-card {
        position: sticky !important;
        top: 80px !important;
        width: 100% !important;
        margin-bottom: 300px !important;
        background: rgba(17, 34, 64, 0.7) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        border: 1px solid transparent !important;
        box-shadow: 0 4px 15px rgba(0, 119, 181, 0.05) !important;
        padding-bottom: 32px !important;
        border-radius: 24px !important;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .dynamic-card:last-child {
        margin-bottom: 0 !important;
        padding-bottom: 32px !important;
        border-bottom-left-radius: 24px !important;
        border-bottom-right-radius: 24px !important;
    }

    .dynamic-card:nth-child(1) {
        z-index: 10 !important;
    }

    .dynamic-card:nth-child(2) {
        z-index: 20 !important;
    }

    .dynamic-card:nth-child(3) {
        z-index: 30 !important;
    }
}

.dynamic-card {
    height: 100%;
    background: rgba(17, 34, 64, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid transparent;
    border-radius: 24px;
    padding: 40px 30px 32px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.05);
}

.dynamic-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.dynamic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 119, 181, 0.2), 0 0 20px rgba(0, 119, 181, 0.1);
}

.dynamic-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tier-header {
    margin-bottom: 20px;
}

.tier-price-wrap {
    margin-bottom: 15px;
}

.tier-features {
    flex: 1;
    /* Pushes content down */
    margin-bottom: 30px;
}

.dynamic-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 119, 181, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    filter: blur(40px);
}

.delivery-badge {
    margin-top: auto;
    background: rgba(0, 119, 181, 0.1);
    border: 1px solid rgba(0, 119, 181, 0.3);
    color: var(--accent-blue);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.tier-action-btn {
    width: 100%;
    margin-top: auto;
    margin-bottom: 0;
}

/* Cleaned up duplicate/broken definitions */
.dynamic-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.tier-header {
    text-align: center;
}

.tier-header h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
}

.tier-price-wrap {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
    font-family: inherit;
    font-weight: 800;
    color: #fff;
}

.price-prefix {
    font-size: 1.5rem;
    color: #94A3B8;
}

.price-amount {
    font-size: 4rem;
    line-height: 1;
}

.price-separator {
    font-size: 2rem;
    color: #94A3B8;
    margin: 0 10px;
}

.price-currency {
    font-size: 1rem;
    color: #94A3B8;
    font-weight: 500;
}

.delivery-badge {
    background: rgba(0, 119, 181, 0.1);
    color: var(--accent-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    align-self: center;
}

.tier-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tier-features li {
    font-size: 1.05rem;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}

.tier-features li.highlight {
    color: #fff;
    font-weight: bold;
}

.tier-action-btn {
    width: 100%;
    margin-top: auto;
    margin-bottom: 0;
}

/* ==========================================================
   FLOATING SPLIT-ACCORDION (SSS)
   ========================================================== */
.split-faq-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding-top: 80px;
}

.faq-left {
    flex: 1;
    position: sticky;
    top: 150px;
}

.faq-left .section-title {
    font-size: 3.5rem;
    line-height: 1.2;
    text-align: left;
    margin: 0;
}

.faq-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-pill {
    background: #112240;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: background 0.3s;
}

.faq-pill:hover {
    background: #253347;
}

.faq-pill-header {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
}

.pill-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #0077B5;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-pill.active .pill-icon {
    transform: rotate(45deg);
    color: #ff5f56;
}

.faq-pill-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-pill-content {
    padding: 0 30px 25px;
    color: #94A3B8;
    line-height: 1.6;
}

/* ==========================================================
   AMBIENT AURORA & 3D HOVERING DEVICE (HERO)
   ========================================================== */
.hero-premium-tech {
    position: relative;
    overflow: visible;
    /* To allow badges to float */
}

.ambient-aurora {
    position: absolute;
    top: -50%;
    left: 20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 119, 181, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    z-index: -1;
    animation: breathingAurora 10s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes breathingAurora {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2) translate(5%, 5%);
        opacity: 1;
    }
}

.animated-gradient-text {
    background: linear-gradient(90deg, #FFFFFF 0%, #0077B5 50%, #FFFFFF 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shineText 4s linear infinite;
    display: inline-block;
}

@keyframes shineText {
    to {
        background-position: 200% center;
    }
}

.hovering-device-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    perspective: 1000px;
}

.device-3d {
    position: relative;
    width: 100%;
    transform-style: preserve-3d;
    animation: floatDevice 6s ease-in-out infinite;
    transition: transform 0.1s ease-out;
    /* For JS Tilt */
    z-index: 2;
}

@keyframes floatDevice {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.macbook-frame {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.6));
}

.screen-content {
    position: absolute;
    top: 5.5%;
    left: 11.8%;
    width: 76.5%;
    height: 78%;
    overflow: hidden;
    z-index: 1;
    border-radius: 4px;
    background: #000;
}

.screen-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.device-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(0, 119, 181, 0.2) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.float-badge {
    position: absolute;
    background: rgba(10, 25, 47, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
    pointer-events: none;
}

.badge-1 {
    top: 10%;
    left: -10%;
    animation: floatBadge1 7s ease-in-out infinite;
}

.badge-2 {
    bottom: 20%;
    right: -15%;
    animation: floatBadge2 8s ease-in-out infinite alternate;
}

@keyframes floatBadge1 {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes floatBadge2 {

    0%,
    100% {
        transform: translateY(0) rotate(5deg);
    }

    50% {
        transform: translateY(-20px) rotate(-5deg);
    }
}


/* ==========================================================
   3D HOLOGRAPHIC SWIPE STACK (MOBILE ONLY)
   ========================================================== */
.mobile-hologram-container {
    padding-top: 60px;
    padding-bottom: 80px;
    overflow: hidden;
    display: none;
    /* hidden on desktop */
}

.hologram-stack {
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin: 0 auto;
}

.holo-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    max-width: 320px;
    height: 100%;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 119, 181, 0.4);
    border-radius: 30px;
    box-shadow: 0 0 30px rgba(0, 119, 181, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s, box-shadow 0.6s;
    user-select: none;
    transform-origin: center bottom;
}

.holo-card.active {
    transform: translateZ(0) translateY(0) scale(1);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 0 40px rgba(0, 119, 181, 0.3);
}

.holo-card.next-1 {
    transform: translateZ(-50px) translateY(20px) scale(0.95);
    opacity: 0.7;
    z-index: 9;
}

.holo-card.next-2 {
    transform: translateZ(-100px) translateY(40px) scale(0.90);
    opacity: 0.4;
    z-index: 8;
}

.holo-card.hide {
    transform: translateZ(-150px) translateY(60px) scale(0.85);
    opacity: 0;
    z-index: 7;
}

/* Swiping out animation class added via JS */
.holo-card.swiping-out {
    transform: translateX(-150%) rotate(-20deg) !important;
    opacity: 0 !important;
}

.holo-glare {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-20deg);
    animation: holoGlare 4s infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes holoGlare {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 200%;
    }
}

.holo-content {
    position: relative;
    z-index: 1;
}

.holo-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin: 20px 0 10px;
}

.holo-content p {
    color: #94A3B8;
    line-height: 1.5;
}

.swipe-hint {
    text-align: center;
    color: #94A3B8;
    margin-top: 30px;
    font-size: 0.9rem;
    animation: pulseHint 2s infinite;
}

@keyframes pulseHint {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.carousel-swipe-hint {
    display: none;
}

/* ==========================================================
GLOWING PIPELINE (ÜRETİM STANDARTLARI)
========================================================== */
.pipeline-section {
    padding: 100px 0;
}

.pipeline-wrapper {
    position: relative;
    padding-left: 50px;
    margin-top: 40px;
}

.pipeline-track {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.pipeline-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #0077B5;
    height: 0%;
    /* updated via JS */
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.8);
    border-radius: 4px;
    transition: height 0.3s ease-out;
}

.pipeline-steps {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.pipeline-node {
    position: relative;
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

.pipeline-node.active {
    opacity: 1;
}

.node-bullet {
    position: absolute;
    left: -42.5px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: #112240;
    border: 3px solid #334155;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.4s ease;
}

.pipeline-node.active .node-bullet {
    border-color: #0077B5;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.8);
}

.node-content h4 {
    font-size: 1.6rem;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.node-content p {
    color: #94A3B8;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* ==========================================================
   SSS / FAQ FIX (PURE CSS GRID + RENDER FIX)
   ========================================================== */
.faq-pill-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* No max-height used here, only Grid allows fluid animation while staying in DOM */
}

.faq-pill.active .faq-pill-body {
    grid-template-rows: 1fr;
}

.faq-pill-inner {
    overflow: hidden;
    /* Important for grid-template-rows 0fr */
}

.faq-pill-content {
    /* Padding is applied inside the hidden inner layer so it doesn't cause extra space when closed */
    padding: 0 30px 25px;
    color: #94A3B8;
    line-height: 1.6;
    opacity: 1;
    /* Ensure it stays fully visible */
}

/* RESPONSIVE ADDITIONS FOR NEW MODULES */
@media (max-width: 992px) {
    .showcase-container {
        grid-template-columns: 1fr;
    }

    .dev-console-section .network-grid {
        grid-template-columns: 1fr 1fr;
    }

    .premium-pricing-grid {
        flex-direction: column;
    }

    .premium-pricing-grid .pricing-card.basic,
    .premium-pricing-grid .pricing-card.advanced {
        transform: scale(1);
        opacity: 1;
    }

    .premium-pricing-grid .pricing-card.business.popular {
        transform: scale(1);
    }

    .premium-pricing-grid .pricing-card.business.popular:hover {
        transform: translateY(-5px);
    }

    .network-grid::after {
        display: none;
    }

    .badge-1 {
        left: 0;
    }

    .badge-2 {
        right: 0;
        bottom: 10%;
    }
}

@media (max-width: 768px) {
    body {
        padding-left: 0;
        /* Let container handle it */
        padding-right: 0;
    }

    .container,
    .container-full {
        padding-left: 20px;
        padding-right: 20px;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .hero-premium-tech {
        padding-top: 100px;
        /* Space for mobile header */
    }

    /* Fix Stacking Cards on Mobile */
    .stacking-cards-section {
        padding-bottom: 50px;
        /* less empty space needed for mobile */
    }

    .stacking-card {
        height: auto;
        min-height: 60vh;
        /* Mobile cards shouldn't stack all on same top, increment it */
        top: 80px;
    }

    .stacking-card:nth-child(2) {
        top: 100px;
    }

    .stacking-card:nth-child(3) {
        top: 120px;
    }

    .stacking-card:nth-child(4) {
        top: 140px;
    }

    .dev-console-section .network-grid {
        grid-template-columns: 1fr;
    }

    .spotlight-grid {
        grid-template-columns: 1fr;
    }

    .card-info h3 {
        font-size: 1.8rem;
    }

    .card-info {
        left: 20px;
        bottom: 20px;
        padding-right: 20px;
    }

    .ide-split {
        flex-direction: column;
    }

    .ide-code {
        border-right: none;
        border-bottom: 1px solid #30363d;
    }

    /* Glass Vault Mobile */
    .glass-vault-grid {
        grid-template-columns: 1fr;
    }

    .vault-card {
        padding: 30px 20px;
    }

    .vault-watermark {
        font-size: 6rem;
    }

    /* Snap Carousel Mobile */
    .snap-carousel-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 20px;
        /* Hiding scrollbar */
        padding-bottom: 20px;
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
        margin-right: -24px;
        /* Pull it to the edge of the screen */
        padding-right: 24px;
    }

    .snap-carousel-grid::-webkit-scrollbar {
        display: none;
    }

    .carousel-card {
        scroll-snap-align: center;
        flex: 0 0 85%;
        height: 380px;
    }

    .carousel-swipe-hint.mobile-only {
        display: block !important;
        text-align: center;
        color: #94A3B8;
        margin-top: 15px;
        font-size: 0.9rem;
        animation: pulseHint 2s infinite;
    }

    /* Glowing Pipeline Mobile */
    .pipeline-wrapper {
        padding-left: 35px;
    }

    .pipeline-track {
        left: 10px;
    }

    .node-bullet {
        left: -32px;
        width: 14px;
        height: 14px;
    }

    /* Other Fixes */
    .dev-console-section .network-grid {
        grid-template-columns: 1fr;
    }

    .spotlight-grid {
        grid-template-columns: 1fr;
    }

    .card-info h3 {
        font-size: 1.8rem;
    }

    .card-info {
        left: 20px;
        bottom: 20px;
        padding-right: 20px;
    }

    .ide-split {
        flex-direction: column;
    }

    .ide-code {
        border-right: none;
        border-bottom: 1px solid #30363d;
    }

    .split-faq-container {
        flex-direction: column;
        gap: 30px;
    }

    .faq-left {
        position: relative;
        top: 0;
    }
}

/* --- MINIMALIST STRIPE/VERCEL STYLE --- */
.minimal-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.accent-dot {
    color: #3b82f6;
    /* text-blue-500 */
}

/* Base Body Background fix */
body {
    background-color: #0A0A0A !important;
}

body::before {
    content: '';
    position: fixed !important;
    inset: 0 !important;
    z-index: -2 !important;
    background-color: #0A0A0A !important;
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(15, 98, 254, 0.15) 0%, transparent 70%),
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px) !important;
    background-size: 100% 100%, 40px 40px, 40px 40px !important;
    pointer-events: none !important;
    animation: none !important;
}

/* High-Fidelity iPhone 15 Pro Mockup */
.iphone-15-frame {
    position: relative;
    width: 280px;
    height: 560px;
    margin: 0 auto;
    background: #1c1c1e;
    border-radius: 50px;
    border: 9px solid #3a3a3c;
    box-shadow:
        0 40px 100px -20px rgba(0, 0, 0, 0.8),
        inset 0 0 4px 2px rgba(255, 255, 255, 0.1),
        0 0 0 2px #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iphone-dynamic-island {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 24px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.iphone-button {
    position: absolute;
    background: #3a3a3c;
    border-radius: 2px;
}

.volume-up {
    left: -11px;
    top: 110px;
    width: 3px;
    height: 45px;
}

.volume-down {
    left: -11px;
    top: 165px;
    width: 3px;
    height: 45px;
}

.action-btn {
    left: -11px;
    top: 75px;
    width: 3px;
    height: 25px;
}

.side-btn {
    right: -11px;
    top: 130px;
    width: 3px;
    height: 80px;
}

.iphone-screen-container {
    width: calc(100% - 0px);
    height: calc(100% - 0px);
    background: #000;
    border-radius: 41px;
    overflow: hidden;
}

.iphone-screen-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Apple Bento Grid */
.apple-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.bento-item {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.bento-item.large-item {
    grid-column: span 2;
    min-height: 280px;
    background: radial-gradient(circle at top right, rgba(15, 98, 254, 0.1), transparent 50%), rgba(10, 10, 10, 0.6);
}

.bento-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff;
}

.bento-content h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.bento-content p {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .apple-bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-item.large-item {
        grid-column: span 1;
    }
}

/* Tabbed Pricing */
.pricing-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.pricing-tabs {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px;
    border-radius: 99px;
}

.pricing-tab {
    padding: 12px 24px;
    border-radius: 99px;
    background: transparent;
    color: #9ca3af;
    font-weight: 500;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-tab.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pricing-pane {
    display: none;
    animation: fadeSlideUp 0.4s ease forwards;
}

.pricing-pane.active {
    display: block;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-content-wrapper .minimal-card {
    max-width: 700px;
    margin: 0 auto;
}

/* Base Styles & Trust/Stars */
.capsule-trigger span {
    font-weight: 600 !important;
    font-size: 1.1rem;
}

.stars {
    color: #FFD700;
    letter-spacing: 2px;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.minimal-card {
    background-color: var(--card-bg) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    /* rounded-xl */
    padding: 40px 30px;
    transition: transform 0.3s ease;
}

.minimal-card:hover {
    transform: translateY(-5px);
}

.featured-card {
    border-color: #3b82f6;
    /* thin electric blue */
}

.minimal-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.minimal-card .subtitle {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.minimal-card .price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.minimal-card .tier-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px 0;
}

.minimal-card .tier-features li {
    color: #d1d5db;
    /* light gray */
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.minimal-card .tier-features li:last-child {
    border-bottom: none;
}

/* Unified footer and popular badge styles moved to unified block above */

/* Fix dock centering on mobile */
@media (max-width: 768px) {
    .dock-container {
        gap: 15px !important;
        justify-content: center !important;
    }
}

@media (max-width: 900px) {
    .minimal-tier-container {
        grid-template-columns: 1fr;
    }
}

/* Form Status Messages */
.form-status-message {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    min-height: 1.5rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.form-status-message.success {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 10px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status-message.error {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    padding: 10px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    filter: grayscale(0.5);
}