/* ========================================
   WAIFU18 - Luxurious Noir Theme
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --black: #0A0A0C;
    --black-elevated: #0F0F12;
    --surface: #12121A;
    --surface-elevated: #1A1A24;
    --surface-border: rgba(255, 255, 255, 0.06);

    --pink: #FF2D6A;
    --pink-soft: #FF6B9D;
    --pink-glow: rgba(255, 45, 106, 0.4);

    --purple: #8B5CF6;
    --purple-soft: #A78BFA;
    --purple-glow: rgba(139, 92, 246, 0.4);

    --gold: #F5A623;
    --gold-soft: #FFCB6B;

    --text: #E8E8ED;
    --text-secondary: #9898A6;
    --text-muted: #5A5A6E;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, #FF8A00 100%);
    --gradient-surface: linear-gradient(180deg, var(--surface) 0%, var(--black) 100%);
    --gradient-glow: radial-gradient(ellipse at center, var(--pink-glow) 0%, transparent 70%);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========================================
   BASE STYLES
   ======================================== */

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    background: var(--black);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body.locked {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================================
   NOISE OVERLAY
   ======================================== */

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ========================================
   BACKGROUND ORBS
   ======================================== */

.bg-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.bg-orb--1 {
    width: 600px;
    height: 600px;
    background: var(--pink-glow);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.bg-orb--2 {
    width: 500px;
    height: 500px;
    background: var(--purple-glow);
    bottom: -150px;
    left: -150px;
    animation-delay: -7s;
}

.bg-orb--3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(var(--pink-glow), var(--purple-glow));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.3;
}

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

/* ========================================
   AGE GATE
   ======================================== */

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    padding: 1.5rem;
}

.age-gate.hidden {
    display: none;
}

.age-gate__backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, var(--surface) 0%, var(--black) 100%);
}

.age-gate__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse 4s ease-in-out infinite;
}

.age-gate__orb--1 {
    width: 400px;
    height: 400px;
    background: var(--pink-glow);
    top: 20%;
    left: 20%;
}

.age-gate__orb--2 {
    width: 300px;
    height: 300px;
    background: var(--purple-glow);
    bottom: 20%;
    right: 20%;
    animation-delay: -2s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.age-gate__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 420px;
}

.age-gate__icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { filter: drop-shadow(0 0 20px var(--pink-glow)); }
    50% { filter: drop-shadow(0 0 40px var(--pink-glow)); }
}

.age-gate__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-gate__text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.age-gate__question {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2rem;
}

.age-gate__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-gate__btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.age-gate__btn--yes {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 0 30px var(--pink-glow);
}

.age-gate__btn--yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px var(--pink-glow);
}

.age-gate__btn--no {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--surface-border);
}

.age-gate__btn--no:hover {
    border-color: var(--text-muted);
    color: var(--text-secondary);
}

.age-gate__disclaimer {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   HEADER
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    background: linear-gradient(180deg, var(--black) 0%, transparent 100%);
    transition: var(--transition-smooth);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text);
}

.logo__icon {
    font-size: 1.5rem;
}

.logo__text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo__accent {
    color: var(--pink);
}

.nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav__link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

.nav__link:hover {
    color: var(--text);
}

.nav__link:hover::after {
    width: 100%;
}

.header__cta {
    display: none;
    padding: 0.6rem 1.2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

@media (min-width: 768px) {
    .header__cta {
        display: block;
    }
}

.header__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 20px var(--pink-glow);
}

/* ========================================
   TYPOGRAPHY UTILITIES
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--pink);
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 45, 106, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(255, 45, 106, 0.2);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-desc {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn__icon {
    width: 1.2rem;
    height: 1.2rem;
}

.btn--primary {
    background: var(--gradient-primary);
    color: white;
}

.btn--primary:hover {
    transform: translateY(-2px);
}

.btn--glow {
    box-shadow: 0 0 30px var(--pink-glow);
}

.btn--glow:hover {
    box-shadow: 0 0 50px var(--pink-glow), 0 0 80px var(--purple-glow);
}

.btn--large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    background: #00D26A;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

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

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

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

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

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero__trial-badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 45, 106, 0.1);
    border: 1px solid rgba(255, 45, 106, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--pink-soft);
}

/* Hero Visual */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero__phone {
    position: relative;
    width: 280px;
    height: 560px;
    background: var(--surface);
    border-radius: 40px;
    padding: 12px;
    border: 1px solid var(--surface-border);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 100px var(--pink-glow);
}

.hero__phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: var(--black);
    border-radius: 20px;
    z-index: 10;
}

.hero__phone-screen {
    width: 100%;
    height: 100%;
    background: var(--black);
    border-radius: 30px;
    overflow: hidden;
}

.hero__glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-glow);
    filter: blur(60px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.6;
}

/* Chat Preview */
.chat-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chat-preview__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 3rem 1rem 1rem;
    background: var(--surface);
    border-bottom: 1px solid var(--surface-border);
}

.chat-preview__avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.chat-preview__info {
    flex: 1;
}

.chat-preview__name {
    font-weight: 600;
    font-size: 0.95rem;
}

.chat-preview__status {
    font-size: 0.75rem;
    color: var(--pink);
}

.chat-preview__messages {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow: hidden;
}

.chat-msg {
    max-width: 85%;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.4;
    animation: msgSlide 0.4s ease-out both;
}

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

.chat-msg--user {
    align-self: flex-end;
    background: var(--gradient-primary);
    color: white;
    border-bottom-right-radius: 4px;
    animation-delay: 0.2s;
}

.chat-msg--bot {
    align-self: flex-start;
    background: var(--surface-elevated);
    color: var(--text);
    border-bottom-left-radius: 4px;
}

.chat-msg--bot:nth-child(2) {
    animation-delay: 0.6s;
}

.chat-msg--bot:nth-child(4) {
    animation-delay: 1s;
}

.chat-msg.typing {
    display: flex;
    gap: 4px;
    padding: 1rem;
}

.chat-msg.typing span {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingDot 1.4s ease-in-out infinite;
}

.chat-msg.typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.chat-msg.typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
}

/* Hero Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--text-muted) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0;
}

.features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.feature-card {
    position: relative;
    padding: 2rem;
    background: var(--surface);
    border-radius: 24px;
    border: 1px solid var(--surface-border);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-card__glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.feature-card:hover .feature-card__glow {
    opacity: 1;
}

.feature-card--sexting .feature-card__glow {
    background: radial-gradient(ellipse at top, var(--pink-glow) 0%, transparent 70%);
}

.feature-card--roleplay .feature-card__glow {
    background: radial-gradient(ellipse at top, var(--purple-glow) 0%, transparent 70%);
}

.feature-card--action .feature-card__glow {
    background: radial-gradient(ellipse at top, rgba(255, 107, 0, 0.3) 0%, transparent 70%);
}

.feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card__desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-card__list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.feature-card__list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--pink);
    border-radius: 50%;
}

/* ========================================
   CUSTOMIZE SECTION
   ======================================== */

.customize {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0;
    background: var(--gradient-surface);
}

.customize__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .customize__layout {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.customize__content .section-title {
    text-align: left;
}

.customize__text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 1.5rem 0 2rem;
}

.customize__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.customize__feature {
    display: flex;
    gap: 1rem;
}

.customize__feature-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--surface);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.customize__feature strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.customize__feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Customize Visual */
.customize__visual {
    display: flex;
    justify-content: center;
}

.customize__card {
    width: 100%;
    max-width: 340px;
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--surface-border);
    padding: 1.5rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 80px var(--purple-glow);
}

.customize__card-header {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--surface-border);
}

.customize__card-field {
    margin-bottom: 1.25rem;
}

.customize__card-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.customize__input {
    padding: 0.875rem 1rem;
    background: var(--black);
    border-radius: 10px;
    border: 1px solid var(--surface-border);
    color: var(--text);
    font-size: 0.95rem;
}

.customize__input--multiline {
    min-height: 80px;
    line-height: 1.5;
}

.customize__card-btn {
    width: 100%;
    padding: 0.875rem;
    background: var(--gradient-primary);
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    color: white;
    margin-top: 0.5rem;
}

/* ========================================
   TRIAL SECTION
   ======================================== */

.trial {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0;
}

.trial__card {
    position: relative;
    background: var(--surface);
    border-radius: 32px;
    border: 1px solid var(--surface-border);
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .trial__card {
        grid-template-columns: 1fr auto;
        padding: 4rem;
    }
}

.trial__glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--gradient-glow);
    filter: blur(100px);
    top: -200px;
    right: -200px;
    opacity: 0.5;
    pointer-events: none;
}

.trial__content {
    position: relative;
    z-index: 1;
}

.trial__badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 210, 106, 0.1);
    border: 1px solid rgba(0, 210, 106, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00D26A;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.trial__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.trial__text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.trial__decoration {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    background: var(--black);
    border-radius: 20px;
    border: 1px solid var(--surface-border);
}

.trial__decoration span {
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.trial__decoration small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0;
    background: var(--gradient-surface);
}

.pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing__grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }
}

.pricing-card {
    position: relative;
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--surface-border);
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card--popular {
    border-color: var(--pink);
    background: linear-gradient(180deg, rgba(255, 45, 106, 0.1) 0%, var(--surface) 50%);
}

.pricing-card--best {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(245, 166, 35, 0.1) 0%, var(--surface) 50%);
}

.pricing-card__badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 0.8rem;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-card__badge--gold {
    background: var(--gradient-gold);
    color: var(--black);
}

.pricing-card__header {
    text-align: center;
    margin-bottom: 0.75rem;
}

.pricing-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-card__amount {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
}

.pricing-card__currency {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-card__perday {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.pricing-card__save {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pink);
    padding: 0.25rem 0.5rem;
    background: rgba(255, 45, 106, 0.1);
    border-radius: 4px;
    display: inline-block;
    margin: 0 auto 1rem;
    width: 100%;
}

.pricing-card__save--gold {
    color: var(--gold);
    background: rgba(245, 166, 35, 0.1);
}

.pricing-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card__features li::before {
    content: '✓';
    color: var(--pink);
    font-weight: 600;
    font-size: 0.75rem;
}

.pricing-card__btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: var(--surface-elevated);
    border: 1px solid var(--surface-border);
    border-radius: 10px;
    color: var(--text);
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.pricing-card__btn:hover {
    background: var(--black);
    border-color: var(--text-muted);
}

.pricing-card__btn--primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.pricing-card__btn--primary:hover {
    box-shadow: 0 0 20px var(--pink-glow);
}

.pricing-card__btn--gold {
    background: var(--gradient-gold);
    border: none;
    color: var(--black);
}

.pricing-card__btn--gold:hover {
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.4);
}

.pricing__note {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========================================
   HOW IT WORKS
   ======================================== */

.how-it-works {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0;
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.step {
    position: relative;
    text-align: center;
}

@media (min-width: 768px) {
    .step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 40px;
        right: -1.5rem;
        width: calc(100% - 80px);
        height: 1px;
        background: linear-gradient(90deg, var(--surface-border) 0%, transparent 100%);
        transform: translateX(100%);
    }
}

.step__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.step__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--surface-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step__icon svg {
    width: 28px;
    height: 28px;
    color: var(--pink);
}

.step__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step__desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0;
    background: var(--gradient-surface);
}

.faq__list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--surface-border);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item[open] {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question:hover {
    color: var(--pink-soft);
}

.faq-item__icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    background: var(--text-secondary);
    transition: var(--transition-fast);
}

.faq-item__icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item__icon::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item[open] .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-item__answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item__answer strong {
    color: var(--text);
}

/* ========================================
   FINAL CTA
   ======================================== */

.final-cta {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0;
    text-align: center;
}

.final-cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.final-cta__text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    position: relative;
    z-index: 1;
    padding: 4rem 0 2rem;
    background: var(--black);
    border-top: 1px solid var(--surface-border);
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer__top {
        grid-template-columns: 1fr 2fr;
    }
}

.footer__tagline {
    margin-top: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .footer__links {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer__col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer__col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.footer__col a:hover {
    color: var(--pink);
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--surface-border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

.footer__disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .footer__disclaimer {
        justify-content: flex-start;
    }
}

.footer__18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--pink);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
}

.footer__copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   MOBILE STICKY CTA
   ======================================== */

.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(180deg, transparent 0%, var(--black) 30%);
    z-index: 90;
    display: block;
}

@media (min-width: 768px) {
    .mobile-cta {
        display: none;
    }
}

.mobile-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 0 30px var(--pink-glow);
}

.mobile-cta__btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ========================================
   REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
