/* ============================================================
   KISISEL QR — "Gen Z Hype" Landing Page
   Palette: Black (#0A0A0A) + Yellow (#FFD700) + White (#FFF)
   Style: Cyberpunk Lite / Sharp / Electric
   ============================================================ */

/* ---- 0. DESIGN TOKENS ---- */
:root {
    --bg-primary: #0A0A0A;
    --bg-card: #111111;
    --bg-card-hover: #181818;
    --accent-yellow: #FFD700;
    --accent-glow: #FCEE09;
    --accent-dark: #B8960F;
    --text-primary: #FFFFFF;
    --text-secondary: #AAAAAA;
    --text-muted: #9A9A9A;
    --border-subtle: #222222;
    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    --glow-yellow: 0 0 20px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 215, 0, 0.15);
    --glow-yellow-strong: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 80px rgba(255, 215, 0, 0.25);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- 0.5 RESET & BASE ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body.landing-page {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.landing-page ::selection {
    background: var(--accent-yellow);
    color: var(--bg-primary);
}

/* ---- 1. HEADER / NAVIGATION ---- */
.cyber-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color var(--transition-fast);
}

.cyber-header.scrolled {
    border-bottom-color: var(--accent-dark);
    box-shadow: 0 2px 30px rgba(255, 215, 0, 0.08);
}

.cyber-header__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
}

.cyber-header__brand-icon {
    width: 36px;
    height: 36px;
    border: 2px solid var(--accent-yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    font-size: 1.1rem;
    box-shadow: var(--glow-yellow);
}

.cyber-header__brand span {
    color: var(--accent-yellow);
}

.cyber-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    background: var(--accent-yellow);
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 2px solid var(--accent-yellow);
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--glow-yellow);
    position: relative;
    overflow: hidden;
}

.cyber-header__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cyber-header__cta:hover {
    background: transparent;
    color: var(--accent-yellow);
    box-shadow: var(--glow-yellow-strong);
    transform: translateY(-1px);
}

.cyber-header__cta:hover::before {
    left: 100%;
}

/* Nav links */
.cyber-header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.cyber-header__link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-fast);
}

.cyber-header__link:hover {
    color: var(--accent-yellow);
}

/* Hamburger button (hidden on desktop) */
.cyber-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.cyber-header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-smooth);
    transform-origin: center;
}

.cyber-header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.cyber-header__hamburger.active span:nth-child(2) {
    opacity: 0;
}
.cyber-header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .cyber-header__hamburger {
        display: flex;
    }

    .cyber-header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 40px;
        gap: 24px;
        transition: right var(--transition-smooth);
        border-left: 1px solid var(--border-subtle);
        z-index: 1000;
    }

    .cyber-header__nav.open {
        right: 0;
    }

    .cyber-header__link {
        font-size: 1.1rem;
        padding: 8px 0;
    }

    .cyber-header__cta {
        margin-top: 16px;
        width: 100%;
        justify-content: center;
    }
}

/* ---- 2. HERO SECTION ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    overflow: hidden;
}

/* Circuit Grid Background */
.hero__circuit-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(var(--accent-yellow) 1px, transparent 1px),
        linear-gradient(90deg, var(--accent-yellow) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
    animation: gridPulse 4s ease-in-out infinite alternate;
}

@keyframes gridPulse {
    0% {
        opacity: 0.08;
    }

    100% {
        opacity: 0.15;
    }
}

/* Circuit node dots */
.hero__circuit-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle 3px, var(--accent-yellow) 100%, transparent 100%);
    background-size: 80px 80px;
    background-position: -1px -1px;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__text {
    max-width: 600px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--accent-dark);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--accent-yellow);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease both;
}

.hero__badge i {
    font-size: 0.7rem;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.15s both;
}

.hero__title .highlight {
    color: var(--accent-yellow);
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.35);
    position: relative;
    display: inline-block;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 480px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    background: var(--accent-yellow);
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 2px solid var(--accent-yellow);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: var(--glow-yellow-strong);
    animation: fadeInUp 0.6s ease 0.45s both, ctaPulse 2.5s ease-in-out infinite 1.5s;
    position: relative;
}

.hero__cta:hover {
    background: transparent;
    color: var(--accent-yellow);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5), 0 0 100px rgba(255, 215, 0, 0.2);
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: var(--glow-yellow-strong);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.5), 0 0 100px rgba(255, 215, 0, 0.2);
    }
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.3s both;
    position: relative;
}

.hero__phone-wrapper {
    position: relative;
    max-width: 400px;
    width: 100%;
}



.hero__visual-image {
    /* Removed */
    display: none;
}

/* Phone Mockup Restored */
.hero__phone-mockup {
    width: 260px;
    height: 520px;
    background: #111;
    border: 3px solid var(--accent-yellow);
    border-radius: 36px;
    position: relative;
    box-shadow: var(--glow-yellow-strong);
    animation: phoneFloat 4s ease-in-out infinite;
    overflow: hidden;
    margin: 0 auto;
}

.hero__phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #0A0A0A;
    border-radius: 12px;
    z-index: 2;
}

.hero__phone-screen {
    position: absolute;
    inset: 8px;
    border-radius: 30px;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

/* Profile preview inside phone */
.hero__profile-preview {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: profileScroll 8s ease-in-out infinite;
}

@keyframes profileScroll {
    0%, 30% { transform: translateY(0); }
    50%, 70% { transform: translateY(-30px); }
    100% { transform: translateY(0); }
}

.hero__profile-cover {
    width: 100%;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-yellow), #f59e0b, #d97706);
    flex-shrink: 0;
    position: relative;
}

.hero__profile-cover::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

.hero__profile-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 3px solid var(--accent-yellow);
    margin-top: -32px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    z-index: 1;
}

.hero__profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__profile-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
    letter-spacing: 1px;
    margin-top: 8px;
}

.hero__profile-bio {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
    margin-bottom: 14px;
}

.hero__profile-buttons {
    width: 85%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero__profile-btn {
    width: 100%;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hero__profile-btn--primary {
    background: var(--accent-yellow);
    color: var(--bg-primary);
}

.hero__profile-btn--outline {
    background: rgba(255, 215, 0, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--text-secondary);
}

.hero__profile-btn--notify {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
    margin-top: 4px;
    justify-content: flex-start;
    opacity: 0.8;
}

/* Floating cards */
.hero__float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 14px;
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 5;
    pointer-events: none;
}

.hero__float-card i {
    font-size: 1rem;
    color: var(--accent-yellow);
}

.hero__float-card--1 {
    top: 8%;
    right: -30px;
    animation: floatCard1 5s ease-in-out infinite;
}

.hero__float-card--1 i { color: #E4405F; }

.hero__float-card--2 {
    bottom: 25%;
    right: -40px;
    animation: floatCard2 6s ease-in-out infinite 0.5s;
}

.hero__float-card--2 i { color: #25D366; }

.hero__float-card--3 {
    top: 50%;
    left: -35px;
    animation: floatCard3 5.5s ease-in-out infinite 1s;
}

.hero__float-card--3 i { color: var(--accent-yellow); }

.hero__float-card--4 {
    bottom: 8%;
    left: -25px;
    animation: floatCard1 6.5s ease-in-out infinite 1.5s;
}

.hero__float-card--4 i { color: #60a5fa; }

.hero__float-card--5 {
    top: 18%;
    left: -20px;
    animation: floatCard2 5s ease-in-out infinite 0.8s;
}

.hero__float-card--5 i { color: #ef4444; }

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.85; }
    50% { transform: translateY(-12px) rotate(2deg); opacity: 1; }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.85; }
    50% { transform: translateY(10px) rotate(-2deg); opacity: 1; }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateX(0) rotate(0deg); opacity: 0.85; }
    50% { transform: translateX(8px) rotate(1.5deg); opacity: 1; }
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

/* Glow orb behind phone */
.hero__glow-orb {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: orbPulse 3s ease-in-out infinite alternate;
}

@keyframes orbPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

/* ---- SOCIAL PROOF STRIP ---- */
.social-proof {
    padding: 48px 24px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.social-proof__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-proof__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 120px;
}

.social-proof__number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--accent-yellow);
    line-height: 1;
    letter-spacing: 1px;
}

.social-proof__plus {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: var(--accent-yellow);
    line-height: 1;
}

.social-proof__stars {
    display: flex;
    gap: 2px;
    color: var(--accent-yellow);
    font-size: 1rem;
}

.social-proof__label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.social-proof__divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .social-proof__inner {
        gap: 24px;
    }
    .social-proof__number {
        font-size: 2.2rem;
    }
    .social-proof__plus {
        font-size: 1.8rem;
    }
    .social-proof__divider {
        display: none;
    }
    .social-proof__stat {
        min-width: 80px;
    }
}

/* ---- 3. FEATURES BENTO GRID ---- */
.features {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header__title .highlight {
    color: var(--accent-yellow);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.25);
}

.section-header__subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.bento-tile {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Illustration layer */
.bento-tile__illustration {
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 160px;
    opacity: 0.6;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.bento-tile--large .bento-tile__illustration {
    width: 220px;
    height: 220px;
    top: 10px;
    right: 10px;
}

.bento-tile__illustration--wide {
    width: 280px;
    height: 140px;
    top: auto;
    bottom: 0;
    right: 0;
}

.bento-tile__illustration svg {
    width: 100%;
    height: 100%;
}

.bento-tile:hover .bento-tile__illustration {
    opacity: 1;
    transform: scale(1.08);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.15));
}

/* Ensure text stays above illustration */
.bento-tile__icon,
.bento-tile__title,
.bento-tile__desc {
    position: relative;
    z-index: 1;
}

.bento-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: border-color var(--transition-smooth);
    pointer-events: none;
}

.bento-tile:hover {
    transform: translateY(-6px);
    border-color: var(--accent-dark);
    box-shadow: var(--glow-yellow);
    background: var(--bg-card-hover);
}

.bento-tile:hover::before {
    border-color: var(--accent-yellow);
}

.bento-tile--large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 48px 36px;
}

.bento-tile--medium {
    grid-column: span 2;
}

.bento-tile__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-yellow);
    border-radius: 14px;
    color: var(--accent-yellow);
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all var(--transition-smooth);
}

.bento-tile:hover .bento-tile__icon {
    box-shadow: var(--glow-yellow);
    background: rgba(255, 215, 0, 0.08);
}

.bento-tile--large .bento-tile__icon {
    width: 72px;
    height: 72px;
    font-size: 2rem;
}

.bento-tile__title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--accent-yellow);
}

.bento-tile--large .bento-tile__title {
    font-size: 2.2rem;
}

.bento-tile__desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Floating animation for illustration SVG elements */
@keyframes illustrationFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

@keyframes illustrationPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.bento-tile:hover .bento-tile__illustration svg circle,
.bento-tile:hover .bento-tile__illustration svg rect {
    animation: illustrationPulse 2s ease-in-out infinite;
}

.bento-tile--large:hover .bento-tile__illustration {
    transform: scale(1.1) translateY(-5px);
}

/* ---- 4. THEME SHOWCASE ---- */
.themes {
    padding: 100px 24px 60px;
    overflow: hidden;
}

.themes .section-header {
    max-width: 1200px;
    margin: 0 auto 64px;
}

.theme-carousel {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 40px 24px;
    max-width: 1200px;
    margin: 0 auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
}

.theme-carousel::-webkit-scrollbar {
    display: none;
}

.theme-carousel:active {
    cursor: grabbing;
}

.theme-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 24px;
    transition: all var(--transition-smooth);
    position: relative;
}

.theme-card:hover,
.theme-card.active {
    border-color: var(--accent-yellow);
    box-shadow: var(--glow-yellow-strong);
    transform: scale(1.05);
}

.theme-card__phone {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    border: 2px solid var(--border-subtle);
    overflow: hidden;
    margin-bottom: 20px;
    transition: border-color var(--transition-smooth);
    position: relative;
}

.theme-card:hover .theme-card__phone,
.theme-card.active .theme-card__phone {
    border-color: var(--accent-yellow);
}

/* Theme variations */
.theme-card__phone--outline {
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.theme-card__phone--outline::after {
    content: '';
    width: 60px;
    height: 60px;
    border: 3px solid var(--accent-yellow);
    border-radius: 12px;
}

.theme-card__phone--solid {
    background: var(--accent-yellow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.theme-card__phone--solid::after {
    content: 'QR';
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--bg-primary);
    letter-spacing: 6px;
}

.theme-card__phone--grid {
    background: var(--bg-primary);
    background-image:
        linear-gradient(var(--accent-dark) 1px, transparent 1px),
        linear-gradient(90deg, var(--accent-dark) 1px, transparent 1px);
    background-size: 24px 24px;
}

.theme-card__phone--minimal {
    background: #1a1a1a;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 40px;
}

.theme-card__phone--minimal::after {
    content: '';
    width: 80%;
    height: 4px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

.theme-card__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    text-align: center;
}

.theme-card__tag {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Theme carousel scroll hint */
.themes__scroll-hint {
    text-align: center;
    margin-top: 24px;
    opacity: 0.5;
}

.themes__scroll-hint p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0 0 12px;
    letter-spacing: 0.5px;
}

.themes__scroll-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.themes__scroll-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-yellow);
    animation: scrollDotPulse 1.5s ease-in-out infinite;
}

.themes__scroll-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.themes__scroll-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scrollDotPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Section transition indicator */
.section-transition {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 48px;
    gap: 16px;
}

.section-transition__line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--border-subtle), var(--accent-yellow), var(--border-subtle));
    opacity: 0.4;
}

.section-transition__indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all var(--transition-fast);
    animation: bounceDown 2s ease-in-out infinite;
}

.section-transition__indicator:hover {
    color: var(--accent-yellow);
}

.section-transition__indicator i {
    font-size: 0.9rem;
    color: var(--accent-yellow);
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ---- 5. HOW IT WORKS ---- */
.how-it-works {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    margin-top: 64px;
}

/* Circuit connector line */
.steps-container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--accent-dark) 15%,
            var(--accent-yellow) 50%,
            var(--accent-dark) 85%,
            transparent 100%);
    z-index: 0;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* Circuit node dots on the line */
.steps-container::after {
    content: '';
    position: absolute;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--accent-yellow);
    border-radius: 50%;
    box-shadow: var(--glow-yellow);
    z-index: 1;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.step-card__number {
    font-family: var(--font-display);
    font-size: 5.5rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px var(--accent-yellow);
    letter-spacing: 4px;
    margin-bottom: 20px;
    transition: all var(--transition-smooth);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.step-card:hover .step-card__number {
    color: var(--accent-yellow);
    -webkit-text-stroke: 0;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

/* Node dot on each step */
.step-card__node {
    width: 14px;
    height: 14px;
    background: var(--accent-yellow);
    border: 3px solid var(--bg-primary);
    border-radius: 50%;
    margin: 0 auto 28px;
    box-shadow: var(--glow-yellow);
    position: relative;
}

.step-card__node::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    border: 1px solid var(--accent-dark);
    border-radius: 50%;
    animation: nodeRing 2s ease-in-out infinite;
}

@keyframes nodeRing {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.step-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-yellow);
    border-radius: 16px;
    color: var(--accent-yellow);
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: all var(--transition-smooth);
    background: var(--bg-card);
}

.step-card:hover .step-card__icon {
    box-shadow: var(--glow-yellow);
    background: rgba(255, 215, 0, 0.05);
}

.step-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step-card__desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

/* ---- 6. ANIMATIONS ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glitch text effect on hover */
.glitch-hover {
    position: relative;
    display: inline-block;
}

.glitch-hover:hover {
    animation: glitch 0.4s linear;
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-3px, 3px);
    }

    40% {
        transform: translate(3px, -3px);
    }

    60% {
        transform: translate(-2px, -2px);
    }

    80% {
        transform: translate(2px, 2px);
    }

    100% {
        transform: translate(0);
    }
}

/* Staggered animation delays */
.bento-tile:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.bento-tile:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.bento-tile:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.bento-tile:nth-child(4) {
    animation: fadeInUp 0.6s ease 0.4s both;
}

.bento-tile:nth-child(5) {
    animation: fadeInUp 0.6s ease 0.5s both;
}

.step-card:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.step-card:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.25s both;
}

.step-card:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.4s both;
}

/* ---- 7. RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__cta {
        margin: 0 auto;
    }

    .hero__float-card {
        display: none;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-tile--large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .steps-container::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg,
                transparent 0%,
                var(--accent-dark) 15%,
                var(--accent-yellow) 50%,
                var(--accent-dark) 85%,
                transparent 100%);
    }

    .steps-container::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .cyber-header {
        padding: 0 16px;
        height: 56px;
    }

    .cyber-header__brand {
        font-size: 1.3rem;
    }

    .cyber-header__cta {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .hero {
        min-height: auto;
        padding: 100px 16px 60px;
    }

    .hero__title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero__phone-mockup {
        width: 200px;
        height: 400px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-tile--large,
    .bento-tile--medium {
        grid-column: span 1;
    }

    .theme-carousel {
        padding: 40px 24px;
    }

    .theme-card {
        flex: 0 0 240px;
    }

    .section-header__title {
        font-size: 2rem;
    }

    .step-card__number {
        font-size: 4rem;
    }
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(17, 17, 17, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-subtle);
    padding: 20px 24px;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-consent__text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 280px;
}

.cookie-consent__icon {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-consent__text p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cookie-consent__text a {
    color: var(--accent-yellow);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent__text a:hover {
    color: #fff;
}

.cookie-consent__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent__btn {
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.cookie-consent__btn--accept {
    background: var(--accent-yellow);
    color: var(--bg-primary);
}

.cookie-consent__btn--accept:hover {
    box-shadow: var(--glow-yellow);
    transform: translateY(-1px);
}

.cookie-consent__btn--decline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}

.cookie-consent__btn--decline:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

@media (max-width: 600px) {
    .cookie-consent__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .cookie-consent__actions {
        justify-content: stretch;
    }
    .cookie-consent__btn {
        flex: 1;
        text-align: center;
    }
}

/* ---- BACK TO TOP BUTTON ---- */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--accent-yellow);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-smooth);
    z-index: 900;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-yellow);
    color: var(--bg-primary);
    border-color: var(--accent-yellow);
    box-shadow: var(--glow-yellow);
    transform: translateY(-2px);
}

/* ---- 8. FOOTER ---- */
.footer {
    background: var(--bg-card);
    color: var(--text-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 30px;
    margin-top: 0 !important;
}

/* Brand Section */
.footer__brand-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 32px;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: opacity var(--transition-fast);
    line-height: 1;
}

.footer__brand:hover {
    opacity: 0.85;
}

.footer__logo {
    height: 44px;
    width: 44px;
    object-fit: contain;
    border-radius: 10px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.25));
    flex-shrink: 0;
}

.footer__brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.footer__brand-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1;
}

.footer__brand-name strong {
    color: var(--accent-yellow);
}

.footer__brand-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Social Icons */
.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 1.15rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    background: transparent;
}

.footer__social a:hover {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
    box-shadow: 0 0 14px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

/* Divider */
.footer__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle) 20%, var(--accent-dark) 50%, var(--border-subtle) 80%, transparent);
    margin: 8px 0 32px;
}

/* Links Grid */
.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 32px;
}

.footer__heading {
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-yellow);
    margin-bottom: 16px;
}

.footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer__col ul li a:hover {
    color: var(--accent-yellow);
    transform: translateX(4px);
}

/* Bottom Bar */
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 4px;
}

.footer__bottom p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer__bottom a {
    color: var(--accent-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: opacity var(--transition-fast);
}

.footer__bottom a:hover {
    opacity: 0.8;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 24px;
    }

    .footer__brand-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__links {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer__links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ---- 9. LOGO ---- */
.cyber-header__logo {
    height: 36px;
    width: 36px;
    object-fit: contain;
    background: transparent;
    padding: 0;
    border-radius: 8px;
    transition: all var(--transition-fast);
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.3));
    flex-shrink: 0;
}

.cyber-header__brand:hover .cyber-header__logo {
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.5));
    transform: scale(1.05);
}

/* ---- 10. HERO ACTIONS (dual CTAs) ---- */
.hero__actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.45s both;
}

.hero__cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--accent-yellow);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: 2px solid var(--accent-dark);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.hero__cta-secondary:hover {
    border-color: var(--accent-yellow);
    box-shadow: var(--glow-yellow);
    transform: translateY(-2px);
    color: var(--accent-yellow);
}

/* ---- 11. THEME PREVIEW CONTENT ---- */
.theme-card__phone--preview {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
}

.theme-preview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.theme-preview-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.theme-preview-name {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

.theme-preview-btn {
    width: 85%;
    height: 28px;
    border-radius: 8px;
    flex-shrink: 0;
}

/* ---- 12. DEMO SECTION ---- */
.demo-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.demo-phone-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Feature badges */
.demo-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 8px;
}

.demo-feature-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.demo-feature-badge:hover {
    border-color: var(--accent-dark);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: var(--glow-yellow);
}

.demo-feature-badge__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--accent-yellow);
    border-radius: 10px;
    color: var(--accent-yellow);
    font-size: 1rem;
    flex-shrink: 0;
}

.demo-feature-badge__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.demo-feature-badge__text strong {
    font-size: 0.8rem;
    color: var(--text-primary);
    letter-spacing: 0.3px;
}

.demo-feature-badge__text span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Demo phone mockup */
.demo-phone-mockup {
    width: 240px;
    height: 500px;
    background: #111;
    border: 3px solid var(--accent-yellow);
    border-radius: 36px;
    position: relative;
    box-shadow: var(--glow-yellow-strong);
    animation: phoneFloat 4s ease-in-out infinite;
    overflow: hidden;
}

.demo-phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 20px;
    background: #0A0A0A;
    border-radius: 10px;
    z-index: 10;
}

.demo-phone-screen {
    position: absolute;
    inset: 6px;
    border-radius: 32px;
    background: var(--bg-primary);
    overflow: hidden;
}

/* Demo profile inside phone */
.demo-profile {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: demoProfileScroll 10s ease-in-out infinite;
}

@keyframes demoProfileScroll {
    0%, 25% { transform: translateY(0); }
    40%, 60% { transform: translateY(-40px); }
    75%, 100% { transform: translateY(0); }
}

.demo-profile__cover {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-yellow), #f59e0b, #d97706);
    flex-shrink: 0;
    position: relative;
}

.demo-profile__cover-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

.demo-profile__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-yellow);
    border: 3px solid var(--bg-primary);
    margin-top: -28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    z-index: 2;
}

.demo-profile__avatar i {
    color: var(--bg-primary);
    font-size: 1.3rem;
}

.demo-profile__name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--text-primary);
    letter-spacing: 1px;
    margin-top: 8px;
}

.demo-profile__bio {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-top: 2px;
    margin-bottom: 12px;
}

.demo-profile__actions {
    width: 82%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.demo-profile__btn {
    width: 100%;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 0.58rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    letter-spacing: 0.3px;
}

.demo-profile__btn--call {
    background: var(--accent-yellow);
    color: var(--bg-primary);
}

.demo-profile__btn--social {
    background: rgba(255, 215, 0, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.18);
    color: var(--text-secondary);
}

.demo-profile__info-cards {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    width: 82%;
}

.demo-profile__info-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 8px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 8px;
    font-size: 0.55rem;
    color: var(--text-secondary);
}

.demo-profile__info-card i {
    color: var(--accent-yellow);
    font-size: 0.6rem;
}

.demo-profile__notify-btn {
    width: 82%;
    margin-top: 8px;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 0.55rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
}

.demo-profile__notify-btn i:first-child {
    color: var(--accent-yellow);
    font-size: 0.6rem;
}

@media (max-width: 768px) {
    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .hero__actions .hero__cta,
    .hero__actions .hero__cta-secondary {
        justify-content: center;
    }

    .demo-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .demo-content .section-header__title,
    .demo-content .section-header__subtitle {
        text-align: center !important;
    }

    .demo-content .hero__cta {
        margin: 0 auto;
    }

    .demo-phone-frame {
        order: -1;
    }

    .demo-features {
        grid-template-columns: 1fr;
    }
}

/* ==============================================================
   12.5 FAQ SECTION
   ============================================================== */
.faq-section {
    padding: 80px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 48px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item[open] {
    border-color: var(--accent-yellow);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    list-style: none;
    user-select: none;
    transition: background var(--transition-fast);
}

.faq-item__question:hover {
    background: var(--bg-card-hover);
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__icon {
    font-size: 0.75rem;
    color: var(--accent-yellow);
    transition: transform var(--transition-smooth);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item__answer p {
    margin: 0;
}

@media (max-width: 768px) {
    .faq-item__question {
        padding: 16px 18px;
        font-size: 0.9rem;
    }
    .faq-item__answer {
        padding: 0 18px 16px;
        font-size: 0.85rem;
    }
}

/* ==============================================================
   13. STEPPER ORDER FORM
   ============================================================== */
.siparis-section {
    padding: 80px 24px;
    max-width: 880px;
    margin: 0 auto;
}

/* Progress Bar */
.stepper-progress {
    position: relative;
    margin-bottom: 48px;
}

.stepper-progress__track {
    height: 4px;
    background: var(--border-subtle);
    border-radius: 2px;
    position: relative;
}

.stepper-progress__fill {
    height: 100%;
    background: var(--accent-yellow);
    border-radius: 2px;
    width: 0%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

.stepper-progress__steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    top: -14px;
}

.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stepper-step__circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.4s ease;
}

.stepper-step.active .stepper-step__circle {
    border-color: var(--accent-yellow);
    background: var(--accent-yellow);
    color: var(--bg-primary);
    box-shadow: var(--glow-yellow);
}

.stepper-step.done .stepper-step__circle {
    border-color: var(--accent-yellow);
    background: var(--accent-yellow);
    color: var(--bg-primary);
}

.stepper-step__label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s ease;
}

.stepper-step.active .stepper-step__label,
.stepper-step.done .stepper-step__label {
    color: var(--accent-yellow);
}

/* Stepper Panels */
.stepper-form {
    position: relative;
}

.stepper-panel {
    display: none;
    animation: panelIn 0.4s ease;
}

.stepper-panel.active {
    display: block;
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stepper-panel__header {
    text-align: center;
    margin-bottom: 40px;
}

.stepper-panel__icon {
    width: 64px;
    height: 64px;
    border: 2px solid var(--accent-yellow);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent-yellow);
    margin-bottom: 16px;
    box-shadow: var(--glow-yellow);
}

.stepper-panel__title {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-yellow);
    margin-bottom: 8px;
}

.stepper-panel__desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-field__label i {
    color: var(--accent-yellow);
    font-size: 0.9rem;
}

.required {
    color: #ff4444;
}

.form-field__input {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-field__input::placeholder {
    color: var(--text-muted);
}

.form-field__input:focus {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-field__input.error {
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
}

.form-field__textarea {
    resize: vertical;
    min-height: 90px;
}

/* Select dropdown styling */
.form-field__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23aaa' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
    cursor: pointer;
}

.form-field__select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: rgba(255, 255, 255, 0.02);
}

.form-field__select option {
    background: #1a1a1a;
    color: #fff;
    padding: 8px;
}

.form-field__error {
    display: none;
    color: #ff4444;
    font-size: 0.78rem;
    margin-top: 6px;
    padding-left: 2px;
}

.form-field__input.error~.form-field__error {
    display: block;
}

.form-field__hint {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 6px;
    padding-left: 2px;
}

.form-field__input-group {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    background: var(--bg-card);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.form-field__input-group:focus-within {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-field__prefix {
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: rgba(255, 215, 0, 0.08);
    color: var(--accent-dark);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    border-right: 1px solid var(--border-subtle);
}

.form-field__input--slug {
    border: none;
    border-radius: 0;
    background: transparent;
}

.form-field__input--slug:focus {
    box-shadow: none;
}

/* Theme Selection Grid */
.theme-select-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.theme-select-card {
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    border-radius: 16px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.theme-select-card:hover {
    border-color: var(--accent-dark);
    transform: translateY(-3px);
}

.theme-select-card.selected {
    border-color: var(--accent-yellow);
    box-shadow: var(--glow-yellow);
}

.theme-select-card__preview {
    width: 100%;
    aspect-ratio: 9 / 14;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 10px;
}

.tsp-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

.tsp-line {
    width: 70%;
    height: 12px;
    border-radius: 6px;
}

.theme-select-card__name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.theme-select-card__check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-yellow);
    color: var(--bg-primary);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.theme-select-card.selected .theme-select-card__check {
    display: flex;
}

/* Price Card */
.price-card {
    background: var(--bg-card);
    border: 2px solid var(--accent-yellow);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.price-card__label {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.price-card__amount {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--accent-yellow);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    line-height: 1;
    margin-bottom: 16px;
}

.price-card__amount span {
    font-size: 1.8rem;
    color: var(--text-secondary);
}

.price-card__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.price-card__features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 4px 12px;
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
}

.price-card__features span i {
    color: var(--accent-yellow);
    font-size: 0.75rem;
}

/* Payment Section */
.payment-section {
    margin-top: 32px;
}

.payment-section__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-section__title i {
    color: var(--accent-yellow);
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.payment-option {
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option__card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.payment-option input:checked+.payment-option__card {
    border-color: var(--accent-yellow);
    box-shadow: var(--glow-yellow);
    background: rgba(255, 215, 0, 0.04);
}

.payment-option__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-yellow);
    flex-shrink: 0;
}

.payment-option__text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.payment-option__text small {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Bank Info */
.bank-info {
    background: var(--bg-card);
    border: 1px solid var(--accent-dark);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.bank-info.hidden {
    display: none;
}

.bank-info__header {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.bank-info__row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.9rem;
}

.bank-info__row span {
    color: var(--text-muted);
    min-width: 80px;
}

.bank-info__row strong {
    color: var(--text-primary);
}

.bank-info__row--iban {
    background: rgba(255, 215, 0, 0.06);
    border-radius: 8px;
    padding: 10px 12px;
    margin: 4px -12px;
}

.bank-info__row--iban strong {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    color: var(--accent-yellow);
}

.bank-info__copy {
    background: none;
    border: 1px solid var(--accent-dark);
    color: var(--accent-yellow);
    border-radius: 6px;
    padding: 4px 10px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    margin-left: 8px;
}

.bank-info__copy:hover {
    background: var(--accent-yellow);
    color: var(--bg-primary);
}

.bank-info__amount {
    color: var(--accent-yellow) !important;
    font-size: 1.1rem !important;
}

/* Stepper Nav */
.stepper-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.stepper-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stepper-btn--next {
    background: var(--accent-yellow);
    color: var(--bg-primary);
    border-color: var(--accent-yellow);
    box-shadow: var(--glow-yellow);
}

.stepper-btn--next:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-yellow-strong);
}

.stepper-btn--back {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border-subtle);
}

.stepper-btn--back:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.stepper-btn--submit {
    background: var(--accent-yellow);
    color: var(--bg-primary);
    border-color: var(--accent-yellow);
    box-shadow: var(--glow-yellow-strong);
    font-size: 1rem;
    padding: 16px 40px;
}

.stepper-btn--submit:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
}

/* Success Screen */
.stepper-success {
    text-align: center;
    padding: 60px 20px;
}

.stepper-success__icon {
    font-size: 5rem;
    color: var(--accent-yellow);
    text-shadow: var(--glow-yellow-strong);
    margin-bottom: 24px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.stepper-success__title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 3px;
    color: var(--accent-yellow);
    margin-bottom: 16px;
}

.stepper-success__desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .theme-select-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .stepper-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .price-card__amount {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .theme-select-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stepper-progress__steps {
        top: -12px;
    }

    .stepper-step__label {
        font-size: 0.65rem;
    }
}