/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Color System - Clean gradient pink, white and brand hot pink (#E61A60) */
    --primary-brand: #E61A60;       /* Vibrant Hot Pink from Mockup */
    --primary-brand-rgb: 230, 26, 96;
    
    --bg-base: #FFFFFF;             /* Pure White Main Background */
    --bg-card: #FFFFFF;             /* Card Background */
    --bg-alt: #FFF5F6;              /* Soft Pink Accent Background */
    --bg-hero: linear-gradient(135deg, #FFF0F2 0%, #FFFFFF 100%); /* Mockup Gradient */
    
    --text-main: #2D3748;           /* Modern Slate/Charcoal for Text */
    --text-muted: #718096;          /* Clean Gray Muted Text */
    
    --border-color: #EDF2F7;        /* Clean soft gray border */
    
    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(230, 26, 96, 0.04);
    --shadow-hover: 0 20px 40px rgba(230, 26, 96, 0.08);
    --shadow-glow: 0 12px 30px rgba(230, 26, 96, 0.25); /* Glow shadow for pink capsule buttons */

    /* Typography from Mockup - 100% modern Sans-Serif */
    --font-main: 'Montserrat', sans-serif;
    
    /* Border Radius - Capsule & Pill shapes */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    --radius-capsule: 9999px; /* Pill radius */

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography Utility */
h1, h2, h3, h4 {
    color: var(--text-main);
    font-family: var(--font-main);
    font-weight: 700;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.w-full { width: 100%; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.desktop-only { display: inline; }

/* Grid System */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.img-responsive {
    width: 100%;
    height: auto;
    display: block;
}

/* Buttons - Premium Pill / Capsule Shapes with Glow shadows */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: var(--radius-capsule);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    gap: 8px;
}

.btn-large {
    padding: 18px 44px;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary-brand);
    color: #FFFFFF;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background-color: #d11252;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(230, 26, 96, 0.4);
}

.btn-secondary {
    background-color: var(--text-main);
    color: #FFFFFF;
}

.btn-secondary:hover {
    background-color: #1a202c;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    background-color: var(--bg-alt);
    border-color: var(--primary-brand);
    transform: translateY(-2px);
}

.btn-white-primary {
    background-color: #FFFFFF;
    color: var(--primary-brand);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.btn-white-primary:hover {
    background-color: var(--bg-alt);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* Hero Badge - Matching Mockup */
.hero-badge {
    display: inline-block;
    padding: 0;
    background-color: transparent;
    color: var(--primary-brand);
    border-radius: 0;
    font-family: var(--font-main);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: none;
    margin-bottom: 16px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--bg-alt);
    color: var(--primary-brand);
    border-radius: var(--radius-capsule);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.badge-white {
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-brand);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

/* Section Header */
.section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.bg-light {
    background-color: #FAFAFA;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-wrap: balance;
}

.section-subtitle {
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-muted);
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary-brand);
    margin: 16px auto 0;
    border-radius: var(--radius-capsule);
}

/* Main Header - Clean white style */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    height: 70px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.main-header.scrolled .logo-img {
    height: 48px;
}

.main-footer .logo-img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

.nav-item:hover {
    color: var(--primary-brand);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-phone {
    font-size: 0.85rem;
    padding: 10px 20px;
}

.icon {
    width: 16px;
    height: 16px;
    stroke-width: 2px;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition);
}

/* Mobile Nav Menu */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    box-shadow: var(--shadow-hover);
}

.mobile-nav-item {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #FAF5F6;
}

/* Hero Section - Soft pink mockup layout */
.hero-section {
    padding-top: 150px;
    padding-bottom: 100px;
    position: relative;
    background: var(--bg-hero);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 26, 96, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--primary-brand);
}

.badge-solid-pink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-brand);
    color: #FFFFFF;
    padding: 2px 16px;
    border-radius: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    margin-left: 8px;
    vertical-align: middle;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(230, 26, 96, 0.2);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 32px;
    font-weight: 500;
    line-height: 1.7;
    opacity: 0.85;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-brand);
    flex-shrink: 0;
}

.hero-feature-item span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}

/* Big Capsule Button with Tagline for Hero CTA */
.btn-hero-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 48px;
    height: auto;
    border-radius: var(--radius-capsule);
    box-shadow: var(--shadow-glow);
    text-transform: none;
    line-height: 1.2;
}

.btn-hero-cta .btn-main-text {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.4;
}

.btn-hero-cta .btn-sub-text {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 2px;
    margin-top: 4px;
    text-transform: uppercase;
    color: #FFE5E9;
}

.hero-actions-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Social Proof matching Mockup */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 24px;
}

.proof-avatars {
    display: flex;
}

.proof-avatars img,
.proof-avatars .avatar-more {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    margin-left: -10px;
    object-fit: cover;
}

.proof-avatars img:first-child {
    margin-left: 0;
}

.proof-avatars .avatar-more {
    background-color: var(--primary-brand);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.proof-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.proof-text .highlight {
    color: var(--primary-brand);
    font-weight: 700;
}

/* Arch Image Container - Matches mockup dome */
.hero-image-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4 / 5;
    border-radius: 240px 240px 24px 24px; /* Dome arch top */
    overflow: hidden;
    border: 6px solid #FFFFFF;
    box-shadow: 0 20px 50px rgba(230, 26, 96, 0.08);
}

.hero-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.premium-badge-absolute {
    position: absolute;
    top: 24px;
    left: -20px;
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.premium-badge-absolute .number {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-brand);
}

.premium-badge-absolute .text {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    margin-top: 4px;
}

.floating-card {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-color);
    z-index: 4;
}

.info-card-1 {
    bottom: 30px;
    left: -20px;
}

.info-card-2 {
    top: 60px;
    right: -20px;
}

.card-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: var(--bg-alt);
    color: var(--primary-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.card-info-text strong {
    font-size: 0.85rem;
    color: var(--text-main);
    display: block;
}

.card-info-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Pain Points Section */
.pain-cards {
    margin-top: 48px;
}

.pain-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    height: 100%;
}

.pain-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-brand);
    box-shadow: var(--shadow-hover);
}

.pain-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: var(--bg-alt);
    color: var(--primary-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pain-icon {
    width: 22px;
    height: 22px;
}

.pain-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.pain-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.pain-cta-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

/* Solution Section */
.solution-grid {
    gap: 64px;
}

.solution-visual {
    position: relative;
}

.solution-img {
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    z-index: 2;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.solution-image-decor {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-brand);
    border-radius: var(--radius-xl);
    top: 20px;
    left: -20px;
    z-index: 1;
    opacity: 0.05;
}

.solution-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.solution-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.solution-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-brand);
    opacity: 0.3;
    line-height: 1;
}

.solution-text h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.solution-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* PT Photo Showcase Styles */
.pt-photo-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.pt-photo-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.pt-photo-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.pt-photo-caption {
    padding: 24px;
}

.pt-photo-caption h4 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.pt-photo-caption p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Pricing Section & Tabs */
.pricing-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    flex-wrap: wrap;
}

.pricing-tab-btn {
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 28px;
    cursor: pointer;
    color: var(--text-muted);
    border-radius: var(--radius-capsule);
    transition: var(--transition);
}

.pricing-tab-btn.active {
    background-color: var(--primary-brand);
    color: #FFFFFF;
    box-shadow: var(--shadow-soft);
}

.pricing-tab-btn:hover:not(.active) {
    color: var(--text-main);
    background-color: var(--bg-alt);
}

.pricing-tab-panel {
    display: none;
}

.pricing-tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.price-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: var(--primary-brand);
}

.price-badge-top {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-brand);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-badge-featured {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-brand);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-subtitle-card {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: -8px;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.price-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-brand);
    margin-bottom: 20px;
}

.price-val-inline {
    color: var(--primary-brand);
    font-weight: 700;
}

.price-period {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

.price-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.price-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.price-features-list li {
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 500;
}

.featured-price-card {
    border-color: var(--primary-brand);
    box-shadow: 0 10px 25px rgba(230, 26, 96, 0.05);
}

.highlight-border {
    border-color: var(--primary-brand);
}

.extra-pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 32px 40px;
    border-radius: var(--radius-lg);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.extra-pricing-row:hover {
    border-color: var(--primary-brand);
    box-shadow: var(--shadow-soft);
}

.extra-details {
    max-width: 700px;
}

.extra-details h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.extra-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Branches Section */
.branches-wrapper {
    gap: 40px;
    align-items: start;
}

.branches-list-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.branch-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 16px;
}

.branch-item:hover {
    border-color: var(--primary-brand);
    background-color: var(--bg-alt);
}

.branch-item.active {
    background-color: var(--bg-card);
    border-color: var(--primary-brand);
    border-width: 2px;
    box-shadow: var(--shadow-soft);
}

.branch-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background-color: var(--border-color);
    transition: var(--transition);
}

.branch-item:hover .branch-dot,
.branch-item.active .branch-dot {
    background-color: var(--primary-brand);
    transform: scale(1.3);
}

.branch-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.branch-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.branch-preview-side {
    position: sticky;
    top: 100px;
}

.branch-preview-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.preview-img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.branch-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.preview-tag-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: var(--primary-brand);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: var(--radius-capsule);
    font-size: 0.8rem;
    font-weight: 700;
}

.preview-details {
    padding: 24px;
}

.preview-details h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.preview-address {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.preview-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.p-feat {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

.preview-actions {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 12px;
}

/* Testimonials Section */
.testimonials-grid {
    align-items: start;
}
.user-before-after-img-container {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.testimonial-ba-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-ba-img {
    transform: scale(1.03);
}

.user-before-after {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.ba-side {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.ba-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: rgba(45, 55, 72, 0.8);
    color: #FFFFFF;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
}

.ba-badge.ba-after {
    background-color: var(--primary-brand);
}

.ba-placeholder {
    width: 100%;
    height: 120px;
    background-color: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-brand);
    border: 1px dashed rgba(230, 26, 96, 0.2);
    border-radius: var(--radius-md);
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.user-review {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--primary-brand);
}

.review-text {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.user-info-meta {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
}

.user-info-meta strong {
    font-size: 0.95rem;
    color: var(--text-main);
}

.user-info-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Register Section */
.bg-gradient {
    background: linear-gradient(135deg, #FFF0F2 0%, #FFFFFF 100%);
    color: var(--text-main);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.bg-gradient::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 26, 96, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -150px;
    left: -100px;
    pointer-events: none;
}

.register-container {
    align-items: center;
}

.register-content-side {
    position: relative;
    z-index: 2;
}

.register-title {
    color: var(--primary-brand);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.register-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.countdown-wrapper {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    max-width: 480px;
    box-shadow: var(--shadow-soft);
}

.countdown-title {
    font-size: 0.90rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-brand);
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-alt);
    color: var(--primary-brand);
    min-width: 65px;
    padding: 10px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(230, 26, 96, 0.1);
}

.countdown-item .time {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-item .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 4px;
    color: var(--text-muted);
}

.countdown-separator {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-brand);
    line-height: 1;
    padding-bottom: 20px;
}

.gift-box {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 480px;
}

.gift-icon {
    font-size: 2.2rem;
}

.gift-icon-wrapper-img {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-bag-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.gift-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gift-text strong {
    font-size: 0.95rem;
    color: var(--text-main);
}

.gift-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.register-form-side {
    position: relative;
    z-index: 2;
}

.form-card {
    background-color: #FFFFFF;
    border-radius: var(--radius-xl);
    padding: 40px;
    color: var(--text-main);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
}

.form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
    text-align: center;
}

.form-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 28px;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required {
    color: var(--primary-brand);
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    font-family: var(--font-main);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    background-color: #FAFAFA;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-brand);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(230, 26, 96, 0.1);
}

.form-group.error input,
.form-group.error select {
    border-color: var(--primary-brand);
}

.error-msg {
    display: none;
    font-size: 0.75rem;
    color: var(--primary-brand);
    font-weight: 600;
    margin-top: 2px;
}

.form-group.error .error-msg {
    display: block;
}

/* Form Success State */
.success-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

.success-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background-color: var(--bg-alt);
    color: var(--primary-brand);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.success-screen h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--primary-brand);
}

.success-screen p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    text-align: left;
    cursor: pointer;
    outline: none;
}

.faq-icon-arrow {
    font-size: 1.2rem;
    color: var(--primary-brand);
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary-brand);
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* Footer Section */
.main-footer {
    background-color: #1A202C;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    font-size: 0.85rem;
}

.footer-container {
    gap: 48px;
    margin-bottom: 60px;
}

.logo-white {
    color: #FFFFFF;
}

.footer-desc {
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-brand);
    transform: translateY(-2px);
}

.footer-branches-side h3,
.footer-contact-side h3 {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-branch-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-branch-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.footer-branch-list strong {
    color: #FFFFFF;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    width: 18px;
    height: 18px;
    color: var(--primary-brand);
    flex-shrink: 0;
}

.contact-item a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: #FFFFFF;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .section-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 24px; /* Reduced from 32px */
    }
    
    .logo-img {
        height: 40px; /* Reduced from 48px to fit compact header */
    }
    
    .hero-badge {
        font-size: 1.2rem;
    }
    
    .main-header {
        height: 64px; /* Reduced from 80px */
    }

    .mobile-nav {
        top: 64px; /* Align with header */
    }

    .section {
        padding: 40px 0; /* Reduced from 60px to save vertical space */
    }

    .hero-section {
        padding-top: 90px; /* Adjust for shorter header */
        padding-bottom: 40px;
    }

    .hero-image-container {
        margin-bottom: 20px;
        width: 100%;
        max-width: 260px; /* Make the hero image more compact */
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-wrapper {
        border-width: 4px; /* Thinner borders */
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    /* Reduce spacing inside card components on mobile */
    .pain-card, .benefit-card, .price-card {
        padding: 24px 20px !important;
    }

    .pain-icon-wrapper, .benefit-icon-wrapper {
        margin-bottom: 16px;
    }

    .pain-card h3, .benefit-card h3 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .solution-item {
        gap: 16px;
        margin-bottom: 24px;
        padding-bottom: 16px;
    }

    .solution-num {
        font-size: 1.6rem;
    }

    .solution-text h3 {
        font-size: 1.15rem;
        margin-bottom: 6px;
    }
    
    .nav-links, .header-actions .btn-header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero-container {
        flex-direction: column-reverse;
        display: flex;
    }
    
    .hero-image-container {
        margin-bottom: 40px;
        width: 100%;
        max-width: 400px;
    }
    
    .info-card-1 {
        left: 10px;
        bottom: 10px;
    }
    
    .info-card-2 {
        right: 10px;
        top: 20px;
    }
    
    .premium-badge-absolute {
        top: 16px;
        left: 10px;
        padding: 10px 14px;
    }
    
    .premium-badge-absolute .number {
        font-size: 1.6rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .interactive-promo {
        flex-direction: column;
        padding: 32px;
        text-align: center;
        gap: 24px;
    }
    
    .promo-action-side {
        width: 100%;
    }
    
    .promo-action-side .btn {
        width: 100%;
    }
    
    .branch-preview-side {
        position: static;
    }
    
    .register-title {
        font-size: 2.1rem;
    }
    
    .form-card {
        padding: 24px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .extra-pricing-row {
        flex-direction: column;
        padding: 24px;
        text-align: center;
        gap: 20px;
    }
    .extra-pricing-row .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .btn-hero-cta {
        padding: 16px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .btn-hero-cta .btn-main-text {
        font-size: 0.85rem;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-badge {
        font-size: 1.1rem;
    }
    
    .preview-actions {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        justify-content: center;
    }
}

/* Benefit Cards */
.benefit-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary-brand); /* High-impact top border */
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-brand);
    box-shadow: var(--shadow-hover), 0 12px 30px rgba(230, 26, 96, 0.15);
}

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background-color: var(--bg-alt);
    color: var(--primary-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.8rem;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon-wrapper {
    transform: scale(1.15) rotate(8deg);
    background-color: var(--primary-brand);
    color: #FFFFFF;
}

.benefit-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: var(--text-main);
    transition: var(--transition);
}

.benefit-card:hover h3 {
    color: var(--primary-brand);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Pulse Glow & Text Shimmer Animation for CTA Buttons */
@keyframes pulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 12px 30px rgba(230, 26, 96, 0.25);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 12px 35px rgba(230, 26, 96, 0.65), 0 0 20px 8px rgba(230, 26, 96, 0.35);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 12px 30px rgba(230, 26, 96, 0.25);
    }
}

@keyframes textShimmer {
    0%, 100% {
        text-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
        opacity: 0.95;
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 1), 0 0 20px rgba(255, 255, 255, 0.8);
        opacity: 1;
    }
}

.btn-pulse-glow {
    animation: pulseGlow 1.8s infinite ease-in-out;
    transition: all 0.3s ease;
}

.btn-pulse-glow span {
    animation: textShimmer 1.8s infinite ease-in-out;
    display: inline-block;
    letter-spacing: 1.5px;
    font-weight: 800;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Delay classes for staggered animations */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
