/* ===== CSS VARIABLES ===== */
:root {
    --rose-gold: #E8B4B8;
    --rose-gold-dark: #d4939a;
    --sage: #A2C4B9;
    --sage-dark: #7aaa9c;
    --plum: #6B4C7A;
    --plum-dark: #4e3659;
    --plum-light: #8b6a9c;
    --white: #FFFFF0;
    --white-pure: #ffffff;
    --black: #0f0820;
    --black-soft: #1a1035;
    --gray-100: #f8f5ff;
    --gray-200: #ede9f5;
    --gray-300: #d4cce6;
    --gray-500: #8b7aaa;
    --gray-700: #4a3d6b;

    --font-body: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(107, 76, 122, 0.08);
    --shadow-md: 0 8px 24px rgba(107, 76, 122, 0.14);
    --shadow-lg: 0 20px 50px rgba(107, 76, 122, 0.18);
    --shadow-glow: 0 0 40px rgba(232, 180, 184, 0.3);

    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;

    --container: 1200px;
    --navbar-h: 72px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===== UTILITY ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.hidden {
    display: none !important;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--plum), var(--plum-dark));
    color: var(--white-pure);
    box-shadow: 0 4px 20px rgba(107, 76, 122, 0.35);
}

.btn-primary:hover, .btn-primary:focus-visible {
    background: linear-gradient(135deg, var(--plum-light), var(--plum));
    box-shadow: 0 8px 30px rgba(107, 76, 122, 0.45);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white-pure);
    border-color: rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover, .btn-secondary:focus-visible {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--plum);
    border-color: var(--plum);
}

.btn-outline:hover, .btn-outline:focus-visible {
    background: var(--plum);
    color: var(--white-pure);
    transform: translateY(-2px);
}

.btn-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.btn-arrow {
    transition: transform var(--transition);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 3px solid var(--rose-gold);
    outline-offset: 3px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--navbar-h);
    transition: background var(--transition), box-shadow var(--transition);
    background: transparent;
    overflow: visible;
}

.navbar.scrolled {
    background: rgba(15, 8, 32, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white-pure);
}

.logo-zaya {
    font-family: var(--font-display);
    color: var(--rose-gold);
}

.logo-os {
    color: var(--white-pure);
}

.logo-tag {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--sage);
    background: rgba(162, 196, 185, 0.15);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-left: 6px;
    border: 1px solid rgba(162, 196, 185, 0.3);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.nav-link:hover, .nav-link:focus-visible {
    color: var(--white-pure);
    background: rgba(255,255,255,0.1);
}

.nav-cta {
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
    color: var(--black) !important;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: var(--radius-full);
    margin-left: 8px;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(232, 180, 184, 0.35);
}

.nav-cta:hover, .nav-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 180, 184, 0.5);
    background: linear-gradient(135deg, var(--rose-gold-dark), #c07880);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.hamburger:hover {
    background: rgba(255,255,255,0.1);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white-pure);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--plum-dark) 50%, var(--black-soft) 100%);
    overflow: hidden;
    padding-top: var(--navbar-h);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    max-width: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--plum), transparent);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--rose-gold), transparent);
    bottom: 100px;
    left: -80px;
    animation-delay: 2s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--sage), transparent);
    top: 30%;
    left: 40%;
    animation-delay: 4s;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--rose-gold-dark), transparent);
    bottom: 20%;
    right: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0 100px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 180, 184, 0.15);
    border: 1px solid rgba(232, 180, 184, 0.35);
    color: var(--rose-gold);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rose-gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white-pure);
    line-height: 1.2;
    margin-bottom: 20px;
}

.typewriter-wrapper {
    display: inline-flex;
    align-items: center;
    min-height: 1.3em;
}

.typewriter {
    color: var(--rose-gold);
    font-style: italic;
}

.typewriter-cursor {
    color: var(--rose-gold);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
    font-style: normal;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--rose-gold);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
}

.hero-trust strong {
    color: var(--rose-gold);
}

.hero-trust-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    background: rgba(232,180,184,0.1);
    border: 1px solid rgba(232,180,184,0.2);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    line-height: 1.5;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--white-pure);
    margin-right: -8px;
}

/* PHONE MOCKUP */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    max-width: 100%;
}

.phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-frame {
    width: 240px;
    height: 480px;
    background: var(--black);
    border-radius: 36px;
    border: 3px solid rgba(255,255,255,0.15);
    padding: 16px 10px;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(107,76,122,0.4);
    animation: phoneFloat 5s ease-in-out infinite;
    overflow: hidden;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

.phone-screen {
    background: linear-gradient(160deg, #1a1035 0%, #2d1a4a 100%);
    border-radius: 26px;
    height: 100%;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-logo {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--rose-gold);
}

.app-notif {
    font-size: 0.9rem;
}

.app-greeting {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.app-stats {
    display: flex;
    gap: 8px;
}

.app-stat {
    flex: 1;
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 8px;
    text-align: center;
}

.app-stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white-pure);
}

.app-stat-label {
    font-size: 0.58rem;
    color: rgba(255,255,255,0.5);
}

.app-card {
    background: linear-gradient(135deg, var(--plum), var(--rose-gold-dark));
    border-radius: 12px;
    padding: 10px;
}

.app-card-title {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.7);
}

.app-card-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white-pure);
}

.app-card-date {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.6);
}

.app-chart {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 60px;
    margin-top: auto;
}

.chart-bar {
    flex: 1;
    background: rgba(162,196,185,0.3);
    border-radius: 4px 4px 0 0;
    transition: height var(--transition);
}

.chart-bar.active {
    background: var(--rose-gold);
}

/* FLOATING CARDS */
.floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    text-align: center;
    color: var(--white-pure);
    box-shadow: var(--shadow-md);
    animation: cardFloat 6s ease-in-out infinite;
}

.fc-label {
    font-size: 0.65rem;
    opacity: 0.7;
    font-weight: 500;
}

.fc-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rose-gold);
}

.fc-sub {
    font-size: 0.6rem;
    opacity: 0.5;
}

.card-1 { top: 10%; left: -70px; animation-delay: 0s; }
.card-2 { top: 45%; right: -60px; animation-delay: 1.5s; }
.card-3 { bottom: 15%; left: -50px; animation-delay: 3s; }

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

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* ===== SECTION BASE ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--plum);
    background: rgba(107,76,122,0.1);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    border: 1px solid rgba(107,76,122,0.2);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-desc {
    color: var(--gray-500);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--white);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 24px;
    align-items: flex-start;
    padding: 30px 0;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--plum), var(--rose-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(107,76,122,0.3);
    position: relative;
    z-index: 1;
}

.tl-icon-img {
    width: 26px;
    height: 26px;
    filter: brightness(0) invert(1);
}

.timeline-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--rose-gold), var(--sage));
    margin-left: 30px;
    opacity: 0.5;
}

.timeline-content {
    padding-top: 8px;
}

.timeline-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 4px;
    user-select: none;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 12px;
}

.timeline-tag {
    display: inline-block;
    background: rgba(162,196,185,0.2);
    color: var(--sage-dark);
    border: 1px solid rgba(162,196,185,0.4);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
}

/* ===== CALCULATOR ===== */
.calculator-section {
    background: linear-gradient(160deg, var(--gray-100) 0%, var(--white) 100%);
}

.calculator-wrapper {
    background: var(--white-pure);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--gray-200);
}

.calc-group {
    margin-bottom: 36px;
}

.calc-count-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.calc-count-display #salonCountDisplay {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--plum);
    line-height: 1;
    min-width: 56px;
    display: inline-block;
}

.calc-count-unit {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-500);
}

.calc-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
}

.calc-label strong {
    font-size: 1.4rem;
    color: var(--plum);
    font-family: var(--font-display);
}


.slider-wrapper {
    position: relative;
    padding: 8px 0;
}

.slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.slider::-webkit-slider-runnable-track {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--plum), var(--rose-gold-dark));
    cursor: pointer;
    margin-top: -8px;
    box-shadow: 0 2px 12px rgba(107,76,122,0.4);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 2px solid var(--white-pure);
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 20px rgba(107,76,122,0.5);
}

.slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--plum), var(--rose-gold-dark));
    cursor: pointer;
    border: 2px solid var(--white-pure);
    box-shadow: 0 2px 12px rgba(107,76,122,0.4);
}

.slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.slider-fill {
    height: 100%;
    background: linear-gradient(to right, var(--plum), var(--rose-gold));
    border-radius: 3px;
    transition: width var(--transition);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    padding: 0 2px;
}

.slider-ticks .tick {
    font-size: 0.72rem;
    color: var(--gray-300);
    font-weight: 500;
    text-align: center;
    flex: 1;
    transition: color 0.15s ease, font-weight 0.15s ease, transform 0.15s ease;
    user-select: none;
}

.slider-ticks .tick--active {
    color: var(--plum);
    font-weight: 800;
    font-size: 0.85rem;
    transform: scale(1.2);
}

/* Salon type selector */
.salon-type-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.salon-type-btn {
    cursor: pointer;
}

.salon-type-btn input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.salon-type-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 12px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    cursor: pointer;
    background: var(--white);
    text-align: center;
}

.salon-type-btn input:checked + .salon-type-label {
    border-color: var(--plum);
    background: rgba(107,76,122,0.06);
    box-shadow: 0 0 0 3px rgba(107,76,122,0.1);
}

.salon-type-btn:hover .salon-type-label {
    border-color: var(--plum-light);
}

.st-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
}

.st-price {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--plum);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.st-amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--plum);
    font-family: var(--font-display);
}

/* Calculator results */
.calculator-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--gray-200);
}

.result-card {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: transform var(--transition);
}

.result-card:hover {
    transform: translateY(-4px);
}

.result-card--total {
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 100%);
    border-color: var(--plum);
    color: var(--white-pure);
}

.result-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.result-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-card--total .result-label {
    color: rgba(255,255,255,0.7);
}

.result-amount {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--plum);
    font-family: var(--font-display);
    transition: all 0.4s ease;
}

.result-card--total .result-amount {
    color: var(--rose-gold);
    font-size: 2rem;
}

.result-sub {
    font-size: 0.72rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.result-card--total .result-sub {
    color: rgba(255,255,255,0.6);
}

.result-amount.animating {
    transform: scale(1.1);
    opacity: 0.6;
}

.calc-note {
    margin-top: 20px;
    padding: 12px 18px;
    background: rgba(162,196,185,0.15);
    border: 1px solid rgba(162,196,185,0.3);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-cta {
    text-align: center;
    margin-top: 28px;
}

/* ===== CALCULATOR TIMELINE ===== */
.calc-timeline {
    margin-top: 28px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.calc-timeline-header {
    background: var(--gray-100);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--gray-200);
}

.calc-timeline-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--black);
}

.calc-timeline-plan {
    font-size: 0.82rem;
    color: var(--gray-500);
}

.calc-timeline-rows {
    display: flex;
    flex-direction: column;
}

.calc-timeline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
    transition: background var(--transition);
}

.calc-timeline-row:last-child {
    border-bottom: none;
}

.calc-timeline-row:hover {
    background: var(--gray-100);
}

.calc-row--total {
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 100%);
    color: var(--white-pure);
}

.calc-row--total:hover {
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 100%);
}

.ctr-label {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ctr-moment {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--black);
}

.ctr-desc {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.calc-row--total .ctr-moment,
.calc-row--total .ctr-desc {
    color: rgba(255,255,255,0.85);
}

.calc-row--total .ctr-desc {
    color: rgba(255,255,255,0.6);
}

.ctr-amount {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    min-width: 120px;
    text-align: right;
}

.ctr-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--plum);
    transition: all 0.4s ease;
}

.ctr-total {
    font-size: 1.7rem;
    color: var(--rose-gold) !important;
}

.ctr-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ctr-badge--once {
    background: rgba(162,196,185,0.25);
    color: var(--sage-dark);
}

.ctr-badge--monthly {
    background: rgba(107,76,122,0.12);
    color: var(--plum);
}

.ctr-badge--end {
    background: rgba(220,38,38,0.1);
    color: #dc2626;
}

.ctr-badge--total {
    background: rgba(232,180,184,0.25);
    color: var(--rose-gold);
}

/* ===== APP PREVIEW SECTION ===== */
.app-preview-section {
    background: linear-gradient(135deg, var(--black-soft) 0%, var(--black) 100%);
    color: var(--white-pure);
}

.app-preview-section .section-label {
    color: var(--rose-gold);
    background: rgba(232,180,184,0.12);
}

.app-preview-section .section-title {
    color: var(--white-pure);
}

.app-preview-section .section-desc {
    color: rgba(255,255,255,0.65);
}

.app-preview-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.app-preview-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.app-feature-item:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(232,180,184,0.3);
    transform: translateX(4px);
}

.af-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232,180,184,0.1);
    border-radius: var(--radius-sm);
}

.af-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.af-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white-pure);
}

.af-text span {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}

.app-preview-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
}

.app-preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--rose-gold);
    color: var(--black);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.app-preview-cta h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white-pure);
    line-height: 1.3;
}

.app-preview-cta p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.btn-app-demo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-dark) 100%);
    color: var(--black);
    font-weight: 800;
    font-size: 1.05rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 8px 24px rgba(232,180,184,0.35);
    width: 100%;
    justify-content: center;
}

.btn-app-demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(232,180,184,0.5);
}

.btn-app-demo-icon {
    font-size: 1rem;
    background: rgba(0,0,0,0.15);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-app-demo-arrow {
    margin-left: auto;
    font-size: 1.1rem;
}

.app-preview-trust {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.app-preview-trust span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== FOR WHOM ===== */
.for-whom {
    background: var(--white);
}

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

.persona-card {
    background: var(--white-pure);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    transition: all var(--transition);
    cursor: default;
}

.persona-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--rose-gold);
}

.persona-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.persona-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.persona-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.persona-list li {
    font-size: 0.85rem;
    color: var(--gray-500);
    padding-left: 14px;
    position: relative;
}

.persona-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--rose-gold);
    font-weight: 700;
}

.persona-card--featured {
    border-color: var(--rose-gold);
    background: linear-gradient(160deg, rgba(232,180,184,0.06) 0%, var(--white-pure) 100%);
    box-shadow: 0 4px 24px rgba(232,180,184,0.18);
    position: relative;
}

.persona-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.persona-potential {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--gray-200);
}

.pp-label {
    font-size: 0.78rem;
    color: var(--gray-500);
    font-weight: 500;
}

.pp-stars {
    color: #f5a623;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ===== BENEFITS ===== */
.benefits {
    background: linear-gradient(160deg, var(--gray-100) 0%, var(--white) 100%);
}

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

.benefit-card {
    background: var(--white-pure);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sage);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.benefit-icon {
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.check-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    filter: hue-rotate(100deg) saturate(1.5);
}

/* ===== WHY ZAYAOS ===== */
.why-zaya {
    background: var(--black);
}

.why-zaya .section-label {
    background: rgba(232,180,184,0.1);
    color: var(--rose-gold);
    border-color: rgba(232,180,184,0.2);
}

.why-zaya .section-title {
    color: var(--white-pure);
}

.why-zaya .section-desc {
    color: rgba(255,255,255,0.55);
}

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

.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    transition: all var(--transition);
}

.why-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(232,180,184,0.4);
    transform: translateY(-4px);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white-pure);
    margin-bottom: 14px;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-list li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    padding-left: 14px;
    position: relative;
    line-height: 1.5;
}

.why-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--rose-gold);
    font-weight: 700;
}

.why-list li strong {
    color: rgba(255,255,255,0.85);
}

.pricing-list li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.pricing-list li::before {
    display: none;
}

.plan-name {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rose-gold);
}

.plan-price {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: linear-gradient(160deg, var(--gray-100) 0%, var(--white) 100%);
}

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

.testimonial-card {
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    background: var(--white-pure);
}

.testimonial-card.glass {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--rose-gold);
}

.wj-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.wj-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.wj-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.75;
}

.wj-desc strong {
    color: var(--plum);
}

.testimonial-stars {
    font-size: 1rem;
    color: #f5a623;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
    border: none;
    padding: 0;
}

.testimonial-quote strong {
    color: var(--plum);
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white-pure);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
}

.author-role {
    font-size: 0.78rem;
    color: var(--gray-500);
}

.testimonial-earning {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--plum);
    white-space: nowrap;
    background: rgba(107,76,122,0.1);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

/* ===== FAQ ===== */
.faq {
    background: var(--white);
}

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

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white-pure);
    transition: box-shadow var(--transition);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
    box-shadow: var(--shadow-md);
    border-color: var(--plum);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-body);
    transition: color var(--transition), background var(--transition);
}

.faq-question:hover {
    color: var(--plum);
    background: rgba(107,76,122,0.03);
}

.faq-question[aria-expanded="true"] {
    color: var(--plum);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--gray-500);
    transition: all var(--transition);
    line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
    background: var(--plum);
    border-color: var(--plum);
    color: var(--white-pure);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
    animation: fadeInDown 0.25s ease;
}

.faq-answer p strong {
    color: var(--black);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== REGISTRATION ===== */
.registration {
    background: linear-gradient(160deg, var(--gray-100) 0%, var(--white) 100%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white-pure);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

/* Multi-step progress */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.ps-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-500);
    background: var(--white-pure);
    transition: all var(--transition);
}

.progress-step.active .ps-circle {
    border-color: var(--plum);
    background: var(--plum);
    color: var(--white-pure);
    box-shadow: 0 4px 14px rgba(107,76,122,0.35);
}

.progress-step.completed .ps-circle {
    border-color: var(--sage);
    background: var(--sage);
    color: var(--white-pure);
}

.ps-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-500);
    transition: color var(--transition);
}

.progress-step.active .ps-label {
    color: var(--plum);
}

.progress-line {
    width: 100px;
    height: 2px;
    background: var(--gray-200);
    margin-bottom: 22px;
    transition: background var(--transition);
}

.progress-line.active {
    background: linear-gradient(to right, var(--plum), var(--sage));
}

/* Form elements */
.form-step {
    animation: fadeInRight 0.35s ease;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.form-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--black);
}

.required {
    color: var(--rose-gold-dark);
    margin-left: 2px;
}

.form-input, .form-select, .form-textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white-pure);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(107,76,122,0.1);
}

.form-input.error, .form-select.error, .form-textarea.error {
    border-color: #e05a5a;
    box-shadow: 0 0 0 3px rgba(224,90,90,0.1);
}

.form-input.success, .form-select.success, .form-textarea.success {
    border-color: var(--sage-dark);
    box-shadow: 0 0 0 3px rgba(122,170,156,0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b7aaa' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.field-error {
    font-size: 0.78rem;
    color: #e05a5a;
    min-height: 18px;
    display: block;
}

/* Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    margin-top: 1px;
}

.form-checkbox input:checked + .checkmark {
    background: var(--plum);
    border-color: var(--plum);
}

.form-checkbox input:checked + .checkmark::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translate(-1px, -1px);
}

.form-link {
    color: var(--plum);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 8px;
}

/* Success state */
.form-success {
    text-align: center;
    padding: 32px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.success-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--black);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--gray-500);
    margin-bottom: 28px;
    line-height: 1.7;
}

.success-next {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 360px;
    margin: 0 auto;
}

.success-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white-pure);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    transition: all var(--transition);
}

.social-link:hover, .social-link:focus-visible {
    border-color: var(--rose-gold);
    color: var(--rose-gold);
    transform: translateY(-2px);
}

.footer-nav h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}

.footer-nav a:hover, .footer-nav a:focus-visible {
    color: var(--rose-gold);
}

.footer-contact h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    margin-bottom: 10px;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--rose-gold);
}

.contact-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(0.5);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(162,196,185,0.1);
    border: 1px solid rgba(162,196,185,0.2);
    color: var(--sage);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: rgba(255,255,255,0.7);
}

/* ===== LANG SWITCHER ===== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,0.15);
    list-style: none;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.65);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 9px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
    line-height: 1;
}

.lang-btn:hover {
    border-color: var(--rose-gold);
    color: var(--rose-gold);
}

.lang-btn--active {
    background: var(--rose-gold);
    border-color: var(--rose-gold);
    color: var(--black);
}

/* ===== RTL SUPPORT ===== */
[dir="rtl"] .hero-content {
    direction: rtl;
}

[dir="rtl"] .timeline-item {
    direction: rtl;
}

[dir="rtl"] .timeline-content {
    text-align: right;
}

[dir="rtl"] .timeline-number {
    text-align: right;
}

[dir="rtl"] .footer-grid {
    direction: rtl;
}

[dir="rtl"] .footer-bottom {
    direction: rtl;
}

[dir="rtl"] .nav-links {
    direction: rtl;
}

[dir="rtl"] .lang-switcher {
    margin-left: 0;
    margin-right: 8px;
    padding-left: 0;
    padding-right: 12px;
    border-left: none;
    border-right: 1px solid rgba(255,255,255,0.15);
}

[dir="rtl"] .hero-actions {
    direction: rtl;
}

[dir="rtl"] .btn-arrow {
    transform: scaleX(-1);
    display: inline-block;
}

[dir="rtl"] .benefit-header {
    direction: rtl;
}

[dir="rtl"] .faq-question {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .persona-list li,
[dir="rtl"] .why-list li,
[dir="rtl"] .benefit-list li {
    padding-left: 0;
    padding-right: 14px;
}

[dir="rtl"] .persona-list li::before,
[dir="rtl"] .why-list li::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .form-row,
[dir="rtl"] .form-group,
[dir="rtl"] .form-actions {
    direction: rtl;
}

[dir="rtl"] .form-actions {
    justify-content: flex-start;
}

[dir="rtl"] .footer-nav ul {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .footer-contact p {
    direction: rtl;
}

[dir="rtl"] .footer-links {
    direction: rtl;
}

[dir="rtl"] .app-preview-wrapper {
    direction: rtl;
}

[dir="rtl"] .app-feature-item {
    direction: rtl;
}

[dir="rtl"] .af-text {
    text-align: right;
}

[dir="rtl"] .section-header {
    direction: rtl;
}

[dir="rtl"] .calc-timeline-row {
    direction: rtl;
}

[dir="rtl"] .ctr-amount {
    text-align: left;
    align-items: flex-start;
}

[dir="rtl"] .persona-potential {
    direction: rtl;
}

[dir="rtl"] .testimonials-grid,
[dir="rtl"] .benefits-grid,
[dir="rtl"] .why-grid,
[dir="rtl"] .persona-grid {
    direction: rtl;
}

[dir="rtl"] .hero-trust {
    direction: rtl;
}

[dir="rtl"] .nav-logo {
    direction: ltr;
}

/* ===== RESPONSIVE ===== */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
        padding: 60px 0 80px;
    }

    .hero-subtitle { margin: 0 auto 32px; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }

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

    .app-preview-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .persona-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calculator-wrapper {
        padding: 36px 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* Tablet: 768px */
@media (max-width: 768px) {
    :root {
        --navbar-h: 64px;
    }

    .section { padding: 60px 0; }

    .nav-links {
        position: fixed;
        top: var(--navbar-h);
        left: 0;
        right: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background: rgba(15, 8, 32, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 0 24px;
        gap: 4px;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        z-index: 998;
        box-sizing: border-box;
    }

    .nav-links.open {
        max-height: 500px;
        padding: 20px 24px 32px;
    }

    .nav-link {
        padding: 12px 16px;
        width: 100%;
        border-radius: var(--radius-md);
        font-size: 1rem;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-left: 0;
        margin-top: 8px;
        padding: 14px;
        display: block;
    }

    .hamburger { display: flex; }

    .hero-content {
        padding: 40px 0 60px;
        gap: 36px;
    }

    .hero-title { font-size: 2rem; }

    .hero-subtitle {
        font-size: 1rem;
    }

    .floating-cards { display: none; }

    .phone-frame { width: 200px; height: 400px; }

    .calculator-wrapper { padding: 24px 16px; }

    .calculator-results {
        grid-template-columns: 1fr;
    }

    .app-preview-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .app-preview-cta {
        padding: 24px;
    }

    .calc-timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

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

    .ctr-amount {
        align-items: flex-start;
        min-width: auto;
        text-align: left;
    }

    .salon-type-selector {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

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

    .form-wrapper { padding: 24px 16px; }

    .form-row { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .timeline {
        padding: 0;
    }

    .timeline-item {
        grid-template-columns: 54px 1fr;
        gap: 16px;
    }

    .section-header {
        margin-bottom: 40px;
        padding: 0 4px;
    }

    .why-card, .benefit-card, .persona-card, .testimonial-card {
        padding: 20px 16px;
    }

    .lang-switcher {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.12);
        margin-left: 0;
        padding-left: 16px;
        padding-top: 12px;
        margin-top: 4px;
        width: 100%;
        justify-content: flex-start;
    }

    [dir="rtl"] .lang-switcher {
        border-right: none;
        border-top: 1px solid rgba(255,255,255,0.12);
        padding-right: 16px;
        justify-content: flex-end;
    }

    .lang-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

/* Mobile: 480px */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .hero-title { font-size: 1.7rem; }
    .hero-badge { font-size: 0.74rem; padding: 6px 12px; }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .btn { width: 100%; justify-content: center; }

    .section-title { font-size: 1.5rem; }
    .section-desc { font-size: 0.95rem; }

    .phone-frame { width: 170px; height: 340px; }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }

    .trust-avatars { justify-content: center; }

    .calculator-wrapper {
        padding: 20px 14px;
        border-radius: var(--radius-lg);
    }

    .calc-count-display #salonCountDisplay { font-size: 2.2rem; }

    .salon-type-selector {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .salon-type-label { padding: 12px; flex-direction: row; gap: 10px; }

    .result-amount { font-size: 1.4rem; }
    .result-card--total .result-amount { font-size: 1.7rem; }

    .form-wrapper {
        padding: 20px 14px;
        border-radius: var(--radius-lg);
    }

    .form-actions { flex-direction: column-reverse; }
    .form-actions .btn { width: 100%; justify-content: center; }

    .form-progress { gap: 0; }
    .ps-label { font-size: 0.7rem; }
    .progress-line { width: 60px; }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .app-preview-cta {
        padding: 18px;
    }

    .app-preview-cta h3 { font-size: 1.2rem; }

    .btn-app-demo {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .ctr-value { font-size: 1.2rem; }
    .ctr-total { font-size: 1.4rem; }

    .timeline-item {
        grid-template-columns: 44px 1fr;
        gap: 12px;
    }

    .timeline-icon {
        width: 44px;
        height: 44px;
    }

    .timeline-number { font-size: 2.2rem; }
}

/* Large: 1440px+ */
@media (min-width: 1440px) {
    :root { --container: 1320px; }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --plum: #5a3d68;
        --gray-500: #555;
    }

    .btn-primary {
        outline: 2px solid var(--black);
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
