/* === HERO === */
.hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(196,181,169,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 70%, rgba(196,181,169,0.05) 0%, transparent 50%);
}

.hero-bg::before, .hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.hero-bg::before {
    width: 400px; height: 400px;
    background: rgba(196,181,169,0.08);
    top: 10%; left: 5%;
}

.hero-bg::after {
    width: 300px; height: 300px;
    background: rgba(196,181,169,0.05);
    bottom: 10%; right: 10%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
    position: relative; z-index: 2;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(196,181,169,0.12);
    border: 1px solid rgba(196,181,169,0.25);
    color: var(--primary-light);
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
}

.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

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

/* === VIDEO IN HERO === */
.video-embed {
    max-width: 960px; margin: 0 auto;
}

.video-frame {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card), 0 0 80px rgba(196,181,169,0.06);
}

.video-frame iframe {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
}

.hero-cta {
    margin-top: 40px;
}

/* === STATS === */
.stats-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
}

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

.stat-num {
    font-size: 2.75rem; font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem; font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* === SOCIAL PROOF BAR === */
.proof-bar {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.proof-bar p {
    font-size: 0.8rem; color: var(--text-dim);
    text-transform: uppercase; letter-spacing: 2px;
    font-weight: 600; margin-bottom: 32px;
}

.proof-logos {
    display: flex; justify-content: center; gap: 48px;
    align-items: center; flex-wrap: wrap;
    opacity: 0.3;
}

.proof-logos span {
    font-size: 1.1rem; font-weight: 700;
    color: var(--text-mid);
    letter-spacing: 1px;
}

/* === SERVICES === */
.services-section { text-align: center; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-top: 56px;
}

.service-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px 32px;
    text-align: left;
    text-decoration: none;
    color: var(--text);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
}

.service-item::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0; transition: opacity 0.4s;
}

.service-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow), 0 0 40px rgba(196,181,169,0.15);
    cursor: pointer;
    background: var(--bg-card-hover);
}

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

.service-icon {
    width: 56px; height: 56px;
    background: rgba(196,181,169,0.1);
    border: 1px solid rgba(196,181,169,0.2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    font-size: 1.3rem; color: var(--primary-light);
    transition: all 0.3s;
}

.service-item:hover .service-icon {
    background: var(--gradient);
    border-color: transparent;
    color: white;
    box-shadow: 0 0 30px var(--glow);
}

.service-item h3 {
    font-size: 1.2rem; font-weight: 700;
    margin-bottom: 12px;
}

.service-item p {
    color: var(--text-mid);
    font-size: 0.95rem; line-height: 1.7;
    flex: 1;
}

.service-link {
    margin-top: 20px;
    font-size: 0.85rem; font-weight: 600;
    color: var(--primary-light);
    display: flex; align-items: center; gap: 8px;
    transition: gap 0.3s;
}

.service-item:hover .service-link { gap: 14px; }

/* === BOOKING === */
.book-section {
    position: relative; overflow: hidden;
}

.book-section::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(196,181,169,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.book-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
}

.book-info p {
    color: var(--text-mid);
    font-size: 1.05rem; line-height: 1.8;
    margin-bottom: 32px;
}

.book-benefits {
    list-style: none;
    display: flex; flex-direction: column; gap: 18px;
}

.book-benefits li {
    display: flex; align-items: center; gap: 14px;
    font-weight: 500; color: var(--text-mid);
    font-size: 0.95rem;
}

.book-benefits i {
    color: var(--primary-light);
    font-size: 1rem;
    width: 32px; height: 32px;
    background: rgba(196,181,169,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.book-embed {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-height: 520px;
    overflow: hidden;
}

.fillout-placeholder {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    height: 520px; text-align: center;
    color: var(--text-dim);
}

.fillout-placeholder .small {
    font-size: 0.8rem; margin-top: 8px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero { padding: 100px 0 60px; }
    .hero-cta { margin-top: 28px; }
    .stats-row { flex-direction: column; gap: 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .book-wrapper { grid-template-columns: 1fr; gap: 36px; }
    .proof-logos { gap: 24px; }
    .stat-num { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero { padding: 90px 0 48px; }
}