/* ========================================
   Bridge Website — Styles
   ======================================== */

/* --- CSS Variables --- */
:root {
    --color-primary: #D64F7E;
    --color-primary-light: #E8729A;
    --color-primary-dark: #B83D68;
    --color-accent: #C9486B;
    --color-bg: #FFFFFF;
    --color-bg-warm: #FFF9FA;
    --color-text: #1D1D20;
    --color-text-secondary: #6B6B73;
    --color-text-light: #9A9AA3;
    --color-border: #EBEBEB;
    --color-card-bg: #FFFFFF;
    --color-gradient-pink: rgba(232, 114, 154, 0.15);
    --color-gradient-warm: rgba(255, 240, 230, 0.4);
    --color-gradient-soft: rgba(235, 230, 255, 0.3);
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-pill: 50px;
    --radius-card: 20px;
    --radius-button: 50px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
    --shadow-glow: 0 0 60px rgba(214, 79, 126, 0.15);
    --max-width: 1200px;
    --nav-height: 72px;
}

/* --- Reset & Base --- */
*, *::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: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

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

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

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

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

/* --- Section Base --- */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

.text-accent {
    color: var(--color-primary);
}

/* --- Section Glows --- */
.section-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.section-glow-pink {
    background: radial-gradient(circle, var(--color-gradient-pink) 0%, transparent 70%);
    top: 10%;
    left: -200px;
}

.section-glow-warm {
    background: radial-gradient(circle, var(--color-gradient-warm) 0%, transparent 70%);
    top: 20%;
    right: -200px;
}

.section-glow-soft {
    background: radial-gradient(circle, var(--color-gradient-soft) 0%, transparent 70%);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled::before {
    opacity: 1;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: contain;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-cta {
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: var(--color-primary);
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    transition: all 0.2s;
}

.nav-cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.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);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.mobile-cta {
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: var(--color-primary);
    padding: 14px 24px;
    border-radius: var(--radius-pill);
    text-align: center;
    margin-top: 8px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 40px) 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 114, 154, 0.12) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}

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

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(214, 79, 126, 0.08);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 16px rgba(214, 79, 126, 0.25);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(214, 79, 126, 0.35);
}

.btn-secondary {
    background: var(--color-text);
    color: white;
}

.btn-secondary:hover {
    background: #333;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-coming-soon {
    opacity: 0.7;
    cursor: default;
}

.btn-coming-soon:hover {
    transform: none;
    box-shadow: none;
}

/* Hero Rating */
.hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-stars {
    display: flex;
    gap: 2px;
    color: #FFB800;
}

.rating-text {
    font-size: 13px;
    color: var(--color-text-light);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-phone {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.phone-frame {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 80px rgba(214, 79, 126, 0.1);
    border: 4px solid rgba(255,255,255,0.8);
    background: var(--color-bg);
    z-index: 1;
}

.phone-screen {
    width: 100%;
    height: auto;
    display: block;
}

.phone-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(232, 114, 154, 0.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

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

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem-section {
    background: var(--color-bg-warm);
}

.problem-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.problem-lead {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: var(--color-text);
}

.problem-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.stat {
    background: white;
    padding: 24px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

.problem-scenario {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* Problem Visual */
.problem-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
}

.problem-card {
    background: white;
    padding: 28px 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
    position: relative;
}

.problem-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text);
    font-style: italic;
}

.problem-card-a {
    border-left: 4px solid var(--color-primary);
}

.problem-card-b {
    border-left: 4px solid var(--color-primary-light);
}

.problem-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.divider-x {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-light);
    letter-spacing: 2px;
}

/* ========================================
   SOLUTION SECTION
   ======================================== */
.solution-content {
    max-width: 900px;
    margin: 0 auto;
}

.solution-lead {
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 56px;
    color: var(--color-text-secondary);
}

.solution-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.solution-feature {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: white;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
}

.solution-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(214, 79, 126, 0.15);
}

.solution-feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(214, 79, 126, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.solution-feature h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.solution-feature p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-section {
    background: var(--color-bg-warm);
}

.steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.step-reverse {
    direction: rtl;
}

.step-reverse > * {
    direction: ltr;
}

.step-number {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(214, 79, 126, 0.3);
    z-index: 2;
}

.step-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.step-image {
    max-width: 260px;
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255,255,255,0.8);
    background: white;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.step-connector {
    padding: 8px 0;
    opacity: 0.4;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px 28px;
    background: white;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(214, 79, 126, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(214, 79, 126, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}

.feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
    background: var(--color-bg-warm);
    overflow: hidden;
}

.gallery-scroll {
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: flex;
    gap: 20px;
    padding: 10px 0;
}

.gallery-item {
    flex-shrink: 0;
    width: 240px;
}

.gallery-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 3px solid rgba(255,255,255,0.8);
    background: white;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.03);
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 780px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card-featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(180deg, rgba(214, 79, 126, 0.03) 0%, white 40%);
}

.pricing-card-featured:hover {
    box-shadow: 0 8px 60px rgba(214, 79, 126, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.5px;
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
}

.price-period {
    font-size: 15px;
    color: var(--color-text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.pricing-feature svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.pricing-feature-soon {
    opacity: 0.6;
}

.coming-badge {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(214, 79, 126, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    background: var(--color-bg-warm);
}

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

.faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(214, 79, 126, 0.15);
}

.faq-item.active {
    border-color: rgba(214, 79, 126, 0.2);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--color-text-light);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 114, 154, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

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

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    max-width: 520px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Store Buttons */
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-text);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-card);
    transition: all 0.25s ease;
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.store-btn-soon {
    opacity: 0.5;
    cursor: default;
}

.store-btn-soon:hover {
    transform: none;
    box-shadow: none;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-btn-small {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.store-btn-big {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1.2;
}

/* CTA Phones */
.cta-visual {
    display: flex;
    justify-content: center;
}

.cta-phones {
    display: flex;
    gap: -20px;
    position: relative;
}

.cta-phone-img {
    width: 200px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255,255,255,0.8);
    background: white;
}

.cta-phone-2 {
    margin-left: -40px;
    margin-top: 20px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    border-top: 1px solid var(--color-border);
    padding: 48px 0 32px;
    background: white;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}

.footer-logo-img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    object-fit: contain;
}

.footer-tagline {
    font-size: 13px;
    color: var(--color-text-light);
    margin-top: 4px;
}

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

.footer-link {
    font-size: 13px;
    color: var(--color-text-secondary);
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--color-primary);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-text-secondary);
    background: var(--color-bg-warm);
    transition: all 0.2s;
}

.social-link:hover {
    color: var(--color-primary);
    background: rgba(214, 79, 126, 0.08);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--color-text-light);
}

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

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.animate-in:nth-child(2) { transition-delay: 0.1s; }
.animate-in:nth-child(3) { transition-delay: 0.2s; }
.animate-in:nth-child(4) { transition-delay: 0.3s; }
.animate-in:nth-child(5) { transition-delay: 0.4s; }
.animate-in:nth-child(6) { transition-delay: 0.5s; }

/* ========================================
   RESPONSIVE — TABLET
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

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

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

    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .problem-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .step {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-reverse {
        direction: ltr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

/* ========================================
   RESPONSIVE — MOBILE
   ======================================== */
@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--nav-height) + 32px) 0 48px;
    }

    .hero-title {
        font-size: clamp(28px, 7vw, 40px);
    }

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

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-ctas .btn {
        justify-content: center;
    }

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

    .solution-features {
        grid-template-columns: 1fr;
    }

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

    .gallery-item {
        width: 180px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-phone-img {
        width: 160px;
    }

    .cta-phone-2 {
        margin-left: -30px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

    .footer-social {
        justify-content: center;
    }

    .section-title {
        font-size: clamp(26px, 6vw, 36px);
    }
}

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

    .hero {
        padding: calc(var(--nav-height) + 24px) 0 40px;
    }

    .hero-badge {
        font-size: 11px;
    }

    .problem-card {
        padding: 20px 24px;
    }

    .stat {
        padding: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .price-amount {
        font-size: 40px;
    }
}
