/* ===== ROOT VARIABLES ===== */
:root {
    --brand: #E75A5A;
    --brand-dark: #c94444;
    --brand-light: #ff7f7f;
    --brand-pale: #fff0f0;
    --dark: #1a1a2e;
    --text: #2c3e50;
    --text-muted: #6b7280;
    --white: #ffffff;
    --bg: #f9fafb;
    --border: #e5e7eb;
    --success: #16a34a;
    --error: #dc2626;
    --footer-bg: #111827;
    --shadow: 0 4px 20px rgba(231, 90, 90, 0.12);
    --shadow-lg: 0 10px 40px rgba(231, 90, 90, 0.2);
    --radius: 16px;
    --radius-sm: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
}

/* ===== RESET ===== */
*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}
html { 
    scroll-behavior: smooth; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body { 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; 
    color: var(--text); 
    line-height: 1.6; 
    overflow-x: hidden;
    letter-spacing: -0.01em;
}
a { 
    text-decoration: none; 
    color: inherit; 
    transition: var(--transition);
}
img { 
    max-width: 100%; 
    height: auto;
    display: block;
}
button {
    font-family: inherit;
    cursor: pointer;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 var(--spacing-md); 
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 2rem; 
    border-radius: 50px;
    font-weight: 600; 
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    cursor: pointer; 
    border: none; 
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary { 
    background: var(--brand); 
    color: var(--white);
    box-shadow: 0 4px 14px rgba(231, 90, 90, 0.3);
}
.btn-primary:hover { 
    background: var(--brand-dark); 
    transform: translateY(-2px); 
    box-shadow: 0 8px 24px rgba(231, 90, 90, 0.4);
}
.btn-outline { 
    background: transparent; 
    color: var(--white); 
    border: 2px solid var(--white); 
}
.btn-outline:hover { 
    background: var(--white); 
    color: var(--brand); 
}
.btn-nav { 
    background: var(--brand); 
    color: var(--white); 
    padding: 0.625rem 1.5rem; 
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(231, 90, 90, 0.25);
}
.btn-nav:hover { 
    background: var(--brand-dark);
    box-shadow: 0 4px 12px rgba(231, 90, 90, 0.35);
}
.btn-full { 
    width: 100%; 
}

/* ===== SECTION COMMON ===== */
section {
    padding: var(--spacing-3xl) 0;
}
.section-header { 
    text-align: center; 
    margin-bottom: var(--spacing-2xl); 
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.section-tag {
    display: inline-block; 
    background: var(--brand-pale); 
    color: var(--brand);
    padding: 0.375rem 1.125rem; 
    border-radius: 50px; 
    font-size: 0.8125rem;
    font-weight: 700; 
    margin-bottom: var(--spacing-sm); 
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.section-tag.light { 
    background: rgba(255,255,255,0.2); 
    color: var(--white); 
}
.section-header h2 { 
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text); 
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.section-header p { 
    color: var(--text-muted); 
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    line-height: 1.7;
    letter-spacing: -0.01em;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; 
    top: 0; 
    width: 100%; 
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.navbar.scrolled { 
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
}
.nav-wrapper { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 1rem 0; 
    transition: var(--transition); 
}
.navbar.scrolled .nav-wrapper { 
    padding: 0.75rem 0; 
}
.logo { 
    display: flex; 
    align-items: center; 
    gap: 0.625rem; 
    font-size: 1.5rem; 
    font-weight: 800; 
    color: var(--brand);
    letter-spacing: -0.02em;
}
.logo-image { 
    width: 40px; 
    height: 40px; 
    object-fit: contain; 
}
.nav-menu { 
    display: flex; 
    list-style: none; 
    gap: 2rem; 
    align-items: center; 
}
.nav-menu a { 
    font-weight: 500; 
    color: var(--text); 
    transition: var(--transition); 
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: var(--transition);
}
.nav-menu a:hover::after,
.nav-menu a.active-link::after { 
    width: 100%; 
}
.nav-menu a:hover,
.nav-menu a.active-link { 
    color: var(--brand); 
}
.nav-actions { 
    display: flex; 
    align-items: center; 
    gap: var(--spacing-sm); 
}
.hamburger { 
    display: none; 
    flex-direction: column; 
    gap: 5px; 
    cursor: pointer;
    padding: 0.5rem;
}
.hamburger span { 
    width: 24px; 
    height: 2.5px; 
    background: var(--brand); 
    border-radius: 2px; 
    transition: var(--transition); 
    display: block; 
}
.hamburger.open span:nth-child(1) { 
    transform: translateY(7.5px) rotate(45deg); 
}
.hamburger.open span:nth-child(2) { 
    opacity: 0; 
    transform: scaleX(0); 
}
.hamburger.open span:nth-child(3) { 
    transform: translateY(-7.5px) rotate(-45deg); 
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh; 
    padding: calc(80px + var(--spacing-3xl)) 0 var(--spacing-3xl);
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    position: relative; 
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute; 
    inset: 0;
    background: 
        radial-gradient(circle at 70% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(0,0,0,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.hero-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: var(--spacing-2xl); 
    align-items: center; 
    position: relative; 
    z-index: 1; 
}
.hero-badge {
    display: inline-flex; 
    align-items: center; 
    gap: var(--spacing-xs);
    background: rgba(255,255,255,0.2); 
    color: var(--white);
    padding: 0.5rem 1.125rem; 
    border-radius: 50px; 
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md); 
    backdrop-filter: blur(10px);
    letter-spacing: -0.01em;
}
.hero-content h1 { 
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800; 
    color: var(--white); 
    line-height: 1.15; 
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.03em;
}
.hero-content h1 .highlight { 
    color: var(--white); 
    text-shadow: 0 0 40px rgba(255,255,255,0.5);
    display: inline-block;
}
.hero-content p { 
    color: rgba(255,255,255,0.92); 
    font-size: clamp(0.9375rem, 2vw, 1.125rem);
    margin-bottom: var(--spacing-lg); 
    max-width: 520px;
    line-height: 1.7;
    letter-spacing: -0.01em;
}
.hero-buttons { 
    display: flex; 
    gap: var(--spacing-sm); 
    flex-wrap: wrap; 
    margin-bottom: var(--spacing-lg); 
}

/* Hero CTA Split */
.hero-cta-split {
    display: flex; 
    align-items: center; 
    gap: var(--spacing-md); 
    margin-bottom: var(--spacing-lg); 
    flex-wrap: wrap;
}
.cta-option { 
    display: flex; 
    flex-direction: column; 
    gap: var(--spacing-xs); 
}
.cta-label {
    font-size: 0.75rem; 
    font-weight: 600; 
    color: rgba(255,255,255,0.75);
    text-transform: uppercase; 
    letter-spacing: 0.05em;
}
.cta-divider {
    font-size: 0.875rem; 
    font-weight: 700; 
    color: rgba(255,255,255,0.5);
    padding: 0 var(--spacing-xs);
}

.hero-stats { 
    display: flex; 
    align-items: center; 
    gap: var(--spacing-md); 
    flex-wrap: wrap;
}
.stat { 
    text-align: center; 
}
.stat strong { 
    display: block; 
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 800; 
    color: var(--white);
    letter-spacing: -0.02em;
}
.stat span { 
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.85);
    letter-spacing: -0.01em;
}
.stat-divider { 
    width: 1px; 
    height: 40px; 
    background: rgba(255,255,255,0.3); 
}

/* Phone Mockup - iPhone 17 Pro Style */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.phone-mockup {
    width: 290px; background: #0a0a0f; border-radius: 48px;
    padding: 10px; box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    border: 3px solid #1a1a24; position: relative;
}
/* iPhone 17 Pro Dynamic Island */
.phone-mockup::before {
    content: ''; position: absolute; top: 12px; left: 50%;
    transform: translateX(-50%); width: 110px; height: 32px;
    background: #000000; border-radius: 20px; z-index: 10;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.8);
}
/* Camera Lens in Dynamic Island */
.phone-mockup::after {
    content: ''; position: absolute; top: 20px; left: 50%;
    transform: translateX(-20px); width: 12px; height: 12px;
    background: radial-gradient(circle, #1a3a5a 0%, #000 70%);
    border-radius: 50%; z-index: 11;
    box-shadow: 0 0 4px rgba(100, 150, 255, 0.3);
}
.phone-screen { 
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%); 
    border-radius: 40px; overflow: hidden; position: relative;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
}
.app-ui { padding: 48px 18px 18px; }
/* Status Bar - iPhone 17 Pro */
.app-ui::before {
    content: '9:41'; position: absolute; top: 8px; left: 24px;
    font-size: 0.8rem; font-weight: 700; color: var(--text);
    letter-spacing: 0.3px;
}
.app-ui::after {
    content: '\f1eb \f240 \f012'; font-family: 'Font Awesome 6 Free';
    font-weight: 900; position: absolute; top: 8px; right: 24px;
    font-size: 0.75rem; color: var(--text); letter-spacing: 7px;
}
.app-header { 
    display: flex; align-items: center; gap: 10px; 
    color: var(--brand); font-weight: 800; font-size: 1.05rem; 
    margin-bottom: 14px; padding: 10px 0;
}
.app-search {
    display: flex; align-items: center; gap: 10px;
    background: #f3f4f6; border-radius: 14px; padding: 11px 16px;
    color: var(--text-muted); font-size: 0.88rem; margin-bottom: 16px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}
.app-card {
    display: flex; align-items: center; gap: 12px;
    padding: 13px; background: var(--white); border-radius: 16px; 
    margin-bottom: 11px; box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    border: 1px solid #f0f0f0; transition: var(--transition);
}
.app-card:hover { transform: translateX(3px); box-shadow: 0 4px 16px rgba(231, 90, 90, 0.18); }
.app-card-icon {
    width: 46px; height: 46px; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    border-radius: 13px; display: flex; align-items: center; justify-content: center; 
    color: var(--white); font-size: 1.15rem; flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(231, 90, 90, 0.35);
}
.app-card-name { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.app-card-sub { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.app-card-btn {
    margin-left: auto; background: var(--brand); color: var(--white);
    padding: 7px 16px; border-radius: 22px; font-size: 0.78rem; 
    font-weight: 700; flex-shrink: 0; box-shadow: 0 2px 10px rgba(231, 90, 90, 0.35);
}
.floating-card {
    position: absolute; background: var(--white); border-radius: 16px;
    padding: 13px 20px; font-size: 0.88rem; font-weight: 700; color: var(--text);
    box-shadow: 0 10px 35px rgba(0,0,0,0.18); display: flex; align-items: center; gap: 9px;
    border: 2px solid var(--brand-pale);
}
.floating-card i { color: var(--brand); font-size: 1.15rem; }
.fc1 { top: 8%; right: -25px; animation: float1 3s ease-in-out infinite; }
.fc2 { bottom: 12%; left: -25px; animation: float2 3s ease-in-out infinite 1s; }
@keyframes float1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
@keyframes float2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(12px); }
}

/* ===== IMPACT / METRICS ===== */
.impact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: var(--white);
}
.impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.impact-content .section-tag { background: rgba(255,255,255,0.2); color: var(--white); }
.impact-content h2 { font-size: 2.4rem; color: var(--white); margin-bottom: 1rem; line-height: 1.3; }
.impact-content > p { color: rgba(255,255,255,0.85); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; }
.impact-highlights { display: flex; flex-direction: column; gap: 1.2rem; }
.impact-highlight {
    display: flex; align-items: flex-start; gap: 1rem;
    background: rgba(255,255,255,0.1); padding: 1.2rem; border-radius: 14px;
    backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15);
}
.impact-highlight i {
    width: 40px; height: 40px; background: rgba(255,255,255,0.2);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0; color: var(--white);
}
.impact-highlight strong { display: block; font-size: 1.05rem; margin-bottom: 0.2rem; color: var(--white); }
.impact-highlight span { font-size: 0.88rem; color: rgba(255,255,255,0.75); }

.impact-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
}
.impact-stat-card {
    background: rgba(255,255,255,0.1); border-radius: 16px; padding: 2rem;
    text-align: center; backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15); transition: var(--transition);
}
.impact-stat-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.15); }
.impact-stat-icon {
    width: 56px; height: 56px; background: rgba(255,255,255,0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--white); margin: 0 auto 1rem;
}
.impact-stat-num { font-size: 2.5rem; font-weight: 800; color: var(--white); margin-bottom: 0.3rem; }
.impact-stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.75); }

/* ===== HOW IT WORKS ===== */
.how-it-works { 
    padding: var(--spacing-3xl) 0; 
    background: var(--white); 
}
.steps-grid { 
    display: flex; 
    align-items: center; 
    gap: var(--spacing-md); 
}
.step-card {
    flex: 1; 
    background: var(--bg); 
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl) var(--spacing-lg); 
    text-align: center; 
    position: relative;
    border: 2px solid transparent; 
    transition: var(--transition);
}
.step-card:hover { 
    border-color: var(--brand); 
    background: var(--brand-pale); 
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(231, 90, 90, 0.15);
}
.step-number {
    position: absolute; 
    top: -18px; 
    left: 50%; 
    transform: translateX(-50%);
    background: var(--brand); 
    color: var(--white); 
    width: 40px; 
    height: 40px;
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-weight: 800; 
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(231, 90, 90, 0.3);
}
.step-icon { 
    font-size: 2.75rem;
    color: var(--brand); 
    margin-bottom: var(--spacing-sm); 
    margin-top: var(--spacing-xs);
}
.step-card h3 { 
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs); 
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.01em;
}
.step-card p { 
    color: var(--text-muted); 
    font-size: 0.9375rem;
    line-height: 1.7;
    letter-spacing: -0.01em;
}
.step-arrow { 
    color: var(--brand); 
    font-size: 1.5rem; 
    flex-shrink: 0;
    opacity: 0.6;
}

/* ===== PARTNER SECTION ===== */
.partner-section { padding: 6rem 0; background: var(--white); }
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.partner-mockup {
    background: #0a0a0f; border-radius: 48px; padding: 10px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5); border: 3px solid #1a1a24;
    max-width: 290px; margin: 0 auto; position: relative;
}
/* iPhone 17 Pro Dynamic Island for Partner App */
.partner-mockup::before {
    content: ''; position: absolute; top: 12px; left: 50%;
    transform: translateX(-50%); width: 110px; height: 32px;
    background: #000000; border-radius: 20px; z-index: 10;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.8);
}
.partner-mockup::after {
    content: ''; position: absolute; top: 20px; left: 50%;
    transform: translateX(-20px); width: 12px; height: 12px;
    background: radial-gradient(circle, #1a3a5a 0%, #000 70%);
    border-radius: 50%; z-index: 11;
    box-shadow: 0 0 4px rgba(100, 150, 255, 0.3);
}
.partner-screen { 
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%); 
    border-radius: 40px; overflow: hidden; position: relative;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
}
.partner-ui { padding: 48px 18px 18px; position: relative; }
/* Status Bar for Partner App */
.partner-ui::before {
    content: '9:41'; position: absolute; top: 8px; left: 24px;
    font-size: 0.8rem; font-weight: 700; color: var(--text);
    letter-spacing: 0.3px;
}
.partner-ui::after {
    content: '\f1eb \f240 \f012'; font-family: 'Font Awesome 6 Free';
    font-weight: 900; position: absolute; top: 8px; right: 24px;
    font-size: 0.75rem; color: var(--text); letter-spacing: 7px;
}
.partner-ui-header {
    display: flex; align-items: center; gap: 10px;
    color: var(--brand); font-weight: 800; font-size: 1.05rem; 
    margin-bottom: 14px; padding: 10px 0;
}
.partner-welcome {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    border-radius: 16px; padding: 14px; margin-bottom: 14px;
    box-shadow: 0 4px 16px rgba(231, 90, 90, 0.25);
}
.partner-greeting {
    font-size: 0.82rem; color: rgba(255,255,255,0.9); 
    font-weight: 600; margin-bottom: 3px;
}
.partner-salon-name {
    font-size: 1.1rem; color: var(--white); font-weight: 800;
}
.partner-stat-row { 
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; 
}
.p-stat {
    background: var(--white); border-radius: 14px; padding: 12px;
    text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    border: 1px solid #f0f0f0;
}
.p-stat-num { 
    display: block; font-size: 1.4rem; font-weight: 800; 
    color: var(--brand); margin-bottom: 2px;
}
.p-stat-label { 
    font-size: 0.72rem; color: var(--text-muted); font-weight: 600;
}
.partner-section-title {
    font-size: 0.85rem; font-weight: 700; color: var(--text);
    margin-bottom: 10px; padding-left: 2px;
}
.partner-booking-item {
    display: flex; align-items: center; gap: 10px;
    padding: 11px; background: var(--white); border-radius: 16px; 
    margin-bottom: 9px; box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    border: 1px solid #f0f0f0; transition: var(--transition);
}
.partner-booking-item:hover { 
    transform: translateX(3px); 
    box-shadow: 0 4px 16px rgba(231, 90, 90, 0.18); 
}
.pbi-icon { 
    width: 42px; height: 42px; 
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1rem; flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(231, 90, 90, 0.35);
}
.pbi-icon.pending { 
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}
.pbi-details { flex: 1; }
.pbi-details p { 
    font-size: 0.85rem; font-weight: 700; color: var(--text); 
    margin-bottom: 2px;
}
.pbi-details small { 
    font-size: 0.73rem; color: var(--text-muted); 
}
.pbi-status { 
    font-size: 1rem; font-weight: 700; 
    padding: 4px 8px; border-radius: 50%; flex-shrink: 0;
    width: 28px; height: 28px; display: flex; align-items: center;
    justify-content: center;
}
.pbi-status.confirmed { background: #dcfce7; color: var(--success); }
.pbi-status.pending { background: #fef3c7; color: #d97706; }

.partner-content .section-tag { margin-bottom: 0.8rem; }
.partner-content h2 { font-size: 2.2rem; margin-bottom: 1rem; color: var(--text); }
.partner-content > p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.8; }
.partner-features { display: grid; gap: 1.2rem; margin-bottom: 2rem; }
.partner-feature { display: flex; gap: 1rem; align-items: flex-start; }
.pf-icon {
    width: 44px; height: 44px; background: var(--brand-pale); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--brand); font-size: 1.1rem; flex-shrink: 0;
}
.partner-feature h4 { font-size: 1rem; margin-bottom: 0.2rem; color: var(--text); }
.partner-feature p { font-size: 0.88rem; color: var(--text-muted); }

/* ===== WHY STYLEQ ===== */
.why-styleq { 
    padding: var(--spacing-3xl) 0; 
    background: var(--bg); 
}
.why-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: var(--spacing-md); 
}
.why-card {
    background: var(--white); 
    border-radius: var(--radius-lg); 
    padding: var(--spacing-xl);
    text-align: center; 
    transition: var(--transition); 
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid transparent;
}
.why-card:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 12px 32px rgba(231, 90, 90, 0.15);
    border-color: var(--brand-pale);
}
.why-icon {
    width: 72px; 
    height: 72px; 
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: var(--white); 
    font-size: 1.75rem;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 8px 24px rgba(231, 90, 90, 0.25);
}
.why-card h3 { 
    font-size: 1.0625rem;
    margin-bottom: var(--spacing-xs); 
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.01em;
}
.why-card p { 
    color: var(--text-muted); 
    font-size: 0.9375rem;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

/* ===== APP SECTION ===== */
.app-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: var(--white);
}
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.app-content h2 { font-size: 2.4rem; margin-bottom: 1rem; }
.app-content > p { opacity: 0.9; margin-bottom: 2rem; font-size: 1.05rem; }
.app-store-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.store-btn {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.15); color: var(--white);
    padding: 0.9rem 1.5rem; border-radius: 14px;
    border: 2px solid rgba(255,255,255,0.3); transition: var(--transition);
    backdrop-filter: blur(10px);
}
.store-btn:hover { background: var(--white); color: var(--brand); }
.store-btn i { font-size: 1.8rem; }
.store-btn small { display: block; font-size: 0.7rem; opacity: 0.8; }
.store-btn strong { display: block; font-size: 1rem; }
.coming-soon-note {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); padding: 0.8rem 1.2rem;
    border-radius: 10px; font-size: 0.88rem; margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}
.app-social p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 0.8rem; }

/* Social Buttons */
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1rem; transition: var(--transition);
}
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.facebook { background: #1877f2; }
.social-btn.whatsapp { background: #25d366; }
.social-btn.twitter { background: #000000; }
.social-btn.youtube { background: #ff0000; }
.social-btn.telegram { background: #0088cc; }

/* Dual Phone - iPhone 17 Pro Style */
.app-phones { display: flex; justify-content: center; }
.dual-phone { display: flex; gap: 2.5rem; align-items: center; }
.phone-card {
    width: 180px; height: 360px; border-radius: 48px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1.5rem; font-size: 3.5rem; color: var(--white);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4); position: relative;
    border: 3px solid rgba(255,255,255,0.2); 
    background: rgba(0,0,0,0.2); backdrop-filter: blur(20px);
    overflow: hidden;
}
/* Dynamic Island for Dual Phones */
.phone-card::before {
    content: ''; position: absolute; top: 14px; left: 50%;
    transform: translateX(-50%); width: 95px; height: 30px;
    background: rgba(0,0,0,0.7); border-radius: 20px;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.6);
}
/* Camera Lens */
.phone-card::after {
    content: ''; position: absolute; top: 21px; left: 50%;
    transform: translateX(-18px); width: 11px; height: 11px;
    background: radial-gradient(circle, #1a3a5a 0%, #000 70%);
    border-radius: 50%; z-index: 1;
    box-shadow: 0 0 4px rgba(100, 150, 255, 0.3);
}
/* Background Gradient Overlays */
.phone-card.customer { 
    background: linear-gradient(135deg, rgba(231, 90, 90, 0.25) 0%, rgba(255,255,255,0.15) 100%);
    backdrop-filter: blur(20px);
}
.phone-card.partner { 
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.4) 0%, rgba(0,0,0,0.3) 100%);
    backdrop-filter: blur(20px);
}
.phone-label {
    position: absolute; top: 52px;
    background: var(--white); color: var(--brand);
    padding: 5px 14px; border-radius: 22px; font-size: 0.75rem; font-weight: 800;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25); z-index: 2;
    letter-spacing: 0.3px;
}
.phone-card i {
    font-size: 3.5rem; opacity: 0.95;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
}
.phone-card p { 
    font-size: 1rem; font-weight: 700; opacity: 0.95; 
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ===== CONTACT ===== */
.contact { padding: 6rem 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.contact-card {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.2rem; background: var(--bg); border-radius: var(--radius);
    margin-bottom: 1rem; transition: var(--transition);
}
.contact-card:hover { background: var(--brand-pale); }
.contact-icon {
    width: 48px; height: 48px; background: var(--brand); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.1rem; flex-shrink: 0;
}
.contact-card h4 { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-card a, .contact-card p { color: var(--text); font-weight: 500; font-size: 0.95rem; }
.contact-card a:hover { color: var(--brand); }
.contact-social-block { padding: 1.2rem; background: var(--bg); border-radius: var(--radius); }
.contact-social-block h4 { margin-bottom: 1rem; color: var(--text); }

.contact-form-wrap { background: var(--bg); border-radius: var(--radius); padding: 2.5rem; }
.contact-form h3 { font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--text); }
.form-group { margin-bottom: 1.2rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 0.9rem 1rem;
    border: 2px solid var(--border); border-radius: 10px;
    font-size: 0.95rem; font-family: inherit; background: var(--white);
    transition: var(--transition); color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--brand); }

/* ===== FOOTER ===== */
.footer { background: var(--footer-bg); color: var(--white); padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: 700; color: var(--brand); margin-bottom: 1rem; }
.footer-logo-img { width: 36px; height: 36px; object-fit: contain; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.8; margin-bottom: 0.8rem; }
.company-tag { color: var(--brand-light) !important; font-weight: 600; font-size: 0.85rem; }
.footer-social { display: flex; gap: 10px; margin-top: 1.2rem; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.1); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--brand); transform: translateY(-2px); }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--brand); padding-left: 4px; }
.footer-col ul li i { color: var(--brand); margin-right: 6px; font-size: 0.8rem; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.85rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--brand); }

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed; inset: 0; background: var(--white);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    z-index: 9999; transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { display: flex; align-items: center; gap: 12px; font-size: 1.8rem; font-weight: 800; color: var(--brand); margin-bottom: 1.5rem; }
.loader-logo img { width: 48px; height: 48px; object-fit: contain; }
.loader-bar { width: 200px; height: 4px; background: var(--brand-pale); border-radius: 4px; overflow: hidden; }
.loader-fill { height: 100%; width: 0; background: var(--brand); border-radius: 4px; animation: loadBar 1.2s ease forwards; }
@keyframes loadBar { to { width: 100%; } }

/* ===== TOAST ===== */
.toast {
    position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px);
    background: var(--text); color: var(--white); padding: 1rem 2rem;
    border-radius: 50px; font-size: 0.9rem; font-weight: 500;
    z-index: 9998; transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0; pointer-events: none; white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.success { background: var(--success); }
.toast.error { background: var(--brand); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
    width: 56px; height: 56px; background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.6rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transition); animation: floatPulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5); }
.whatsapp-tooltip {
    position: absolute; right: 68px; background: var(--text); color: var(--white);
    padding: 6px 12px; border-radius: 8px; font-size: 0.8rem; white-space: nowrap;
    opacity: 0; pointer-events: none; transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes floatPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 36px rgba(37, 211, 102, 0.7); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; bottom: 7rem; right: 1.5rem; z-index: 998;
    width: 44px; height: 44px; background: var(--brand); color: var(--white);
    border: none; border-radius: 50%; cursor: pointer; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow); transition: var(--transition);
    opacity: 0; visibility: hidden; transform: translateY(10px);
}
.back-to-top.visible,
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--brand-dark); transform: translateY(-3px); }

/* ===== LIVE CHAT WIDGET ===== */
.chat-launcher {
    position: fixed; bottom: 8.5rem; right: 1.5rem; z-index: 999;
    width: 56px; height: 56px; background: var(--brand); border-radius: 50%;
    border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.5rem; box-shadow: 0 6px 24px rgba(231, 90, 90, 0.4);
    transition: var(--transition); animation: chatPulse 2.5s infinite;
}
.chat-launcher:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(231, 90, 90, 0.5); }
.chat-badge {
    position: absolute; top: -4px; right: -4px;
    background: var(--success); color: var(--white); width: 20px; height: 20px;
    border-radius: 50%; font-size: 0.7rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--white);
}
@keyframes chatPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(231, 90, 90, 0.4); }
    50% { box-shadow: 0 6px 36px rgba(231, 90, 90, 0.7); }
}

.chat-widget {
    position: fixed; bottom: 9.5rem; right: 1.5rem; z-index: 1000;
    width: 360px; max-width: calc(100vw - 3rem);
    background: var(--white); border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex; flex-direction: column;
    opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}
.chat-widget.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.chat-widget-header {
    background: var(--brand); color: var(--white); padding: 1rem 1.2rem;
    border-radius: 16px 16px 0 0; display: flex; align-items: center;
    justify-content: space-between;
}
.chat-header-content { display: flex; align-items: center; gap: 0.8rem; }
.chat-avatar {
    width: 40px; height: 40px; background: rgba(255,255,255,0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; position: relative;
}
.chat-status-dot {
    position: absolute; bottom: 2px; right: 2px;
    width: 10px; height: 10px; background: var(--success);
    border-radius: 50%; border: 2px solid var(--brand);
}
.chat-header-text strong { display: block; font-size: 0.95rem; }
.chat-header-text span { font-size: 0.8rem; opacity: 0.9; }
.chat-close-btn {
    background: none; border: none; color: var(--white);
    cursor: pointer; font-size: 1.1rem; padding: 4px;
    opacity: 0.8; transition: var(--transition);
}
.chat-close-btn:hover { opacity: 1; }

.chat-widget-body {
    padding: 1.2rem; max-height: 400px; overflow-y: auto;
    display: flex; flex-direction: column; gap: 1rem;
}
.chat-message {
    display: flex; gap: 0.6rem; align-items: flex-start;
    animation: fadeInUp 0.3s ease;
}
.chat-message-avatar {
    width: 32px; height: 32px; background: var(--brand-pale);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--brand); font-size: 0.9rem; flex-shrink: 0;
}
.chat-message-content {
    background: var(--bg); padding: 0.7rem 1rem;
    border-radius: 12px; max-width: 75%;
}
.chat-message-content p { font-size: 0.88rem; color: var(--text); line-height: 1.5; }
.chat-message.user { flex-direction: row-reverse; }
.chat-message.user .chat-message-content {
    background: var(--brand); color: var(--white);
}

.chat-quick-replies {
    display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem;
}
.quick-reply-btn {
    background: var(--white); border: 1.5px solid var(--brand);
    color: var(--brand); padding: 0.6rem 1rem; border-radius: 20px;
    font-size: 0.85rem; font-weight: 600; cursor: pointer;
    transition: var(--transition); text-align: left;
}
.quick-reply-btn:hover { background: var(--brand); color: var(--white); }

.chat-widget-footer {
    padding: 1rem; border-top: 1px solid var(--border);
    display: flex; gap: 0.6rem; align-items: center;
}
.chat-widget-footer input {
    flex: 1; padding: 0.7rem 1rem; border: 1.5px solid var(--border);
    border-radius: 20px; font-size: 0.88rem; font-family: inherit;
    transition: var(--transition);
}
.chat-widget-footer input:focus { outline: none; border-color: var(--brand); }
.chat-send-btn {
    width: 36px; height: 36px; background: var(--brand);
    border: none; border-radius: 50%; color: var(--white);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; transition: var(--transition);
}
.chat-send-btn:hover { background: var(--brand-dark); transform: scale(1.05); }

/* ===== DEMO VIDEO ===== */
.demo-video { padding: 6rem 0; background: var(--white); }
.video-wrapper { max-width: 900px; margin: 0 auto; }
.video-container {
    position: relative; border-radius: 20px; overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.video-embed {
    position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
    background: #000;
}
.video-embed iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 20px;
}
.video-placeholder {
    position: relative; padding-bottom: 56.25%; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    cursor: pointer; transition: var(--transition);
}
.video-placeholder:hover { transform: scale(1.02); }
.video-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 1rem;
    color: var(--white);
}
.video-icon { font-size: 4rem; opacity: 0.3; }
.video-overlay p { font-size: 1.1rem; font-weight: 600; }
.video-play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 80px; height: 80px; background: rgba(255,255,255,0.95);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--brand); font-size: 1.8rem; cursor: pointer;
    transition: var(--transition); z-index: 2;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.video-play-btn:hover { transform: translate(-50%, -50%) scale(1.1); background: var(--white); }
.video-play-btn i { margin-left: 4px; }
.video-features {
    display: flex; justify-content: center; gap: 2rem; margin-top: 1.5rem;
    flex-wrap: wrap;
}
.video-feature-item {
    display: flex; align-items: center; gap: 0.5rem;
    color: var(--text-muted); font-size: 0.9rem; font-weight: 600;
}
.video-feature-item i { color: var(--brand); font-size: 1rem; }

/* ===== PRESS / AS FEATURED IN ===== */
.press-section {
    padding: 3rem 0; background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.press-header { text-align: center; margin-bottom: 2rem; }
.press-label {
    font-size: 0.8rem; font-weight: 700; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1.5px;
}
.press-logos {
    display: flex; justify-content: center; align-items: center;
    gap: 3rem; flex-wrap: wrap;
}
.press-logo-item {
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    opacity: 0.6; transition: var(--transition);
}
.press-logo-item:hover { opacity: 1; }
.press-logo-item i {
    font-size: 2rem; color: var(--text-muted);
}
.press-logo-item span {
    font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
}

/* ===== ROI CALCULATOR ===== */
.roi-calculator { padding: 6rem 0; background: var(--bg); }
.calculator-wrapper {
    max-width: 900px; margin: 0 auto;
    background: var(--white); border-radius: 20px; padding: 3rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.calculator-inputs {
    display: grid; grid-template-columns: 1fr 1fr auto; gap: 1.5rem;
    align-items: end; margin-bottom: 2.5rem;
}
.calc-input-group label {
    display: block; font-size: 0.9rem; font-weight: 600;
    color: var(--text); margin-bottom: 0.5rem;
}
.calc-input-group input {
    width: 100%; padding: 0.9rem 1rem; border: 2px solid var(--border);
    border-radius: 10px; font-size: 1rem; font-weight: 600;
    font-family: inherit; transition: var(--transition);
}
.calc-input-group input:focus { outline: none; border-color: var(--brand); }
.calculator-results {
    display: grid; grid-template-columns: 1fr auto 1.2fr 1fr; gap: 1rem;
    align-items: center; margin-bottom: 1.5rem;
}
.calc-result-card {
    background: var(--bg); border-radius: 14px; padding: 1.5rem;
    text-align: center; transition: var(--transition);
}
.calc-result-card.highlight {
    background: var(--brand-pale); border: 2px solid var(--brand);
    transform: scale(1.05);
}
.calc-result-label {
    font-size: 0.8rem; color: var(--text-muted);
    margin-bottom: 0.5rem; font-weight: 600;
}
.calc-result-value {
    font-size: 1.8rem; font-weight: 800; color: var(--brand);
}
.calc-result-growth {
    font-size: 0.85rem; font-weight: 700; color: var(--success);
    margin-top: 0.3rem;
}
.calc-result-arrow {
    color: var(--brand); font-size: 1.5rem;
}
.calculator-note {
    display: flex; align-items: center; gap: 0.6rem;
    background: var(--brand-pale); padding: 0.8rem 1.2rem;
    border-radius: 10px; font-size: 0.85rem; color: var(--text-muted);
}
.calculator-note i { color: var(--brand); }

/* ===== CASE STUDY ===== */
.case-study { padding: 6rem 0; background: var(--white); }
.case-study-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.case-study-quote {
    background: var(--brand-pale); border-left: 4px solid var(--brand);
    padding: 2rem; border-radius: 14px; margin-bottom: 2rem;
    position: relative;
}
.case-study-quote i {
    position: absolute; top: 1rem; left: 1.5rem;
    font-size: 2rem; color: var(--brand); opacity: 0.3;
}
.case-study-quote p {
    font-size: 1.05rem; line-height: 1.8; color: var(--text);
    font-style: italic; padding-left: 2rem;
}
.case-study-author {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem;
}
.case-author-avatar {
    width: 56px; height: 56px; background: var(--brand);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.5rem;
}
.case-study-author strong { display: block; font-size: 1rem; color: var(--text); }
.case-study-author span { font-size: 0.85rem; color: var(--text-muted); }
.case-study-results {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.case-result-item {
    background: var(--bg); border-radius: 12px; padding: 1.2rem;
    text-align: center;
}
.case-result-num {
    font-size: 2rem; font-weight: 800; color: var(--brand);
    margin-bottom: 0.3rem;
}
.case-result-label { font-size: 0.8rem; color: var(--text-muted); }

.case-study-timeline { position: relative; }
.timeline-item {
    display: flex; gap: 1.2rem; margin-bottom: 2rem;
    position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
    content: ''; position: absolute; left: 11px; top: 28px;
    width: 2px; height: calc(100% + 2rem);
    background: var(--border);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
    width: 24px; height: 24px; background: var(--bg);
    border: 3px solid var(--brand); border-radius: 50%;
    flex-shrink: 0; position: relative; z-index: 1;
}
.timeline-dot.active {
    background: var(--brand);
    box-shadow: 0 0 0 4px var(--brand-pale);
}
.timeline-content strong {
    display: block; font-size: 0.95rem; color: var(--brand);
    margin-bottom: 0.3rem;
}
.timeline-content p {
    font-size: 0.9rem; color: var(--text-muted); line-height: 1.6;
}

/* ===== INTEGRATIONS ===== */
.integrations { padding: 6rem 0; background: var(--white); }
.integration-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.integration-card {
    background: var(--bg); border-radius: 14px; padding: 2rem 1.5rem;
    text-align: center; transition: var(--transition);
    border: 2px solid transparent;
}
.integration-card:hover {
    transform: translateY(-4px); border-color: var(--brand);
    background: var(--brand-pale);
}
.integration-icon {
    width: 64px; height: 64px; background: var(--white);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: var(--brand); font-size: 1.8rem; margin: 0 auto 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.integration-card span {
    font-size: 0.9rem; font-weight: 600; color: var(--text);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 6rem 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.testimonial-card {
    background: var(--bg); border-radius: var(--radius); padding: 2rem;
    border-left: 4px solid var(--brand); transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); background: var(--brand-pale); }
.testimonial-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card > p { color: var(--text); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar {
    width: 44px; height: 44px; background: var(--brand); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--text); }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq { padding: 6rem 0; background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.faq-item {
    background: var(--white); border-radius: var(--radius);
    margin-bottom: 0.8rem; overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 1.5rem; background: none; border: none; cursor: pointer;
    font-size: 0.95rem; font-weight: 600; color: var(--text); text-align: left;
    gap: 1rem; transition: var(--transition);
}
.faq-question:hover { color: var(--brand); }
.faq-question[aria-expanded="true"] { color: var(--brand); }
.faq-icon { flex-shrink: 0; transition: transform 0.3s ease; color: var(--brand); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-answer.open { max-height: 200px; }
.faq-answer p { padding: 0 1.5rem 1.2rem; color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}
.coming-soon-note i { animation: pulse 2s infinite; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .calculator-inputs { grid-template-columns: 1fr; }
    .calculator-results { grid-template-columns: 1fr; }
    .calc-result-arrow { transform: rotate(90deg); }
    .case-study-grid { grid-template-columns: 1fr; }
    .integration-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .partner-grid { grid-template-columns: 1fr; }
    .partner-visual { display: none; }
    .app-grid { grid-template-columns: 1fr; }
    .app-phones { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .steps-grid { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
    .early-access-inner { grid-template-columns: 1fr; gap: 3rem; }
    .impact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .impact-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed; top: 70px; left: -100%; width: 100%;
        flex-direction: column; background: var(--white);
        padding: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: var(--transition); z-index: 999;
    }
    .nav-menu.active { left: 0; }
    .hamburger { display: flex; }
    .btn-nav { display: none; }
    .hero-content h1 { font-size: 2.2rem; }
    .section-header h2 { font-size: 1.9rem; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .comparison-header,
    .comparison-row { grid-template-columns: 1fr; gap: 0.5rem; text-align: center; }
    .comparison-feature { padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
    .security-grid { grid-template-columns: repeat(2, 1fr); }
    .integration-grid { grid-template-columns: repeat(2, 1fr); }
    .chat-widget { width: calc(100vw - 3rem); right: 1.5rem; }
    .press-logos { gap: 2rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .hero-stats { flex-direction: column; gap: 0.8rem; }
    .stat-divider { width: 40px; height: 1px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .app-store-buttons { flex-direction: column; }
    .security-grid { grid-template-columns: 1fr; }
    .security-badges { flex-direction: column; }
    .integration-grid { grid-template-columns: 1fr; }
    .calculator-wrapper { padding: 1.5rem; }
    .case-study-results { grid-template-columns: 1fr; }
    .chat-launcher { bottom: 7.5rem; right: 1rem; }
    .chat-widget { bottom: 8.5rem; right: 1rem; width: calc(100vw - 2rem); }
    .whatsapp-float { bottom: 1rem; right: 1rem; }
    .back-to-top { bottom: 1rem; right: 7rem; }
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: var(--brand); color: var(--white);
    padding: 0.6rem 0; font-size: 0.85rem; text-align: center;
    position: relative; z-index: 1001;
}
.announcement-bar .container { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.announcement-bar a { color: var(--white); font-weight: 700; text-decoration: underline; }
.announcement-bar a:hover { opacity: 0.85; }
.announcement-close {
    background: none; border: none; color: var(--white); cursor: pointer;
    font-size: 0.9rem; padding: 2px 6px; opacity: 0.8; transition: var(--transition);
    position: absolute; right: 1rem;
}
.announcement-close:hover { opacity: 1; }
.announcement-bar.hidden { display: none; }

/* Offset navbar when bar is visible */
.navbar { top: 36px; transition: top 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease; }
.navbar.bar-hidden { top: 0; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9997;
    background: var(--dark); color: var(--white);
    padding: 1.2rem 2rem; display: flex; align-items: center;
    justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.2);
    transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner.hidden { display: none; }
.cookie-content { display: flex; align-items: center; gap: 1rem; flex: 1; }
.cookie-icon { font-size: 1.5rem; color: var(--brand); flex-shrink: 0; }
.cookie-content p { font-size: 0.88rem; color: rgba(255,255,255,0.85); }
.cookie-content a { color: var(--brand-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.8rem; align-items: center; flex-shrink: 0; }
.cookie-decline {
    background: none; border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.7);
    padding: 0.6rem 1.2rem; border-radius: 50px; cursor: pointer; font-size: 0.85rem;
    transition: var(--transition);
}
.cookie-decline:hover { border-color: var(--white); color: var(--white); }

/* ===== TRUSTED STRIP ===== */
.trusted-strip {
    background: var(--white); border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border); padding: 1rem 0; overflow: hidden;
}
.trusted-strip .container { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.trusted-label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); white-space: nowrap; }
.cities-row { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.cities-row span { font-size: 0.82rem; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 4px; }
.cities-row span i { color: var(--brand); font-size: 0.7rem; }

/* ===== SCROLLING MARQUEE ===== */
.marquee-strip {
    background: var(--brand-pale);
    padding: 1rem 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.marquee-content {
    display: flex;
    gap: 3rem;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
}
.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}
.marquee-content span i {
    color: var(--brand);
    font-size: 0.9rem;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== EARLY ACCESS ===== */
.early-access {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
}
.early-access-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.early-access-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--brand); color: var(--white);
    padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.82rem;
    font-weight: 700; margin-bottom: 1.2rem; letter-spacing: 0.5px;
}
.early-access-content h2 { font-size: 2.4rem; margin-bottom: 1rem; line-height: 1.2; }
.early-access-content p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; }
.trust-badges { display: flex; gap: 1rem; flex-wrap: wrap; }
.trust-badge {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85);
    padding: 0.4rem 0.9rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
    border: 1px solid rgba(255,255,255,0.12);
}
.trust-badge i { color: var(--brand-light); }

/* Early Access Form */
.early-access-form {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; padding: 2.5rem; backdrop-filter: blur(10px);
}
.ea-form-group { margin-bottom: 1rem; position: relative; }
.ea-form-group input,
.ea-form-group select {
    width: 100%; padding: 0.95rem 1.1rem;
    background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 10px; color: var(--white); font-size: 0.95rem; font-family: inherit;
    transition: var(--transition);
}
.ea-form-group input::placeholder { color: rgba(255,255,255,0.45); }
.ea-form-group select { color: rgba(255,255,255,0.7); }
.ea-form-group select option { background: #1a1a2e; color: var(--white); }
.ea-form-group input:focus,
.ea-form-group select:focus { outline: none; border-color: var(--brand); background: rgba(255,255,255,0.12); }
.ea-form-group input.invalid,
.ea-form-group select.invalid { border-color: var(--brand-light); }
.field-error { display: block; font-size: 0.78rem; color: var(--brand-light); margin-top: 4px; min-height: 16px; }
.ea-submit { margin-top: 0.5rem; font-size: 1rem; }
.ea-disclaimer { text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 0.8rem; }
.ea-disclaimer i { margin-right: 4px; }

/* ===== FOOTER TRUST BADGES ===== */
.footer-trust {
    display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
    padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 1.5rem;
}
.footer-trust-badge {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.6);
    padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
    border: 1px solid rgba(255,255,255,0.08);
}
.footer-trust-badge i { color: var(--brand); }

/* ===== RESPONSIVE: NEW SECTIONS ===== */
@media (max-width: 768px) {
    .cookie-banner { flex-direction: column; align-items: flex-start; }
    .announcement-bar .container { padding: 0 3rem 0 1rem; }
    .trusted-strip .container { flex-direction: column; gap: 0.8rem; }
    .trust-badges { flex-direction: column; gap: 0.6rem; }
    .impact-content h2 { font-size: 1.9rem; }
}
@media (max-width: 480px) {
    .cities-row { gap: 0.8rem; }
    .footer-trust { gap: 0.6rem; }
    .footer-trust-badge { font-size: 0.72rem; }
    .impact-stats { grid-template-columns: 1fr; }
    .hero-cta-split { flex-direction: column; gap: 1rem; }
    .cta-divider { transform: rotate(90deg); }
}

/* ===== COMPARISON TABLE ===== */
.comparison { padding: 6rem 0; background: var(--white); }
.comparison-table {
    background: var(--bg); border-radius: 20px; overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.comparison-header {
    display: grid; grid-template-columns: 2fr 1.5fr 1.5fr; gap: 1rem;
    background: var(--brand); color: var(--white); padding: 1.5rem 2rem;
    font-weight: 700; font-size: 1rem;
}
.comparison-feature-col { display: flex; align-items: center; }
.comparison-styleq-col,
.comparison-traditional-col {
    display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
    text-align: center;
}
.comparison-styleq-col i,
.comparison-traditional-col i { font-size: 1.5rem; }
.comparison-row {
    display: grid; grid-template-columns: 2fr 1.5fr 1.5fr; gap: 1rem;
    padding: 1.2rem 2rem; border-bottom: 1px solid var(--border);
    align-items: center; transition: var(--transition);
}
.comparison-row:hover { background: var(--brand-pale); }
.comparison-row:last-child { border-bottom: none; }
.comparison-feature { font-weight: 600; color: var(--text); font-size: 0.95rem; }
.comparison-styleq,
.comparison-traditional {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    font-size: 0.9rem; text-align: center;
}
.comparison-styleq { color: var(--success); font-weight: 600; }
.comparison-styleq i { color: var(--success); font-size: 1.1rem; }
.comparison-traditional { color: var(--error); font-weight: 500; }
.comparison-traditional i { color: var(--error); font-size: 1.1rem; }

/* ===== TRUST & SECURITY ===== */
.trust-security { padding: 6rem 0; background: var(--bg); }
.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.security-card {
    background: var(--white); border-radius: var(--radius); padding: 2rem;
    text-align: center; transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 2px solid transparent;
}
.security-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow);
    border-color: var(--brand);
}
.security-icon {
    width: 64px; height: 64px; background: var(--brand-pale);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--brand); font-size: 1.5rem; margin: 0 auto 1.2rem;
}
.security-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text); }
.security-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.security-badges {
    display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
    padding: 2rem; background: var(--white); border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.security-badge-item {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.6rem 1.2rem; background: var(--brand-pale);
    border-radius: 50px; font-size: 0.85rem; font-weight: 600;
    color: var(--text); border: 2px solid var(--brand);
}
.security-badge-item i { color: var(--brand); font-size: 1rem; }

/* ===== PLATFORM SECTION ===== */
.platform { padding: 6rem 0; background: var(--bg); }

.platform-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: stretch;
}

.platform-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition);
}
.platform-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.platform-customer { border-top: 4px solid var(--brand); }
.platform-partner  { border-top: 4px solid #1a1a2e; }

.platform-card-header { display: flex; align-items: center; gap: 1rem; }

.platform-icon {
    width: 52px; height: 52px; background: var(--brand); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.4rem; flex-shrink: 0;
}
.platform-icon.partner-icon { background: #1a1a2e; }

.platform-label {
    display: block; font-size: 0.75rem; font-weight: 700;
    color: var(--brand); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px;
}
.platform-partner .platform-label { color: var(--text-muted); }

.platform-card h3 { font-size: 1.3rem; color: var(--text); }
.platform-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

.platform-features-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.platform-features-list li {
    display: flex; align-items: center; gap: 0.7rem;
    font-size: 0.9rem; color: var(--text);
}
.platform-features-list li i { color: var(--brand); font-size: 0.8rem; flex-shrink: 0; }
.platform-partner .platform-features-list li i { color: #1a1a2e; }

.platform-btn { align-self: flex-start; margin-top: auto; }

.btn-outline-dark {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0.85rem 2rem; border-radius: 50px;
    font-weight: 600; font-size: 0.95rem; cursor: pointer;
    background: transparent; color: #1a1a2e;
    border: 2px solid #1a1a2e; transition: var(--transition);
}
.btn-outline-dark:hover { background: #1a1a2e; color: var(--white); transform: translateY(-2px); }

/* Divider between cards */
.platform-divider {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0 0.5rem;
}
.platform-divider-line { flex: 1; width: 1px; background: var(--border); }
.platform-divider-badge {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--brand-pale); color: var(--brand);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 800; flex-shrink: 0;
    border: 2px solid var(--brand);
}

/* Responsive */
@media (max-width: 900px) {
    .platform-grid { grid-template-columns: 1fr; }
    .platform-divider { flex-direction: row; padding: 0.5rem 0; }
    .platform-divider-line { flex: 1; height: 1px; width: auto; }
    .platform-btn { align-self: stretch; justify-content: center; }
}


/* ===== PAGE CONTENT: PRIVACY & TERMS ===== */
.privacy-content,
.terms-content {
    margin-top: 80px;
    padding: 2rem 1.5rem 4rem;
    background: var(--white);
    min-height: calc(100vh - 80px);
}
.privacy-container,
.terms-container {
    max-width: 860px;
    margin: 0 auto;
}
.page-title {
    margin-bottom: 1.5rem;
    text-align: center;
}
.page-title h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.last-updated {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.last-updated strong { color: var(--text); }
.intro-text {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Sections */
.privacy-section,
.terms-section {
    margin-bottom: 2rem;
    scroll-margin-top: 100px;
    animation: fadeInUp 0.5s ease;
}
.privacy-section h3,
.terms-section h3 {
    font-size: clamp(1.0625rem, 3vw, 1.25rem);
    font-weight: 600;
    color: var(--brand);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.section-number { color: var(--brand); font-weight: 700; flex-shrink: 0; }
.privacy-section h4,
.terms-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 1rem 0 0.5rem;
}
.privacy-section p,
.terms-section p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    word-wrap: break-word;
}
.privacy-section ul,
.terms-section ul,
.terms-section ol {
    margin: 0.75rem 0 0.75rem 1.25rem;
    padding: 0;
}
.privacy-section ul li,
.terms-section ul li,
.terms-section ol li {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
}
.privacy-section ul li::marker,
.terms-section ul li::marker { color: var(--brand); }
.terms-section ol li::marker { color: var(--brand); font-weight: 600; }
.privacy-section a,
.terms-section a { color: var(--brand); font-weight: 500; }
.privacy-section a:hover,
.terms-section a:hover { text-decoration: underline; }

/* Highlight section */
.highlight-section {
    background: linear-gradient(135deg, rgba(231,90,90,0.05), rgba(255,138,138,0.05));
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--brand);
}

/* Important box */
.important-box {
    background: #2563EB;
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin: 1rem 0;
}
.important-box p { color: var(--white); margin: 0; font-size: 0.875rem; line-height: 1.6; }
.important-box strong { font-weight: 600; }

/* Contact box */
.contact-box {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
}
.contact-box h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 1.25rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--white);
    border-radius: var(--radius-sm);
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item i {
    width: 40px; height: 40px; min-width: 40px;
    background: var(--brand); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1rem; flex-shrink: 0;
}
.contact-item > div { flex: 1; min-width: 0; }
.contact-item strong {
    display: block; font-size: 0.8125rem; color: var(--text-muted);
    margin-bottom: 0.25rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.contact-item p { margin: 0; font-size: 0.9375rem; color: var(--text); font-weight: 500; }
.contact-item a { color: var(--brand); font-weight: 500; word-break: break-all; }
.contact-item a:hover { text-decoration: underline; }

/* Final agreement */
.final-agreement {
    background: var(--brand);
    color: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.final-agreement i { font-size: 1.5rem; flex-shrink: 0; }
.final-agreement p { margin: 0; font-size: 0.9375rem; line-height: 1.6; color: var(--white); }

/* ===== PAGE CONTENT: DELETE ACCOUNT ===== */
.delete-content {
    margin-top: 80px;
    padding: 2rem 1rem 3rem;
    background: var(--bg);
    min-height: calc(100vh - 80px);
}
.delete-container { max-width: 600px; margin: 0 auto; }

.page-header { text-align: center; margin-bottom: 2rem; }
.icon-warning {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem; animation: pulse 2s infinite;
}
.icon-warning i { font-size: 2.25rem; color: var(--white); }
.page-header h2 { font-size: 1.75rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.subtitle { font-size: 1rem; color: var(--text-muted); }

/* Progress */
.progress-indicator {
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 2rem; padding: 0 1.25rem;
}
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.step-circle {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--border); color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 1rem; transition: var(--transition);
}
.progress-step.active .step-circle { background: var(--brand); color: var(--white); box-shadow: 0 4px 12px rgba(231,90,90,0.4); }
.progress-step.completed .step-circle { background: var(--success); color: var(--white); }
.progress-step span { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.progress-step.active span { color: var(--brand); font-weight: 600; }
.progress-line { width: 60px; height: 2px; background: var(--border); margin: 0 0.5rem 1.25rem; }

/* Step containers */
.step-container { display: none; animation: fadeInUp 0.4s ease; }
.step-container.active { display: block; }
.step-card {
    background: var(--white); border-radius: var(--radius);
    padding: 2rem; box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.step-card h3 { font-size: 1.375rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; }
.step-description { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.step-description strong { color: var(--brand); }

/* Phone input */
.phone-input-wrapper {
    display: flex; align-items: center;
    border: 2px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
    transition: var(--transition);
}
.phone-input-wrapper:focus-within { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(231,90,90,0.1); }
.country-code { padding: 0.875rem 1rem; background: var(--bg); font-weight: 600; color: var(--text); border-right: 2px solid var(--border); }
.phone-input-wrapper input { flex: 1; border: none; padding: 0.875rem 1rem; font-size: 1rem; outline: none; }

/* Captcha */
.captcha-container { display: flex; flex-direction: column; gap: 0.75rem; }
.captcha-question {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--bg); padding: 1rem 1.25rem;
    border-radius: var(--radius-sm); border: 2px solid var(--border);
}
.captcha-question span { font-size: 1.25rem; font-weight: 700; color: var(--text); letter-spacing: 2px; font-family: 'Courier New', monospace; }
.captcha-refresh {
    background: var(--brand); border: none; color: var(--white);
    width: 36px; height: 36px; border-radius: 8px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.captcha-refresh:hover { background: var(--brand-dark); transform: rotate(180deg); }
.captcha-container input {
    width: 100%; border: 2px solid var(--border); border-radius: var(--radius-sm);
    padding: 0.875rem 1rem; font-size: 1rem; font-weight: 600; transition: var(--transition);
}
.captcha-container input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(231,90,90,0.1); outline: none; }

/* OTP */
.otp-input-group { display: flex; gap: 0.75rem; justify-content: center; }
.otp-input {
    width: 50px; height: 56px; border: 2px solid var(--border);
    border-radius: var(--radius-sm); text-align: center;
    font-size: 1.5rem; font-weight: 600; color: var(--text); transition: var(--transition);
}
.otp-input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(231,90,90,0.1); outline: none; }

/* Error */
.error-message {
    display: block !important; color: #ff6b6b !important;
    font-size: 0.875rem !important; font-weight: 600 !important;
    margin-top: 0.5rem !important; min-height: 20px !important;
    padding: 0.5rem 0.75rem !important; line-height: 1.4 !important;
    background: #ffe6e6 !important; border-left: 3px solid #ff6b6b !important;
    border-radius: 4px !important;
}

/* Resend */
.resend-section { text-align: center; margin: 1rem 0; }
.resend-section p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.resend-section #timer { font-weight: 600; color: var(--brand); }
.btn-link {
    background: none; border: none; color: var(--brand);
    font-size: 0.875rem; font-weight: 600; cursor: pointer; text-decoration: underline;
}
.btn-link:disabled { color: var(--border); cursor: not-allowed; }

/* Delete page buttons */
.delete-content .btn {
    width: 100%; padding: 1rem 1.5rem; border: none; border-radius: var(--radius-sm);
    font-size: 1rem; font-weight: 600; cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 0.75rem;
}
.delete-content .btn:disabled { opacity: 0.5; cursor: not-allowed; }
.delete-content .btn-primary { background: var(--brand); color: var(--white); }
.delete-content .btn-primary:hover:not(:disabled) { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(231,90,90,0.4); }
.delete-content .btn-secondary { background: var(--bg); color: var(--text); }
.delete-content .btn-secondary:hover:not(:disabled) { background: var(--border); }
.delete-content .btn-danger { background: #ff6b6b; color: var(--white); }
.delete-content .btn-danger:hover:not(:disabled) { background: #ee5a6f; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(255,107,107,0.4); }
.btn-loader { display: none; }
.btn.loading .btn-text { display: none; }
.btn.loading .btn-loader { display: inline-block; }

/* Warning box */
.warning-box {
    background: rgba(255,107,107,0.08); border-left: 4px solid #ff6b6b;
    padding: 1rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem;
    display: flex; gap: 0.75rem;
}
.warning-box i { font-size: 1.5rem; color: #ff6b6b; flex-shrink: 0; }
.warning-box strong { display: block; color: #ff6b6b; margin-bottom: 0.25rem; }
.warning-box p { color: var(--text-muted); font-size: 0.875rem; margin: 0; }

/* Deletion info */
.deletion-info, .retention-info { margin-bottom: 1.5rem; }
.deletion-info h4, .retention-info h4 { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 0.75rem; }
.deletion-info ul, .retention-info ul { list-style: none; padding: 0; margin: 0; }
.deletion-info ul li, .retention-info ul li {
    padding: 0.625rem 0; border-bottom: 1px solid var(--border);
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.875rem; color: var(--text-muted);
}
.deletion-info ul li:last-child, .retention-info ul li:last-child { border-bottom: none; }
.deletion-info ul li i { color: #ff6b6b; margin-top: 2px; }
.retention-info ul li i { color: #2563EB; margin-top: 2px; }

/* Checkbox */
.checkbox-group { margin-bottom: 1.5rem; }
.checkbox-label { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; position: relative; }
.checkbox-label input[type="checkbox"] { position: absolute; opacity: 0; cursor: pointer; }
.checkmark {
    width: 24px; height: 24px; border: 2px solid var(--border);
    border-radius: 6px; flex-shrink: 0; transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.checkbox-label input[type="checkbox"]:checked ~ .checkmark { background: var(--brand); border-color: var(--brand); }
.checkbox-label input[type="checkbox"]:checked ~ .checkmark::after {
    content: '\f00c'; font-family: 'Font Awesome 5 Free'; font-weight: 900;
    color: var(--white); font-size: 0.75rem;
}
.checkbox-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }

/* Support section */
.support-section {
    text-align: center; margin-top: 2rem; padding: 1.5rem;
    background: var(--white); border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.support-section p { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 1rem; }
.support-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--brand); text-decoration: none; font-weight: 600;
    font-size: 0.9375rem; margin: 0 0.75rem; transition: var(--transition);
}
.support-link:hover { color: var(--brand-dark); transform: translateY(-2px); }

/* Delete page modal */
.modal {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.6); z-index: 2000;
    align-items: center; justify-content: center; padding: 1.25rem;
}
.modal.active { display: flex; }
.modal-content {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 2.5rem; max-width: 500px; width: 100%;
    text-align: center; animation: fadeInUp 0.3s ease;
}
.modal-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
}
.modal-icon.success { background: linear-gradient(135deg, var(--success), #15803d); }
.modal-icon i { font-size: 2.25rem; color: var(--white); }
.modal-content h3 { font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 0.75rem; }
.modal-content p { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 0.75rem; line-height: 1.6; }
.small-text { font-size: 0.8125rem; color: var(--text-muted); }
.modal-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.modal-actions .btn { margin-bottom: 0; }

/* Delete page toast */
.delete-content ~ .toast,
body:has(.delete-content) .toast {
    top: 80px; bottom: auto;
    transform: translateX(-50%) translateY(-20px);
    min-width: 280px; max-width: 450px;
    display: flex; align-items: center; gap: 0.75rem;
    border-radius: var(--radius-sm); padding: 1rem 1.5rem;
}
.delete-content ~ .toast.show,
body:has(.delete-content) .toast.show {
    transform: translateX(-50%) translateY(0);
}
.toast i { font-size: 1.25rem; flex-shrink: 0; }
.toast-message { flex: 1; font-size: 0.875rem; font-weight: 500; line-height: 1.5; }

/* SweetAlert custom */
.swal-custom-popup { border-radius: 20px !important; padding: 1.875rem !important; }
.swal-custom-title { font-size: 1.5rem !important; font-weight: 700 !important; color: var(--text) !important; }
.swal-custom-confirm, .swal-custom-cancel { border-radius: var(--radius-sm) !important; padding: 0.75rem 2rem !important; font-size: 1rem !important; font-weight: 600 !important; }

/* ===== RESPONSIVE: PAGE CONTENT ===== */
@media (max-width: 768px) {
    .privacy-content, .terms-content { padding: 1.5rem 1rem 3rem; }
    .delete-content { padding: 1.5rem 0.75rem 2rem; }
    .step-card { padding: 1.5rem; }
    .otp-input { width: 44px; height: 52px; font-size: 1.25rem; }
    .modal-content { padding: 2rem 1.5rem; }
    .modal-actions { flex-direction: column; }
}
@media (max-width: 480px) {
    .otp-input-group { gap: 0.5rem; }
    .otp-input { width: 40px; height: 48px; font-size: 1.125rem; }
}

/* ===== CHAT BOT ENHANCEMENTS ===== */

/* Avatar uses logo image */
.chat-message-avatar img {
    width: 32px; height: 32px; border-radius: 50%;
    object-fit: contain; background: var(--brand-pale);
    border: 1.5px solid var(--brand-pale);
}

/* Bot bubble */
.chat-message.bot .chat-message-content {
    background: var(--bg);
    border-radius: 0 14px 14px 14px;
    padding: 0.75rem 1rem;
    max-width: 82%;
}
.chat-message.bot .chat-message-content p {
    font-size: 0.875rem; color: var(--text); line-height: 1.6;
}
.chat-message.bot .chat-message-content strong { color: var(--text); }
.chat-message.bot .chat-message-content a { color: var(--brand); font-weight: 600; }

/* User bubble */
.chat-message.user .chat-message-content {
    background: var(--brand);
    border-radius: 14px 0 14px 14px;
    padding: 0.75rem 1rem;
    max-width: 82%;
}
.chat-message.user .chat-message-content p { color: var(--white); font-size: 0.875rem; line-height: 1.6; }

/* Typing dots */
.typing-dots {
    display: flex !important;
    align-items: center;
    gap: 5px;
    padding: 0.75rem 1rem !important;
    min-width: 56px;
}
.typing-dots span {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--text-muted);
    animation: typingBounce 1.2s infinite ease-in-out;
    display: inline-block;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* Option buttons grid */
.chat-options {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.25rem 0 0.5rem 0;
    animation: fadeInUp 0.25s ease;
}
.chat-option-btn {
    background: var(--white);
    border: 1.5px solid var(--brand);
    color: var(--brand);
    padding: 0.55rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    line-height: 1.4;
}
.chat-option-btn:hover {
    background: var(--brand);
    color: var(--white);
    transform: translateX(3px);
}

/* Wider widget for better readability */
.chat-widget {
    width: 380px;
}
.chat-widget-body {
    max-height: 420px;
    padding: 1rem;
    gap: 0.75rem;
}

/* Header subtitle */
.chat-header-text span { font-size: 0.75rem; opacity: 0.85; }

@media (max-width: 480px) {
    .chat-widget { width: calc(100vw - 2rem); right: 1rem; bottom: 8rem; }
    .chat-option-btn { font-size: 0.8rem; padding: 0.5rem 0.8rem; }
}

/* ===== SKIP LINK (accessibility + SEO) ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--brand);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 9999;
    transition: top 0.2s;
    text-decoration: none;
}
.skip-link:focus {
    top: 0;
}

/* ===== SERVICES COVERAGE (SEO keyword section) ===== */
.services-coverage {
    padding: 1.25rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.coverage-label {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.services-tags a {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    text-decoration: none;
}
.services-tags a:hover {
    background: var(--brand-pale);
    border-color: var(--brand);
    color: var(--brand);
}
.services-tags a i {
    font-size: 0.75rem;
    color: var(--brand);
}

/* ===== FOOTER SEO CITIES BLOCK ===== */
.footer-seo-cities {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}
.footer-seo-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.footer-cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem 0.75rem;
}
.footer-cities-list a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-cities-list a:hover {
    color: var(--brand-light);
}
