@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============ DESIGN TOKENS ============ */
:root {
    --color-bg-black: #030303;
    --color-bg-dark: #0b0b0d;
    --color-bg-card: rgba(255, 255, 255, 0.03);
    --color-bg-card-hover: rgba(255, 255, 255, 0.06);
    --color-primary: #ffbe30;
    --color-primary-hover: #e0a320;
    --color-primary-rgb: 255, 190, 48;
    --color-accent-light: #48CAE4;
    --color-success: #06D6A0;
    --color-warning: #FFD166;
    --color-danger: #EF233C;
    --color-orange: #F4A261;
    --color-text-main: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.6);
    --color-border: rgba(255, 255, 255, 0.06);
    --color-border-hover: rgba(255, 190, 48, 0.35);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 8px 30px rgba(255, 190, 48, 0.15);

    /* Background texture */
    --bg-texture: url('bg-texture.png?v=2');
}

/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-black);
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* ============ GLOBAL PREMIUM TEXTURE OVERLAY ============ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: var(--bg-texture);
    background-repeat: repeat;
    background-size: 600px 450px;
    opacity: 0.12;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    font-weight: 800;
    line-height: 1.15;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-black);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 190, 48, 0.3);
    border-radius: 4px;
    border: 2px solid var(--color-bg-black);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* ============ UTILITIES ============ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.section-dark {
    background-color: var(--color-bg-dark);
}

.section-black {
    background-color: var(--color-bg-black);
}

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

.gradient-text {
    background: linear-gradient(135deg, #ffffff 30%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-gold {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ffeaa7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.highlight {
    color: var(--color-primary);
}

.badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 190, 48, 0.08);
    border: 1px solid rgba(255, 190, 48, 0.25);
    color: var(--color-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 190, 48, 0.03);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-success);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--color-success);
}

/* ============ GLOW ORBS ============ */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.glow-orb-primary {
    background: radial-gradient(circle, rgba(255, 190, 48, 0.1) 0%, transparent 70%);
    width: 600px;
    height: 600px;
}

.glow-orb-success {
    background: radial-gradient(circle, rgba(6, 214, 160, 0.08) 0%, transparent 70%);
    width: 500px;
    height: 500px;
}

/* ============ GLASS CARDS ============ */
.glass-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--color-border-hover);
    background: var(--color-bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 190, 48, 0.05);
}

/* ============ NAVBAR ============ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(3, 3, 3, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    height: 75px;
    display: flex;
    align-items: center;
}

.navbar .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    height: 38px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.5px;
    color: var(--color-text-main);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-social-link {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.nav-social-link:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

/* ============ HERO SECTION ============ */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 0.8s ease forwards;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.05;
}

.hero-content .subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-trust-bullets {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-trust-bullet {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.hero-trust-bullet svg {
    color: var(--color-success);
    flex-shrink: 0;
}

.hero-image-side {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s ease forwards;
}

.portrait-wrapper {
    position: relative;
    z-index: 10000;
    border-radius: 28px;
    padding: 4px;
    background: linear-gradient(135deg, var(--color-primary), rgba(255, 190, 48, 0.2), transparent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-width: 420px;
    width: 100%;
}

.portrait-img {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.availability-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: rgba(3, 3, 3, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 190, 48, 0.3);
    border-radius: 16px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.availability-badge span {
    font-weight: 700;
    font-size: 0.8rem;
    font-family: var(--font-heading);
}

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

/* ============ SYMPTOMS SECTION ============ */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.symptom-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.symptom-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 190, 48, 0.08);
    border: 1px solid rgba(255, 190, 48, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.symptom-card:hover .symptom-icon {
    background: var(--color-primary);
    color: var(--color-bg-black);
    transform: scale(1.1);
}

.symptom-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.symptom-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.symptom-prescription {
    background: rgba(255, 190, 48, 0.06);
    border: 1px dashed rgba(255, 190, 48, 0.3);
    border-radius: 12px;
    padding: 1rem;
    font-size: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: auto;
}

.symptom-prescription strong {
    color: var(--color-primary);
    display: block;
    margin-bottom: 2px;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.symptom-prescription span {
    color: var(--color-text-main);
    line-height: 1.4;
}

/* ============ STATS SECTION ============ */
.stats-bar {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, transparent 100%);
    padding: 3.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    color: var(--color-primary);
    margin-bottom: 0.8rem;
    opacity: 0.85;
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3.2rem;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ============ AUTHORITY / COMPARISON ============ */
.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.authority-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.authority-desc {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.authority-quote {
    border-left: 3px solid var(--color-primary);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
}

.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.comparison-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-card.negative {
    border-color: rgba(239, 35, 60, 0.15);
    background: rgba(239, 35, 60, 0.01);
}

.comparison-card.positive {
    border-color: rgba(255, 190, 48, 0.25);
    background: rgba(255, 190, 48, 0.02);
    box-shadow: 0 10px 30px rgba(255, 190, 48, 0.03);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-header.negative {
    color: var(--color-danger);
}

.comparison-header.positive {
    color: var(--color-primary);
}

.comparison-bullets {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-bullet {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.comparison-bullet.negative svg {
    color: var(--color-danger);
    margin-top: 3px;
    flex-shrink: 0;
}

.comparison-bullet.positive svg {
    color: var(--color-success);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ============ TREATMENT (PROCESS) SECTION ============ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    margin-top: 4rem;
}

.process-line {
    position: absolute;
    top: 45px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 190, 48, 0.3) 0%, rgba(255, 190, 48, 0.05) 50%, rgba(255, 190, 48, 0.3) 100%);
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-num-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), #ffeaa7);
    color: var(--color-bg-black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: 0 0 0 8px rgba(255, 190, 48, 0.05), 0 0 0 16px rgba(255, 190, 48, 0.02);
    transition: var(--transition);
}

.process-step:hover .step-num-icon {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(255, 190, 48, 0.08), 0 0 0 20px rgba(255, 190, 48, 0.03);
}

.step-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2rem 1.8rem;
    width: 100%;
    transition: var(--transition);
}

.process-step:hover .step-card {
    border-color: var(--color-border-hover);
    background: var(--color-bg-card-hover);
    transform: translateY(-5px);
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

.step-card p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}


/* ============ FOUNDER SECTION ============ */
.founder-grid {
    display: grid;
    grid-template-columns: minmax(280px, 400px) 1fr;
    gap: 4.5rem;
    align-items: center;
}

.founder-portrait-wrapper {
    position: relative;
    z-index: 10000;
    border-radius: 28px;
    padding: 4px;
    background: linear-gradient(135deg, var(--color-primary), rgba(255, 190, 48, 0.2), transparent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.founder-portrait-img {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.founder-badge {
    position: absolute;
    bottom: 25px;
    right: -15px;
    background: rgba(3, 3, 3, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 190, 48, 0.3);
    border-radius: 16px;
    padding: 0.7rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.founder-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    padding: 0.6rem 1.2rem;
    color: var(--color-text-main);
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
}

.social-btn:hover {
    transform: translateY(-2px);
}

.social-btn.instagram:hover {
    border-color: #E1306C;
    color: #E1306C;
    background: rgba(225, 48, 108, 0.08);
}

.social-btn.tiktok:hover {
    border-color: #69C9D0;
    color: #69C9D0;
    background: rgba(105, 201, 208, 0.08);
}

.founder-name {
    font-size: 2.8rem;
    margin-bottom: 0.3rem;
    letter-spacing: -1px;
}

.founder-title {
    font-size: 1.3rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    border-radius: 2px;
    margin-bottom: 2rem;
}

.founder-bio-lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.founder-bio-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.founder-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.value-prop-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.value-prop-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-prop-icon.success {
    background: rgba(6, 214, 160, 0.08);
    border: 1px solid rgba(6, 214, 160, 0.2);
    color: var(--color-success);
}

.value-prop-icon.primary {
    background: rgba(255, 190, 48, 0.08);
    border: 1px solid rgba(255, 190, 48, 0.2);
    color: var(--color-primary);
}

.value-prop-icon.warning {
    background: rgba(72, 202, 228, 0.08);
    border: 1px solid rgba(72, 202, 228, 0.2);
    color: var(--color-accent-light);
}

.founder-cta-row {
    display: flex;
}

/* ============ FAQ SECTION ============ */
.faq-max-width {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 190, 48, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-main);
    transition: var(--transition);
}

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

.faq-toggle-icon {
    font-size: 1.2rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 2rem 1.8rem 2rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 250px; /* Safe upper limit for layout */
}

/* ============ BUTTONS & CTAs ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 1.1rem 2.2rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-black);
    box-shadow: 0 10px 25px rgba(255, 190, 48, 0.25);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 190, 48, 0.35);
}

.btn-secondary {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-text-main);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    background: rgba(255, 190, 48, 0.02);
}

.pulse {
    animation: pulseGlow 2s infinite;
}

/* ============ FINAL CTA SECTION ============ */
.final-cta-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 190, 48, 0.02) 100%);
    border: 1px solid var(--color-border-hover);
    border-radius: 30px;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(255, 190, 48, 0.02);
}

.final-cta-card h2 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}

.final-cta-card p {
    color: var(--color-text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.7;
}

.final-cta-bullets {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.final-cta-bullet {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.final-cta-bullet svg {
    color: var(--color-success);
}

/* ============ FOOTER ============ */
.footer {
    background-color: #020202;
    border-top: 1px solid var(--color-border);
    padding: 5rem 0 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-desc {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.footer-social-btn:hover {
    background: var(--color-primary);
    color: var(--color-bg-black);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.8rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link-item {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link-item a:hover {
    color: var(--color-primary);
    padding-left: 3px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-copy a {
    color: var(--color-primary);
    font-weight: 600;
    transition: var(--transition);
}

.footer-copy a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-disclaimer {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    max-width: 700px;
    line-height: 1.5;
}

/* ============ ANIMATIONS ============ */
@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(6, 214, 160, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(6, 214, 160, 0);
    }
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(255, 190, 48, 0.25);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 35px rgba(255, 190, 48, 0.45);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(255, 190, 48, 0.25);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============ DIAGNOSTICO FORM STYLING ============ */
.diagnostico-form-wrapper {
    max-width: 650px;
    margin: 3rem auto 0 auto;
    text-align: left;
    background: rgba(3, 3, 3, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.form-group input, 
.form-group select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus, 
.form-group select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(255, 190, 48, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffbe30' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select option {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
}

/* ============ CALENDLY MODAL STYLING ============ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 3, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border-hover);
    border-radius: 24px;
    width: 90%;
    max-width: 850px;
    height: 80%;
    max-height: 720px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.modal-overlay.open .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1010;
    transition: var(--transition);
    line-height: 1;
    padding-bottom: 4px;
}

.modal-close-btn:hover {
    background: var(--color-primary);
    color: var(--color-bg-black);
    border-color: var(--color-primary);
    transform: rotate(90deg);
}

.modal-body {
    flex: 1;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .hero-image-side {
        order: -1;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content .subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-trust-bullets {
        justify-content: center;
    }
    
    .portrait-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .authority-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .process-line {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .founder-image-side {
        max-width: 380px;
        margin: 0 auto;
    }
    
    .founder-divider {
        margin: 0 auto 2rem auto;
    }
    
    .founder-cta-row {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .diagnostico-form-wrapper {
        padding: 1.5rem;
    }

    .modal-card {
        width: 95%;
        height: 90%;
    }
    
    .modal-close-btn {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }

    .section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }

    .section-header p {
        font-size: 0.95rem;
    }
    
    .hero {
        padding: 2.5rem 0 3rem;
        min-height: auto;
    }

    .hero-grid {
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: -0.8px;
    }

    .hero-content .subtitle {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .hero-cta-group .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .hero-trust-bullets {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }

    .portrait-wrapper {
        max-width: 260px;
    }

    .availability-badge {
        right: 5px;
        bottom: 10px;
        padding: 0.5rem 0.9rem;
        font-size: 0.75rem;
    }
    
    .comparison-wrapper {
        grid-template-columns: 1fr;
    }
    
    .final-cta-card {
        padding: 3rem 1.25rem;
        border-radius: 20px;
    }
    
    .final-cta-card h2 {
        font-size: 1.9rem;
    }
    
    .final-cta-bullets {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hide-mobile {
        display: none !important;
    }

    .authority-grid {
        gap: 2.5rem;
    }

    .authority-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .authority-quote {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .founder-grid {
        gap: 2.5rem;
        text-align: center;
    }

    .founder-image-side {
        max-width: 300px;
        margin: 0 auto;
    }

    .founder-name {
        font-size: 2.2rem;
    }

    .founder-divider {
        margin: 0 auto 1.5rem auto;
    }

    .founder-cta-row {
        justify-content: center;
    }

    .stats-bar {
        padding: 2rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .navbar {
        height: 65px;
    }

    .logo-icon {
        height: 30px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .calendly-embed-container {
        height: 850px !important;
        margin-bottom: 4rem !important;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process-line {
        display: none;
    }

    .glass-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .badge-top {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
    
    .btn {
        width: 100%;
        padding: 1rem;
    }
    
    .stats-bar {
        padding: 2rem 0 !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem 1.5rem !important;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
    }
    
    .stat-label {
        font-size: 0.65rem !important;
        letter-spacing: 0.5px !important;
    }
    
    .stat-icon svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
        font-size: 0.85rem;
    }

    .glass-card {
        padding: 1.5rem !important;
    }

    .logo-text {
        font-size: 0.95rem !important;
    }
    
    #nav-cta {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.75rem !important;
        white-space: nowrap !important;
        text-transform: none !important;
        border-radius: 8px !important;
        width: auto !important;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
        letter-spacing: -1px !important;
    }
    
    .hero-content .subtitle {
        font-size: 0.95rem !important;
    }
    
    .hero-cta-group {
        flex-direction: column !important;
        width: 100% !important;
        gap: 1rem !important;
    }
    
    .hero-cta-group .btn {
        width: 100% !important;
    }
    
    .hero-trust-bullets {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.8rem !important;
    }
    
    .availability-badge {
        right: 10px !important;
        bottom: 10px !important;
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem !important;
    }
    
    .symptoms-grid {
        grid-template-columns: 1fr !important;
    }
    
    .authority-title {
        font-size: 1.8rem !important;
    }
    
    .authority-desc {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .authority-quote {
        font-size: 1rem !important;
        padding-left: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .comparison-card {
        padding: 1.25rem !important;
    }
    
    .final-cta-card {
        padding: 3rem 1.25rem !important;
        border-radius: 24px !important;
    }
    
    .final-cta-card h2 {
        font-size: 1.8rem !important;
    }
    
    #main-action-btn {
        padding: 1rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
    
    .booking-centered-layout h1 {
        font-size: 1.8rem !important;
    }
    
    .booking-centered-layout .lead-text {
        font-size: 0.95rem !important;
        margin-bottom: 2rem !important;
    }
    
    .calendly-embed-container {
        height: 980px !important;
        margin-bottom: 3rem !important;
        border-radius: 16px !important;
    }

    .process-grid {
        gap: 2rem !important;
        margin-top: 2.5rem !important;
    }

    .step-num-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
        box-shadow: 0 0 0 5px rgba(255, 190, 48, 0.05) !important;
    }
    
    .step-card {
        padding: 1.25rem 1rem !important;
        border-radius: 16px !important;
    }
    
    .step-card h3 {
        font-size: 1.05rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .step-card p {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
    }

    .prep-section-title {
        font-size: 1.2rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .prep-row-grid {
        gap: 1rem !important;
    }
    
    .prep-item {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        padding: 1rem !important;
        border-radius: 12px !important;
        text-align: left !important;
    }
    
    .prep-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        border-radius: 8px !important;
    }
    
    .prep-icon svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    .prep-content h3 {
        font-size: 0.95rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .prep-content p {
        font-size: 0.78rem !important;
        line-height: 1.4 !important;
    }

    .founder-name {
        font-size: 2rem !important;
    }
    
    .founder-title {
        font-size: 1.1rem !important;
        margin-bottom: 1.2rem !important;
    }
    
    .founder-bio-lead {
        font-size: 0.95rem !important;
    }
    
    .founder-bio-text {
        font-size: 0.88rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .value-prop-item {
        padding: 0.8rem 1rem !important;
        font-size: 0.82rem !important;
        align-items: flex-start !important;
    }
    
    .value-prop-icon {
        width: 30px !important;
        height: 30px !important;
        border-radius: 6px !important;
    }
    
    .founder-badge {
        right: 10px !important;
        bottom: 10px !important;
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem !important;
    }
}

/* ============ BOOKING PAGE STYLING (CENTERED) ============ */
.booking-centered-layout {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.back-link:hover {
    color: var(--color-text-main);
    transform: translateX(-3px);
}

.booking-centered-layout h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.booking-centered-layout .lead-text {
    color: var(--color-text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 700px;
}

.calendly-embed-container {
    width: 100%;
    max-width: 850px;
    background: #ffffff;
    border: 1px solid var(--color-border-hover);
    border-radius: 24px;
    height: 750px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    margin-bottom: 5rem;
}

.prep-section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prep-row-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: left;
    width: 100%;
}

.prep-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 1.5rem;
    transition: var(--transition);
}

.prep-item:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-3px);
}

.prep-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 190, 48, 0.08);
    border: 1px solid rgba(255, 190, 48, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.prep-content h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.prep-content p {
    color: var(--color-text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .prep-row-grid {
        grid-template-columns: 1fr 1fr;
    }
    .booking-centered-layout h1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 600px) {
    .prep-row-grid {
        grid-template-columns: 1fr;
    }
    .booking-centered-layout h1 {
        font-size: 2.2rem;
    }
    .back-link {
        position: absolute;
        top: 0;
        left: 1.5rem;
        margin-bottom: 0;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--color-border);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        z-index: 10;
    }
    
    .back-link span {
        display: none;
    }
    
    .back-link:hover {
        background: rgba(255, 190, 48, 0.1);
        border-color: var(--color-primary);
        transform: scale(1.05);
    }
}

/* ============ SAFE AREA FOR MODERN MOBILE DEVICES ============ */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}
