/* ============================================
   WASHINI - Landing Page Styles
   Mobile-first responsive design
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #76ABAE;
    --primary-dark: #5A8F93;
    --primary-light: #9DC5C8;
    --accent: #FF5722;
    --accent-dark: #E64A19;
    --accent-light: #FFF3E0;
    --dark: #303841;
    --dark-soft: #3A4249;
    --gray-900: #303841;
    --gray-700: #455159;
    --gray-500: #7A8890;
    --gray-300: #BDBDBD;
    --gray-100: #F5F5F5;
    --white: #FFFFFF;
    --danger: #EF4444;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(255,87,34,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    border-radius: 50px;
}
.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,87,34,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(118,171,174,0.15);
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(118,171,174,0.3);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-cta-glow {
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255,87,34,0.25);
    transition: all 0.3s ease;
}
.btn-cta-glow:hover {
    box-shadow: 0 6px 25px rgba(255,87,34,0.4);
    animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(255,87,34,0.4); }
    50% { box-shadow: 0 6px 35px rgba(255,87,34,0.55); }
}

.btn-block {
    width: 100%;
}

.btn-nav {
    background: var(--accent);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
}
.btn-nav:hover {
    background: var(--accent-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.70);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition);
}
.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255,255,255,0.92);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
}
.logo-icon {
    flex-shrink: 0;
}
.logo-accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-700);
    transition: color var(--transition);
    position: relative;
}
.nav-links a:not(.btn):hover {
    color: var(--primary);
}
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}
.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

/* --- Hero --- */
.hero {
    padding: 120px 0 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}
.hero-full {
    background: var(--dark);
}
.hero-full::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(48,56,65,0.94) 0%, rgba(48,56,65,0.72) 45%, rgba(48,56,65,0.35) 70%, transparent 100%);
    z-index: 1;
}
.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}
.hero-content-overlay {
    position: relative;
    z-index: 2;
    max-width: 620px;
}
.hero-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
    align-items: flex-start;
}
.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
}
.hero-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 16px 8px;
    color: var(--white);
}
.hero-feature-card strong {
    font-size: 0.8rem;
    line-height: 1.3;
}
.hero-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(118,171,174,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}
.hero-badge--light {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}
.hero-subtitle--light {
    color: rgba(255,255,255,0.7);
}
.hero-title-dark {
    color: var(--dark);
}
.hero-subtitle-dark {
    color: var(--gray-500);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.hero-blob-1 {
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118,171,174,0.15) 0%, transparent 70%);
    animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob-2 {
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118,171,174,0.18) 0%, transparent 70%);
    animation: blobFloat 10s ease-in-out infinite reverse;
}
.hero-blob-3 {
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(157,197,200,0.08) 0%, transparent 70%);
    animation: blobFloat 12s ease-in-out infinite;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(118,171,174,0.12);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(118,171,174,0.25);
    animation: fadeInUp 0.6s ease-out;
}
.hero-badge-prominent {
    background: rgba(118,171,174,0.15);
    border: 1.5px solid rgba(118,171,174,0.4);
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 0 30px rgba(118,171,174,0.15);
}
.badge-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}
.badge-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}
.hero-highlight {
    background: linear-gradient(135deg, var(--accent) 0%, #FF8A65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}
.stat {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
}

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

/* --- App Mockup --- */
.app-mockup {
    background: var(--white);
    text-align: center;
}
.app-mockup-visual {
    width: 100%;
}
.app-mockup-img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Launch Cities --- */
.launch-cities {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 16px 0;
}
.launch-cities-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.launch-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.launch-list {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.launch-city {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
}
.launch-city-first {
    color: var(--accent);
}

/* --- Sections --- */
.section {
    padding: 48px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 24px;
}
.section-header-left {
    text-align: left;
}
.section-header-left + .ba-wrapper {
    margin-top: 32px;
}
.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 500px;
    margin: 0 auto;
}
.section-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.section-header-left .section-subtitle {
    margin: 0;
}

/* --- Why Washini --- */
.why {
    background: var(--gray-100);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: all var(--transition);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.why-card-icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(118,171,174,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.why-card-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}
.why-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.why-card-desc {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

/* --- How It Works --- */
.how-it-works {
    background: var(--white);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

.step {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    width: 100%;
    max-width: 320px;
    position: relative;
    transition: all var(--transition);
    border: 1px solid transparent;
}
.step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
.step-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}
.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}
.step-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.step-connector {
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-connector svg {
    display: none;
}

/* --- Before / After Comparison --- */
.ba-section {
    background: var(--gray-100);
}
.ba-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

/* --- Slider Card --- */
.ba-card {
    perspective: 800px;
    transform-style: preserve-3d;
}
.ba-slider {
    position: relative;
    height: 460px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.08);
    cursor: ew-resize;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}
.ba-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}
.ba-before {
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}

/* --- Divider + Handle --- */
.ba-divider {
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: rgba(255,255,255,0.9);
    transform: translateX(-50%);
    z-index: 5;
    transition: background 0.3s;
}
.ba-divider.dragging {
    background: var(--accent);
}
.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid rgba(255,255,255,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark);
    box-shadow: 0 12px 36px rgba(0,0,0,0.2);
    transition: all var(--transition);
}
.ba-handle:hover {
    background: rgba(255,255,255,0.4);
    box-shadow: 0 12px 36px rgba(0,0,0,0.2), 0 0 24px rgba(255,87,34,0.4);
    border-color: var(--accent);
    color: var(--accent);
}
.ba-slider:active .ba-handle {
    transform: translate(-50%, -50%) scale(1.08);
}

/* --- Labels --- */
.ba-label {
    position: absolute;
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.ba-slider:hover .ba-label,
.ba-slider.active .ba-label {
    opacity: 1;
}
.ba-label-before {
    left: 20px;
    bottom: 20px;
}
.ba-label-after {
    right: 20px;
    bottom: 20px;
}

/* --- Drag Hint --- */
.ba-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 6;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.6s ease;
}
.ba-hint.hidden {
    opacity: 0;
}

/* --- Shimmer Overlay --- */
.ba-shimmer {
    position: absolute;
    top: 0;
    left: -60%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        transparent 40%,
        rgba(255,255,255,0.12) 45%,
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0.12) 55%,
        transparent 60%,
        transparent 100%
    );
    z-index: 3;
    pointer-events: none;
}
.ba-shimmer.animate {
    animation: baShimmer 1.2s ease-in-out forwards;
}
@keyframes baShimmer {
    0%   { left: -60%; }
    100% { left: 110%; }
}

/* --- Content Side --- */
.ba-content {
    padding: 8px 0 8px 12px;
}
.ba-content-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.ba-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.2;
}
.ba-content p {
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 28px;
}
.ba-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ba-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* --- Zoom Animation on Scroll --- */
.ba-slider.ba-zoom-in {
    animation: baZoomIn 0.8s ease-out forwards;
}
@keyframes baZoomIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .ba-slider {
        height: 380px;
        border-radius: 24px;
    }
    .ba-content h3 {
        font-size: 1.6rem;
    }
    .ba-handle {
        width: 48px;
        height: 48px;
    }
    .ba-content {
        padding: 0;
    }
}

/* --- Pricing --- */
.early-access {
    max-width: 680px;
    margin: 0 auto 28px;
    text-align: center;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255,87,34,0.06) 0%, rgba(255,87,34,0.02) 100%);
    border: 1px solid rgba(255,87,34,0.15);
}
.early-access-header {
    margin-bottom: 8px;
}
.early-access-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255,87,34,0.1);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.early-access-lead {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin: 8px 0 12px;
}
.early-access-perks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.early-perk {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 100px;
    background: white;
    border: 1px solid var(--gray-300);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-700);
    white-space: nowrap;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 24px;
    border: 2px solid var(--gray-100);
    position: relative;
    transition: all var(--transition);
    text-align: center;
}
.pricing-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing-card-featured {
    border-color: var(--accent);
    border-top-width: 6px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.pricing-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.pricing-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.pricing-badge {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.pricing-card-featured .pricing-badge {
    background: rgba(255,87,34,0.1);
    color: var(--accent-dark);
}

.pricing-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 4px;
    line-height: 1;
}
.pricing-currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-500);
}

.pricing-desc {
    color: var(--gray-500);
    font-size: 0.82rem;
    margin-bottom: 14px;
}

.pricing-meta {
    list-style: none;
    margin: 0 0 14px;
    padding: 10px 12px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    display: grid;
    gap: 6px;
    text-align: left;
}
.pricing-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--gray-500);
}
.pricing-meta li svg {
    color: var(--accent);
    flex-shrink: 0;
}
.pricing-meta strong {
    margin-left: auto;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.8rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 18px;
    text-align: left;
}
.pricing-features li {
    padding: 6px 0;
    font-size: 0.82rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 8px;
}
.pricing-features li:last-child {
    border-bottom: none;
}
.pricing-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(118,171,174,0.12);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2376ABAE' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

/* --- Benefits / Problem-Solution --- */

/* --- FAQ --- */
.faq {
    background: var(--gray-100);
}

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

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

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

.faq-chevron {
    flex-shrink: 0;
    color: var(--gray-500);
    transition: transform var(--transition);
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 20px 14px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}


/* --- Forms --- */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}
.form-card-centered {
    max-width: 700px;
    margin: 0 auto;
}

.form-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--dark);
}

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--gray-900);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,87,34,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

.form-group input.error,
.form-group select.error {
    border-color: var(--danger);
}

.form-error {
    font-size: 0.8rem;
    color: var(--danger);
    min-height: 18px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
}
.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.captcha-group {
    margin: 16px 0;
}
.captcha-group label {
    display: block;
    margin-bottom: 8px;
}
.captcha-image {
    display: block;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--gray-300);
    max-width: 200px;
    height: auto;
    margin-bottom: 4px;
}
.captcha-row {
    display: flex;
    gap: 8px;
    align-items: center;
}
.captcha-row input {
    flex: 1;
}

.captcha-inline {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}
.captcha-inline label {
    flex-shrink: 0;
    margin-bottom: 0;
}
.captcha-inline .captcha-image {
    max-width: 140px;
    margin-bottom: 0;
}
.captcha-inline .captcha-row {
    flex: 1;
}
.captcha-refresh {
    background: var(--gray-100);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: var(--gray-700);
}
.captcha-refresh:hover {
    background: var(--gray-300);
    color: var(--dark);
}

.form-message {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}
.form-message.success {
    display: block;
    background: rgba(118,171,174,0.08);
    color: var(--accent-dark);
    border: 1px solid rgba(118,171,174,0.25);
}
.form-message.error {
    display: block;
    background: rgba(239,68,68,0.08);
    color: var(--danger);
    border: 1px solid rgba(239,68,68,0.25);
}

/* --- Spinner --- */
.spinner {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- Partner Section --- */
.partner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.partner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(118,171,174,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.partner .section-title {
    color: var(--white);
}
.partner .section-subtitle {
    color: rgba(255,255,255,0.6);
}
.partner-lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-top: 10px;
}
.partner-founding-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}
.founder-perk {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 100px;
    background: rgba(255,87,34,0.1);
    border: 1px solid rgba(255,87,34,0.2);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
}
.partner-block {
    margin-top: 24px;
}
.partner-block-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}
.partner-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.partner-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

.partner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

.partner-benefits {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 10px;
}
.benefit {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 6px 8px;
    border-radius: var(--radius-md);
    transition: background var(--transition);
}
.benefit:hover {
    background: rgba(255,255,255,0.05);
}
.benefit-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(118,171,174,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
.benefit strong {
    display: block;
    margin-bottom: 2px;
    font-size: 0.9rem;
}
.benefit p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

.partner-form-wrap .form-card {
    background: var(--white);
}

/* --- Newsletter Section --- */
.newsletter {
    background: #000;
    padding: 0;
    overflow: hidden;
}
.newsletter-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
}
.newsletter-image {
    display: none;
}
.newsletter-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.06);
}
.newsletter-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 4px;
}
.newsletter-title span {
    color: var(--accent);
}
.newsletter-desc {
    font-size: 0.78rem;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 10px;
    max-width: 420px;
}
.newsletter-form {
    width: 100%;
    max-width: 420px;
}
.newsletter-input-wrap {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 3px;
    transition: border-color var(--transition);
}
.newsletter-input-wrap:focus-within {
    border-color: var(--primary);
}
.newsletter-input-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 0.8rem;
    padding: 6px 12px;
    min-width: 0;
}
.newsletter-input-wrap input::placeholder {
    color: rgba(255,255,255,0.3);
}
.newsletter-btn {
    flex-shrink: 0;
    border-radius: 6px;
    padding: 6px 18px;
    font-size: 0.75rem;
}
.newsletter-form .form-error {
    display: block;
    color: #EF4444;
    font-size: 0.7rem;
    margin-top: 4px;
    min-height: 1em;
}
.newsletter-form .form-message {
    margin-top: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}
.newsletter-form .form-message.success {
    color: #4ADE80;
}
.newsletter-form .form-message.error {
    color: #EF4444;
}
.newsletter-disclaimer {
    margin-top: 6px;
    font-size: 0.68rem;
    color: var(--white);
}

/* --- Newsletter Benefit Cards --- */
.newsletter-benefits {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.nl-benefit-card {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 50px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all var(--transition);
}
.nl-benefit-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(118,171,174,0.3);
    color: var(--white);
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
    margin-bottom: 12px;
}
.footer-tagline {
    font-size: 0.9rem;
    max-width: 280px;
    color: rgba(255,255,255,0.5);
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--accent);
}
.footer-contact li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-contact li svg {
    flex-shrink: 0;
    opacity: 0.5;
}
.footer-contact a {
    transition: color var(--transition);
}
.footer-contact a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 12px;
}
.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255,87,34,0.3);
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
}
.footer-legal {
    display: flex;
    gap: 20px;
}
.footer-legal a {
    color: rgba(255,255,255,0.35);
    transition: color var(--transition);
}
.footer-legal a:hover {
    color: var(--accent);
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* --- Responsive: Tablet (768px+) --- */
@media (min-width: 768px) {
    .hero {
        min-height: 80vh;
    }

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

    .hero-layout {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .hero-content-overlay {
        flex: 1;
    }

    .hero-features {
        flex: 0 0 480px;
    }

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

    .ba-wrapper {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 56px;
    }

    .ba-slider {
        height: 520px;
    }

    .newsletter-inner {
        grid-template-columns: 1fr 1.4fr;
    }
    .newsletter-image {
        display: block;
        overflow: hidden;
    }
    .newsletter-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .newsletter-content {
        padding: 20px 32px;
    }
    .newsletter-title {
        font-size: 1.3rem;
    }

    .steps {
        flex-direction: row;
        gap: 0;
        justify-content: center;
        align-items: stretch;
    }

    .step {
        flex: 1 1 0;
        max-width: none;
        min-width: 0;
    }

    .step-connector {
        width: 60px;
        height: auto;
    }
    .step-connector svg {
        display: block;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

/* --- Responsive: Desktop (1024px+) --- */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .hero {
        padding: 140px 0 100px;
    }

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

    .nav-toggle {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.4rem;
    }
}

/* --- Responsive: Mobile Nav --- */
@media (max-width: 767px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: transform var(--transition);
        z-index: 999;
    }
    .nav-links.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-stats {
        gap: 24px;
    }
    .stat-number {
        font-size: 1.6rem;
    }

    .pricing-card {
        padding: 20px 20px;
    }
    .pricing-price {
        font-size: 2.4rem;
    }

    .form-card {
        padding: 28px 24px;
    }

    .step {
        padding: 32px 24px;
    }
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
}
.whatsapp-float:hover {
    background: #1DA851;
    transform: translateY(-3px);
}
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.35);
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}
@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}
