/* ===== VARIABLES ===== */
:root {
    --primary: #1E4355;
    --primary-light: #2a5d75;
    --primary-dark: #0f2a38;
    --bg: #FFFFFF;
    --bg-alt: #F7F8FA;
    --text: #000000;
    --text-light: #555555;
    --text-muted: #999999;
    --white: #FFFFFF;
    --border: #E8EAED;
    --shadow: 0 4px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    --radius: 16px;
    --radius-lg: 24px;
    --whatsapp: #25D366;
    --gold: #C9A96E;
    --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    cursor: none;
}
a { text-decoration: none; color: inherit; cursor: none; }
button { cursor: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
em { font-style: italic; color: var(--primary); }

/* ===== CUSTOM CURSOR ===== */
.cursor, .cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    will-change: transform;
}
.cursor {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin: -4px 0 0 -4px;
    transition: width 0.3s, height 0.3s, margin 0.3s, background 0.3s;
}
.cursor.hover {
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    background: rgba(30,67,85,0.1);
    mix-blend-mode: normal;
}
.cursor-follower {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(30,67,85,0.3);
    border-radius: 50%;
    margin: -18px 0 0 -18px;
    transition: width 0.4s, height 0.4s, margin 0.4s, opacity 0.4s;
}
.cursor-follower.hover {
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    opacity: 0;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--primary-dark);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--transition), visibility 0.8s;
}
.loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-inner {
    text-align: center;
}
.loader-inner span {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 24px;
}
.loader-line {
    width: 120px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}
.loader-line::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--white);
    border-radius: 2px;
    animation: loaderSlide 1.2s ease-in-out infinite;
}
@keyframes loaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s var(--transition);
}
.nav.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
    padding: 12px 0;
}
.nav.hidden-nav {
    transform: translateY(-100%);
}
.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo-text {
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.nav-logo-full {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}
.nav-links {
    display: flex;
    gap: 36px;
}
.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--primary);
    transition: width 0.4s var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s var(--transition);
}
.nav-cta svg { transition: transform 0.3s; }
.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(30,67,85,0.3);
}
.nav-cta:hover svg { transform: translateX(3px); }
.nav-toggle { display: none; background: none; border: none; padding: 8px; z-index: 1001; }
.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text);
    margin: 6px 0;
    transition: all 0.4s var(--transition);
    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; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 40px 100px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,42,56,0.85) 0%, rgba(30,67,85,0.6) 50%, rgba(0,0,0,0.7) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 40px;
    animation: fadeInUp 1s 2s both;
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--whatsapp);
    border-radius: 50%;
    animation: blink 2s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.hero-badge span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}
.hero-title {
    margin-bottom: 28px;
}
.hero-line {
    display: block;
    overflow: hidden;
}
.hero-line-inner {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    animation: slideUp 1s var(--transition) both;
}
.hero-line:nth-child(1) .hero-line-inner { animation-delay: 2.1s; }
.hero-line:nth-child(2) .hero-line-inner { animation-delay: 2.25s; }
.hero-line:nth-child(3) .hero-line-inner { animation-delay: 2.4s; }
.hero-line-inner.accent {
    font-weight: 500;
    font-style: italic;
    color: var(--gold);
}
@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeInUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 1s 2.6s both;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1s 2.8s both;
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    animation: fadeInUp 1s 3.2s both;
}
.hero-scroll span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 3px;
    text-transform: uppercase;
}
.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-photo-float {
    position: absolute;
    right: 6%;
    bottom: 0;
    z-index: 2;
    animation: fadeInUp 1.2s 2.5s both;
    will-change: transform;
}
.hero-photo-float img {
    width: 320px;
    height: 420px;
    object-fit: cover;
    object-position: top;
    border-radius: 20px 20px 0 0;
    filter: grayscale(20%);
}
.hero-photo-label {
    position: absolute;
    bottom: 40px;
    left: -60px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
}
.hero-photo-label span {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
}
.hero-photo-label small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s var(--transition);
    border: none;
    letter-spacing: 0.3px;
}
.btn-primary {
    background: var(--whatsapp);
    color: var(--white);
}
.btn-primary:hover {
    background: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37,211,102,0.35);
}
.btn-ghost {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}
.btn-ghost svg { transition: transform 0.3s; }
.btn-ghost:hover svg { transform: translateY(3px); }
.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    font-size: 1rem;
    padding: 18px 40px;
    gap: 12px;
}
.btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37,211,102,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    width: 100%;
    justify-content: center;
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30,67,85,0.25);
}
.btn-primary-solid {
    background: var(--primary);
    color: var(--white);
    width: 100%;
    justify-content: center;
}
.btn-primary-solid:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30,67,85,0.35);
}
.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    padding: 12px 0;
    border-bottom: 2px solid var(--primary);
    transition: all 0.3s;
}
.btn-link svg { transition: transform 0.3s; }
.btn-link:hover svg { transform: translateX(5px); }
.btn-link:hover { gap: 14px; }

/* ===== MARQUEE ===== */
.marquee {
    background: var(--primary);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee-track span {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 3px;
}
.marquee-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTION LABELS ===== */
.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.section-label.centered { justify-content: center; }
.section-label.light span { color: rgba(255,255,255,0.7); }
.section-label.light .section-label-line { background: rgba(255,255,255,0.3); }
.section-label span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
}
.section-label-line {
    width: 40px;
    height: 1px;
    background: var(--primary);
}
.section-title-lg {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.5px;
}
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }

/* ===== ABOUT ===== */
.about {
    padding: 140px 0;
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.about-image-wrapper {
    position: relative;
    display: inline-block;
}
.about-photo {
    width: 100%;
    max-width: 420px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 3/4;
    position: relative;
    z-index: 1;
    filter: grayscale(15%) contrast(1.05);
    transition: filter 0.5s;
}
.about-photo:hover {
    filter: grayscale(0%) contrast(1);
}
.about-image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    z-index: 0;
    opacity: 0.3;
}
.about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 28px;
}
.about-lead {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 16px !important;
    line-height: 1.8;
}
.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* About Highlights */
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 32px 0;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
}
.highlight-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services {
    padding: 140px 0;
    position: relative;
    color: var(--white);
    overflow: hidden;
}
.services-bg {
    position: absolute;
    inset: 0;
}
.services-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.15);
}
.services-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,42,56,0.9) 0%, rgba(0,0,0,0.85) 100%);
}
.services .container { position: relative; z-index: 1; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.services-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 40px 28px 32px;
    border-radius: var(--radius-lg);
    transition: all 0.5s var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.service-card:hover::before { opacity: 1; }
.service-card.featured {
    border-color: var(--gold);
    background: rgba(201,169,110,0.08);
}
.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 20px;
}
.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold);
}
.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.service-card p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 28px;
    flex-grow: 1;
}
.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.service-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
}
.service-price span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
}
.service-price-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
}
.service-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}
.service-link:hover {
    background: var(--whatsapp);
    transform: scale(1.1);
}

/* ===== PRICING ===== */
.pricing {
    padding: 140px 0;
    background: var(--bg-alt);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    transition: all 0.5s var(--transition);
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.pricing-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.pricing-featured:hover {
    border-color: var(--primary);
}
.pricing-popular {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.pricing-featured .pricing-header {
    margin-top: 16px;
}
.pricing-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}
.pricing-currency {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
}
.pricing-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child {
    border-bottom: none;
}
.pricing-features svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* ===== PROCESS ===== */
.process {
    padding: 140px 0;
    background: var(--bg);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.process-step {
    position: relative;
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--transition);
    overflow: hidden;
}
.process-step:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.step-visual {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.step-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}
.step-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}
.step-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--border);
    transition: color 0.3s;
}
.process-step:hover .step-icon { color: rgba(30,67,85,0.15); }

/* ===== FAQ ===== */
.faq {
    padding: 140px 0;
    background: var(--bg-alt);
}
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.faq-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}
.faq-left p {
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.8;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
    border-top: 1px solid var(--border);
}
.faq-item summary {
    padding: 24px 0;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--primary); }
.faq-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    min-width: 30px;
}
.faq-icon {
    margin-left: auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s;
}
.faq-icon span {
    position: absolute;
    background: var(--text);
    border-radius: 1px;
    transition: transform 0.4s var(--transition);
}
.faq-icon span:first-child {
    width: 12px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-icon span:last-child {
    width: 1.5px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-item[open] .faq-icon {
    background: var(--primary);
    border-color: var(--primary);
}
.faq-item[open] .faq-icon span { background: var(--white); }
.faq-item[open] .faq-icon span:last-child { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item p {
    padding: 0 0 24px 50px;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.8;
}

/* ===== CTA ===== */
.cta {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: var(--white);
}
.cta-bg {
    position: absolute;
    inset: 0;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.25);
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,42,56,0.9) 0%, rgba(0,0,0,0.7) 100%);
}
.cta .container { position: relative; z-index: 1; }
.cta-content { max-width: 600px; margin: 0 auto; }
.cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.15;
}
.cta h2 em { color: var(--gold); }
.cta-content > p {
    font-size: 1.05rem;
    opacity: 0.7;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* ===== POLICIES ===== */
.policies {
    padding: 140px 0;
    background: var(--bg);
}
.policies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.policy-card {
    padding: 36px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--transition);
}
.policy-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.policy-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}
.policy-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}
.policy-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 30px;
    background: #0a0a0a;
    color: rgba(255,255,255,0.5);
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}
.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
}
.footer-links-group h4 {
    color: var(--white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-links-group li {
    margin-bottom: 10px;
    font-size: 0.88rem;
}
.footer-links-group a {
    transition: color 0.3s;
}
.footer-links-group a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    opacity: 0.5;
}
.footer-bottom a {
    transition: opacity 0.3s;
}
.footer-bottom a:hover {
    opacity: 0.8;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 999;
    transition: all 0.4s var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}
.whatsapp-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--whatsapp);
    animation: whatsappPulse 2s infinite;
}
@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}
.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: var(--text);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
    pointer-events: none;
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--text);
    border-right: none;
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

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

/* ===== LOADED ===== */
body:not(.loaded) {
    overflow: hidden;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid, .services-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hero-photo-float { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .policies-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    body { cursor: auto; }
    a, button { cursor: auto; }
    .cursor, .cursor-follower { display: none; }
    .nav-container { padding: 0 20px; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        gap: 28px;
        box-shadow: var(--shadow-lg);
        transition: right 0.5s var(--transition);
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.2rem; color: var(--text); }
    .nav-links a::after { display: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: block; }
    .hero { padding: 120px 20px 80px; }
    .hero-line-inner { font-size: clamp(2.4rem, 10vw, 3.5rem); }
    .hero-photo-float { display: none; }
    .container { padding: 0 20px; }
    .about { padding: 80px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .about-image-wrapper { margin: 0 auto; }
    .about-photo { max-width: 300px; margin: 0 auto; }
    .about-image-frame { display: none; }
    .about-highlights { text-align: left; }
    .services { padding: 80px 0; }
    .services-grid, .services-grid-3 { grid-template-columns: 1fr; }
    .pricing { padding: 80px 0; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .process { padding: 80px 0; }
    .process-grid { grid-template-columns: 1fr; gap: 20px; }
    .faq { padding: 80px 0; }
    .faq-layout { grid-template-columns: 1fr; gap: 40px; }
    .cta { padding: 80px 0; }
    .policies { padding: 80px 0; }
    .policies-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 4px; text-align: center; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }
}
