:root {
    /* Fonts */
    --font-title: 'Lora', Georgia, Cambria, serif;
    --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Theme colors - Light Mode (Default) */
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-card-glass: rgba(255, 255, 255, 0.7);
    --border-color: rgba(15, 23, 42, 0.08);
    --border-glass: rgba(255, 255, 255, 0.5);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    /* Brand Accent Colors */
    --color-gold: #c5a880;
    --color-gold-hover: #b3956d;
    --color-gold-glow: rgba(197, 168, 128, 0.15);
    --color-navy: #0f172a;
    --color-navy-light: #1e293b;
    
    /* Status Badges */
    --color-whatsapp: #25d366;
    --color-whatsapp-hover: #128c7e;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Top Demo Bar Height */
    --demo-bar-height: 70px;
}

@media (max-width: 640px) {
    :root {
        --demo-bar-height: 50px;
    }
}

.dark-theme {
    /* Theme colors - Dark Mode */
    --bg-primary: #07090e;
    --bg-secondary: #0d121f;
    --bg-card-glass: rgba(13, 18, 31, 0.7);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glass: rgba(255, 255, 255, 0.04);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);
    
    --color-navy: #f8fafc;
    --color-navy-light: #e2e8f0;
}

/* ── RESET & BASE STYLES ────────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: var(--demo-bar-height) !important;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

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

/* ── TOP PREVIEW BAR (DEMO BAR) OVERRIDES & STYLES ───────────────── */
.demo-bar-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--demo-bar-height);
    background-color: rgba(17, 24, 39, 0.9) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    z-index: 99999 !important;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease, height 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-sizing: border-box;
}

.demo-bar-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.demo-bar-link {
    font-family: 'Inter', sans-serif !important;
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
    color: #9ca3af !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0.05em !important;
    transition: color 0.2s ease-in-out !important;
}

.demo-bar-link:hover {
    color: #ffffff !important;
}

.demo-bar-link i {
    margin-right: 8px !important;
    font-size: 14px !important;
}

.demo-bar-badge {
    border: 1px solid rgba(197, 168, 128, 0.25) !important;
    color: var(--color-gold) !important;
    background-color: rgba(197, 168, 128, 0.05) !important;
    font-family: 'Inter', sans-serif !important;
    padding: 6px 16px !important;
    font-size: 12px !important;
    line-height: 16px !important;
    display: inline-block !important;
    border-radius: 9999px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    font-weight: 600 !important;
    user-select: none !important;
}

.demo-bar-button {
    background-color: var(--color-gold) !important;
    color: #0f172a !important;
    font-family: 'Inter', sans-serif !important;
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.25) !important;
    transition: all 0.15s ease-in-out !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
    line-height: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 9999px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}

.demo-bar-button:hover {
    background-color: var(--color-gold-hover) !important;
    box-shadow: 0 6px 18px rgba(197, 168, 128, 0.45) !important;
    transform: scale(1.05) !important;
}

.demo-bar-button i {
    margin-right: 6px !important;
    font-size: 14px !important;
}

/* Light Theme Demo Bar Overrides */
body.light-theme .demo-bar-top {
    background-color: rgba(245, 243, 239, 0.95) !important;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

body.light-theme .demo-bar-link {
    color: #555555 !important;
}

body.light-theme .demo-bar-link:hover {
    color: #222222 !important;
}

@media (max-width: 640px) {
    .hide-mobile {
        display: none !important;
    }
    .demo-bar-badge {
        padding: 4px 10px !important;
        font-size: 10px !important;
        letter-spacing: 0.08em !important;
        white-space: nowrap !important;
    }
    .demo-bar-button {
        padding: 6px 10px !important;
        font-size: 10px !important;
        white-space: nowrap !important;
    }
    .demo-bar-link {
        font-size: 11px !important;
        white-space: nowrap !important;
    }
}

/* ── HEADER / NAVIGATION ───────────────────────────────────── */
.navbar {
    position: fixed;
    top: var(--demo-bar-height);
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: var(--bg-secondary);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
    height: 70px;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-logo-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0d121f;
}

.light-theme .brand-logo-wrap {
    background-color: #ffffff;
}

.brand-logo-wrap img {
    width: 125%;
    height: 125%;
    object-fit: cover;
}

.brand-logo span em {
    font-style: normal;
    color: var(--color-gold);
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* Theme Switching Button */
.theme-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-btn:hover {
    background-color: var(--border-color);
    color: var(--text-primary);
    transform: scale(1.05);
}

/* Contact Button */
.btn-nav-action {
    background-color: var(--color-gold);
    color: #0f172a;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px var(--color-gold-glow);
    transition: var(--transition);
}

.btn-nav-action:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
}

/* Hamburger Menu button */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* Mobile responsive menu */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: calc(var(--demo-bar-height) + 80px);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--demo-bar-height) - 80px);
        background-color: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: var(--transition);
        border-top: 1px solid var(--border-color);
    }
    .navbar.scrolled .nav-menu {
        top: calc(var(--demo-bar-height) + 70px);
        height: calc(100vh - var(--demo-bar-height) - 70px);
    }
    .nav-menu.open {
        left: 0;
    }
    .nav-actions {
        display: none;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* ── HERO SECTION ────────────────────────────────────────── */
.hero-section {
    position: relative;
    padding: 7rem 0 5rem 0;
    min-height: calc(100vh - var(--demo-bar-height));
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2rem, 4.5dvw, 3.25rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--color-gold);
    display: block;
}

.hero-content p {
    font-size: clamp(0.95rem, 1.2dvh, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.bullet-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-gold-glow);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.bullet-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.bullet-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Glass Card styling */
.glass-card {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
}

/* Subtle Animated Background Orbs */
.bg-glow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background-color: var(--color-gold);
    top: -10%;
    right: 10%;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background-color: #0e46b4;
    bottom: 10%;
    left: -5%;
}

body.light-theme .bg-orb {
    opacity: 0.08;
    mix-blend-mode: multiply;
}

/* ── WIZARD FORM (TRIAGEM) ────────────────────────────────── */
.form-card {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.form-header h2 {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.form-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Form Steps */
.wizard-step {
    display: none;
    animation: fadeInStep 0.4s ease forwards;
}

.wizard-step.active {
    display: block;
}

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

/* Progress Tracker Bar */
.progress-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 2rem;
}

.progress-line-bg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    transform: translateY(-50%);
    z-index: 1;
}

.progress-line-fill {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-gold);
    transform: translateY(-50%);
    z-index: 2;
    transition: width 0.3s ease;
}

.progress-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    position: relative;
    z-index: 3;
    transition: var(--transition);
}

.progress-dot.active {
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: 0 0 10px var(--color-gold-glow);
}

.progress-dot.completed {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: #0f172a;
}

/* Inputs & Form Groups */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.4rem;
    text-align: left;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem 1.1rem;
    font-size: 0.95rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.4);
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: var(--transition);
}

.light-theme .form-group input, 
.light-theme .form-group textarea {
    border: 1.5px solid rgba(15, 23, 42, 0.15);
    background-color: #ffffff;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px var(--color-gold-glow);
    background-color: var(--bg-secondary);
}

.dark-theme .form-group input,
.dark-theme .form-group textarea {
    background-color: rgba(0, 0, 0, 0.3);
}

/* Option Cards (Grid for Step 1) */
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.option-card-label {
    cursor: pointer;
}

.option-card-label input[type="radio"] {
    display: none;
}

.option-card-inner {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.2rem 1rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    height: 100%;
}

.light-theme .option-card-inner {
    background-color: #ffffff;
    border: 1.5px solid rgba(15, 23, 42, 0.15);
}

.option-card-inner i {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.option-card-inner span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.option-card-label input[type="radio"]:checked + .option-card-inner {
    border-color: var(--color-gold);
    background-color: var(--color-gold-glow);
    box-shadow: 0 4px 15px var(--color-gold-glow);
}

.option-card-label input[type="radio"]:checked + .option-card-inner i {
    color: var(--color-gold);
}

.option-card-label input[type="radio"]:checked + .option-card-inner span {
    color: var(--text-primary);
}

/* Navigation Buttons */
.wizard-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.8rem;
}

.btn-wizard {
    padding: 0.8rem 1.6rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-wizard-prev {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    flex: 0.4;
}

.btn-wizard-prev:hover {
    background-color: var(--border-color);
    color: var(--text-primary);
}

.btn-wizard-next {
    background-color: var(--color-gold);
    color: #0f172a;
    flex: 1;
    box-shadow: 0 4px 10px var(--color-gold-glow);
}

.btn-wizard-next:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-1px);
}

.btn-wizard-submit {
    background-color: var(--color-gold);
    color: #0f172a;
    flex: 1;
    box-shadow: 0 4px 12px var(--color-gold-glow);
}

.btn-wizard-submit:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-bullets {
        align-items: center;
    }
    .bullet-item {
        text-align: left;
        max-width: 400px;
    }
}

/* ── PRACTICE AREAS (SERVIÇOS) ─────────────────────────────── */
.section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.6rem;
}

.section-header h2 {
    font-size: 2.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
}

.service-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: var(--color-gold-glow);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-service-action {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-service-action:hover {
    color: var(--color-gold-hover);
}

.btn-service-action i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.btn-service-action:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ── ABOUT US (QUEM SOMOS) ────────────────────────────────── */
.about-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-badge-card {
    width: 100%;
    max-width: 380px;
    background: var(--bg-primary);
    border: 2px solid rgba(197, 168, 128, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
}

.about-badge-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 12px;
    pointer-events: none;
}

.about-badge-icon {
    font-size: 3.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.about-badge-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.about-badge-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.about-visual-divider {
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin: 1.5rem auto;
}

.about-visual-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.about-stat-item h4 {
    font-size: 1.6rem;
    color: var(--color-gold);
    font-weight: 700;
}

.about-stat-item p {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.about-text {
    text-align: left;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-highlight {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-list li i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--color-gold-glow);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.about-list li div {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.about-list li div strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.1rem;
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ── FAQ SECTION (ACCORDION) ───────────────────────────────── */
.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-header {
    width: 100%;
    padding: 1.4rem 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--color-gold);
}

.accordion-icon {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.accordion-content p {
    padding: 0 1.8rem 1.5rem 1.8rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.accordion-item.active {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-sm);
}

.accordion-item.active .accordion-header {
    color: var(--color-gold);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--color-gold);
}

/* ── FOOTER & BRANDING CARD ────────────────────────────────── */
.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem 0;
    position: relative;
    z-index: 2;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-about-card {
    background: var(--bg-primary);
    border: 1px solid rgba(197, 168, 128, 0.3);
    border-radius: 16px;
    padding: 2.2rem;
    max-width: 480px;
    width: 100%;
    margin: 0 auto 2.5rem auto;
    text-align: center;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.footer-about-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

.footer-branding-logo {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #0d121f;
    border: 2px solid rgba(197, 168, 128, 0.4);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-bottom: 1.2rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.light-theme .footer-branding-logo {
    background: #ffffff;
    border: 2px solid rgba(197, 168, 128, 0.3);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.08);
}

.footer-about-card:hover .footer-branding-logo {
    transform: scale(1.05);
}

.branding-logo-img {
    width: 125%;
    height: 125%;
    object-fit: cover;
    border-radius: 50%;
}

.footer-branding-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--text-muted);
    margin-bottom: 1.1rem;
}

.footer-branding-divider {
    width: 45px;
    height: 2px;
    background: var(--color-gold);
    margin-bottom: 1.1rem;
    border-radius: 999px;
}

.footer-branding-tagline {
    font-size: 0.92rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 1.2rem !important;
}

.footer-branding-name {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.03em;
    margin-bottom: 0.4rem;
}

.footer-branding-phone-row {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.2rem;
}

.footer-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    text-decoration: none;
}

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

.btn-copy-footer-phone {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    font-size: 0.85rem;
    transition: color 0.2s ease, transform 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-copy-footer-phone:hover {
    color: var(--text-primary);
    transform: scale(1.1);
}

/* Copy Tooltip */
.footer-copy-tooltip {
    position: absolute;
    bottom: 135%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: var(--text-primary);
    color: var(--bg-secondary);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
    box-shadow: var(--shadow-md);
    pointer-events: none;
    z-index: 100;
}

.footer-copy-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: var(--text-primary) transparent transparent transparent;
}

.footer-copy-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.footer-copy {
    font-size: 0.825rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    text-align: center;
    padding: 0 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.825rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
    padding: 0 1rem;
}

.footer-links a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

/* ── BACK TO TOP BUTTON ────────────────────────────────────── */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: #0f172a;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-3px);
}

/* ── LEGAL PAGES COMMON STYLES ───────────────────────────────── */
.legal-main {
    padding: 6rem 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.legal-main h1 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 0.8rem;
}

.legal-content h2 {
    font-size: 1.35rem;
    margin: 2rem 0 1rem 0;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.legal-content li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
