﻿/* Web Packages Page Styles */
/* Global 20% scale */
html {
    zoom: 1;
}

/* Fallback for browsers without zoom (e.g., Firefox) */
@supports not (zoom: 1) {
    body {
        transform: scale(1);
        transform-origin: top left;
        width: 125vw;
    }

    /* Keep header visible at top in fallback */
    header {
        position: sticky;
        top: 0;
    }
}

/* ══════ Dark Theme Design System ══════ */
.psy {
    /* Text hierarchy */
    --text: #F4F4F5;
    --text-secondary: #D4D4D8;
    --muted: #A1A1AA;
    --muted-2: #71717A;
    /* Surface layers (deep → elevated) */
    --bg-deep: #09090B;
    --bg-base: #0C0C12;
    --surface: #111118;
    --surface-2: #16161D;
    --surface-3: #1C1C25;
    --surface-4: #24242F;
    /* Borders */
    --line: rgba(255, 255, 255, 0.07);
    --line-strong: rgba(255, 255, 255, 0.12);
    /* Brand */
    --brand: #8B5CF6;
    --brand-dark: #7C3AED;
    --brand-light: #A78BFA;
    --brand-glow: rgba(139, 92, 246, 0.15);
    /* Radius & shadows */
    --radius: 16px;
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 8px 32px rgba(139, 92, 246, 0.15);
}

.psy .container {
    max-width: 1120px;
}

.psy header {
    border-bottom-color: rgba(0, 0, 0, 0.06);
    padding: 8px 60px;
}

.psy .logo-text {
    letter-spacing: -0.6px;
}

.psy .nav-links a {
    font-weight: 500;
}

.psy .nav-links .nav-cta {
    padding: 10px 16px;
}

/* Apple/Tesla style type scale */
.psy .hero h1 {
    font-size: 64px;
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .psy .hero h1 {
        font-size: 38px;
        letter-spacing: -1px;
    }
}

.psy .hero .subtitle {
    font-size: 22px;
    color: var(--muted);
    margin-bottom: 12px;
}

.psy .hero .description {
    font-size: 18px;
    color: var(--text);
    opacity: .9;
}

/* Focus on clarity and conversion cues */
.psy .feature-card {
    border-color: var(--line);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.psy .feature-card h3 {
    font-size: 19px;
    letter-spacing: -0.2px;
}

.psy .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 24px;
}

.psy .feature-card:hover {
    transform: translateY(-2px);
}

.psy .package-card {
    border-radius: 18px;
    border-color: var(--line);
}

.psy .package-card.featured {
    border-color: var(--brand);
}

.psy .plan-ribbon {
    height: 32px;
    font-weight: 800;
    letter-spacing: .5px;
}

.psy .choose-plan {
    border-radius: 14px;
    font-weight: 700;
}

/* Pricing visual hierarchy */
.psy .old-price {
    opacity: .6;
}

.psy .new-price {
    text-shadow: none;
}

/* Page Management */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* ===== WEB.PHP HERO — Matches index.php redesign ===== */

/* Override parent hero to center content */
.web-hero {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Floating chips (reuse chip-dot from index.php, scoped to .web-chip) */
.web-chip {
    position: absolute;
    z-index: 12;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    animation: webChipFloat 4s ease-in-out infinite;
}

.web-chip--tr {
    top: 28%;
    right: 7%;
    animation-delay: 1.2s;
}

.web-chip--bl {
    bottom: 28%;
    left: 5%;
    animation-delay: 2.8s;
}

/* Center chip — inside content flow (not absolute) */
.web-chip--center {
    position: static;
    animation: none;
    margin-bottom: 4px;
}

.chip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
    flex-shrink: 0;
    animation: webDotPulse 2s ease-in-out infinite;
}

.chip-cursor {
    color: rgba(255, 255, 255, 0.65);
    flex-shrink: 0;
}

@keyframes webChipFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes webDotPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 14px rgba(34, 197, 94, 0.9);
    }
}

/* Content wrapper */
.web-hero .web-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    max-width: 820px;
    padding: 0 32px;
    margin: 0 auto;
}

/* Heading */
.web-hero-headline {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(41px, 5.4vw, 67px);
    font-weight: 700;
    color: #f1f5f9;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0;
}

.web-hero-headline-em {
    background: linear-gradient(90deg, #c4b5fd 0%, #a78bfa 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.web-hero-subtitle {
    font-size: clamp(17px, 1.85vw, 19px);
    font-weight: 400;
    color: rgba(226, 232, 240, 0.55);
    line-height: 1.7;
    max-width: 560px;
    margin: 0;
}

/* CTA group */
.web-hero-cta-group {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

/* Primary button — blue filled pill */
.web-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.web-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.55);
}

.web-hero-btn-primary svg {
    transition: transform 0.25s ease;
}

.web-hero-btn-primary:hover svg {
    transform: translateX(3px);
}

/* Secondary button — dark glassy pill */
.web-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(226, 232, 240, 0.85);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.web-hero-btn-secondary:hover {
    color: #f1f5f9;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
}

/* Credibility line */
.web-hero-credibility {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.2px;
    font-weight: 400;
}

@keyframes webFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HERO SECTION - PROFESSIONAL VIDEO DESIGN ===== */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video background */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(9, 9, 11, 0.75) 0%,
            rgba(9, 9, 11, 0.50) 35%,
            rgba(12, 12, 18, 0.55) 60%,
            rgba(9, 9, 11, 0.92) 100%);
    z-index: 2;
}

/* Hero content container */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 850px;
    padding: 0 32px;
}

/* Positioning line - subtle and text-only */
.hero-positioning {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.3px;
    margin-bottom: 40px;
    font-weight: 400;
    text-transform: capitalize;
}

/* Main headline - strong and confident */
.hero-headline {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 32px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

/* Emphasis on one phrase only */
.hero-headline-emphasis {
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 50%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Supporting sentence - clear and concise */
.hero-supporting-text {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    margin-bottom: 44px;
    font-weight: 400;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* Single primary CTA button */
.hero-cta-button {
    display: inline-block;
    padding: 18px 56px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.4);
    border: none;
    cursor: pointer;
    margin-bottom: 28px;
    letter-spacing: 0.2px;
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.5);
}

/* Credibility line - subtle trust builder */
.hero-credibility {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.2px;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        opacity: 0.5;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(0.6);
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 20px;
    }

    .hero-positioning {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .hero-headline {
        font-size: clamp(32px, 8vw, 40px);
        letter-spacing: -0.5px;
        line-height: 1.3;
    }

    .hero-supporting-text {
        font-size: 17px;
        margin-bottom: 36px;
    }

    .hero-cta-button {
        width: auto;
        padding: 16px 48px;
        font-size: 16px;
    }

    .hero-credibility {
        font-size: 13px;
    }

    .hero-scroll {
        display: none;
    }
}

.sparkle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 40%;
    left: 85%;
    animation-delay: 0.5s;
}

.sparkle:nth-child(3) {
    top: 70%;
    left: 25%;
    animation-delay: 1s;
}

.sparkle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 1.5s;
}

.sparkle:nth-child(5) {
    top: 80%;
    left: 60%;
    animation-delay: 2s;
}

.sparkle:nth-child(6) {
    top: 10%;
    left: 50%;
    animation-delay: 2.5s;
}

.sparkle:nth-child(7) {
    top: 60%;
    left: 10%;
    animation-delay: 3s;
}

.sparkle:nth-child(8) {
    top: 50%;
    left: 90%;
    animation-delay: 3.5s;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Left side - Text content */
.hero-left {
    position: relative;
    z-index: 10;
}

/* Glowing badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #a78bfa;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    animation: badgeGlow 3s ease-in-out infinite, slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateX(-30px);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.4);
    }
}

.hero-badge-icon {
    font-size: 16px;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    opacity: 0;
    transform: translateY(40px);
}

.hero-title-line {
    display: block;
}

.hero-title-highlight {
    position: relative;
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 30%, #7C3AED 60%, #6D28D9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-title-glow {
    position: relative;
    display: inline-block;
}

.hero-title-glow::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 50%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(30px);
    opacity: 0.5;
    z-index: -1;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 19px;
    color: #b4b4bd;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 500px;
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
    transform: translateY(40px);
}

/* Glass price card */
.hero-price-card {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    margin-bottom: 36px;
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards, glassShine 4s ease-in-out infinite;
    opacity: 0;
    transform: translateY(40px);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

@keyframes glassShine {

    0%,
    100% {
        border-color: rgba(255, 255, 255, 0.08);
    }

    50% {
        border-color: rgba(139, 92, 246, 0.3);
    }
}

.hero-price-old {
    font-size: 22px;
    color: #6b6b75;
    text-decoration: line-through;
    font-weight: 400;
    position: relative;
}

.hero-price-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.5), transparent);
    border-radius: 2px;
}

.hero-price-new {
    display: flex;
    flex-direction: column;
}

.hero-price-new span:first-child {
    font-size: 12px;
    color: #a78bfa;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.hero-price-new span:last-child {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.hero-price-save {
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #34D399;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern CTA buttons */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
    transform: translateY(40px);
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 50%, #6D28D9 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 4px 20px rgba(139, 92, 246, 0.4),
        0 0 60px rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::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;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 8px 40px rgba(139, 92, 246, 0.5),
        0 0 80px rgba(139, 92, 246, 0.3);
}

.hero-btn-primary i {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover i {
    transform: translateX(4px);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.03);
    color: #f1f1f3;
    font-size: 16px;
    font-weight: 600;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    border-color: #8B5CF6;
    color: #a78bfa;
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.2);
}

/* Trust indicators */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #9898a6;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-trust-item:hover {
    color: #a78bfa;
}

.hero-trust-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    color: #a78bfa;
    font-size: 16px;
}

/* Right side - 3D Floating Card */
.hero-right {
    position: relative;
    animation: slideInRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
    transform: translateX(60px);
    perspective: 1000px;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-visual {
    position: relative;
    transform-style: preserve-3d;
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }

    25% {
        transform: translateY(-15px) rotateX(2deg) rotateY(-2deg);
    }

    50% {
        transform: translateY(-10px) rotateX(0deg) rotateY(2deg);
    }

    75% {
        transform: translateY(-20px) rotateX(-2deg) rotateY(0deg);
    }
}

/* Main showcase card */
.hero-showcase {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 30, 50, 0.9) 0%, rgba(20, 20, 35, 0.95) 100%);
    border-radius: 28px;
    padding: 32px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    overflow: hidden;
}

.hero-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(139, 92, 246, 0.1), transparent, rgba(124, 58, 237, 0.1), transparent);
    animation: rotateBorder 10s linear infinite;
}

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

.hero-showcase-inner {
    position: relative;
    z-index: 1;
}

/* Browser mockup */
.browser-mockup {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.browser-dot:nth-child(2) {
    background: #febc2e;
}

.browser-dot:nth-child(3) {
    background: #28c840;
}

.browser-url {
    flex: 1;
    margin-left: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 12px;
    color: #71717a;
    font-family: 'JetBrains Mono', monospace;
}

.browser-content {
    padding: 24px;
    background: linear-gradient(180deg, #0f0f18 0%, #0a0a12 100%);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.browser-line {
    height: 14px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.1) 50%, transparent 100%);
    border-radius: 7px;
    animation: lineLoad 2s ease-in-out infinite;
}

.browser-line:nth-child(1) {
    width: 80%;
    animation-delay: 0s;
}

.browser-line:nth-child(2) {
    width: 65%;
    animation-delay: 0.2s;
}

.browser-line:nth-child(3) {
    width: 90%;
    animation-delay: 0.4s;
}

.browser-line:nth-child(4) {
    width: 45%;
    animation-delay: 0.6s;
}

@keyframes lineLoad {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* Stats row */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hero-stat {
    text-align: center;
    padding: 20px 16px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
}

.hero-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 11px;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Floating elements around the card */
.float-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #a1a1aa;
    backdrop-filter: blur(10px);
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.float-element i {
    color: #8B5CF6;
    font-size: 18px;
}

.float-element-1 {
    top: -20px;
    left: -40px;
    animation-delay: 0s;
}

.float-element-2 {
    bottom: 60px;
    right: -50px;
    animation-delay: -2s;
}

.float-element-3 {
    bottom: -20px;
    left: 20%;
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Decorative elements */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero-gradient-1,
.hero-gradient-2 {
    display: none;
}

/* Canvas - hidden */
#hero-canvas {
    display: none;
}

/* Hero responsive */
@media (max-width: 1024px) {
    .float-element {
        display: none;
    }
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-left {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

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

    .hero-price-card {
        flex-direction: column;
        gap: 16px;
    }

    .hero-price-divider {
        width: 80px;
        height: 2px;
    }

    .hero-visual {
        animation: none;
    }

    .hero-showcase {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-trust {
        flex-direction: column;
        gap: 16px;
    }

    .browser-content {
        min-height: 150px;
    }
}




@media (max-width: 600px) {
    .hero {
        padding: 90px 0 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-price-badge {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        width: 100%;
    }

    .hero-price-divider {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .hero-trust-strip {
        gap: 16px;
    }

    .hero-trust-item {
        font-size: 12px;
    }

    .hero-bento {
        grid-template-columns: 1fr;
    }

    .bento-card.featured {
        grid-column: span 1;
    }

    .bento-stats {
        gap: 24px;
    }
}

.hero .glass {
    position: relative;
    z-index: 1;
    /* Ensure content is above canvas */
    margin: 0;
    max-width: none;
    width: 100%;
    padding: 32px 28px;
    background: transparent;
    /* Removed blur and background color */
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 200px);
}

/* Let hero container span full width so the glass covers the whole image */
.hero>.container {
    max-width: 100%;
    padding: 0;
    height: 100%;
}

.hero h1 {
    font-size: 56px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero .subtitle {
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.hero .description {
    font-size: 19px;
    color: #ffffff;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.price-reveal {
    margin: 8px 0;
    padding: 16px 0;
    background: transparent;
    border-radius: 18px;
    border: none;
    backdrop-filter: none;
}

.price-reveal .overline {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.price-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
}

.old-price {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    font-weight: 300;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.new-price {
    font-size: 72px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
    line-height: .9;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.price-prefix {
    position: absolute;
    left: 0;
    bottom: -8px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: .2px;
    margin: 0;
}

.cta-section {
    margin: 60px 0;
}

/* --- NEW: Digital Address Section --- */
.digital-address {
    background: var(--bg-base);
    padding: 100px 0;
    overflow: hidden;
}

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

.da-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #f1f1f3 !important;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.da-content p {
    font-size: 18px;
    color: #a1a1aa !important;
    margin-bottom: 16px;
}

.salesman-quote {
    margin: 32px 0;
    padding-left: 20px;
    border-left: 3px solid #8B5CF6;
}

.salesman-quote blockquote {
    font-size: 20px;
    font-style: italic;
    color: #f1f1f3 !important;
    font-weight: 500;
}

.da-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Laptop Screen Container for Galaxy Animation */
.laptop-screen {
    width: 100%;
    max-width: 500px;
    background: #1a1a2e;
    border-radius: 16px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.laptop-header {
    padding: 12px 16px;
    background: linear-gradient(180deg, #2d2d3a 0%, #1a1a2e 100%);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.laptop-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.laptop-header .dot:nth-child(1) {
    background: linear-gradient(180deg, #ff5f56 0%, #e0443d 100%);
}

.laptop-header .dot:nth-child(2) {
    background: linear-gradient(180deg, #ffbd2e 0%, #dea123 100%);
}

.laptop-header .dot:nth-child(3) {
    background: linear-gradient(180deg, #27c93f 0%, #1fa032 100%);
}

.laptop-content {
    position: relative;
    width: 100%;
    height: 300px;
    background: #0f1020;
    overflow: hidden;
}

#laptop-galaxy-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.laptop-footer {
    height: 8px;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 0 0 16px 16px;
}

@media (max-width: 900px) {
    .laptop-screen {
        max-width: 100%;
    }

    .laptop-content {
        height: 250px;
    }
}

@media (max-width: 900px) {
    .da-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .da-visual {
        order: -1;
        /* Move visual to top on mobile */
    }

    .da-content h2 {
        font-size: 32px;
    }
}

/* --- END: Digital Address Section --- */

/* --- NEW: Why Us Section --- */
.why-us {
    background: var(--bg-deep);
    padding: 100px 0;
    overflow: hidden;
}

.why-us h3 {
    color: #f1f1f3;
}

/* Section eyebrow label */
.section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

/* Why Us grid layout */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: flex-start;
    margin-top: 40px;
}

.why-us-left,
.why-us-right {
    min-width: 0;
}

/* Comparison cards */
.comparison-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cmp-card {
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.cmp-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.cmp-card-wide {
    grid-column: 1 / -1;
}

.cmp-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cmp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cmp-bad,
.cmp-good {
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cmp-bad {
    color: var(--muted);
}

.cmp-good {
    color: #f1f1f3;
    font-weight: 600;
}

.cmp-x {
    color: #EF4444;
    font-size: 16px;
    font-weight: 700;
}

.cmp-check {
    color: #22C55E;
    font-size: 16px;
    font-weight: 700;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
    margin-top: 40px;
}

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

.bg-brand {
    background: var(--brand);
}

.differentiation-list .diff-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    transition: transform 0.2s ease-out;
}

.differentiation-list .diff-item:hover {
    transform: translateX(5px);
}

.differentiation-list .diff-item h3 {
    color: #f1f1f3;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.differentiation-list .diff-item p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.differentiation-list .diff-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

@media (max-width: 900px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comparison-cards {
        grid-template-columns: 1fr;
    }

    .cmp-card-wide {
        grid-column: auto;
    }

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

/* --- END: Why Us Section --- */

/* --- NEW: Process Section --- */
.process-section {
    padding: 100px 0;
    background: var(--bg-deep);
}

.process-section .section-header h2 {
    color: #f1f1f3;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    margin-top: 40px;
}

.process-line {
    position: absolute;
    top: 30px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--line);
    z-index: 0;
}

.process-step-card {
    background: var(--surface-2);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    z-index: 1;
    transition: all 0.35s ease;
    color: #f1f1f3;
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(139, 92, 246, 0.3);
}

.process-step-card .step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: -54px auto 20px;
    border: 4px solid var(--surface-2);
}

.process-step-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #f1f1f3;
}

.process-step-card p {
    font-size: 14px;
    color: var(--muted);
}

@media (max-width: 900px) {
    .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-line {
        display: none;
    }

    .process-step-card .step-number {
        margin-top: 0;
        margin-bottom: 16px;
    }
}

/* --- END: Process Section --- */


/* Revolution (Bento) Section */
.revolution {
    padding: 120px 0;
    background: var(--bg-base);
    position: relative;
}

.revo-head {
    text-align: center;
    margin-bottom: 32px;
}

.revo-badge {
    display: inline-block;
    font-size: 12px;
    color: var(--brand-light);
    background: var(--surface-2);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.revo-title {
    font-size: 48px;
    letter-spacing: -1.5px;
    color: #f1f1f3;
    font-weight: 700;
    line-height: 1.1;
}

.revo-sub {
    font-size: 20px;
    color: #71717a;
    margin-top: 14px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.tile {
    background: var(--surface-2) !important;
    border: 1px solid var(--line) !important;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 180px;
    transition: all 0.35s ease;
}

.tile:hover {
    border-color: var(--line-strong) !important;
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

.tile .k {
    font-size: 12px;
    color: #a78bfa;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.tile h3 {
    font-size: 20px;
    color: #f1f1f3 !important;
    letter-spacing: -.3px;
    font-weight: 600;
}

.tile p {
    font-size: 14px;
    color: #a1a1aa !important;
}

.span-6 {
    grid-column: span 6;
}

.span-4 {
    grid-column: span 4;
}

.span-8 {
    grid-column: span 8;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.pill {
    font-size: 12px;
    color: #a1a1aa;
    border: 1px solid var(--line);
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--surface-3);
}

.sys-steps {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: auto;
}

.sys-steps .step {
    background: var(--surface-3);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 6px 10px;
    font-size: 12px;
    color: #a1a1aa;
}

.sys-steps .arrow {
    color: #52525b;
}

@media (max-width: 900px) {
    .revo-title {
        font-size: 36px;
    }

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

    .span-6,
    .span-4,
    .span-8 {
        grid-column: auto;
    }
}

/* Buttons */
.btn {
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin: 0 12px;
    transition: transform .2s ease, background .2s ease, color .2s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
}

.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--brand);
    border: 2px solid var(--brand);
}

.btn-secondary:hover {
    background: var(--brand);
    color: #fff;
}

.btn-quiet {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
}

.btn-quiet:hover {
    background: var(--surface-2);
}

/* Features Section - Clean (no section background image) */
.features {
    padding: 16px 0 48px;
    background: var(--bg-deep);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 600;
    color: #f1f1f3;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 21px;
    color: #71717a;
    font-weight: 400;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    text-align: left;
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--feature-bg, radial-gradient(120% 120% at 0% 0%, rgba(139, 92, 246, .08), transparent 60%));
    background-image: var(--bg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: .08;
    filter: blur(6px) saturate(.9);
    transform: scale(1.06);
    pointer-events: none;
}

.feature-card::after {
    /* soft vignette for readability */
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(10, 10, 15, .7), rgba(10, 10, 15, .9));
}

.feature-card>* {
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: #fff;
    margin-bottom: 16px;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #f1f1f3;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.feature-card p {
    font-size: 15px;
    color: #a1a1aa;
    line-height: 1.5;
    margin-bottom: 12px;
}

.feature-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-meta li {
    font-size: 14px;
    color: #f1f1f3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-meta li::before {
    content: '\2713';
    color: #a78bfa;
    font-weight: 700;
}

.features-cta {
    text-align: center;
    margin-top: 36px;
}

@media (max-width: 768px) {
    .features {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .features-stats {
        margin: -20px auto 40px;
    }
}

/* Pricing Enhancements */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 8px 0 20px;
}

.billing-toggle .label {
    font-size: 13px;
    color: var(--muted);
}

.segmented {
    display: inline-flex;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px;
    box-shadow: var(--shadow-sm);
}

.segmented button {
    border: none;
    background: transparent;
    padding: 8px 14px;
    font-size: 13px;
    color: var(--text);
    border-radius: 999px;
    cursor: pointer;
}

.segmented button[aria-pressed="true"] {
    background: var(--surface-3);
    color: var(--brand-light);
    box-shadow: inset 0 0 0 1px var(--brand);
}

.pkg-sub {
    font-size: 13px;
    color: #d4d4d8 !important;
    margin-top: 4px;
    line-height: 1.4;
}

.guarantee {
    margin: 14px 0 0;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 12px;
}

.guarantee .badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.guarantee p {
    margin: 0;
    font-size: 14px;
    color: var(--text);
}

.mini-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.mini-t {
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    font-size: 13px;
}

/* Included with every plan strip */
.included-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 8px 0 16px;
}

.included-strip .title {
    font-size: 12px;
    color: #d4d4d8 !important;
    margin-right: 4px;
}

.included-pill {
    font-size: 12px;
    color: #f1f1f3 !important;
    border: 1px solid #404047 !important;
    background: #1f1f2a !important;
    border-radius: 999px;
    padding: 6px 10px;
}

/* Urgency badge */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #f1f1f3 !important;
    background: #1f1f2a !important;
    border: 1px dashed #404047 !important;
    border-radius: 999px;
    padding: 6px 10px;
    box-shadow: var(--shadow-sm);
}

.urgency-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #F59E0B;
    display: inline-block;
}

.urgency-low {
    color: #fca5a5;
    border-color: #7f1d1d;
}



/* Risk reversal card */
.risk-card {
    margin-top: 10px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 12px;
}

.risk-card .risk-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.risk-card .risk-copy {
    flex: 1;
    font-size: 13px;
    color: var(--text);
}

.risk-card .risk-copy strong {
    display: block;
    font-size: 14px;
}



/* ── Reviews Section ──────────────────────────────────────── */
.reviews-section {
    padding: 100px 0 120px;
    background: var(--bg-base);
}

/* Header row */
.reviews-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto 64px;
}

.reviews-header-left {
    flex: 1;
}

.reviews-header-left h2 {
    margin-bottom: 10px;
}

.reviews-header-left p {
    color: var(--muted);
    font-size: 16px;
}

/* Rating summary box */
.reviews-summary-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px 28px;
    flex-shrink: 0;
    min-width: 280px;
}

.rsb-score {
    font-size: 56px;
    font-weight: 800;
    color: #f1f1f3;
    line-height: 1;
    letter-spacing: -2px;
}

.rsb-stars {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.rsb-count {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 12px;
}

.rsb-bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rsb-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--muted);
}

.rsb-bar-row>span:first-child {
    width: 22px;
    text-align: right;
}

.rsb-bar-row>span:last-child {
    width: 28px;
}

.rsb-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 99px;
    overflow: hidden;
}

.rsb-bar-fill {
    height: 100%;
    background: #fbbf24;
    border-radius: 99px;
}

.rsbf-green {
    background: #a3e635;
}

.rsbf-yellow {
    background: #facc15;
}

/* Masonry grid */
.reviews-masonry {
    columns: 3;
    column-gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Individual review card */
.rv-card {
    break-inside: avoid;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.rv-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    border-color: rgba(139, 92, 246, 0.22);
}

.rv-card--highlight {
    border-color: rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.05);
}

.rv-card--highlight:hover {
    border-color: rgba(139, 92, 246, 0.4);
}

/* Decorative large quote mark */
.rv-quote-mark {
    position: absolute;
    top: 10px;
    right: 18px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(139, 92, 246, 0.12);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Top row: avatar + name + source */
.rv-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.rv-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: 0;
}

.rv-meta {
    flex: 1;
    min-width: 0;
}

.rv-name {
    font-size: 14px;
    font-weight: 600;
    color: #f1f1f3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rv-role {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

/* Platform badge */
.rv-source {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 9px;
    border-radius: 99px;
    white-space: nowrap;
    flex-shrink: 0;
}

.rv-direct {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.rv-gsv {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Stars */
.rv-stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.rv-star-empty {
    color: rgba(255, 255, 255, 0.15);
}

/* Review text */
.rv-text {
    font-size: 14px;
    line-height: 1.72;
    color: #c4c4c8;
    margin: 0 0 16px;
}

/* Footer row */
.rv-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
}

.rv-date {
    color: var(--muted);
}

.rv-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #34d399;
    font-weight: 600;
}

.rv-verified i {
    font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
    .reviews-masonry {
        columns: 2;
    }

    .reviews-header {
        flex-direction: column;
        gap: 32px;
    }

    .reviews-summary-box {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .reviews-masonry {
        columns: 1;
    }

    .reviews-header {
        gap: 24px;
    }

    .reviews-section {
        padding: 70px 0 80px;
    }
}

/* Portfolio */
.portfolio {
    padding: 100px 0;
    background: var(--bg-deep);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.shot {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #2d1b4e);
    box-shadow: var(--shadow-sm);
    height: 200px;
    position: relative;
}

.shot::after {
    content: 'Preview';
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 12px;
    color: #71717a;
}

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

.faq .section-header h2 {
    color: #f1f1f3;
}

.faq .section-header p {
    color: #a1a1aa;
}

.faq-item {
    background: var(--surface-2) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--line-strong) !important;
}

.faq-item.open {
    border-color: rgba(139, 92, 246, 0.25) !important;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    color: #f1f1f3 !important;
    font-weight: 500;
}

.faq-q strong {
    color: #f1f1f3 !important;
}

.faq-q svg,
.faq-q i {
    color: #a1a1aa;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    padding: 0 20px;
    color: #a1a1aa;
}

.faq-a p {
    color: #d4d4d8 !important;
}

.faq-item.open .faq-a {
    max-height: 400px;
    padding-bottom: 16px;
}

/* Contact form */
.contact {
    padding: 100px 0;
    background: var(--bg-deep);
}

.contact .section-header h2 {
    color: #f1f1f3;
}

.contact .section-header p {
    color: #a1a1aa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 32px;
}

.card {
    background: var(--surface-2) !important;
    border: 1px solid var(--line) !important;
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.3s;
}

.card:hover {
    border-color: var(--line-strong) !important;
}

.card h3 {
    color: #f1f1f3 !important;
}

.card p {
    color: #d4d4d8 !important;
}

.field {
    margin-bottom: 16px;
}

.field label {
    display: block;
    font-size: 14px;
    color: #a1a1aa !important;
    margin-bottom: 6px;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0f0f15 !important;
    color: #f1f1f3 !important;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #71717a;
}

.field textarea {
    min-height: 120px;
}

/* Range slider styling */
.field input[type="range"] {
    padding: 0;
    border: none;
}

.field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #8B5CF6;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
    transition: all 0.2s ease;
}

.field input[type="range"]::-webkit-slider-thumb:hover {
    background: #7C3AED;
    transform: scale(1.1);
}

.field input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #8B5CF6;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
    transition: all 0.2s ease;
}

.field input[type="range"]::-moz-range-thumb:hover {
    background: #7C3AED;
    transform: scale(1.1);
}

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

/* Sticky CTA (mobile) */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    padding: 10px 16px;
    display: none;
    z-index: 1000;
}

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

@media (max-width: 768px) {
    .sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 68px;
    }
}

/* Packages - Apple Glassmorphism Style */
.packages {
    padding: 100px 0;
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    /* remove purple overlays */
    pointer-events: none;
}

/* Base Package */
.base-package {
    max-width: 800px;
    margin: 80px auto 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.base-header h3 {
    font-size: 21px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    font-weight: 400;
}

.base-price {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    margin: 16px 0;
    letter-spacing: -2px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.base-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.base-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    text-align: left;
}

.base-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.base-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.base-feature .feature-icon {
    font-size: 24px;
    margin-top: 4px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.base-feature strong {
    display: block;
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 4px;
    font-weight: 600;
}

.base-feature p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Package Cards (glassmorphism) */
.package-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 12px 0 28px;
}

.package-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .package-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .package-cards {
        grid-template-columns: 1fr;
    }
}

.package-card {
    backdrop-filter: none;
    color: var(--text) !important;
    background: var(--surface-2) !important;
    border: 1px solid var(--line) !important;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(139, 92, 246, 0.3) !important;
    background: var(--surface-3) !important;
}

.package-card.featured {
    border-color: var(--brand);
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.12);
    position: relative;
    padding-top: 52px;
}

/* Horizontal Package Card Styles */
.package-card-horizontal {
    height: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #18181f !important;
}

.package-card-horizontal:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 24px 64px rgba(139, 92, 246, 0.25) !important;
    border-color: #a78bfa !important;
    background: #1f1f2a !important;
}

.package-card-horizontal:hover button {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.5);
    transform: translateY(-2px);
}

.package-card-horizontal button:hover div {
    opacity: 1 !important;
}

@media (max-width: 1024px) {
    .package-card-horizontal {
        grid-template-columns: 1fr !important;
        padding: 36px 32px !important;
        gap: 28px !important;
    }

    .package-card-horizontal>div:first-of-type {
        max-width: 100% !important;
    }

    .package-card-horizontal>div:last-child {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    .package-card-horizontal {
        padding: 28px 24px !important;
    }

    .package-card-horizontal h4 {
        font-size: 24px !important;
    }

    .package-card-horizontal button {
        padding: 12px 24px !important;
        font-size: 15px !important;
    }
}

/* New full-width ribbon for featured (Plus) */
.plan-ribbon {
    position: absolute;
    left: -1px;
    right: -1px;
    top: -14px;
    height: 34px;
    background: #8B5CF6;
    border: 1px solid #7C3AED;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    z-index: 2;
}

.package-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.package-title h4 {
    font-size: 20px;
    font-weight: 700;
    color: #f1f1f3 !important;
    letter-spacing: -0.3px;
}

.package-badge {
    font-size: 12px;
    color: #fff;
    background: #8B5CF6;
    border: 1px solid #7C3AED;
    padding: 4px 8px;
    border-radius: 999px;
}

.package-price {
    margin: 8px 0 6px;
    color: #f1f1f3 !important;
}

.price-monthly {
    display: block;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
}

.price-monthly small {
    font-size: 16px;
    font-weight: 600;
    opacity: .9;
    margin-left: 6px;
}

.price-yearly {
    margin-top: 4px;
}

.price-yearly small {
    font-size: 13px;
    color: #86868b;
}

.package-list {
    list-style: none;
    margin: 12px 0 16px;
    padding: 0;
}

.package-list li {
    font-size: 14px;
    color: #f1f1f3 !important;
    margin: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-list li:before {
    content: '✓';
    color: #a78bfa;
    opacity: .9;
    font-weight: 700;
}

.package-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Choose plan button style */
.choose-plan {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0f0f15;
    color: #f1f1f3 !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.choose-plan:hover {
    background: #18181f;
    transform: translateY(-1px);
    border-color: rgba(167, 139, 250, 0.5);
}

.package-card.featured .choose-plan {
    background: #111;
    color: #fff;
    border-color: #111;
}

.package-card.featured .choose-plan:hover {
    background: #000;
}

/* Selected plan state - Green */
.choose-plan.plan-selected {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #fff !important;
    border-color: #10b981 !important;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35) !important;
}

.choose-plan.plan-selected:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45) !important;
    transform: translateY(-2px);
}

/* Selected base visual state */
.package-card.selected {
    border-color: #a78bfa;
    box-shadow: 0 20px 50px rgba(139, 92, 246, .32), 0 2px 10px rgba(0, 0, 0, .2);
    background: linear-gradient(180deg, var(--surface-2), rgba(139, 92, 246, 0.1));
}

.package-card.selected .choose-plan {
    background: #8B5CF6;
    color: #fff;
    border-color: #7C3AED;
}

.package-card.selected .choose-plan:hover {
    background: #7C3AED;
}

/* Gentle pulse to draw attention when prompting */
@keyframes pkgPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, .28);
    }

    100% {
        box-shadow: 0 0 0 14px rgba(139, 92, 246, 0);
    }
}

.package-card.pulse {
    animation: pkgPulse .9s ease-out 2;
}

/* Discount badge */
.discount-badge {
    position: absolute;
    top: 8px;
    right: 12px;
    left: auto;
    background: #FEF08A;
    color: #111827;
    font-weight: 800;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #FACC15;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    z-index: 3;
}

/* Avoid overlap with ribbon on featured card */
.package-card.featured .discount-badge {
    top: 12px;
    right: 14px;
    left: auto;
}

/* Compare table inside gradient section */
.compare-card {
    margin-top: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    backdrop-filter: none;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.compare-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 8px;
    align-items: center;
}

.compare-grid .head {
    font-weight: 700;
    padding: 10px;
}

.compare-grid .cell {
    padding: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-grid .feat {
    opacity: .95;
}

.tick {
    font-weight: 800;
    color: #a78bfa;
}

/* Compare grid stripes and sticky first column */
.compare-grid .cell:nth-child(8n+5),
.compare-grid .cell:nth-child(8n+6),
.compare-grid .cell:nth-child(8n+7),
.compare-grid .cell:nth-child(8n+8) {
    background: var(--surface-2);
}

.compare-grid .head:first-child,
.compare-grid .cell:nth-child(4n+1) {
    position: sticky;
    left: 0;
    background: var(--surface);
    z-index: 1;
    box-shadow: 8px 0 12px -12px rgba(0, 0, 0, 0.3);
}

/* Customization Section */
.customization-section {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.customization-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

.custom-left {
    min-width: 0;
}

.custom-right {
    position: static;
    top: auto;
}

.addons-sidebar {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.addons-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 16px 16px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.addons-title {
    font-weight: 700;
    color: var(--text);
    font-size: 14px;
    letter-spacing: -0.2px;
}

.addons-note {
    color: #86868b;
    font-size: 12px;
}

.addons-list {
    padding: 8px 12px 12px;
}

/* Famous Packages Section */
.famous-packages-section {
    margin-bottom: 32px;
}

.famous-packages-header {
    text-align: center;
    margin-bottom: 24px;
}

/* Dark theme for add-on items (replaces glassmorphism whites) */
.glass-addon-item {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 16px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    transition: all 0.2s ease-in-out;
    box-shadow: var(--shadow-sm);
}

.glass-addon-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--surface-3);
    border-color: rgba(255, 255, 255, 0.12);
}

.glass-addon-item.active {
    background: linear-gradient(180deg, var(--surface-2), rgba(139, 92, 246, 0.08));
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(139, 92, 246, 0.35);
}

.glass-addon-item.active .addon-price {
    color: var(--brand);
    font-weight: 700;
}

.glass-addon-item.active .checkbox-icon-inner {
    transform: scale(1);
    opacity: 1;
}

.glass-addon-item .checkbox-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-3);
    border: 1px solid var(--line);
}

.glass-addon-item .checkbox-icon-inner {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--brand);
    transform: scale(0);
    opacity: 0;
}

/* Custom Request Panel */
.custom-request-panel {
    margin-top: 1.5rem;
    padding: 1.75rem;
    border-radius: 20px;
    background: #18181f !important;
    border: 2px dashed rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #f1f1f3;
}

.custom-request-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.custom-request-panel:hover {
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(139, 92, 246, 0.2);
    background: #1f1f2a !important;
}

.custom-request-content {
    position: relative;
    z-index: 1;
}

.custom-request-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.custom-request-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f1f1f3 !important;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.custom-request-description {
    font-size: 0.95rem;
    color: #a1a1aa !important;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.custom-request-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.custom-request-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.custom-request-btn:active {
    transform: translateY(0);
    transition: all 0.2s ease;
}

/* END: New Styles */

.feature-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 768px) {
    .addons-sidebar .feature-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .customization-layout {
        grid-template-columns: 1fr;
    }

    .custom-right {
        position: static;
    }
}

/* Mobile accordion for add-ons */
@media (max-width: 768px) {
    .addons-header {
        cursor: pointer;
    }

    /* Keep visible when .open is present; JS ensures .open by default on portrait */
    .addons-sidebar:not(.open) .addons-list {
        display: none;
    }

    .addons-sidebar .addons-header::after {
        content: attr(aria-expanded);
        display: none;
    }

    /* Avoid clipping and allow scroll inside when content is tall */
    .addons-sidebar {
        position: relative;
        max-width: 100%;
    }

    .addons-sidebar .addons-list {
        max-height: 70vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }
}

/* Compact scaling for add-ons and calculator */
.addons-sidebar .option-info h4 {
    font-size: 14px;
}

.addons-sidebar .option-info p {
    font-size: 12px;
}

.addons-sidebar .option-price {
    font-size: 13px;
    font-weight: 600;
}

/* Included-in-plan state for add-ons */
.feature-option.included .option-price {
    color: var(--muted);
}

.feature-option.included .option-checkbox input[type="checkbox"] {
    cursor: not-allowed;
    opacity: .7;
}

.selected-group-title {
    font-size: 12px;
    color: var(--muted);
    margin: 10px 0 6px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.addons-sidebar .price-calculator {
    padding: 20px;
}

.addons-sidebar .calculator-content {
    gap: 14px;
}

.addons-sidebar .calculator-left h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.addons-sidebar .base-item,
.addons-sidebar .selected-item {
    font-size: 13px;
    padding: 8px 0;
}

.addons-sidebar .total-label {
    font-size: 13px;
}

.addons-sidebar .total-amount {
    font-size: 32px;
}

/* Slightly tighter left-side cards */
.custom-left .package-cards {
    gap: 16px;
}

.custom-left .package-card {
    padding: 20px;
}

.custom-left .package-title h4 {
    font-size: 18px;
}

.custom-left .package-price {
    font-size: 32px;
}

.custom-left .package-list li {
    font-size: 13px;
}

.custom-left .package-actions .btn {
    padding: 8px 14px;
    font-size: 14px;
}

.custom-left .compare-card {
    padding: 12px;
}

.custom-left .compare-grid .head {
    font-size: 14px;
}

.custom-left .compare-grid .cell {
    padding: 8px;
}

.customization-section h3 {
    font-size: 36px;
    font-weight: 700;
    color: #f1f1f3 !important;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.customization-subtitle {
    font-size: 19px;
    color: #a1a1aa !important;
    text-align: center;
    margin-bottom: 60px;
}

.feature-option.selected::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    pointer-events: none;
}

/* Selected tile emphasis */
.feature-option.selected {
    border-color: #8B5CF6;
    box-shadow: 0 10px 28px rgba(139, 92, 246, 0.18);
}

.feature-option .option-header {
    cursor: pointer;
}

/* Hide the source tile while it's considered moved to summary */
.feature-option.outgoing {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.feature-option.hidden {
    display: none !important;
}

.option-header {
    position: relative;
}

.remove-addon-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    appearance: none;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    color: #6e6e73;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-addon-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #111;
}

/* Selected list remove button */
.selected-item {
    position: relative;
}

.selected-item .remove-x {
    appearance: none;
    border: none;
    background: transparent;
    color: #6e6e73;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    margin-left: 10px;
}

.selected-item .remove-x:hover {
    color: #111;
}

.selected-item .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* Fly animation helper */
.fly-clone {
    position: fixed;
    z-index: 9999;
    margin: 0;
    pointer-events: none;
    will-change: transform, opacity;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    border-radius: 12px;
    overflow: hidden;
}

/* Price Calculator */
.price-calculator {
    background: var(--surface-2);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--line);
    margin-top: 40px;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-sm);
}

.calculator-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.calculator-left {
    flex: 1;
}

.calculator-left h4 {
    font-size: 21px;
    font-weight: 600;
    color: #f1f1f3;
    margin-bottom: 28px;
}

.selected-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.base-item,
.selected-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 17px;
}

.base-item {
    font-weight: 500;
    color: #f1f1f3;
}

.selected-item {
    color: #d4d4d8;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.calculator-right {
    text-align: right;
    flex-shrink: 0;
}

.total-price {
    margin-bottom: 32px;
}

.total-label {
    display: block;
    font-size: 17px;
    color: #a1a1aa;
    margin-bottom: 12px;
}

.total-amount {
    font-size: 48px;
    font-weight: 700;
    color: #f1f1f3;
    letter-spacing: -1px;
}

#order-btn {
    min-width: 220px;
    background: rgba(139, 92, 246, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 1);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

#order-btn:hover {
    background: rgba(124, 58, 237, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
}

/* Value Section - Simple Table */
.value-section {
    padding: 100px 0;
    background: var(--surface);
}

/* Website theme overrides for customization section - now uses dark theme defaults */
.customization-section.website-theme h3 {
    color: #f1f1f3 !important;
}

.customization-section.website-theme .customization-subtitle {
    color: #a1a1aa !important;
}

.customization-section.website-theme .price-calculator {
    background: #18181f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.customization-section.website-theme .calculator-left h4 {
    color: #f1f1f3;
}

.selected-group-title {
    color: #86868b;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.customization-section.website-theme .base-item {
    color: var(--text);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.customization-section.website-theme .selected-item {
    color: var(--text);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.customization-section.website-theme .total-label {
    color: var(--muted);
}

.customization-section.website-theme .total-amount {
    color: var(--text);
    text-shadow: none;
}

.customization-section.website-theme .package-card {
    background: var(--surface-2);
    border: 1px solid var(--line);
    color: var(--text);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.customization-section.website-theme .package-card.featured {
    border-color: #a78bfa;
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.25);
}

.customization-section.website-theme .package-title h4 {
    color: var(--text);
}

.customization-section.website-theme .package-price {
    color: var(--text);
    text-shadow: none;
}

.customization-section.website-theme .package-list li {
    color: var(--text);
}

.customization-section.website-theme .compare-card {
    background: var(--surface-2);
    border: 1px solid var(--line);
    color: var(--text);
}

.customization-section.website-theme .compare-grid .cell {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.customization-section.website-theme .tick {
    color: #a78bfa;
}

/* Compact the final summary (price calculator) */
.customization-section .price-calculator {
    padding: 22px;
    margin-top: 20px;
}

.customization-section .calculator-content {
    gap: 16px;
}

.customization-section .calculator-left h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

.customization-section .base-item,
.customization-section .selected-item {
    padding: 10px 0;
    font-size: 14px;
}

.customization-section .total-label {
    font-size: 13px;
    margin-bottom: 8px;
}

.customization-section .total-amount {
    font-size: 34px;
}

.value-table {
    max-width: 800px;
    margin: 80px auto 0;
    background: var(--surface-2);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.value-table table {
    width: 100%;
    border-collapse: collapse;
}

.value-table th {
    background: var(--surface-3);
    padding: 24px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    border-bottom: 1px solid var(--line);
}

.value-table td {
    padding: 20px 24px;
    font-size: 17px;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.value-table tr:last-child td {
    border-bottom: none;
    font-weight: 600;
    font-size: 19px;
}

.checkmark {
    color: #8B5CF6;
    font-weight: bold;
    margin-right: 8px;
}

/* Agent Page */
.agent-hero {
    background: var(--surface);
    padding: 120px 0 100px;
    text-align: center;
}

.earning-spotlight {
    margin: 80px 0;
    padding: 80px 0;
    background: var(--surface-2);
    border-radius: 18px;
}

.earning-spotlight h3 {
    font-size: 21px;
    color: #86868b;
    margin-bottom: 16px;
    font-weight: 400;
}

.earning-amount {
    font-size: 96px;
    font-weight: 700;
    color: #8B5CF6;
    margin: 24px 0;
    letter-spacing: -3px;
}

.earning-subtitle {
    font-size: 19px;
    color: #f1f1f3;
    margin-bottom: 40px;
}

.earning-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.earning-item {
    text-align: center;
    padding: 24px;
    background: var(--surface);
    border-radius: 12px;
}

.earning-item strong {
    display: block;
    font-size: 17px;
    color: var(--text);
    margin-bottom: 8px;
}

.earning-item span {
    font-size: 15px;
    color: #86868b;
}

/* Benefits Grid */
.benefits {
    padding: 100px 0;
    background: var(--surface);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.benefit-card {
    text-align: center;
    padding: 40px 20px;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Process Steps */
.process {
    padding: 100px 0;
    background: var(--surface-2);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: #8B5CF6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    font-weight: 600;
}

.process-step h3 {
    font-size: 21px;
    font-weight: 600;
    color: #f1f1f3;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 17px;
    color: #86868b;
    line-height: 1.5;
}



/* Performance: delay offscreen rendering */
.features,
.revolution,
.packages,
.value-section,
.reviews-section,
.portfolio,
.faq,
.contact {
    content-visibility: auto;
    contain-intrinsic-size: 600px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

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

    .hero .subtitle {
        font-size: 21px;
    }



    .price-comparison {
        flex-direction: column;
        gap: 16px;
        margin: 16px 0;
        /* tighten spacing on mobile */
    }

    .old-price {
        font-size: 32px;
    }

    .new-price {
        font-size: 48px;
    }

    .earning-amount {
        font-size: 64px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    /* Glassmorphism mobile adjustments */
    .base-package {
        margin: 40px auto 40px;
        padding: 32px 24px;
    }

    .base-price {
        font-size: 48px;
    }

    .base-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .customization-section h3 {
        font-size: 28px;
    }

    .option-header {
        padding: 20px 24px;
        gap: 16px;
    }

    .option-info h4 {
        font-size: 17px;
    }

    .option-price {
        font-size: 18px;
    }

    .price-calculator {
        padding: 24px;
        position: static;
    }

    .calculator-content {
        flex-direction: column;
        gap: 24px;
    }

    .calculator-right {
        text-align: left;
    }

    .total-amount {
        font-size: 36px;
    }

    #order-btn {
        width: 100%;
        min-width: auto;
    }

    /* Tighten hero glass container on mobile */
    .hero .glass {
        padding: 20px 16px;
    }

    .hero {
        padding: 56px 0 8px;
    }

    .price-reveal {
        margin: 8px 0;
        padding: 12px 0;
    }

    .features {
        padding: 12px 0 36px;
    }
}

/* Focus styles for interactive cards */
.tile:focus-visible,
.package-card:focus-visible,
.feature-card:focus-visible {
    outline: 3px solid var(--brand);
    outline-offset: 2px;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}



/* Splash cursor effect styles */
.splash-cursor {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    border: 2px solid var(--brand);
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    z-index: 9999;
}

.splash-cursor.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Hotel Booking Features Modal */
.hotel-features-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.hotel-features-modal.show {
    display: flex;
}

.hotel-features-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 0;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(139, 92, 246, 0.3), 0 0 0 1px rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.2);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.hotel-features-header {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    padding: 32px 40px;
    border-bottom: 2px solid rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.hotel-features-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hotel-features-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px 0;
    letter-spacing: -0.8px;
    position: relative;
    z-index: 1;
}

.hotel-features-header p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    position: relative;
    z-index: 1;
}

.hotel-features-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.hotel-features-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.hotel-features-body {
    padding: 40px;
    max-height: calc(85vh - 140px);
    overflow-y: auto;
}

.hotel-features-body::-webkit-scrollbar {
    width: 8px;
}

.hotel-features-body::-webkit-scrollbar-track {
    background: rgba(139, 92, 246, 0.05);
    border-radius: 10px;
}

.hotel-features-body::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.3);
    border-radius: 10px;
}

.hotel-features-body::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.5);
}

.feature-category {
    margin-bottom: 36px;
}

.feature-category:last-child {
    margin-bottom: 0;
}

.feature-category-title {
    font-size: 22px;
    font-weight: 700;
    color: #f1f1f3;
    margin: 0 0 18px 0;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-category-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(139, 92, 246, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateX(4px);
}

.feature-item-check {
    color: #8B5CF6;
    font-size: 16px;
    font-weight: 700;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item-text {
    font-size: 14px;
    color: #d4d4d8;
    line-height: 1.5;
    font-weight: 500;
}

.feature-subcategory {
    margin-left: 46px;
    margin-top: 8px;
    font-size: 13px;
    color: #86868b;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Feature Request Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-content h3 {
    margin-top: 0;
    color: #f1f1f3;
    font-size: 20px;
    font-weight: 600;
}

.modal-content p {
    color: #86868b;
    margin-bottom: 20px;
}

.modal-content textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #2a2a35;
    color: #f1f1f3;
    font-family: inherit;
    resize: vertical;
}

.modal-content .btn {
    margin: 0;
}

.modal-content .btn-group {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}

/* Custom Alert Styles */
.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.custom-alert {
    background: #18181f;
    border-radius: 20px;
    padding: 32px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
    position: relative;
    color: #f1f1f3;
}

.custom-alert.success {
    border-top: 4px solid #22c55e;
}

.custom-alert.error {
    border-top: 4px solid #ef4444;
}

.custom-alert.info {
    border-top: 4px solid #3b82f6;
}

.custom-alert.warning {
    border-top: 4px solid #f59e0b;
}

.custom-alert-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.custom-alert.success .custom-alert-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.custom-alert.error .custom-alert-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.custom-alert.info .custom-alert-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.custom-alert.warning .custom-alert-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.custom-alert-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #f1f1f3;
    text-align: center;
}

.custom-alert-message {
    font-size: 15px;
    color: #86868b;
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.5;
}

.custom-alert-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.custom-alert-btn:hover {
    background: linear-gradient(135deg, #7C3AED, #6D28D9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.custom-confirm-btns {
    display: flex;
    gap: 12px;
}

.custom-confirm-btn {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.custom-confirm-btn.confirm {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.custom-confirm-btn.confirm:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
}

.custom-confirm-btn.cancel {
    background: #2a2a35;
    color: #f1f1f3;
}

.custom-confirm-btn.cancel:hover {
    background: #3a3a45;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════
           HOTEL BOOKING PROMO CARD
           ═══════════════════════════════════════════════ */
.hb-promo {
    position: relative;
    background: linear-gradient(145deg, #13111C 0%, #1a1625 50%, #13111C 100%);
    border: 1.5px solid rgba(139, 92, 246, 0.35);
    border-radius: 22px;
    padding: 36px 34px 30px;
    margin-bottom: 28px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.hb-promo:hover {
    border-color: rgba(139, 92, 246, 0.7);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2), 0 0 0 1px rgba(139, 92, 246, 0.1);
}

.hb-promo__glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.4s;
}

.hb-promo:hover .hb-promo__glow {
    opacity: 1.5;
}

.hb-promo__ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 40px;
    transform: rotate(30deg);
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.4);
    z-index: 2;
}

/* Top row: icon + intro + price */
.hb-promo__top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
}

.hb-promo__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, #8B5CF6, #6D28D9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}

.hb-promo__intro {
    flex: 1;
    min-width: 0;
}

.hb-promo__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #F59E0B;
    margin-bottom: 6px;
}

.hb-promo__tag i {
    font-size: 12px;
}

.hb-promo__title {
    font-size: 24px;
    font-weight: 800;
    color: #f1f1f3;
    letter-spacing: -0.6px;
    line-height: 1.15;
    margin: 0 0 6px;
}

.hb-promo__sub {
    font-size: 14px;
    color: #9CA3AF;
    margin: 0;
    line-height: 1.45;
}

.hb-promo__price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 14px;
    padding: 14px 22px;
    min-width: 130px;
    flex-shrink: 0;
}

.hb-promo__from {
    font-size: 11px;
    color: #86868b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.hb-promo__price {
    font-size: 30px;
    font-weight: 800;
    color: #f1f1f3;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hb-promo__period {
    font-size: 12px;
    color: #86868b;
    font-weight: 500;
}

/* Highlights strip */
.hb-promo__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-bottom: 24px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    position: relative;
    z-index: 1;
}

.hb-promo__hl {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #D1D5DB;
    line-height: 1.35;
}

.hb-promo__hl strong {
    color: #f1f1f3;
    font-weight: 700;
}

.hb-promo__hl-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 13px;
    color: #A78BFA;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.15);
}

/* Bottom row: CTA + live demo */
.hb-promo__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.hb-promo__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
    letter-spacing: -0.2px;
}

.hb-promo__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, #9B6DF6 0%, #8B5CF6 100%);
}

.hb-promo__cta i {
    font-size: 13px;
    transition: transform 0.3s;
}

.hb-promo:hover .hb-promo__cta i {
    transform: translateX(4px);
}

.hb-promo__live {
    font-size: 13px;
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hb-promo__live a {
    color: #A78BFA;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.hb-promo__live a:hover {
    color: #C4B5FD;
    text-decoration: underline;
}

.hb-promo__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22C55E;
    display: inline-block;
    animation: hb-pulse 2s infinite;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

@keyframes hb-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.85);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hb-promo {
        padding: 28px 20px 24px;
    }

    .hb-promo__ribbon {
        display: none;
    }

    .hb-promo__top {
        flex-direction: column;
        gap: 14px;
    }

    .hb-promo__price-box {
        flex-direction: row;
        align-items: baseline;
        gap: 8px;
        padding: 12px 16px;
        width: 100%;
        justify-content: center;
    }

    .hb-promo__price {
        font-size: 26px;
    }

    .hb-promo__title {
        font-size: 20px;
    }

    .hb-promo__highlights {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px;
    }

    .hb-promo__bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        text-align: center;
    }

    .hb-promo__cta {
        justify-content: center;
        padding: 14px 24px;
    }

    .hb-promo__live {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hb-promo__icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 20px;
    }

    .hb-promo__title {
        font-size: 18px;
    }

    .hb-promo__hl {
        font-size: 12.5px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE OPTIMIZATION — web.php homepage
   Only affects viewport ≤ 768px (mobile). Desktop is untouched.
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* ── Container padding ── */
    .psy .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    /* ══════════════════════════════════
       HERO SECTION
    ══════════════════════════════════ */

    /* Hide floating side chips — they overlay text and clip on small screens */
    .web-chip--tr,
    .web-chip--bl {
        display: none;
    }

    /* Center chip — tighter on mobile */
    .web-chip--center {
        font-size: 11.5px;
        padding: 6px 13px;
        gap: 6px;
    }

    /* Hero content wrapper */
    .web-hero .web-hero-content {
        padding: 0 18px;
        gap: 16px;
        margin-top: 10px;
    }

    /* Main headline — large but readable */
    .web-hero-headline {
        font-size: clamp(30px, 9vw, 40px);
        letter-spacing: -0.8px;
        line-height: 1.12;
    }

    /* Subtitle — slightly smaller, better line spacing */
    .web-hero-subtitle {
        font-size: clamp(14px, 4vw, 16px);
        line-height: 1.65;
        color: rgba(226, 232, 240, 0.60);
        max-width: 100%;
    }

    /* CTA group — stack buttons vertically, full-width for thumb taps */
    .web-hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .web-hero-btn-primary,
    .web-hero-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
    }

    /* Credibility line — hide on very small screens to save space */
    .web-hero-credibility {
        font-size: 11.5px;
        color: rgba(255, 255, 255, 0.30);
    }

    /* ══════════════════════════════════
       DIGITAL ADDRESS SECTION
    ══════════════════════════════════ */

    .digital-address {
        padding: 64px 0;
    }

    .da-content h2 {
        font-size: 28px;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }

    .da-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .salesman-quote {
        margin: 24px 0;
        padding-left: 16px;
    }

    .salesman-quote blockquote {
        font-size: 16px;
        line-height: 1.6;
    }

    .da-content .btn {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    /* Laptop screen — shorter canvas on mobile */
    .laptop-content {
        height: 180px;
    }

    /* ══════════════════════════════════
       WHY US / FEATURES SECTION
    ══════════════════════════════════ */

    .why-us {
        padding: 60px 0;
    }

    .why-us-grid {
        margin-top: 28px;
        gap: 32px;
    }

    .differentiation-list .diff-item {
        gap: 14px;
        margin-bottom: 20px;
    }

    .differentiation-list .diff-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        flex-shrink: 0;
    }

    .differentiation-list .diff-item h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .differentiation-list .diff-item p {
        font-size: 14px;
        line-height: 1.55;
    }

    /* Comparison cards — already single column on 900px, just reduce padding */
    .cmp-card {
        padding: 14px 16px;
    }

    .cmp-row {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .cmp-bad,
    .cmp-good {
        font-size: 13px;
    }

    /* ══════════════════════════════════
       REVOLUTION / BENTO SECTION
    ══════════════════════════════════ */

    .revolution {
        padding: 64px 0;
    }

    .revo-title {
        font-size: 28px;
        letter-spacing: -0.8px;
        line-height: 1.15;
    }

    .revo-sub {
        font-size: 15px;
        margin-top: 10px;
    }

    .revo-head {
        margin-bottom: 24px;
    }

    .tile {
        padding: 22px 18px;
        min-height: unset;
        gap: 10px;
    }

    .tile h3 {
        font-size: 17px;
    }

    .tile p {
        font-size: 13.5px;
        line-height: 1.6;
    }

    .sys-steps {
        flex-wrap: wrap;
        gap: 6px;
    }

    .pill-row {
        gap: 6px;
    }

    .pill {
        font-size: 11.5px;
        padding: 5px 9px;
    }

    /* ══════════════════════════════════
       PACKAGES SECTION
    ══════════════════════════════════ */

    .packages {
        padding: 60px 0 40px;
    }

    .customization-section h3 {
        font-size: 24px;
        letter-spacing: -0.5px;
    }

    .customization-subtitle {
        font-size: 15px;
        margin-bottom: 36px;
    }

    /* Package cards — full width, generous tap targets */
    .package-card {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .package-title h4 {
        font-size: 18px;
    }

    .package-list li {
        font-size: 13.5px;
        margin: 7px 0;
    }

    .choose-plan {
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 12px;
        /* Bigger tap target */
        min-height: 48px;
    }

    .plan-ribbon {
        font-size: 11px;
    }

    /* Package heading block */
    div[style*="text-align: center; margin: 60px 0 40px 0"] {
        margin: 40px 0 28px 0 !important;
    }

    div[style*="text-align: center; margin: 60px 0 40px 0"] h2 {
        font-size: 26px !important;
    }

    div[style*="text-align: center; margin: 60px 0 40px 0"] p {
        font-size: 14px !important;
    }

    /* Hotel booking promo — reduce internal padding */
    .hb-promo {
        padding: 24px 18px 22px;
        border-radius: 18px;
        margin-bottom: 20px;
    }

    /* ══════════════════════════════════
       PROCESS SECTION
    ══════════════════════════════════ */

    .process-section {
        padding: 60px 0;
    }

    .process-step-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

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

    .process-step-card p {
        font-size: 13px;
        line-height: 1.6;
    }

    .process-step-card .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    /* ══════════════════════════════════
       REVIEWS SECTION
    ══════════════════════════════════ */

    .reviews-section {
        padding: 60px 0 72px;
    }

    .reviews-header {
        margin-bottom: 40px;
        gap: 20px;
    }

    .reviews-header-left h2 {
        font-size: 26px;
        letter-spacing: -0.4px;
    }

    .reviews-header-left p {
        font-size: 14px;
    }

    .reviews-summary-box {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 18px 20px;
        border-radius: 16px;
    }

    .rsb-score {
        font-size: 44px;
    }

    .rsb-stars {
        font-size: 15px;
    }

    .rv-card {
        padding: 18px 16px;
        border-radius: 14px;
        margin-bottom: 16px;
    }

    .rv-text {
        font-size: 13.5px;
        line-height: 1.68;
    }

    .rv-quote-mark {
        font-size: 60px;
        top: 6px;
        right: 12px;
    }

    /* ══════════════════════════════════
       SECTION HEADINGS (GLOBAL)
    ══════════════════════════════════ */

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

    .section-header h2 {
        font-size: 26px;
        letter-spacing: -0.5px;
    }

    .section-header p {
        font-size: 15px;
    }

    /* ══════════════════════════════════
       STICKY CTA — SAFE AREA AWARE
    ══════════════════════════════════ */

    .sticky-cta {
        padding: 10px 18px;
        padding-bottom: max(10px, env(safe-area-inset-bottom));
    }

    .sticky-cta .container {
        gap: 12px;
    }

    /* Body padding to account for sticky CTA + safe area */
    body {
        padding-bottom: calc(68px + env(safe-area-inset-bottom));
    }

    /* ══════════════════════════════════
       TOUCH TARGETS — MIN 44px
    ══════════════════════════════════ */

    .btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hb-promo__cta {
        min-height: 48px;
    }

    /* ══════════════════════════════════
       GENERAL PADDING REDUCTIONS
    ══════════════════════════════════ */

    .faq {
        padding: 60px 0;
    }

    .contact {
        padding: 60px 0;
    }

    .portfolio {
        padding: 60px 0;
    }
}

/* ═══════════════════════════════════════════════════════════════
   EXTRA SMALL SCREENS (≤ 420px) — iPhoneSE, Pixel 4a, etc.
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 420px) {

    .web-hero-headline {
        font-size: clamp(26px, 8.5vw, 33px);
    }

    .web-hero-btn-primary,
    .web-hero-btn-secondary {
        font-size: 14px;
        padding: 13px 16px;
    }

    .da-content h2 {
        font-size: 24px;
    }

    .revo-title {
        font-size: 24px;
    }

    .reviews-header-left h2,
    .section-header h2 {
        font-size: 22px;
    }

    .customization-section h3 {
        font-size: 22px;
    }

    .package-card {
        padding: 18px 14px;
    }

    .tile {
        padding: 18px 14px;
    }

    .reviews-summary-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
    }

    .rsb-score {
        font-size: 38px;
    }
}