/* ===================================
   Cellulite Elimination Landing Page
   invisa-RED™ at Central Illinois Spine
   Fresh, Empowering, Body-Positive Design
   =================================== */

/* CSS Variables - Aqua & Coral Palette */
:root {
    /* Primary Colors */
    --aqua-primary: #00BCD4;
    --aqua-light: #4DD0E1;
    --aqua-dark: #00838F;
    --coral-primary: #FF6F61;
    --coral-light: #FF8A80;
    --coral-dark: #E64A3D;
    /* Neutral Colors */
    --white: #FFFFFF;
    --cream: #FFF9F5;
    --light-gray: #F5F5F5;
    --medium-gray: #9E9E9E;
    --dark-gray: #424242;
    --black: #212121;
    /* Accent Colors */
    --success: #4CAF50;
    --warning: #FFC107;
    --error: #F44336;
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--aqua-primary) 0%, var(--aqua-dark) 100%);
    --gradient-coral: linear-gradient(135deg, var(--coral-primary) 0%, var(--coral-dark) 100%);
    --gradient-mixed: linear-gradient(135deg, var(--aqua-primary) 0%, var(--coral-primary) 100%);
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Skip to Content Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--aqua-primary);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--black);
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--aqua-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--aqua-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-mixed);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--aqua-primary);
    border: 2px solid var(--aqua-primary);
}

.btn-secondary:hover {
    background: var(--aqua-primary);
    color: var(--white);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

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

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--aqua-primary);
}

.brand-text {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--aqua-primary);
}

.nav-cta {
    background: var(--gradient-mixed);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--aqua-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #E0F7FA 0%, #FFF3E0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 111, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    color: var(--aqua-primary);
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.stat-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--dark-gray);
    font-weight: 600;
    margin-top: 8px;
}

.stat-sublabel {
    font-size: 0.75rem;
    color: var(--medium-gray);
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--aqua-dark);
}

.benefit-badge i {
    color: var(--coral-primary);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-block;
    background: var(--gradient-mixed);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 20px auto 0;
}

/* Understanding Cellulite Section */
.understanding-section {
    background: var(--cream);
}

.cellulite-explanation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.explanation-visual {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.skin-layers {
    margin-bottom: 30px;
}

.layer {
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 10px;
    position: relative;
}

.layer.epidermis {
    background: #FFE5D4;
    border-left: 4px solid var(--coral-primary);
}

.layer.dermis {
    background: #FFD4C4;
    border-left: 4px solid var(--coral-dark);
}

.layer.fat {
    background: #FFC4B4;
    border-left: 4px solid #E64A3D;
}

.layer span {
    font-weight: 600;
    color: var(--black);
}

.connective-tissue {
    margin-top: 10px;
    padding: 10px;
    background: rgba(255, 111, 97, 0.2);
    border-radius: 5px;
    font-size: 0.875rem;
}

.tissue-label {
    font-style: italic;
    color: var(--coral-dark);
}

.fat-cells {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.fat-cell {
    width: 30px;
    height: 30px;
    background: var(--coral-primary);
    border-radius: 50%;
    opacity: 0.6;
}

.dimpling-effect {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
}

.dimpling-effect i {
    font-size: 2rem;
    color: var(--coral-primary);
    margin-bottom: 10px;
}

.explanation-content h3 {
    color: var(--aqua-dark);
    margin-bottom: 20px;
}

.intro-text {
    margin-bottom: 30px;
    color: var(--dark-gray);
}

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

.cause-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cause-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.cause-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-mixed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.cause-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.cause-item h4 {
    color: var(--aqua-dark);
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.cause-item p {
    font-size: 0.9375rem;
    color: var(--dark-gray);
    margin: 0;
}

/* Cellulite Grades */
.grades-section {
    margin-top: 80px;
}

.grades-section h3 {
    text-align: center;
    color: var(--aqua-dark);
    margin-bottom: 20px;
}

.grades-intro {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 40px;
}

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

.grade-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
}

.grade-card:hover {
    transform: translateY(-5px);
}

.grade-header {
    margin-bottom: 20px;
}

.grade-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grade-name {
    display: block;
    font-weight: 600;
    color: var(--aqua-dark);
    margin-top: 5px;
}

.grade-visual {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
}

.grade-visual.smooth {
    background: linear-gradient(180deg, #FFE5D4 0%, #FFDCC4 100%);
}

.grade-visual.mild {
    background: linear-gradient(180deg, #FFE5D4 0%, #FFDCC4 100%);
    background-image: radial-gradient(circle at 30% 50%, rgba(255, 111, 97, 0.1) 20%, transparent 20%),
        radial-gradient(circle at 70% 60%, rgba(255, 111, 97, 0.1) 20%, transparent 20%);
}

.grade-visual.moderate {
    background: linear-gradient(180deg, #FFE5D4 0%, #FFDCC4 100%);
    background-image: radial-gradient(circle at 25% 40%, rgba(255, 111, 97, 0.2) 25%, transparent 25%),
        radial-gradient(circle at 50% 55%, rgba(255, 111, 97, 0.2) 20%, transparent 20%),
        radial-gradient(circle at 75% 45%, rgba(255, 111, 97, 0.2) 25%, transparent 25%);
}

.grade-visual.severe {
    background: linear-gradient(180deg, #FFE5D4 0%, #FFDCC4 100%);
    background-image: radial-gradient(circle at 20% 35%, rgba(255, 111, 97, 0.3) 30%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(255, 111, 97, 0.3) 25%, transparent 25%),
        radial-gradient(circle at 80% 40%, rgba(255, 111, 97, 0.3) 28%, transparent 28%),
        radial-gradient(circle at 35% 65%, rgba(255, 111, 97, 0.3) 22%, transparent 22%);
}

.grade-card p {
    font-size: 0.875rem;
    color: var(--dark-gray);
    margin: 0;
}

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

.treatment-approach {
    max-width: 900px;
    margin: 0 auto 80px;
}

.approach-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.approach-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-mixed);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-content {
    flex: 1;
    background: var(--light-gray);
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid var(--aqua-primary);
}

.approach-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.approach-icon i {
    font-size: 1.5rem;
    color: var(--coral-primary);
}

.approach-content h3 {
    color: var(--aqua-dark);
    font-size: 1.375rem;
    margin-bottom: 15px;
}

.approach-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}

/* Treatment Process */
.treatment-process h3 {
    text-align: center;
    color: var(--aqua-dark);
    margin-bottom: 50px;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.timeline-item {
    text-align: center;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-mixed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.timeline-icon i {
    font-size: 2rem;
    color: var(--white);
}

.timeline-content h4 {
    color: var(--aqua-dark);
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 0.9375rem;
    color: var(--dark-gray);
}

.treatment-schedule {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.schedule-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--aqua-primary);
}

.schedule-card.highlight {
    border-top-color: var(--coral-primary);
    background: linear-gradient(135deg, #FFF9F5 0%, #FFE5D4 100%);
}

.schedule-card h4 {
    color: var(--aqua-dark);
    margin-bottom: 20px;
}

.schedule-card ul {
    list-style: none;
}

.schedule-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.schedule-card li i {
    color: var(--aqua-primary);
}

.schedule-card.highlight li i {
    color: var(--coral-primary);
}

/* Treatment Areas Section */
.areas-section {
    background: var(--cream);
}

.body-map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.body-map {
    position: relative;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.body-silhouette {
    width: 200px;
    height: 500px;
    background: linear-gradient(180deg, var(--aqua-light) 0%, var(--coral-light) 100%);
    opacity: 0.15;
    border-radius: 100px;
    position: relative;
}

.area-marker {
    position: absolute;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.area-marker:hover {
    transform: scale(1.1);
}

.area-marker.area-thighs {
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.area-marker.area-buttocks {
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
}

.area-marker.area-hips {
    top: 40%;
    left: -20px;
}

.area-marker.area-abdomen {
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
}

.area-marker.area-arms {
    top: 15%;
    right: -30px;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: var(--coral-primary);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

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

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.marker-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--aqua-dark);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.areas-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.area-detail {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.area-detail.active {
    border-left-color: var(--coral-primary);
    opacity: 1;
    box-shadow: var(--shadow-md);
}

.area-icon {
    display: inline-block;
    margin-bottom: 10px;
}

.area-icon i {
    color: var(--coral-primary);
}

.area-detail h4 {
    color: var(--aqua-dark);
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.area-detail p {
    color: var(--dark-gray);
    font-size: 0.9375rem;
    margin-bottom: 10px;
}

.popularity-badge {
    display: inline-block;
    background: var(--gradient-coral);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.areas-note {
    max-width: 900px;
    margin: 60px auto 0;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.areas-note i {
    font-size: 2rem;
    color: var(--aqua-primary);
    flex-shrink: 0;
}

.areas-note p {
    margin: 0;
    color: var(--dark-gray);
}

/* Results Section */
.results-section {
    background: var(--white);
}

.results-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.timeline-point {
    text-align: center;
}

.point-marker {
    background: var(--gradient-mixed);
    color: var(--white);
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.point-marker span:first-child {
    font-size: 2rem;
    font-weight: 700;
}

.sublabel {
    font-size: 0.875rem;
    font-weight: 400;
}

.timeline-point.maintenance .point-marker {
    background: var(--gradient-coral);
}

.point-content h4 {
    color: var(--aqua-dark);
    font-size: 1.125rem;
    margin-bottom: 15px;
}

.point-content ul {
    list-style: none;
    text-align: left;
}

.point-content li {
    font-size: 0.9375rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.point-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--coral-primary);
    font-weight: 700;
}

/* Before/After Section */
.before-after-section {
    margin-bottom: 80px;
}

.before-after-section h3 {
    text-align: center;
    color: var(--aqua-dark);
    margin-bottom: 40px;
}

.ba-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.ba-side {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.ba-label {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--aqua-dark);
    text-align: center;
    margin-bottom: 20px;
}

.ba-visual {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.before-texture {
    background: linear-gradient(180deg, #FFE5D4 0%, #FFDCC4 100%);
    background-image: radial-gradient(circle at 20% 35%, rgba(255, 111, 97, 0.3) 30%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(255, 111, 97, 0.3) 25%, transparent 25%),
        radial-gradient(circle at 80% 40%, rgba(255, 111, 97, 0.3) 28%, transparent 28%),
        radial-gradient(circle at 35% 65%, rgba(255, 111, 97, 0.3) 22%, transparent 22%);
}

.after-texture {
    background: linear-gradient(180deg, #FFE5D4 0%, #FFDCC4 100%);
}

.ba-characteristics {
    list-style: none;
}

.ba-characteristics li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9375rem;
}

.ba-characteristics .fa-times-circle {
    color: var(--error);
}

.ba-characteristics .fa-check-circle {
    color: var(--success);
}

.ba-arrow {
    font-size: 3rem;
    color: var(--aqua-primary);
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--coral-primary);
}

.stars {
    color: #FFD700;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-mixed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
}

.author-info strong {
    display: block;
    color: var(--aqua-dark);
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

/* Comparison Section */
.comparison-section {
    background: var(--cream);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table thead {
    background: var(--gradient-mixed);
    color: var(--white);
}

.comparison-table th {
    padding: 25px 20px;
    text-align: center;
    font-weight: 600;
}

.method-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.125rem;
}

.highlight-col {
    background: rgba(255, 255, 255, 0.2);
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--dark-gray);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--cream);
}

.success {
    color: var(--success);
    font-size: 1.5rem;
}

.fail {
    color: var(--error);
    font-size: 1.5rem;
}

.partial {
    color: var(--warning);
    font-size: 1.5rem;
}

.price-row {
    background: var(--light-gray);
    font-weight: 700;
}

.comparison-note {
    max-width: 900px;
    margin: 40px auto 0;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 20px;
    align-items: center;
}

.comparison-note i {
    font-size: 2rem;
    color: var(--coral-primary);
    flex-shrink: 0;
}

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

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--aqua-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--coral-primary);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Consultation Section */
.consultation-section {
    background: linear-gradient(135deg, #E0F7FA 0%, #FFF3E0 100%);
    padding: 100px 0;
}

.consultation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.consultation-content h2 {
    margin-bottom: 20px;
}

.consultation-intro {
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.consultation-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.consultation-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.consultation-benefits i {
    color: var(--coral-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.consultation-benefits span {
    color: var(--dark-gray);
    font-size: 1.0625rem;
}

.trust-indicators {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.trust-item i {
    color: var(--aqua-primary);
}

.trust-item span {
    font-weight: 600;
    color: var(--aqua-dark);
}

.contact-info {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--aqua-primary);
    margin: 10px 0 20px;
}

.clinic-name {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.website-link {
    color: var(--coral-primary);
    font-weight: 500;
}

/* Consultation Form */
.consultation-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.consultation-form h3 {
    color: var(--aqua-dark);
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--medium-gray);
    margin-bottom: 30px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--aqua-primary);
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 0.875rem;
    color: var(--medium-gray);
}

.error-message {
    display: none;
    color: var(--error);
    font-size: 0.875rem;
    margin-top: 5px;
}

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

.form-group.error .error-message {
    display: block;
}

.checkbox-group {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-text {
    font-size: 0.9375rem;
    color: var(--dark-gray);
    line-height: 1.5;
}

.form-privacy {
    text-align: center;
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-top: 20px;
}

.form-privacy i {
    color: var(--success);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gradient-mixed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--medium-gray);
}

.footer-section a:hover {
    color: var(--aqua-light);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--coral-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--medium-gray);
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--medium-gray);
    cursor: pointer;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-mixed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-icon i {
    font-size: 3rem;
    color: var(--white);
}

.modal-content h3 {
    color: var(--aqua-dark);
    margin-bottom: 20px;
}

.modal-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.modal-next-steps {
    background: var(--cream);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-mixed);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .cellulite-explanation {
        grid-template-columns: 1fr;
    }

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

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

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

    .body-map-container {
        grid-template-columns: 1fr;
    }

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

    .ba-container {
        grid-template-columns: 1fr;
    }

    .ba-arrow {
        transform: rotate(90deg);
    }

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

    .consultation-wrapper {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

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

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .approach-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .treatment-schedule {
        grid-template-columns: 1fr;
    }

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

    .comparison-table-wrapper {
        overflow-x: scroll;
    }

    .comparison-table {
        min-width: 800px;
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

.desktop-only {
    display: inline;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
}
/* =============================================
   GHL Form Wrapper — explicit height required
   (height:100% collapses iframe to 0px)
   ============================================= */
.ghl-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    min-height: 1096px;
}

.ghl-form-wrapper iframe {
    display: block;
}

/* Prevent mobile horizontal overflow */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}
