/* ========================================
   FESTA COM PROJETO — Elegant Landing
   Inspired by luxury event planning aesthetics:
   warm neutrals, serif headlines, restrained accents
   ======================================== */

:root {
    --color-bg: #FAF8F5;
    --color-bg-warm: #F3EDE6;
    --color-bg-deep: #EBE3D9;
    --color-surface: #FFFFFF;
    --color-surface-elevated: #FFFCF9;

    --color-text: #5C564E;
    --color-text-light: #8A837A;
    --color-text-dark: #2C2824;
    --color-text-muted: #A39B92;

    --color-primary: #B8734A;
    --color-primary-dark: #9A5F3C;
    --color-primary-soft: rgba(184, 115, 74, 0.12);
    --color-gold: #C4A574;
    --color-gold-light: #E2D4B8;
    --color-gold-soft: rgba(196, 165, 116, 0.18);
    --color-blush: #E8D5CE;
    --color-sage: #C5CEC0;

    --gradient-hero: linear-gradient(165deg, #FAF8F5 0%, #F5EFE8 45%, #F0E8DF 100%);
    --gradient-cta: linear-gradient(145deg, #3D3832 0%, #2C2824 55%, #3A322C 100%);
    --gradient-gold: linear-gradient(135deg, #C4A574 0%, #D4B88A 100%);

    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --section-padding: clamp(72px, 10vw, 120px);
    --container-max: 1140px;

    --shadow-soft: 0 2px 24px rgba(44, 40, 36, 0.06);
    --shadow-medium: 0 12px 40px rgba(44, 40, 36, 0.08);
    --shadow-strong: 0 24px 64px rgba(44, 40, 36, 0.1);
    --shadow-gold: 0 8px 32px rgba(196, 165, 116, 0.22);

    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --radius-pill: 999px;

    --border-subtle: 1px solid rgba(44, 40, 36, 0.08);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text-dark);
    letter-spacing: -0.01em;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 32px);
}

/* Ornamental line */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto 20px;
    max-width: 200px;
    color: var(--color-gold);
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.ornament::before,
.ornament::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-light), transparent);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 0;
    background: rgba(250, 248, 245, 0.35);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(255, 252, 249, 0.92);
    box-shadow: var(--shadow-soft);
}

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

.logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--color-text-dark);
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 36px);
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--color-text);
    position: relative;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links a:not(.btn-nav):hover {
    color: var(--color-text-dark);
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    padding: 11px 26px;
    background: var(--color-text-dark);
    color: var(--color-surface) !important;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.btn-nav:hover {
    background: var(--color-primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.btn-nav::after {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 22px;
    height: 1.5px;
    background: var(--color-text-dark);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 68px;
        left: 16px;
        right: 16px;
        background: var(--color-surface);
        flex-direction: column;
        padding: 28px;
        gap: 20px;
        border-radius: var(--radius-md);
        border: var(--border-subtle);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        box-shadow: var(--shadow-medium);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* ========================================
   HERO
   ======================================== */
.hero {
    --hero-x: 0;
    --hero-y: 0;
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(110px, 15vh, 150px) 24px clamp(72px, 9vh, 100px);
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 252, 249, 0.9) 0%, transparent 55%),
        linear-gradient(175deg, #FDFBF8 0%, #F7F1EA 38%, #EFE6DC 72%, #E8DFD4 100%);
    background-size: 100% 100%, 200% 200%;
    animation: heroBgShift 22s ease-in-out infinite;
    z-index: -3;
}

@keyframes heroBgShift {
    0%, 100% { background-position: 0% 0%, 0% 50%; }
    50% { background-position: 0% 0%, 100% 50%; }
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -12%;
    width: 58%;
    height: 75%;
    background: radial-gradient(ellipse, rgba(196, 165, 116, 0.22) 0%, transparent 65%);
    animation: breathe 14s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -12%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(232, 213, 206, 0.5) 0%, transparent 68%);
    animation: breathe 16s ease-in-out infinite reverse;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    will-change: transform;
}

.hero-orb--1 {
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    top: 8%;
    left: 12%;
    background: rgba(196, 165, 116, 0.35);
    animation: floatOrb1 18s ease-in-out infinite;
    transform: translate(calc(var(--hero-x) * 28px), calc(var(--hero-y) * 22px));
}

.hero-orb--2 {
    width: min(360px, 48vw);
    height: min(360px, 48vw);
    bottom: 10%;
    right: 8%;
    background: rgba(184, 115, 74, 0.2);
    animation: floatOrb2 22s ease-in-out infinite;
    transform: translate(calc(var(--hero-x) * -22px), calc(var(--hero-y) * -18px));
}

.hero-orb--3 {
    width: min(280px, 40vw);
    height: min(280px, 40vw);
    top: 42%;
    right: 28%;
    background: rgba(232, 213, 206, 0.45);
    animation: floatOrb3 20s ease-in-out infinite;
    transform: translate(calc(var(--hero-x) * 16px), calc(var(--hero-y) * 24px));
}

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-ring {
    position: absolute;
    width: min(580px, 88vw);
    height: min(580px, 88vw);
    border: 1px solid rgba(196, 165, 116, 0.18);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(calc(var(--hero-x) * 12px), calc(var(--hero-y) * 10px));
    z-index: 0;
    pointer-events: none;
    animation: ringPulse 8s ease-in-out infinite;
}

.hero-ring::before {
    content: '';
    position: absolute;
    inset: 32px;
    border: 1px solid rgba(196, 165, 116, 0.1);
    border-radius: 50%;
}

.hero-ring--outer {
    width: min(720px, 105vw);
    height: min(720px, 105vw);
    border-color: rgba(196, 165, 116, 0.08);
    animation: ringRotate 80s linear infinite;
}

.hero-ring--outer::before {
    inset: 48px;
    border-style: dashed;
    border-color: rgba(196, 165, 116, 0.06);
}

.hero-accent-line {
    position: absolute;
    width: 1px;
    height: clamp(80px, 15vh, 140px);
    background: linear-gradient(180deg, transparent, rgba(196, 165, 116, 0.45), transparent);
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.hero-accent-line--left {
    left: clamp(24px, 8vw, 120px);
    top: 28%;
    animation: lineFade 6s ease-in-out infinite;
}

.hero-accent-line--right {
    right: clamp(24px, 8vw, 120px);
    bottom: 22%;
    animation: lineFade 6s ease-in-out infinite 3s;
}

@keyframes breathe {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes floatOrb1 {
    0%, 100% { transform: translate(calc(var(--hero-x) * 28px), calc(var(--hero-y) * 22px)); }
    50% { transform: translate(calc(var(--hero-x) * 28px + 20px), calc(var(--hero-y) * 22px - 30px)); }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translate(calc(var(--hero-x) * -22px), calc(var(--hero-y) * -18px)); }
    50% { transform: translate(calc(var(--hero-x) * -22px - 25px), calc(var(--hero-y) * -18px + 20px)); }
}

@keyframes floatOrb3 {
    0%, 100% { transform: translate(calc(var(--hero-x) * 16px), calc(var(--hero-y) * 24px)); }
    50% { transform: translate(calc(var(--hero-x) * 16px + 15px), calc(var(--hero-y) * 24px + 15px)); }
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes lineFade {
    0%, 100% { opacity: 0.3; transform: scaleY(0.85); }
    50% { opacity: 0.7; transform: scaleY(1); }
}

/* Luxury party ambiance */
.hero-luxury {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-luxury-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.8s ease;
}

.hero.is-loaded .hero-luxury-canvas {
    opacity: 1;
}

.hero-luxury-rays {
    position: absolute;
    top: -20%;
    left: 50%;
    width: 140%;
    height: 70%;
    transform: translateX(-50%);
    background: conic-gradient(
        from 180deg at 50% 100%,
        transparent 0deg,
        rgba(255, 252, 249, 0.04) 20deg,
        transparent 40deg,
        rgba(196, 165, 116, 0.06) 60deg,
        transparent 80deg,
        rgba(255, 252, 249, 0.03) 100deg,
        transparent 120deg,
        rgba(196, 165, 116, 0.05) 140deg,
        transparent 160deg,
        rgba(255, 252, 249, 0.04) 180deg,
        transparent 360deg
    );
    filter: blur(28px);
    animation: heroRaysDrift 28s linear infinite;
    opacity: 0;
}

.hero.is-loaded .hero-luxury-rays {
    opacity: 1;
}

.hero-luxury-shimmer {
    position: absolute;
    inset: -50% -20%;
    background: linear-gradient(
        105deg,
        transparent 38%,
        rgba(255, 255, 255, 0.07) 46%,
        rgba(196, 165, 116, 0.14) 50%,
        rgba(255, 255, 255, 0.07) 54%,
        transparent 62%
    );
    animation: heroLuxuryShimmer 9s ease-in-out infinite;
    opacity: 0;
}

.hero.is-loaded .hero-luxury-shimmer {
    opacity: 1;
}

.hero-silk {
    position: absolute;
    top: 0;
    height: 100%;
    width: clamp(60px, 12vw, 120px);
    opacity: 0;
    transition: opacity 1.4s ease 0.3s;
}

.hero.is-loaded .hero-silk {
    opacity: 1;
}

.hero-silk--left { left: clamp(0px, 4vw, 48px); }
.hero-silk--right { right: clamp(0px, 4vw, 48px); }

.hero-silk-path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: heroSilkDraw 4s cubic-bezier(0.22, 1, 0.36, 1) forwards, heroSilkFloat 12s ease-in-out 4s infinite;
}

.hero-silk-path--thin { animation-delay: 0.6s, 4.6s; }

.hero-bokeh {
    position: absolute;
    inset: 0;
    --lux-x: 0;
    --lux-y: 0;
    transform: translate(calc(var(--lux-x) * 1px), calc(var(--lux-y) * 1px));
}

.hero-bokeh__dot {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 252, 249, 0.9) 0%, rgba(196, 165, 116, 0.35) 40%, transparent 70%);
    filter: blur(1px);
    animation: heroBokehFloat var(--dur, 14s) ease-in-out infinite;
    opacity: 0;
}

.hero.is-loaded .hero-bokeh__dot { opacity: var(--op, 0.55); }

.hero-bokeh__dot--1 { width: 80px; height: 80px; top: 12%; left: 8%; --dur: 16s; --op: 0.45; animation-delay: 0.2s; }
.hero-bokeh__dot--2 { width: 120px; height: 120px; top: 55%; right: 6%; --dur: 20s; --op: 0.35; animation-delay: 1s; }
.hero-bokeh__dot--3 { width: 50px; height: 50px; bottom: 22%; left: 22%; --dur: 12s; --op: 0.5; animation-delay: 0.5s; }
.hero-bokeh__dot--4 { width: 65px; height: 65px; top: 28%; right: 22%; --dur: 18s; --op: 0.4; animation-delay: 1.5s; }
.hero-bokeh__dot--5 { width: 40px; height: 40px; bottom: 30%; right: 35%; --dur: 11s; --op: 0.55; animation-delay: 0.8s; }

.hero-gems { position: absolute; inset: 0; }

.hero-gem {
    --gem-x: 0;
    --gem-y: 0;
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(145deg, #FFFEF9 0%, #E8D5CE 35%, #C4A574 70%, #B8734A 100%);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    box-shadow: 0 0 12px rgba(196, 165, 116, 0.5);
    opacity: 0;
    transform: translate(calc(var(--gem-x) * 1px), calc(var(--gem-y) * 1px));
    animation: heroGemTwinkle var(--gem-dur, 5s) ease-in-out infinite;
}

.hero.is-loaded .hero-gem { opacity: 1; }

.hero-gem--1 { top: 18%; left: 14%; --gem-dur: 4.5s; animation-delay: 0.4s; width: 8px; height: 8px; }
.hero-gem--2 { top: 14%; right: 16%; --gem-dur: 6s; animation-delay: 1.2s; width: 12px; height: 12px; }
.hero-gem--3 { top: 48%; right: 10%; --gem-dur: 5s; animation-delay: 0.8s; width: 7px; height: 7px; }
.hero-gem--4 { bottom: 24%; left: 12%; --gem-dur: 5.5s; animation-delay: 1.6s; width: 9px; height: 9px; }
.hero-gem--5 { bottom: 20%; right: 20%; --gem-dur: 4s; animation-delay: 2s; width: 6px; height: 6px; }

.hero-arch {
    position: absolute;
    bottom: 8%;
    left: 50%;
    width: min(680px, 92vw);
    height: 120px;
    transform: translateX(-50%) translate(calc(var(--lux-x, 0) * 1px), calc(var(--lux-y, 0) * 1px));
    opacity: 0;
    transition: opacity 1.6s ease 0.5s;
}

.hero.is-loaded .hero-arch { opacity: 1; }

.hero-arch__curve {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-top: 1px solid rgba(196, 165, 116, 0.2);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.4) inset;
    animation: heroArchGlow 6s ease-in-out infinite;
}

.hero-floats {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-float {
    --float-x: 0;
    --float-y: 0;
    --float-rotate: 0deg;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    transform: translate3d(calc(var(--float-x) * 1px), calc(var(--float-y) * 1px), 0) rotate(var(--float-rotate));
    animation: heroFloatBob var(--bob-duration, 7s) ease-in-out var(--bob-delay, 0s) infinite;
}

.hero-float-glow {
    position: absolute;
    width: 140%;
    height: 140%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 252, 249, 0.85) 0%, rgba(196, 165, 116, 0.12) 45%, transparent 72%);
    filter: blur(2px);
    animation: heroGlowPulse 5s ease-in-out infinite;
}

.hero-float-icon {
    position: relative;
    z-index: 1;
    display: block;
    font-size: clamp(1.6rem, 3.2vw, 2.35rem);
    line-height: 1;
    opacity: 0;
    filter: drop-shadow(0 8px 18px rgba(44, 40, 36, 0.12)) drop-shadow(0 2px 6px rgba(196, 165, 116, 0.25));
    animation: heroFloatIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards, heroIconTilt var(--tilt-duration, 6s) ease-in-out infinite;
}

.hero.is-loaded .hero-float-icon { opacity: 1; }

.hero-float--cake { top: 14%; left: clamp(4%, 8vw, 11%); --bob-duration: 8s; --bob-delay: 0.2s; --tilt-duration: 7s; }
.hero-float--cake .hero-float-icon { animation-delay: 0.55s, 0.55s; }
.hero-float--gift { top: 12%; right: clamp(4%, 9vw, 12%); --bob-duration: 9s; --bob-delay: 0.8s; --tilt-duration: 8s; }
.hero-float--gift .hero-float-icon { animation-delay: 0.7s, 0.7s; }
.hero-float--star { top: 46%; right: clamp(6%, 14vw, 18%); --bob-duration: 6.5s; --bob-delay: 1.2s; --tilt-duration: 5.5s; }
.hero-float--star .hero-float-icon { font-size: clamp(1.1rem, 2.2vw, 1.6rem); animation-delay: 0.85s, 0.85s; }
.hero-float--balloon { bottom: 18%; right: clamp(8%, 16vw, 20%); --bob-duration: 10s; --bob-delay: 0.4s; --tilt-duration: 9s; }
.hero-float--balloon .hero-float-icon { animation-delay: 1s, 1s; }
.hero-float--popper { bottom: 20%; left: clamp(6%, 12vw, 14%); --bob-duration: 7.5s; --bob-delay: 1.5s; --tilt-duration: 6.5s; }
.hero-float--popper .hero-float-icon { animation-delay: 0.9s, 0.9s; }

.hero-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(196, 165, 116, 0.8) 55%, transparent 100%);
    box-shadow: 0 0 8px rgba(196, 165, 116, 0.45);
    opacity: 0;
    animation: heroSparkle 4s ease-in-out infinite;
}

.hero.is-loaded .hero-sparkle { opacity: 1; }

.hero-sparkle--1 { top: 22%; left: 28%; animation-delay: 0.3s; }
.hero-sparkle--2 { top: 18%; right: 32%; animation-delay: 1.1s; width: 3px; height: 3px; }
.hero-sparkle--3 { top: 38%; left: 18%; animation-delay: 2s; }
.hero-sparkle--4 { top: 52%; right: 24%; animation-delay: 0.6s; width: 5px; height: 5px; }
.hero-sparkle--5 { bottom: 32%; left: 32%; animation-delay: 1.8s; }
.hero-sparkle--6 { bottom: 28%; right: 38%; animation-delay: 2.4s; width: 3px; height: 3px; }
.hero-sparkle--7 { top: 30%; left: 42%; animation-delay: 3s; }
.hero-sparkle--8 { bottom: 40%; right: 14%; animation-delay: 1.4s; }

.hero-inner--reveal {
    animation: heroCardReveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s backwards;
}

@keyframes heroRaysDrift {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

@keyframes heroLuxuryShimmer {
    0%, 100% { transform: translateX(-30%) translateY(0); opacity: 0.4; }
    50% { transform: translateX(30%) translateY(-2%); opacity: 0.85; }
}

@keyframes heroSilkDraw { to { stroke-dashoffset: 0; } }

@keyframes heroSilkFloat {
    0%, 100% { transform: translateY(0); opacity: 0.85; }
    50% { transform: translateY(-12px); opacity: 1; }
}

@keyframes heroBokehFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(8px, -18px) scale(1.06); }
    66% { transform: translate(-6px, -10px) scale(0.96); }
}

@keyframes heroGemTwinkle {
    0%, 100% { opacity: 0.35; transform: translate(calc(var(--gem-x) * 1px), calc(var(--gem-y) * 1px)) scale(0.85) rotate(0deg); filter: brightness(1); }
    50% { opacity: 1; transform: translate(calc(var(--gem-x) * 1px), calc(var(--gem-y) * 1px)) scale(1.15) rotate(20deg); filter: brightness(1.3); }
}

@keyframes heroArchGlow {
    0%, 100% { border-top-color: rgba(196, 165, 116, 0.15); box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.3) inset; }
    50% { border-top-color: rgba(196, 165, 116, 0.35); box-shadow: 0 -2px 12px rgba(196, 165, 116, 0.15) inset; }
}

@keyframes heroFloatIn {
    0% { opacity: 0; transform: translateY(24px) scale(0.75) rotate(-10deg); filter: blur(3px) drop-shadow(0 8px 18px rgba(44, 40, 36, 0.12)) drop-shadow(0 2px 6px rgba(196, 165, 116, 0.25)); }
    100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); filter: blur(0) drop-shadow(0 8px 18px rgba(44, 40, 36, 0.12)) drop-shadow(0 2px 6px rgba(196, 165, 116, 0.25)); }
}

@keyframes heroFloatBob {
    0%, 100% { transform: translate3d(calc(var(--float-x) * 1px), calc(var(--float-y) * 1px), 0) rotate(var(--float-rotate)); }
    33% { transform: translate3d(calc(var(--float-x) * 1px + 6px), calc(var(--float-y) * 1px - 14px), 0) rotate(calc(var(--float-rotate) + 3deg)); }
    66% { transform: translate3d(calc(var(--float-x) * 1px - 4px), calc(var(--float-y) * 1px - 8px), 0) rotate(calc(var(--float-rotate) - 2deg)); }
}

@keyframes heroIconTilt {
    0%, 100% { transform: rotate(-4deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.06); }
}

@keyframes heroGlowPulse {
    0%, 100% { opacity: 0.65; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.08); }
}

@keyframes heroSparkle {
    0%, 100% { opacity: 0; transform: scale(0.4); }
    20% { opacity: 0.9; transform: scale(1); }
    40% { opacity: 0.2; transform: scale(0.6); }
    60% { opacity: 1; transform: scale(1.15); }
    80% { opacity: 0.35; transform: scale(0.75); }
}

@keyframes heroCardReveal {
    0% { opacity: 0; transform: translateY(36px) scale(0.96); filter: blur(8px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes heroCardShine {
    0%, 100% { background-position: 120% 0; }
    50% { background-position: -20% 0; }
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 820px;
    padding: 0 clamp(8px, 2vw, 20px);
}

.hero-content {
    position: relative;
    padding: clamp(32px, 5vw, 48px) clamp(24px, 4vw, 40px);
    background: rgba(255, 252, 249, 0.45);
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: clamp(20px, 3vw, 32px);
    box-shadow:
        0 4px 24px rgba(44, 40, 36, 0.04),
        0 24px 80px rgba(44, 40, 36, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 165, 116, 0.5), transparent);
}

.hero-content::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(
        115deg,
        transparent 42%,
        rgba(255, 255, 255, 0.35) 48%,
        rgba(196, 165, 116, 0.12) 50%,
        rgba(255, 255, 255, 0.35) 52%,
        transparent 58%
    );
    background-size: 250% 100%;
    animation: heroCardShine 7s ease-in-out infinite;
    opacity: 0.6;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(196, 165, 116, 0.25);
    border-radius: var(--radius-pill);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    margin-bottom: 24px;
    box-shadow: 0 2px 16px rgba(196, 165, 116, 0.12);
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-badge-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-gold);
    box-shadow: 0 0 0 0 rgba(196, 165, 116, 0.5);
    animation: badgePulse 2.5s ease-in-out infinite;
}

.hero-badge-gem {
    display: none;
}

/* Emojis harmonizados com a paleta champagne/dourada do site */
.site-emoji {
    display: inline-block;
    line-height: 1;
    filter: sepia(0.55) saturate(2.2) hue-rotate(358deg) brightness(1.02) contrast(0.95);
    transition: filter 0.35s ease, transform 0.35s ease;
}

.site-emoji--sm {
    font-size: 0.85em;
}

.diff-card:hover .site-emoji,
.step-card:hover .site-emoji,
.trans-card:hover .site-emoji,
.plan-card:hover .plan-emoji,
.contact-card:hover .site-emoji {
    filter: sepia(0.7) saturate(2.6) hue-rotate(352deg) brightness(1.08) contrast(1);
    transform: scale(1.06);
}

.diff-card:nth-child(1) .site-emoji { filter: sepia(0.5) saturate(2.4) hue-rotate(350deg) brightness(1.05); }
.diff-card:nth-child(2) .site-emoji { filter: sepia(0.65) saturate(2.8) hue-rotate(5deg) brightness(1.1); }
.diff-card:nth-child(3) .site-emoji { filter: sepia(0.45) saturate(2) hue-rotate(365deg) brightness(1); }
.diff-card:nth-child(4) .site-emoji { filter: sepia(0.55) saturate(2.1) hue-rotate(355deg) brightness(1.03); }

.plan-emoji.site-emoji {
    font-size: 2.25rem;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(196, 165, 116, 0.45); }
    50% { box-shadow: 0 0 0 6px rgba(196, 165, 116, 0); }
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 1.8vw, 0.82rem);
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.08s backwards;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: 20px;
    line-height: 1.15;
    overflow: visible;
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.14s backwards;
}

.hero-title-line {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 8vw, 4.6rem);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: var(--color-text-dark);
}

.hero-title-accent {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: clamp(4.1rem, 12vw, 7.4rem);
    font-weight: 500;
    font-style: italic;
    letter-spacing: -0.02em;
    line-height: 1.25;
    padding-bottom: 0.1em;
    overflow: visible;
    background: linear-gradient(135deg, #2C2824 0%, #5C4A3A 35%, #B8734A 70%, #C4A574 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    background-size: 200% auto;
    animation: shimmerText 8s ease-in-out infinite;
}

@keyframes shimmerText {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-description {
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto 36px;
    font-weight: 400;
    line-height: 1.9;
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.26s backwards;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-20deg);
    animation: btnShine 4s ease-in-out infinite;
}

@keyframes btnShine {
    0%, 100% { left: -60%; }
    50% { left: 120%; }
}

.hero-pillars {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(12px, 3vw, 28px);
    padding-top: 8px;
    border-top: 1px solid rgba(196, 165, 116, 0.15);
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.34s backwards;
}

.hero-pillars li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.hero-pillar-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-gold);
    flex-shrink: 0;
}

.hero-scroll {
    position: absolute;
    bottom: clamp(24px, 4vh, 40px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    z-index: 3;
    transition: color 0.3s ease, transform 0.3s ease;
    animation: fadeInUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s backwards;
}

.hero-scroll:hover {
    color: var(--color-gold);
    transform: translateX(-50%) translateY(3px);
}

.hero-scroll-mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid rgba(196, 165, 116, 0.45);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
}

.hero-scroll-wheel {
    width: 3px;
    height: 7px;
    background: var(--color-gold);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(6px); }
}

@media (max-width: 768px) {
    .hero {
        padding: clamp(96px, 13vh, 112px) 14px clamp(52px, 6vh, 64px);
        align-items: flex-start;
    }

    .hero-inner {
        max-width: 100%;
        padding: 0;
    }

    .hero-content {
        padding: 22px 16px 20px;
        background: rgba(255, 252, 249, 0.6);
        border-radius: 18px;
    }

    .hero-badge {
        font-size: 0.58rem;
        padding: 6px 12px;
        letter-spacing: 0.14em;
        margin-bottom: 16px;
        gap: 7px;
    }

    .hero-badge-pulse {
        width: 5px;
        height: 5px;
    }

    .hero-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
        margin-bottom: 12px;
    }

    .hero-title {
        gap: 0;
        margin-bottom: 14px;
    }

    .hero-title-line {
        font-size: clamp(1.85rem, 7.5vw, 2.35rem);
        line-height: 1.15;
    }

    .hero-title-accent {
        font-size: clamp(2.65rem, 11vw, 3.35rem);
        line-height: 1.35;
        padding-bottom: 0.16em;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 22px;
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.72rem;
    }

    .hero-pillars {
        flex-direction: column;
        gap: 8px;
        padding-top: 6px;
    }

    .hero-pillars li {
        font-size: 0.65rem;
        letter-spacing: 0.05em;
    }

    .hero-accent-line {
        display: none;
    }

    .hero-ring {
        width: min(380px, 92vw);
        height: min(380px, 92vw);
    }

    .hero-ring--outer {
        width: min(460px, 108vw);
        height: min(460px, 108vw);
    }

    .hero-float--cake { top: 10%; left: 2%; }
    .hero-float--gift { top: 8%; right: 2%; }
    .hero-float--star { top: 42%; right: 4%; }
    .hero-float--balloon { bottom: 14%; right: 6%; }
    .hero-float--popper { bottom: 16%; left: 4%; }

    .hero-float-icon {
        font-size: clamp(1.25rem, 5vw, 1.65rem);
    }

    .hero-float--star .hero-float-icon {
        font-size: clamp(0.95rem, 3.5vw, 1.2rem);
    }

    .hero-sparkle--3,
    .hero-sparkle--5,
    .hero-sparkle--7 {
        display: none;
    }

    .hero-silk {
        width: 40px;
        opacity: 0.6;
    }

    .hero-silk--left { left: 0; }
    .hero-silk--right { right: 0; }

    .hero-bokeh__dot--4,
    .hero-bokeh__dot--5 {
        display: none;
    }

    .hero-gem--3,
    .hero-gem--5 {
        display: none;
    }

    .hero-arch {
        width: 95vw;
        height: 80px;
        bottom: 4%;
    }

    .hero-scroll {
        bottom: 14px;
        gap: 7px;
        font-size: 0.55rem;
        letter-spacing: 0.18em;
    }

    .hero-scroll-mouse {
        width: 18px;
        height: 28px;
        padding-top: 5px;
    }

    .hero-scroll-wheel {
        width: 2px;
        height: 6px;
    }

    .section-header h2 {
        font-size: clamp(1.85rem, 5.2vw, 2.2rem);
    }

    .about-text h3 {
        font-size: clamp(1.55rem, 4.2vw, 1.85rem);
    }

    .step-card h3 {
        font-size: 1.25rem;
    }

    .transparency-text h2 {
        font-size: clamp(1.85rem, 4.8vw, 2.15rem);
    }

    .trans-card h4 {
        font-size: 1rem;
    }

    .diff-card h4 {
        font-size: 1.1rem;
    }

    .cta-content h2 {
        font-size: clamp(1.85rem, 5.2vw, 2.2rem);
    }

    .plan-header h3 {
        font-size: 1.45rem;
    }

    .custom-text h4 {
        font-size: 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-orb,
    .hero-ring--outer,
    .hero-title-accent,
    .hero-badge-pulse,
    .hero-badge-gem,
    .hero-scroll-wheel,
    .hero-float,
    .hero-sparkle,
    .hero-float-icon,
    .hero-float-glow,
    .hero-bokeh__dot,
    .hero-gem,
    .hero-silk-path,
    .hero-luxury-rays,
    .hero-luxury-shimmer,
    .hero-arch__curve,
    .hero-inner--reveal,
    .hero-content::after,
    .hero-bg {
        animation: none !important;
    }

    .hero-orb,
    .hero-float {
        transform: none !important;
    }

    .hero.is-loaded .hero-bokeh__dot,
    .hero.is-loaded .hero-gem,
    .hero.is-loaded .hero-float-icon,
    .hero.is-loaded .hero-sparkle {
        opacity: 0.85;
    }

    .hero-silk-path {
        stroke-dashoffset: 0;
    }

    .hero-inner--reveal {
        opacity: 1;
        filter: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--color-text-dark);
    color: var(--color-surface);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-dark);
    border: 1px solid rgba(44, 40, 36, 0.18);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    background: var(--color-gold-soft);
    transform: translateY(-2px);
}

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

/* ========================================
   SECTIONS
   ======================================== */
section {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 64px);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: clamp(2.55rem, 6.2vw, 3.85rem);
    font-weight: 500;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ========================================
   ABOUT
   ======================================== */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--color-surface);
}

.about-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    background: var(--color-bg-warm);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-medium);
    border: var(--border-subtle);
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--radius-lg) + 1px);
    padding: 1px;
    background: linear-gradient(145deg, var(--color-gold-light), transparent 50%, var(--color-blush));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    opacity: 0.7;
}

.about-photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 8px);
}

.about-quote-mark {
    position: absolute;
    top: -12px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--color-gold-light);
    opacity: 0.6;
    pointer-events: none;
}

.about-text h3 {
    font-size: clamp(1.95rem, 3.5vw, 2.5rem);
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--color-text-dark);
}

.about-text .greeting {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 18px;
    color: var(--color-text);
}

.about-text .highlight {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-text-dark);
    padding: 24px 28px;
    background: var(--color-bg-warm);
    border-left: 2px solid var(--color-gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 28px;
    line-height: 1.65;
}

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

    .about-image {
        max-width: 380px;
        margin: 0 auto;
    }
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: step;
}

.step-card {
    position: relative;
    background: var(--color-surface);
    padding: 36px 24px 32px;
    border-radius: var(--radius-md);
    border: var(--border-subtle);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(196, 165, 116, 0.25);
}

.step-number {
    display: none;
}

.step-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 252, 249, 0.95) 0%, rgba(232, 213, 206, 0.45) 45%, rgba(196, 165, 116, 0.22) 100%);
    border: 1px solid rgba(196, 165, 116, 0.28);
    box-shadow: 0 4px 14px rgba(196, 165, 116, 0.14);
}

.step-icon .site-emoji {
    font-size: 1.5rem;
}

.step-card h3 {
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

@media (max-width: 1000px) {
    .steps-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .steps-container { grid-template-columns: 1fr; }
}

/* ========================================
   TRANSPARENCY
   ======================================== */
.transparency-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-warm);
}

.transparency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
}

.transparency-text h2 {
    font-size: clamp(2.25rem, 4.8vw, 2.95rem);
    margin-bottom: 16px;
}

.transparency-text p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.transparency-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trans-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: var(--border-subtle);
    transition: var(--transition);
}

.trans-card:hover {
    box-shadow: var(--shadow-soft);
    border-color: rgba(196, 165, 116, 0.3);
}

.trans-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 252, 249, 0.95) 0%, rgba(232, 213, 206, 0.45) 45%, rgba(196, 165, 116, 0.22) 100%);
    border: 1px solid rgba(196, 165, 116, 0.28);
    box-shadow: 0 4px 14px rgba(196, 165, 116, 0.14);
}

.trans-icon .site-emoji {
    font-size: 1.35rem;
}

.trans-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.trans-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.65;
}

@media (max-width: 800px) {
    .transparency-content { grid-template-columns: 1fr; }
}

/* ========================================
   PLANS
   ======================================== */
.plans-section {
    padding: var(--section-padding) 0;
    background: var(--color-surface);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
    align-items: stretch;
}

.plan-card {
    position: relative;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: var(--border-subtle);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.plan-card.featured {
    background: var(--color-surface-elevated);
    border-color: rgba(196, 165, 116, 0.45);
    box-shadow: var(--shadow-gold);
}

.featured-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 18px;
    background: var(--gradient-gold);
    color: var(--color-text-dark);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.plan-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(44, 40, 36, 0.06);
    margin-bottom: 24px;
}

.plan-emoji {
    display: block;
    line-height: 1;
    margin-bottom: 12px;
}

.plan-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.plan-header h3 {
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.plan-size {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    padding: 5px 14px;
    background: var(--color-gold-soft);
    border-radius: var(--radius-pill);
    display: inline-block;
}

.plan-features {
    flex: 1;
    margin-bottom: 24px;
}

.plan-features ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

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

.plan-features .check {
    color: var(--color-gold);
    font-size: 0.75rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.plan-pricing {
    background: var(--color-surface);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    margin-bottom: 20px;
    border: var(--border-subtle);
}

.plan-pricing--single {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    padding: 20px 18px;
}

.plan-price-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.plan-price-value {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.1;
}

.plans-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--color-text-muted);
    padding: 48px 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
}

.price-row:not(:last-child) {
    border-bottom: 1px solid rgba(44, 40, 36, 0.06);
}

.period {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.btn-plan {
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    color: var(--color-text-dark);
    border: 1px solid rgba(44, 40, 36, 0.15);
    cursor: pointer;
    font-family: inherit;
}

.btn-plan:hover {
    background: var(--color-text-dark);
    color: var(--color-surface);
    border-color: var(--color-text-dark);
}

.btn-featured {
    background: var(--color-text-dark);
    color: var(--color-surface);
    border-color: var(--color-text-dark);
}

.btn-featured:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.custom-plan {
    background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-bg) 100%);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 40px);
    border: var(--border-subtle);
    margin-bottom: 24px;
}

.custom-content {
    display: flex;
    align-items: center;
    gap: clamp(20px, 4vw, 32px);
    flex-wrap: wrap;
}

.custom-emoji {
    flex-shrink: 0;
    font-size: 1.75rem;
    line-height: 1;
}

.custom-divider {
    width: 48px;
    height: 1px;
    background: var(--color-gold);
    flex-shrink: 0;
}

.custom-text {
    flex: 1;
    min-width: 220px;
}

.custom-text h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.custom-text p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.btn-custom {
    padding: 14px 28px;
    background: var(--gradient-gold);
    color: var(--color-text-dark);
    font-weight: 700;
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.plans-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 1000px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ========================================
   DIFFERENTIALS
   ======================================== */
.differentials-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.diff-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: var(--border-subtle);
    transition: var(--transition);
}

.diff-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(196, 165, 116, 0.25);
}

.diff-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 252, 249, 0.95) 0%, rgba(232, 213, 206, 0.45) 45%, rgba(196, 165, 116, 0.22) 100%);
    border: 1px solid rgba(196, 165, 116, 0.28);
    box-shadow:
        0 4px 18px rgba(196, 165, 116, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.diff-card:hover .diff-icon {
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        0 8px 24px rgba(196, 165, 116, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(196, 165, 116, 0.45);
}

.diff-emoji {
    display: block;
    font-size: 1.65rem;
    line-height: 1;
    transform: translateY(1px);
}

.diff-card:hover .diff-emoji {
    transform: translateY(0) scale(1.06);
}

.diff-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.diff-card p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.65;
}

@media (max-width: 900px) {
    .diff-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ========================================
   PORTFOLIO
   ======================================== */
.portfolio-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-warm);
}

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

.portfolio-filter {
    padding: 9px 18px;
    border: 1px solid rgba(44, 40, 36, 0.12);
    border-radius: var(--radius-pill);
    background: var(--color-surface);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-filter:hover,
.portfolio-filter.active {
    background: var(--color-text-dark);
    color: var(--color-surface);
    border-color: var(--color-text-dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-surface);
    border: var(--border-subtle);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.portfolio-card-btn {
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

.portfolio-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-bg-deep);
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card-image img {
    transform: scale(1.04);
}

.portfolio-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-style: italic;
}

.portfolio-card-featured {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    background: rgba(44, 40, 36, 0.75);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
}

.portfolio-card-body {
    padding: 18px 20px 22px;
}

.portfolio-card-category {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.portfolio-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 500;
    margin: 6px 0 4px;
    color: var(--color-text-dark);
}

.portfolio-card-body p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.portfolio-loading,
.portfolio-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--color-text-muted);
    padding: 48px 20px;
}

body.portfolio-lightbox-open {
    overflow: hidden;
}

.portfolio-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.portfolio-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.portfolio-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 24, 20, 0.88);
    backdrop-filter: blur(6px);
}

.portfolio-lightbox-panel {
    position: relative;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
}

.portfolio-lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.portfolio-lightbox-image-wrap img {
    width: 100%;
    max-height: 65vh;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.portfolio-lightbox-info {
    padding: 24px 28px 28px;
}

.portfolio-lightbox-category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.portfolio-lightbox-info h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin: 8px 0 10px;
}

.portfolio-lightbox-info p {
    color: var(--color-text-light);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ========================================
   CTA / CONTACT
   ======================================== */
.cta-section {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-cta);
    z-index: -1;
}

.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(196, 165, 116, 0.15) 0%, transparent 55%);
}

.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M30 0L60 30L30 60L0 30z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.cta-content {
    text-align: center;
    color: var(--color-surface);
    position: relative;
}

.cta-content .section-badge {
    color: var(--color-gold-light);
}

.cta-content h2 {
    font-size: clamp(2.55rem, 6.2vw, 3.85rem);
    font-weight: 500;
    font-style: italic;
    color: var(--color-surface);
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 1.05rem;
    color: rgba(255, 252, 249, 0.75);
    margin-bottom: 44px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.contact-cards {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 26px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    transition: var(--transition);
    min-width: min(100%, 260px);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(196, 165, 116, 0.4);
    transform: translateY(-3px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(196, 165, 116, 0.2);
    flex-shrink: 0;
}

.contact-icon .site-emoji {
    font-size: 1.25rem;
    filter: sepia(0.4) saturate(2) hue-rotate(358deg) brightness(1.15);
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.contact-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 252, 249, 0.55);
}

.contact-value {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-surface);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #1F1C19;
    color: rgba(255, 252, 249, 0.85);
    padding: 56px 0 28px;
}

.footer-content {
    text-align: center;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-surface);
}

.footer-brand .logo-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-gold-light);
    margin-bottom: 12px;
}

.footer-thanks {
    font-size: 0.9rem;
    opacity: 0.55;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    opacity: 0.4;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-card:nth-child(1) { transition-delay: 0.05s; }
.step-card:nth-child(2) { transition-delay: 0.1s; }
.step-card:nth-child(3) { transition-delay: 0.15s; }
.step-card:nth-child(4) { transition-delay: 0.2s; }

.plan-card:nth-child(1) { transition-delay: 0.05s; }
.plan-card:nth-child(2) { transition-delay: 0.1s; }
.plan-card:nth-child(3) { transition-delay: 0.15s; }

.diff-card:nth-child(1) { transition-delay: 0.05s; }
.diff-card:nth-child(2) { transition-delay: 0.1s; }
.diff-card:nth-child(3) { transition-delay: 0.15s; }
.diff-card:nth-child(4) { transition-delay: 0.2s; }

/* Legacy — hidden decorative elements */
.confetti-container,
.hero-decoration,
.floating-emoji {
    display: none !important;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html { scroll-behavior: auto; }
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

/* ========================================
   QUOTE MODAL
   ======================================== */
body.quote-modal-open {
    overflow: hidden;
}

.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quote-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.quote-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 24, 20, 0.55);
    backdrop-filter: blur(4px);
}

.quote-modal-panel {
    position: relative;
    width: 100%;
    max-width: 640px;
    max-height: min(90vh, 900px);
    overflow-y: auto;
    background: var(--color-surface);
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(28, 24, 20, 0.2);
    padding: 32px 28px 28px;
}

.quote-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--color-text-muted);
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}

.quote-modal-close:hover {
    background: rgba(44, 40, 36, 0.06);
    color: var(--color-text-dark);
}

.quote-modal-header {
    margin-bottom: 24px;
    padding-right: 32px;
}

.quote-modal-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: 8px;
}

.quote-modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 6px;
}

.quote-modal-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.quote-form-section {
    margin-bottom: 24px;
}

.quote-form-section h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--color-text-dark);
}

.quote-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.quote-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quote-field-full {
    grid-column: 1 / -1;
}

.quote-field span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.quote-field input,
.quote-field textarea,
.quote-extras-add input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(44, 40, 36, 0.12);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: #fff;
    color: var(--color-text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.quote-field input:focus,
.quote-field textarea:focus,
.quote-extras-add input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(196, 167, 125, 0.2);
}

.quote-field textarea {
    resize: vertical;
    min-height: 72px;
}

.quote-plan-features {
    list-style: none;
    margin: 0 0 20px;
    padding: 16px;
    background: rgba(196, 167, 125, 0.08);
    border-radius: 10px;
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.quote-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.quote-plan-features li:last-child {
    margin-bottom: 0;
}

.quote-features-title {
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px !important;
}

.quote-form-error {
    color: #b33;
    font-size: 0.88rem;
    margin-bottom: 12px;
    padding: 10px 12px;
    background: rgba(179, 51, 51, 0.08);
    border-radius: 8px;
}

.quote-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 20px;
}

.quote-preview {
    background: rgba(44, 40, 36, 0.03);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 20px;
}

.quote-preview-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 6px 0;
    font-size: 0.92rem;
}

.quote-preview-row span {
    color: var(--color-text-muted);
}

.quote-preview-divider {
    height: 1px;
    background: rgba(44, 40, 36, 0.1);
    margin: 10px 0;
}

.quote-preview-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 12px;
    margin-top: 4px;
    border-top: 2px solid rgba(44, 40, 36, 0.12);
}

.quote-preview-total span {
    font-weight: 600;
    color: var(--color-text-dark);
}

.quote-preview-total strong {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.quote-extras h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.quote-extras-empty {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.quote-extra-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid rgba(44, 40, 36, 0.08);
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.quote-extra-amount {
    font-weight: 600;
    white-space: nowrap;
}

.quote-extra-remove {
    border: none;
    background: transparent;
    color: var(--color-text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1;
    padding: 2px 6px;
}

.quote-extra-remove:hover {
    color: #b33;
}

.quote-extras-add {
    display: grid;
    grid-template-columns: 1fr 120px auto;
    gap: 10px;
    margin-top: 12px;
}

.btn-sm {
    padding: 10px 16px;
    font-size: 0.85rem;
}

.quote-success {
    text-align: center;
    padding: 20px 10px 10px;
}

.quote-success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(76, 140, 90, 0.12);
    color: #3d7a4a;
    font-size: 1.75rem;
    line-height: 56px;
}

.quote-success h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.quote-success p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.quote-success .btn {
    display: inline-block;
    margin: 6px;
}

@media (max-width: 600px) {
    .quote-modal-panel {
        padding: 24px 18px 20px;
    }

    .quote-form-grid {
        grid-template-columns: 1fr;
    }

    .quote-extras-add {
        grid-template-columns: 1fr;
    }

    .quote-modal-actions {
        flex-direction: column;
    }

    .quote-modal-actions .btn {
        width: 100%;
    }
}
