/* ============================================
   DUX ODONTOLOGIA — Premium Stylesheet
   Palette: #390517, #A38560, #16302B, #03110D, #E0E0E0
   ============================================ */

:root {
    --burgundy: #390517;
    --gold: #A38560;
    --gold-light: #c4a87a;
    --green: #16302B;
    --green-dark: #390517;
    --silver: #E0E0E0;
    --white: #FAFAF8;
    --black: #0A0A0A;
    --font-display: "Belleza", sans-serif;
    --font-body: "Geom", sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.45, 0, 0.15, 1);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--green-dark);
    color: var(--silver);
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
    body { cursor: auto; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.section {
    position: relative;
    padding: clamp(80px, 12vw, 160px) 0;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.dux-logo-svg {
    width: 100%;
    height: 100%;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

.preloader-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 32px;
}

.preloader-bar {
    width: 200px;
    height: 1px;
    background: rgba(163,133,96,0.15);
    margin: 0 auto;
    overflow: hidden;
}

.preloader-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gold);
    transition: width 0.3s;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.custom-cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: difference;
}

.custom-cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(163,133,96,0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), border-color 0.3s;
}

.custom-cursor.hovering {
    width: 16px;
    height: 16px;
}

.custom-cursor-follower.hovering {
    width: 60px;
    height: 60px;
    border-color: rgba(163,133,96,0.7);
}

@media (max-width: 768px) {
    .custom-cursor, .custom-cursor-follower { display: none; }
}

/* ============================================
   3D CANVAS
   ============================================ */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

#navbar.scrolled {
    background: rgba(3,17,13,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(163,133,96,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s var(--ease-out);
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(224,224,224,0.6);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

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

.nav-cta {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green-dark);
    background: var(--gold);
    padding: 12px 28px;
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    height: 1px;
    background: var(--gold);
    transition: all 0.4s var(--ease-out);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(3,17,13,0.97);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 400;
    color: var(--silver);
    transition: color 0.3s;
    transform: translateY(20px);
    opacity: 0;
}

.mobile-menu.active .mobile-link {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s var(--ease-out);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-link:nth-child(7) { transition-delay: 0.4s; }

.mobile-link:hover { color: var(--gold); }

.mobile-cta {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-dark);
    background: var(--gold);
    padding: 16px 40px;
    margin-top: 16px;
    transform: translateY(20px);
    opacity: 0;
}

.mobile-menu.active .mobile-cta {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s var(--ease-out) 0.45s;
}

/* ============================================
   HERO
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 120px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 32px;
}

.title-accent {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 19px);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(224,224,224,0.7);
    max-width: 620px;
    margin: 0 auto 48px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--green-dark);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-light);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out);
    z-index: -1;
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(163,133,96,0.3);
}

.btn-ghost {
    border: 1px solid rgba(163,133,96,0.3);
    color: var(--gold);
}

.btn-ghost:hover {
    background: rgba(163,133,96,0.1);
    border-color: var(--gold);
}

.btn-lg {
    padding: 20px 48px;
    font-size: 15px;
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 300;
    color: var(--gold);
}

.stat-plus {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    color: var(--gold);
    font-weight: 300;
}

.stat-label {
    display: block;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(224,224,224,0.5);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(163,133,96,0.2);
}

@media (max-width: 640px) {
    .stat-divider { display: none; }
    .hero-stats { gap: 24px; }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: scrollFloat 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(163,133,96,0.5);
}

@keyframes scrollFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ============================================
   ABOUT
   ============================================ */
.about-section {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent, rgba(22,48,43,0.3), transparent);
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    position: relative;
    padding-left: 32px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 32px;
}

.section-title em {
    color: var(--gold);
    font-style: italic;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.about-text p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(224,224,224,0.7);
    margin-bottom: 20px;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    font-family: var(--font-display);
    font-size: 18px;
    font-style: italic;
    color: var(--gold);
}

.signature-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(163,133,96,0.15);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 40px;
}

.image-placeholder img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100%); /* Considera o padding */
    height: auto;
}

.about-illustration {
    width: 60%;
    opacity: 0.6;
}

.about-float-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--burgundy);
    padding: 28px 32px;
    border-radius: 4px;
    border: 1px solid rgba(163,133,96,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.float-number {
    display: block;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 300;
    color: var(--gold);
}

.float-text {
    font-size: 13px;
    font-weight: 300;
    color: rgba(224,224,224,0.7);
    max-width: 160px;
    display: block;
    margin-top: 4px;
}

@media (max-width: 640px) {
    .about-float-card {
        bottom: -16px;
        right: 16px;
    }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
    position: relative;
    z-index: 1;
    padding: 32px 0;
    border-top: 1px solid rgba(163,133,96,0.1);
    border-bottom: 1px solid rgba(163,133,96,0.1);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-right: 32px;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 300;
    font-style: italic;
    color: rgba(163,133,96,0.4);
}

.marquee-dot {
    font-size: 8px;
    color: var(--gold);
    opacity: 0.4;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SERVICES
   ============================================ */
.services-section {
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 64px;
}

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

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

.service-card {
    position: relative;
    background: rgba(22,48,43,0.3);
    border: 1px solid rgba(163,133,96,0.08);
    border-radius: 4px;
    padding: 48px 36px;
    transition: all 0.5s var(--ease-out);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover {
    background: rgba(22,48,43,0.6);
    border-color: rgba(163,133,96,0.2);
    transform: translateY(-4px);
}

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

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 24px;
}

.service-number {
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 300;
    color: rgba(163,133,96,0.1);
    position: absolute;
    top: 24px;
    right: 28px;
}

.service-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}

.service-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(224,224,224,0.6);
}

.service-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-top: 28px;
    opacity: 0.3;
    transition: width 0.5s var(--ease-out), opacity 0.5s;
}

.service-card:hover .service-line {
    width: 80px;
    opacity: 0.7;
}

/* ============================================
   METHOD
   ============================================ */
.method-section {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent, rgba(57,5,23,0.08), transparent);
}

.method-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(163,133,96,0.15);
}

.method-step {
    display: flex;
    gap: 40px;
    margin-bottom: 56px;
    position: relative;
}

.method-step:last-child { margin-bottom: 0; }

.step-marker {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-dot {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(163,133,96,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s var(--ease-out);
}

.step-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    transition: all 0.4s;
}

.method-step:hover .step-dot {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(163,133,96,0.2);
}

.step-number {
    font-family: var(--font-display);
    font-size: 14px;
    color: rgba(163,133,96,0.4);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(224,224,224,0.6);
}

@media (max-width: 640px) {
    .method-step { gap: 24px; }
    .timeline-line { left: 20px; }
}

/* ============================================
   RESULTS
   ============================================ */
.results-section {
    position: relative;
    z-index: 1;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.result-card {
    text-align: center;
    padding: 48px 24px;
    background: rgba(22,48,43,0.2);
    border: 1px solid rgba(163,133,96,0.08);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}

.result-card:hover {
    background: rgba(22,48,43,0.4);
    border-color: rgba(163,133,96,0.2);
    transform: translateY(-4px);
}

.result-icon-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(163,133,96,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.result-number {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 60px);
    font-weight: 300;
    color: var(--gold);
}

.result-suffix {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 300;
    color: var(--gold);
}

.result-label {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: rgba(224,224,224,0.6);
    margin-top: 8px;
}

/* Testimonials */
.testimonials {
    margin-top: 40px;
}

.testimonials-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 300;
    color: var(--white);
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: rgba(22,48,43,0.3);
    border: 1px solid rgba(163,133,96,0.08);
    border-radius: 4px;
    padding: 40px 32px;
    transition: all 0.5s var(--ease-out);
}

.testimonial-card:hover {
    border-color: rgba(163,133,96,0.2);
    transform: translateY(-2px);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 300;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 20px;
    opacity: 0.4;
}

.testimonial-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(224,224,224,0.7);
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.author-role {
    display: block;
    font-size: 12px;
    font-weight: 300;
    color: rgba(224,224,224,0.5);
    margin-top: 2px;
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
    position: relative;
    z-index: 1;
    text-align: center;
    overflow: hidden;
}

.cta-bg-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(57,5,23,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
}

.cta-title em {
    color: var(--gold);
    font-style: italic;
}

.cta-text {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(224,224,224,0.6);
    max-width: 560px;
    margin: 0 auto 40px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: rgba(224,224,224,0.6);
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

.contact-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
    font-size: 15px;
    font-weight: 300;
    color: rgba(224,224,224,0.7);
    transition: color 0.3s;
}

.contact-item a:hover { color: var(--gold); }

.contact-social {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.social-link {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(163,133,96,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s var(--ease-out);
}

.social-link:hover {
    background: var(--gold);
    color: var(--green-dark);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Form */
.contact-form {
    background: rgba(22,48,43,0.3);
    border: 1px solid rgba(163,133,96,0.1);
    border-radius: 4px;
    padding: clamp(28px, 4vw, 48px);
}

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

@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
}

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(224,224,224,0.5);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(3,17,13,0.5);
    border: 1px solid rgba(163,133,96,0.1);
    border-radius: 2px;
    color: var(--white);
    font-size: 15px;
    font-weight: 300;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(224,224,224,0.3);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A38560' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-group select option {
    background: var(--green-dark);
    color: var(--silver);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(163,133,96,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(163,133,96,0.1);
    padding: 64px 0 32px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    height: 48px;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(224,224,224,0.5);
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: rgba(224,224,224,0.5);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(163,133,96,0.08);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom span {
    font-size: 13px;
    font-weight: 300;
    color: rgba(224,224,224,0.3);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    font-weight: 300;
    color: rgba(224,224,224,0.3);
    transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   GRAIN OVERLAY
   ============================================ */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9990;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* ============================================
   RESPONSIVE FINE-TUNING
   ============================================ */
@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn { width: 100%; justify-content: center; }
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}
