/* ==========================================================================
   RESPIRA - DESIGN SYSTEM & MASTER STYLESHEET
   Aesthetics: Deep Serenity Violet, Glassmorphism, Micro-glows, Clean Typography
   ========================================================================== */

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

:root {
    /* Color Palette */
    --bg-dark: #070611;
    --bg-surface: #0e0c24;
    --bg-card: rgba(255, 255, 255, 0.035);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(124, 114, 255, 0.3);

    /* Brand Accents */
    --primary: #7C72FF;
    --primary-light: #A59EFC;
    --primary-dark: #584ED6;
    --secondary: #483D8B;
    --accent-cyan: #00F0FF;
    --accent-emerald: #00E676;
    --accent-coral: #FF6B8B;
    --accent-gold: #FFD166;
    --sos-red: #FF3B5C;
    --sos-glow: rgba(255, 59, 92, 0.35);

    /* Typography Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B0AEC9;
    --text-muted: #79769B;
    --text-accent: #C3C0FD;

    /* Shadows & Glows */
    --glow-primary: 0 0 40px rgba(124, 114, 255, 0.25);
    --glow-soft: 0 10px 30px rgba(0, 0, 0, 0.4);
    --glow-cyan: 0 0 35px rgba(0, 240, 255, 0.2);
    --card-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6);

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions & Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Background Glows */
.ambient-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.25;
}

.ambient-glow-1 {
    top: -150px;
    left: 20%;
    background: radial-gradient(circle, var(--primary) 0%, rgba(0,0,0,0) 70%);
}

.ambient-glow-2 {
    top: 40%;
    right: -100px;
    background: radial-gradient(circle, var(--secondary) 0%, rgba(0,0,0,0) 70%);
}

.ambient-glow-3 {
    bottom: -100px;
    left: 10%;
    background: radial-gradient(circle, var(--accent-cyan) 0%, rgba(0,0,0,0) 70%);
    opacity: 0.15;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.25;
    font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 400;
}

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

a:hover {
    color: var(--text-primary);
}

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

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 900px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px auto;
}

.section-header p {
    font-size: 1.15rem;
    margin-top: 16px;
}

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

.text-gradient-cyan {
    background: linear-gradient(135deg, #FFFFFF 10%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(124, 114, 255, 0.12);
    border: 1px solid rgba(124, 114, 255, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-sos {
    background: rgba(255, 59, 92, 0.15);
    border-color: rgba(255, 59, 92, 0.35);
    color: #FFA5B4;
}

.badge-green {
    background: rgba(0, 230, 118, 0.12);
    border-color: rgba(0, 230, 118, 0.3);
    color: #69F0AE;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(124, 114, 255, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(124, 114, 255, 0.55);
    color: #FFFFFF;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border-color: var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-sos {
    background: linear-gradient(135deg, #FF3B5C 0%, #D81B60 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 25px var(--sos-glow);
}

.btn-sos:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 59, 92, 0.55);
    color: #FFFFFF;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* Play Store Badge CTA */
.btn-playstore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 22px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-decoration: none;
}

.btn-playstore:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    color: #FFFFFF;
}

.btn-playstore svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

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

.playstore-text small {
    font-size: 0.68rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.playstore-text strong {
    font-size: 1.05rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 6, 17, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(124, 114, 255, 0.45));
    transition: var(--transition);
}

.logo-wrapper:hover .logo-img {
    transform: scale(1.08);
    filter: drop-shadow(0 0 16px rgba(124, 114, 255, 0.75));
}

.logo-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(124, 114, 255, 0.45));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #FFFFFF;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 260px;
    background: rgba(14, 12, 36, 0.95);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.92rem;
    transition: var(--transition);
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    transform: translateX(4px);
}

.dropdown-icon {
    font-size: 1.2rem;
}

/* Header CTA Group */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Top Announcement Banner */
.top-banner {
    background: linear-gradient(90deg, rgba(124, 114, 255, 0.15), rgba(0, 240, 255, 0.15));
    border-bottom: 1px solid rgba(124, 114, 255, 0.2);
    padding: 8px 16px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-accent);
}

.top-banner a {
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: underline;
    margin-left: 6px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 80px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 60px;
    align-items: center;
}

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

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 1.2rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.trust-item span {
    color: var(--accent-emerald);
    font-weight: bold;
}

/* Phone Mockup Frame */
.mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 320px;
    height: 640px;
    background: #111028;
    border-radius: 44px;
    padding: 12px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), var(--glow-primary);
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.phone-notch {
    width: 120px;
    height: 22px;
    background: #070611;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 34px;
    overflow: hidden;
    background: #080716;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Badges on Mockup */
.floating-pill {
    position: absolute;
    background: rgba(14, 12, 36, 0.85);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 20;
    animation: float-slow 5s ease-in-out infinite alternate;
}

.pill-left {
    left: -40px;
    top: 25%;
}

.pill-right {
    right: -30px;
    bottom: 20%;
}

.pill-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(124, 114, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.pill-text h5 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.pill-text p {
    font-size: 0.75rem;
    color: var(--text-accent);
}

/* ==========================================================================
   Bento Grid & Feature Cards
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(124, 114, 255, 0.4), transparent);
    opacity: 0;
    transition: var(--transition);
}

.bento-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-highlight);
    background: var(--bg-card-hover);
    box-shadow: var(--card-shadow), var(--glow-primary);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card.span-2 {
    grid-column: span 2;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(124, 114, 255, 0.12);
    border: 1px solid rgba(124, 114, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
    color: var(--primary-light);
}

.bento-card h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.bento-card p {
    font-size: 0.98rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-top: auto;
}

.card-link:hover {
    gap: 10px;
    color: #FFFFFF;
}

/* ==========================================================================
   Interactive Breathing Trainer Component
   ========================================================================== */
.breathing-container {
    background: radial-gradient(circle at center, rgba(30, 26, 70, 0.6) 0%, rgba(14, 12, 36, 0.9) 100%);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), var(--glow-primary);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    backdrop-filter: blur(20px);
}

.technique-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.technique-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.technique-btn.active, .technique-btn:hover {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(124, 114, 255, 0.4);
}

.breathing-orb-wrapper {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 0 auto 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breathing-progress-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 6;
}

.progress-circle {
    fill: none;
    stroke: var(--accent-cyan);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 754;
    stroke-dashoffset: 754;
    transition: stroke-dashoffset 0.1s linear;
}

.breathing-orb {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-light) 0%, var(--primary-dark) 70%);
    box-shadow: 0 0 50px rgba(124, 114, 255, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: transform 1s ease-in-out, box-shadow 1s ease-in-out;
    position: relative;
    z-index: 2;
}

.breathing-orb.inhale {
    transform: scale(1.35);
    box-shadow: 0 0 80px rgba(0, 240, 255, 0.8);
    background: radial-gradient(circle, var(--accent-cyan) 0%, var(--primary) 70%);
}

.breathing-orb.hold {
    transform: scale(1.35);
    box-shadow: 0 0 80px rgba(124, 114, 255, 0.9);
}

.breathing-orb.exhale {
    transform: scale(0.9);
    box-shadow: 0 0 30px rgba(88, 78, 214, 0.4);
    background: radial-gradient(circle, var(--primary-dark) 0%, #1a164a 70%);
}

.orb-instruction {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.orb-timer {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-top: 4px;
}

.breathing-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.cycle-stats {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Interactive Triage / Test Emocional
   ========================================================================== */
.triage-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(16px);
    max-width: 760px;
    margin: 0 auto;
    box-shadow: var(--card-shadow);
}

.triage-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    margin-bottom: 30px;
    overflow: hidden;
}

.triage-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
    width: 20%;
    border-radius: var(--radius-full);
    transition: width 0.4s ease;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.quiz-options {
    display: grid;
    gap: 14px;
    margin: 28px 0;
}

.quiz-option-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 14px;
}

.quiz-option-btn:hover {
    background: rgba(124, 114, 255, 0.15);
    border-color: var(--primary);
    transform: translateX(4px);
}

.triage-result-box {
    text-align: center;
    padding: 30px 20px;
}

.triage-level-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ==========================================================================
   Pricing Table
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 920px;
    margin: 0 auto;
    align-items: stretch;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.price-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(124, 114, 255, 0.12) 0%, rgba(14, 12, 36, 0.85) 100%);
    box-shadow: 0 20px 50px rgba(124, 114, 255, 0.25);
    transform: scale(1.02);
}

.price-header {
    margin-bottom: 16px;
}

.price-amount-box {
    margin: 16px 0 10px 0;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-amount small {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.price-subnote {
    font-size: 0.85rem;
    color: #69F0AE;
    font-weight: 500;
    margin-top: 6px;
    min-height: 20px;
}

.price-features {
    list-style: none;
    margin: 24px 0 36px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.price-features li .check-icon {
    color: var(--accent-emerald);
    font-size: 1.1rem;
    line-height: 1.3;
    flex-shrink: 0;
    margin-top: 2px;
}

.price-features li .feature-text {
    flex: 1;
    color: var(--text-secondary);
    display: block;
}

.price-features li .feature-text strong {
    color: #FFFFFF;
    font-weight: 600;
}

/* ==========================================================================
   SOS Directory & Emergency Cards
   ========================================================================== */
.sos-banner {
    background: linear-gradient(135deg, rgba(255, 59, 92, 0.15) 0%, rgba(14, 12, 36, 0.9) 100%);
    border: 1px solid rgba(255, 59, 92, 0.35);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
}

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

.emergency-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
}

.emergency-card:hover {
    border-color: rgba(255, 59, 92, 0.4);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
}

.emergency-card h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.emergency-phone {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #FF6B8B;
    margin: 12px 0;
    display: block;
}

/* ==========================================================================
   Accordion FAQ
   ========================================================================== */
.faq-list {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.faq-item.active {
    border-color: var(--border-highlight);
    background: var(--bg-card-hover);
}

.faq-question {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    user-select: none;
}

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

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

.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 28px 24px 28px;
    max-height: 400px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #04030a;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 16px 0 24px 0;
    max-width: 320px;
}

.footer-col h5 {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.medical-disclaimer {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 40px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes gentle-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(124, 114, 255, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 35px rgba(124, 114, 255, 0.7); }
}

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

@keyframes float-slow {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-8px); }
}

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

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-trust {
        justify-content: center;
    }
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-card.span-2 {
        grid-column: span 2;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(7, 6, 17, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 24px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    .nav-menu.open {
        transform: translateX(0);
    }
    .mobile-toggle {
        display: block;
    }
    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        width: 100%;
        background: rgba(255, 255, 255, 0.03);
        margin-top: 10px;
        display: none;
    }
    .nav-item-dropdown.open .dropdown-menu {
        display: block;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card.span-2 {
        grid-column: span 1;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .price-card.featured {
        transform: scale(1);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .phone-frame {
        width: 280px;
        height: 560px;
    }
    .pill-left, .pill-right {
        display: none;
    }
}
