/* ============================================
   MALECOMPANION.IN - MAIN STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --bg1: #fffaf6;
    --bg2: #fbf8f3;
    --card: rgba(255,255,255,0.95);
    --ink: #231f20;
    --muted: #6b6160;
    --gold-start: #f7d48a;
    --gold-end: #bf8c4c;
    --accent: rgba(191,140,76,0.08);
    --glass: rgba(255,255,255,0.6);
    --radius: 18px;
    --shadow: 0 16px 40px rgba(35,31,28,0.08);
    --text-white: #231f20;
    --text-gray: #6b6160;
    --text-light: #8a7e78;
    --dark-bg: #fffaf6;
    --dark-card: #ffffff;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(800px 400px at 10% 5%, rgba(191,140,76,0.06), transparent 20%),
        radial-gradient(800px 400px at 95% 25%, rgba(247,212,138,0.05), transparent 18%),
        linear-gradient(180deg, var(--bg1), var(--bg2));
    color: var(--ink);
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 80px;
    background: rgba(255, 250, 246, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(191,140,76,0.08);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    color: #000;
    position: relative;
    background: linear-gradient(135deg, #000, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 1px solid #000;
    border-radius: 4px;
    opacity: 0.3;
}

.brand-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 6px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-end);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
    border-radius: 1px;
}

.nav-cta {
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
    color: #241f18 !important;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600 !important;
    font-size: 14px !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(191,140,76,0.18);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(191,140,76,0.25);
}

/* ============================================
   HERO SECTION — REFACTORED
   Desktop: Preserved exactly as original
   Tablet & Mobile: Rebuilt mobile-first
   ============================================ */

/* ─── BASE / DESKTOP (1024px+) ───
   Everything below this comment is UNCHANGED from your original.
   Colors, fonts, gradients, animations, spacing — all identical. */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(800px 400px at 10% 5%, rgba(191,140,76,0.06), transparent 20%),
        radial-gradient(800px 400px at 95% 25%, rgba(247,212,138,0.05), transparent 18%),
        linear-gradient(180deg, var(--bg1), var(--bg2));
    padding: 0;
}

.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.hero-glow-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(247, 212, 138, 0.15);
    top: -10%;
    right: 20%;
    animation: orbFloat1 15s ease-in-out infinite alternate;
}

.hero-glow-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(191, 140, 76, 0.08);
    bottom: 10%;
    left: 30%;
    animation: orbFloat2 12s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 40px) scale(1.1); }
}

@keyframes orbFloat2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-20px, -30px) scale(1.05); }
}

.hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 80px 100px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-text-col { position: relative; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(191,140,76,0.08);
    border: 1px solid rgba(191,140,76,0.12);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s 0.3s ease forwards;
}

.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #f7d48a, #bf8c4c);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-eyebrow span {
    font-size: 12px;
    font-weight: 600;
    color: #bf8c4c;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-h1 {
    font-size: 41px;
    font-weight: 700;
    line-height: 1.1;
    color: #231f20;
    margin-bottom: 20px;
}

.hero-h1 .line {
    display: block;
    overflow: hidden;
}

.hero-h1 .line-inner {
    display: block;
    transform: translateY(110%);
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-h1 .line:nth-child(1) .line-inner { animation-delay: 0.5s; }
.hero-h1 .line:nth-child(2) .line-inner { animation-delay: 0.7s; }

.hero-h1 .gradient {
    background: linear-gradient(135deg, #bf8c4c 0%, #f7d48a 50%, #bf8c4c 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes slideUp {
    to { transform: translateY(0); }
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #6b6160;
    max-width: 480px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s 0.9s ease forwards;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(191,140,76,0.05);
    border: 1px solid rgba(191,140,76,0.1);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 1s ease forwards;
    flex-wrap: wrap;
    row-gap: 4px;
}

.hero-location i {
    color: #bf8c4c;
    font-size: 13px;
}

.hero-location span {
    font-size: 13px;
    color: #6b6160;
}

.loc-divider {
    width: 1px;
    height: 14px;
    background: rgba(191,140,76,0.15);
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s 1.1s ease forwards;
}

.btn-gold {
    position: relative;
    background: linear-gradient(135deg, #f7d48a, #bf8c4c);
    color: #231f20;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(191,140,76,0.25);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.btn-gold:hover::before { left: 100%; }
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(191,140,76,0.35);
}

.btn-gold i { transition: transform 0.3s; }
.btn-gold:hover i { transform: translateX(4px); }

.btn-outline {
    background: rgba(255,255,255,0.6);
    color: #231f20;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid rgba(191,140,76,0.15);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: rgba(191,140,76,0.4);
    background: rgba(191,140,76,0.06);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(35,31,32,0.06);
}

.btn-outline i { transition: transform 0.3s; }
.btn-outline:hover i { transform: translateX(4px); }

.hero-trust {
    display: flex;
    gap: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 1.3s ease forwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(191,140,76,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bf8c4c;
    font-size: 13px;
    flex-shrink: 0;
}

.trust-item span {
    font-size: 13px;
    color: #6b6160;
    font-weight: 500;
}

.hero-image-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-soft-circle {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247,212,138,0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: circlePulse 6s ease-in-out infinite;
}

@keyframes circlePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.7; }
}

.image-frame {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 32px 64px rgba(35,31,32,0.12),
        0 0 0 1px rgba(191,140,76,0.08),
        inset 0 0 40px rgba(255,255,255,0.3);
    transform: perspective(1000px) rotateY(-4deg);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    animation: floatImage 6s ease-in-out infinite;
}

.image-frame:hover {
    transform: perspective(1000px) rotateY(-1deg) scale(1.02);
}

@keyframes floatImage {
    0%, 100% { transform: perspective(1000px) rotateY(-4deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-4deg) translateY(-10px); }
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.8s;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 65%, rgba(255,250,246,0.5) 100%);
    pointer-events: none;
}

.image-corner {
    position: absolute;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(191,140,76,0.2);
    z-index: 15;
    pointer-events: none;
}

.image-corner-tl {
    top: 16px;
    left: 16px;
    border-right: none;
    border-bottom: none;
    border-radius: 12px 0 0 0;
}

.image-corner-br {
    bottom: 16px;
    right: 16px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 12px 0;
}

.glass-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(191,140,76,0.1);
    border-radius: 20px;
    padding: 22px;
    min-width: 200px;
    box-shadow: 0 16px 40px rgba(35,31,32,0.08), 0 0 0 1px rgba(255,255,255,0.5);
    animation: glassFloat 5s ease-in-out infinite;
    z-index: 20;
}

@keyframes glassFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.glass-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.glass-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f7d48a, #bf8c4c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.glass-name {
    font-size: 14px;
    font-weight: 600;
    color: #231f20;
}

.glass-role {
    font-size: 11px;
    color: #6b6160;
}

.glass-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.glass-rating .stars {
    color: #bf8c4c;
    font-size: 12px;
    letter-spacing: 2px;
}

.glass-rating .score {
    font-size: 14px;
    font-weight: 700;
    color: #231f20;
}

.glass-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(191,140,76,0.15), transparent);
    margin-bottom: 10px;
}

.glass-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.glass-tag {
    font-size: 10px;
    font-weight: 500;
    color: #6b6160;
    background: rgba(191,140,76,0.06);
    border: 1px solid rgba(191,140,76,0.08);
    padding: 4px 10px;
    border-radius: 100px;
}

.stat-badge {
    position: absolute;
    top: 50px;
    right: -20px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(191,140,76,0.1);
    border-radius: 16px;
    padding: 14px 18px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(35,31,32,0.06);
    animation: glassFloat 5s ease-in-out infinite;
    animation-delay: 1.5s;
    z-index: 20;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #bf8c4c, #f7d48a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 10px;
    color: #6b6160;
    margin-top: 2px;
}

/* ─── TABLET ADJUSTMENTS (1023px and below) ───
   Laptop/small desktop: tighter grid, slightly smaller image */

@media (max-width: 1023px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 120px 48px 80px;
    }

    .hero-h1 {
        font-size: 36px;
    }

    .hero-desc {
        font-size: 15px;
        max-width: 100%;
    }

    .image-frame {
        width: 100%;
        max-width: 340px;
        height: 420px;
    }

    .image-soft-circle {
        width: 380px;
        height: 380px;
    }

    .glass-card {
        left: -16px;
        bottom: 20px;
        padding: 18px;
        min-width: 170px;
    }

    .stat-badge {
        right: -10px;
        top: 30px;
        padding: 12px 16px;
    }

    .glass-avatar {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .glass-name {
        font-size: 13px;
    }

    .stat-value {
        font-size: 20px;
    }
}

/* ─── SMALL TABLET (767px and below) ───
   Floating cards HIDDEN. Image moves above text.
   Single column, centered, compact spacing. */

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding: 0;
    }

    .hero-inner {
        display: flex;
        flex-direction: column;
        padding: 100px 24px 60px;
        gap: 32px;
        text-align: center;
    }

    /* Image first, then text */
    .hero-image-col {
        order: -1;
        width: 100%;
        position: relative;
    }

    .hero-text-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* ── Floating cards: COMPLETELY HIDDEN ── */
    .glass-card,
    .stat-badge {
        display: none !important;
    }

    /* ── Image: responsive, never oversized ── */
    .image-soft-circle {
        width: 90vw;
        height: 90vw;
        max-width: 360px;
        max-height: 360px;
    }

    .image-frame {
        width: 70vw;
        height: 88vw;
        max-width: 280px;
        max-height: 350px;
        border-radius: 20px;
        transform: none;
        animation: floatImageMobile 6s ease-in-out infinite;
    }

    .image-frame:hover {
        transform: scale(1.02);
    }

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

    .image-frame img {
        object-position: center top;
    }

    .image-corner {
        width: 28px;
        height: 28px;
    }

    .image-corner-tl {
        top: 12px;
        left: 12px;
        border-radius: 10px 0 0 0;
    }

    .image-corner-br {
        bottom: 12px;
        right: 12px;
        border-radius: 0 0 10px 0;
    }

    /* ── Typography: clamp-based scaling ── */
    .hero-h1 {
        font-size: clamp(26px, 7vw, 36px);
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .hero-desc {
        font-size: clamp(14px, 3.8vw, 16px);
        line-height: 1.7;
        max-width: 100%;
        margin-bottom: 20px;
    }

    /* ── Eyebrow: smaller, centered ── */
    .hero-eyebrow {
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .hero-eyebrow span {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .hero-eyebrow-dot {
        width: 7px;
        height: 7px;
    }

    /* ── Location chips: wrap cleanly ── */
    .hero-location {
        justify-content: center;
        padding: 6px 14px;
        margin-bottom: 20px;
        gap: 6px;
        row-gap: 2px;
    }

    .hero-location span {
        font-size: 12px;
    }

    .hero-location i {
        font-size: 11px;
    }

    .loc-divider {
        height: 12px;
    }

    /* ── Buttons: full-width, equal, touch-friendly ── */
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 360px;
        margin-bottom: 28px;
    }

    .btn-gold,
    .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        min-height: 52px;
        font-size: 15px;
        border-radius: 12px;
    }

    /* ── Trust badges: 3-col grid, compact ── */
    .hero-trust {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
        max-width: 320px;
        justify-items: center;
    }

    .trust-item {
        gap: 10px;
        padding: 8px 12px;
        background: rgba(191,140,76,0.04);
        border-radius: 10px;
        width: 100%;
        justify-content: center;
    }

    .trust-item i {
        width: 28px;
        height: 28px;
        font-size: 12px;
        border-radius: 8px;
    }

    .trust-item span {
        font-size: 12px;
    }
}

/* ─── MOBILE SMALL (479px and below) ───
   Tighter spacing, smaller image, refined proportions. */

@media (max-width: 479px) {
    .hero-inner {
        padding: 90px 20px 48px;
        gap: 28px;
    }

    .image-frame {
        max-width: 240px;
        max-height: 300px;
        border-radius: 16px;
    }

    .image-soft-circle {
        max-width: 300px;
        max-height: 300px;
    }

    .hero-h1 {
        font-size: clamp(24px, 8vw, 28px);
        margin-bottom: 14px;
    }

    .hero-desc {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 18px;
    }

    .hero-eyebrow {
        padding: 5px 12px;
        margin-bottom: 14px;
    }

    .hero-eyebrow span {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .hero-location {
        padding: 6px 12px;
        margin-bottom: 18px;
    }

    .hero-location span {
        font-size: 11px;
    }

    .hero-buttons {
        gap: 10px;
        margin-bottom: 24px;
    }

    .btn-gold,
    .btn-outline {
        padding: 14px 20px;
        min-height: 48px;
        font-size: 14px;
    }

    .hero-trust {
        gap: 8px;
    }

    .trust-item {
        padding: 6px 10px;
    }

    .trust-item i {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .trust-item span {
        font-size: 11px;
    }
}

/* ─── TINY MOBILE (379px and below) ─── */

@media (max-width: 379px) {
    .hero-inner {
        padding: 84px 16px 40px;
        gap: 24px;
    }

    .image-frame {
        max-width: 200px;
        max-height: 260px;
    }

    .image-soft-circle {
        max-width: 260px;
        max-height: 260px;
    }

    .hero-h1 {
        font-size: 24px;
    }

    .hero-desc {
        font-size: 13.5px;
    }

    .hero-location span {
        font-size: 10.5px;
    }

    .btn-gold,
    .btn-outline {
        min-height: 46px;
        font-size: 13px;
    }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 0 80px;
    position: relative;
    background: linear-gradient(180deg, var(--bg1), var(--bg2));
    margin-bottom: 102px;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(191,140,76,0.2));
}

.pr-header {
    text-align: center;
    margin-bottom: 48px;
}

.pr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(191,140,76,0.08);
    border: 1px solid rgba(191,140,76,0.12);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.pr-eyebrow-dot {
    width: 7px;
    height: 7px;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    border-radius: 50%;
}

.pr-eyebrow span {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-end);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.pr-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 16px;
}

.pr-title span {
    background: linear-gradient(135deg, var(--gold-end), var(--gold-start));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pr-subtitle {
    font-size: 16px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.pr-single-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.pr-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(251,248,243,0.95));
    border-radius: 24px;
    padding: 44px 48px;
    border: 2px solid rgba(191,140,76,0.15);
    box-shadow: 0 20px 60px rgba(35,31,28,0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(191,140,76,0.12);
}

.pr-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
}

.pr-price-area {
    text-align: center;
    margin-bottom: 28px;
}

.pr-plan-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
}

.pr-plan-desc {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 20px;
}

.pr-price {
    font-size: 56px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 8px;
}

.pr-price span {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--muted);
}

.pr-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--muted);
    background: rgba(191,140,76,0.06);
    border: 1px solid rgba(191,140,76,0.1);
    padding: 8px 18px;
    border-radius: 100px;
}

.pr-duration i {
    color: var(--gold-end);
    font-size: 12px;
}

.pr-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(191,140,76,0.15), transparent);
    margin: 28px 0;
}

.pr-features-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 20px;
}

.pr-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.pr-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(191,140,76,0.04);
    border: 1px solid rgba(191,140,76,0.06);
    border-radius: 14px;
    transition: all 0.3s;
}

.pr-feature-item:hover {
    background: rgba(191,140,76,0.07);
    border-color: rgba(191,140,76,0.1);
    transform: translateX(3px);
}

.pr-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(247,212,138,0.2), rgba(191,140,76,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-end);
    font-size: 15px;
    flex-shrink: 0;
    border: 1.5px solid rgba(191,140,76,0.12);
}

.pr-feature-text h5 {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 3px;
}

.pr-feature-text p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

.pr-cta-wrap {
    text-align: center;
    margin-bottom: 24px;
}

.pr-btn {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: #241f18;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(191,140,76,0.25);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.pr-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.pr-btn:hover::before { left: 100%; }
.pr-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(191,140,76,0.35);
}

.pr-btn i { transition: transform 0.3s; }
.pr-btn:hover i { transform: translateX(4px); }

.pr-cta-note {
    margin-top: 14px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.pr-bottom-info {
    padding-top: 24px;
    border-top: 1px dashed rgba(191,140,76,0.15);
}

.pr-bottom-info p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 14px;
}

.pr-bottom-info p strong {
    color: var(--gold-end);
    font-weight: 600;
}

.pr-safety-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.pr-safety-row span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--muted);
}

.pr-safety-row span i {
    color: var(--gold-end);
    font-size: 11px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 0 80px;
    position: relative;
    z-index: 20;
    margin-top: -60px;
    background: linear-gradient(180deg, var(--bg1), var(--bg2));
}

.about-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(251,248,243,0.95));
    border-radius: 24px;
    padding: 40px 50px;
    display: flex;
    gap: 40px;
    align-items: stretch;
    box-shadow: 0 20px 60px rgba(35,31,28,0.08);
    border: 1px solid rgba(191,140,76,0.06);
}

.about-image-wrap {
    flex-shrink: 0;
    width: 340px;
    min-height: 600px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 16px 48px rgba(35,31,28,0.1);
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrap:hover img {
    transform: scale(1.04);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(35,31,32,0.35) 100%);
    pointer-events: none;
}

.about-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(191,140,76,0.1);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-badge-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.about-badge-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px;
}

.about-badge-info p {
    font-size: 12px;
    color: var(--muted);
}

.about-badge-rating {
    margin-left: auto;
    text-align: center;
}

.about-badge-rating .stars {
    color: var(--gold-end);
    font-size: 11px;
    letter-spacing: 1px;
}

.about-badge-rating .score {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-end);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
}

.about-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
    border-radius: 1px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 20px;
}

.about-title span {
    background: linear-gradient(135deg, var(--gold-end), var(--gold-start));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
    border-radius: 2px;
    margin-bottom: 20px;
    position: relative;
}

.about-divider::after {
    content: '→';
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-end);
    font-size: 12px;
}

.about-text {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 14px;
}

.about-text strong {
    color: var(--ink);
    font-weight: 600;
}

.about-quote {
    background: linear-gradient(135deg, rgba(247,212,138,0.08), rgba(191,140,76,0.04));
    border-left: 3px solid var(--gold-end);
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    margin: 20px 0 24px;
    position: relative;
}

.about-quote::before {
    content: '"';
    position: absolute;
    top: -4px;
    left: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--gold-start);
    line-height: 1;
    opacity: 0.4;
}

.about-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--ink);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.about-btn {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: #241f18;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: fit-content;
    box-shadow: 0 8px 24px rgba(191,140,76,0.2);
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
}

.about-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.about-btn:hover::before { left: 100%; }
.about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(191,140,76,0.3);
}

.about-btn i { transition: transform 0.3s; }
.about-btn:hover i { transform: translateX(4px); }

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 32px;
    border-left: 1px solid rgba(191,140,76,0.1);
    min-width: 260px;
    justify-content: center;
    align-content: center;
}

.feature-item {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(191,140,76,0.08);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(191,140,76,0.1);
    border-color: rgba(191,140,76,0.15);
    background: rgba(255,255,255,0.9);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(-3deg);
}

.feature-icon.gold {
    background: linear-gradient(135deg, rgba(247,212,138,0.2), rgba(191,140,76,0.1));
    color: #a67c52;
    border: 1.5px solid rgba(191,140,76,0.15);
}

.feature-icon.teal {
    background: linear-gradient(135deg, rgba(191,140,76,0.08), rgba(247,212,138,0.12));
    color: #a67c52;
    border: 1.5px solid rgba(191,140,76,0.12);
}

.feature-icon.purple {
    background: linear-gradient(135deg, rgba(247,212,138,0.15), rgba(191,140,76,0.08));
    color: #a67c52;
    border: 1.5px solid rgba(191,140,76,0.12);
}

.feature-icon.orange {
    background: linear-gradient(135deg, rgba(191,140,76,0.1), rgba(247,212,138,0.15));
    color: #a67c52;
    border: 1.5px solid rgba(191,140,76,0.12);
}

.feature-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.feature-text p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 80px 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg1), var(--bg2));
    position: relative;
}

.cl-header {
    text-align: center;
    margin-bottom: 48px;
}

.cl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(191,140,76,0.08);
    border: 1px solid rgba(191,140,76,0.12);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.cl-eyebrow-dot {
    width: 7px;
    height: 7px;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    border-radius: 50%;
}

.cl-eyebrow span {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-end);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.cl-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 16px;
}

.cl-title span {
    background: linear-gradient(135deg, var(--gold-end), var(--gold-start));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cl-subtitle {
    font-size: 16px;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.cl-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.cl-tab {
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(191,140,76,0.1);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cl-tab:hover {
    background: rgba(191,140,76,0.06);
    border-color: rgba(191,140,76,0.2);
}

.cl-tab.active {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: #241f18;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(191,140,76,0.2);
}

.cl-tab i {
    font-size: 12px;
}

.cl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cl-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 12px 28px rgba(35, 31, 32, 0.06);
    position: relative;
    overflow: hidden;
    min-height: 220px;
    text-align: left;
}

.cl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(191,140,76,0.1);
    border-color: rgba(191,140,76,0.15);
    background: rgba(255,255,255,0.9);
}

.cl-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
    opacity: 0;
    transition: opacity 0.3s;
}

.cl-card:hover::after {
    opacity: 1;
}

.cl-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(247,212,138,0.2), rgba(191,140,76,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-end);
    font-size: 18px;
    border: 1.5px solid rgba(191,140,76,0.15);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.cl-card:hover .cl-card-icon {
    transform: scale(1.1) rotate(-4deg);
}

.cl-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.2px;
}

.cl-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
}

.cl-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold-end);
    background: rgba(191,140,76,0.06);
    border: 1px solid rgba(191,140,76,0.1);
    padding: 5px 12px;
    border-radius: 100px;
    width: fit-content;
    margin-top: auto;
}

.cl-card-tag i {
    font-size: 8px;
}

.cl-bottom {
    text-align: center;
    margin-top: 48px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(247,212,138,0.06), rgba(191,140,76,0.03));
    border: 1px solid rgba(191,140,76,0.08);
    border-radius: 16px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.cl-bottom p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--ink);
    line-height: 1.6;
}

.cl-bottom p span {
    color: var(--gold-end);
    font-weight: 600;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
    padding: 0 80px;
    position: relative;
    background: linear-gradient(180deg, var(--bg1), var(--bg2));
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(191,140,76,0.2));
}

.wc-header {
    text-align: center;
    margin-bottom: 56px;
}

.wc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(191,140,76,0.08);
    border: 1px solid rgba(191,140,76,0.12);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.wc-eyebrow-dot {
    width: 7px;
    height: 7px;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    border-radius: 50%;
}

.wc-eyebrow span {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-end);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.wc-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 16px;
}

.wc-title span {
    background: linear-gradient(135deg, var(--gold-end), var(--gold-start));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wc-subtitle {
    font-size: 16px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.wc-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 32px;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
}

.wc-left {
    position: sticky;
    top: 100px;
}

.wc-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(191,140,76,0.08);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(35,31,28,0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wc-card:hover {
    box-shadow: 0 12px 40px rgba(35,31,28,0.08);
    border-color: rgba(191,140,76,0.12);
}

.wc-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.wc-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(247,212,138,0.2), rgba(191,140,76,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-end);
    font-size: 18px;
    border: 1.5px solid rgba(191,140,76,0.15);
}

.wc-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
}

.wc-scene-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wc-scene-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(191,140,76,0.03);
    border: 1px solid rgba(191,140,76,0.04);
    transition: all 0.3s;
}

.wc-scene-list li:hover {
    background: rgba(191,140,76,0.06);
    border-color: rgba(191,140,76,0.1);
    transform: translateX(4px);
}

.wc-scene-list li i {
    color: var(--gold-end);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.wc-quote {
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(247,212,138,0.08), rgba(191,140,76,0.04));
    border-left: 3px solid var(--gold-end);
    border-radius: 0 12px 12px 0;
    position: relative;
}

.wc-quote::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: var(--gold-start);
    opacity: 0.35;
    line-height: 1;
    position: absolute;
    top: -2px;
    left: 10px;
}

.wc-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-style: italic;
    color: var(--ink);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.wc-center {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.wc-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(35,31,28,0.1);
}

.wc-image-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.wc-image-wrap:hover img {
    transform: scale(1.04);
}

.wc-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(35,31,32,0.45) 100%);
}

.wc-image-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    color: #fff;
}

.wc-image-caption h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.wc-image-caption p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.wc-who-card {
    background: linear-gradient(145deg, #2a2520, #3d3428);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(191,140,76,0.1);
    box-shadow: 0 12px 40px rgba(35,31,28,0.12);
}

.wc-who-card .wc-card-header {
    margin-bottom: 20px;
}

.wc-who-card .wc-card-icon {
    background: linear-gradient(135deg, rgba(247,212,138,0.2), rgba(191,140,76,0.15));
    color: var(--gold-start);
    border-color: rgba(247,212,138,0.2);
}

.wc-who-card h3 {
    color: #fff;
}

.wc-who-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wc-who-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s;
}

.wc-who-list li:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(247,212,138,0.1);
    transform: translateX(4px);
}

.wc-who-list li i {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #241f18;
    font-size: 10px;
    flex-shrink: 0;
}

.wc-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wc-benefit-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(191,140,76,0.08);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(35,31,28,0.03);
}

.wc-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(191,140,76,0.1);
    border-color: rgba(191,140,76,0.15);
    background: rgba(255,255,255,0.9);
}

.wc-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.wc-benefit-card:hover .wc-benefit-icon {
    transform: scale(1.1) rotate(-4deg);
}

.wc-benefit-icon.gold {
    background: linear-gradient(135deg, rgba(247,212,138,0.2), rgba(191,140,76,0.1));
    color: var(--gold-end);
    border: 1.5px solid rgba(191,140,76,0.15);
}

.wc-benefit-icon.teal {
    background: linear-gradient(135deg, rgba(191,140,76,0.08), rgba(247,212,138,0.12));
    color: var(--gold-end);
    border: 1.5px solid rgba(191,140,76,0.12);
}

.wc-benefit-icon.purple {
    background: linear-gradient(135deg, rgba(247,212,138,0.15), rgba(191,140,76,0.08));
    color: var(--gold-end);
    border: 1.5px solid rgba(191,140,76,0.12);
}

.wc-benefit-icon.orange {
    background: linear-gradient(135deg, rgba(191,140,76,0.1), rgba(247,212,138,0.15));
    color: var(--gold-end);
    border: 1.5px solid rgba(191,140,76,0.12);
}

.wc-benefit-body h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.wc-benefit-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.wc-cta-row {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.wc-cta {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: #241f18;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(191,140,76,0.25);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.wc-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.wc-cta:hover::before { left: 100%; }
.wc-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(191,140,76,0.35);
}

.wc-cta i { transition: transform 0.3s; }
.wc-cta:hover i { transform: translateX(4px); }

/* ===== FEELINGS SECTION (GRID) ===== */
.feelings-section {
    padding: 0 80px;
    position: relative;
    background: linear-gradient(180deg, var(--bg1), var(--bg2));
    margin-bottom: 40px;
}

.feelings-header {
    text-align: center;
    margin-bottom: 48px;
}

.feelings-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(191,140,76,0.08);
    border: 1px solid rgba(191,140,76,0.12);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.feelings-dot {
    width: 7px;
    height: 7px;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    border-radius: 50%;
}

.feelings-eyebrow span {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-end);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.feelings-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 16px;
}

.feelings-title span {
    background: linear-gradient(135deg, var(--gold-end), var(--gold-start));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feelings-subtitle {
    font-size: 16px;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.feelings-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.feel-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid rgba(191,140,76,0.08);
    box-shadow: 0 4px 20px rgba(35,31,28,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: 140px;
    justify-content: center;
}

.feel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(191,140,76,0.12);
    border-color: rgba(191,140,76,0.15);
    background: rgba(255, 255, 255, 0.95);
}

.feel-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(247,212,138,0.2), rgba(191,140,76,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-end);
    font-size: 20px;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(191,140,76,0.15);
}

.feel-card:hover .feel-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: #241f18;
    border-color: transparent;
}

.feel-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.feel-card:hover .feel-text {
    color: var(--ink);
}

/* ===== FEELINGS SECTION (PILLS) ===== */
.feelings-pills {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.feel-pill {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(191,140,76,0.08);
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.4;
    transition: all 0.25s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-height: 90px;
    justify-content: center;
}

.feel-pill:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(191,140,76,0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(191,140,76,0.08);
    color: var(--ink);
}

.feel-pill i {
    font-size: 18px;
    color: var(--gold-end);
    transition: transform 0.25s ease;
}

.feel-pill:hover i {
    transform: scale(1.15);
}

/* ===== TRUST & SAFETY SECTION ===== */
.trust-safety-section {
    padding: 0 80px;
    position: relative;
    background: linear-gradient(180deg, var(--bg1), var(--bg2));
    margin-bottom: 40px;
}

.trust-safety-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(191,140,76,0.2));
}

.ts-header {
    text-align: center;
    margin-bottom: 60px;
}

.ts-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(191,140,76,0.08);
    border: 1px solid rgba(191,140,76,0.12);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.ts-eyebrow-dot {
    width: 7px;
    height: 7px;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    border-radius: 50%;
}

.ts-eyebrow span {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-end);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.ts-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 16px;
}

.ts-title span {
    background: linear-gradient(135deg, var(--gold-end), var(--gold-start));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ts-subtitle {
    font-size: 16px;
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.ts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.ts-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ts-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(191,140,76,0.08);
    border-radius: 20px;
    padding: 28px;
    display: flex;
     gap: 18px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(35,31,28,0.03);
}

.ts-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(191,140,76,0.1);
    border-color: rgba(191,140,76,0.15);
    background: rgba(255,255,255,0.9);
}

.ts-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.ts-card:hover .ts-card-icon {
    transform: scale(1.1) rotate(-3deg);
}

.ts-card-icon.gold {
    background: linear-gradient(135deg, rgba(247,212,138,0.2), rgba(191,140,76,0.1));
    color: var(--gold-end);
    border: 1.5px solid rgba(191,140,76,0.15);
}

.ts-card-icon.teal {
    background: linear-gradient(135deg, rgba(191,140,76,0.08), rgba(247,212,138,0.12));
    color: var(--gold-end);
    border: 1.5px solid rgba(191,140,76,0.12);
}

.ts-card-icon.purple {
    background: linear-gradient(135deg, rgba(247,212,138,0.15), rgba(191,140,76,0.08));
    color: var(--gold-end);
    border: 1.5px solid rgba(191,140,76,0.12);
}

.ts-card-icon.orange {
    background: linear-gradient(135deg, rgba(191,140,76,0.1), rgba(247,212,138,0.15));
    color: var(--gold-end);
    border: 1.5px solid rgba(191,140,76,0.12);
}

.ts-card-body h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.ts-card-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.ts-card-tag {
    display: inline-block;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold-end);
    background: rgba(191,140,76,0.06);
    border: 1px solid rgba(191,140,76,0.1);
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.ts-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ts-dark-card {
    background: linear-gradient(145deg, #2a2520, #3d3428);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid rgba(191,140,76,0.1);
    box-shadow: 0 8px 24px rgba(35,31,28,0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ts-dark-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(35,31,28,0.15);
    border-color: rgba(247,212,138,0.15);
}

.ts-dark-card .ts-card-icon {
    background: linear-gradient(135deg, rgba(247,212,138,0.2), rgba(191,140,76,0.15));
    color: var(--gold-start);
    border-color: rgba(247,212,138,0.2);
}

.ts-dark-card .ts-card-body h4 {
    color: #fff;
}

.ts-dark-card .ts-card-body p {
    color: rgba(255,255,255,0.7);
}

.ts-dark-card .ts-card-tag {
    background: rgba(247,212,138,0.1);
    border-color: rgba(247,212,138,0.15);
    color: var(--gold-start);
}

.ts-trust-banner {
    background: linear-gradient(135deg, #c4a06e 0%, #bf8c4c 40%, #c17f5a 100%);
    border-radius: 20px;
    padding: 36px 32px;
    text-align: center;
    color: #fff;
    box-shadow: 0 12px 32px rgba(191,140,76,0.2);
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}

.ts-trust-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.ts-trust-banner i {
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
    color: #fff;
    position: relative;
    z-index: 1;
}

.ts-trust-banner h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.ts-trust-banner p {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

.ts-bottom-statement {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(247,212,138,0.06), rgba(191,140,76,0.03));
    border: 1px solid rgba(191,140,76,0.08);
    border-radius: 16px;
}

.ts-bottom-statement p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--ink);
    line-height: 1.6;
}

.ts-bottom-statement p span {
    color: var(--gold-end);
    font-weight: 600;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 0 80px 50px;
    background: linear-gradient(180deg, var(--bg1), var(--bg2));
}

.hiw-container {
    background: linear-gradient(145deg, #3d3428, #5c4d3a, #7a6548);
    border-radius: 24px;
    padding: 50px 70px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(35,31,28,0.15);
}

.hiw-header {
    text-align: center;
    margin-bottom: 48px;
}

.hiw-header h2 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
}

.hiw-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
    margin: 0 auto;
    position: relative;
}

.hiw-divider::after {
    content: '→';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-start);
    font-size: 10px;
}

.hiw-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.hiw-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-connector {
    position: absolute;
    top: 28px;
    left: 50%;
    width: calc(100% + 30px);
    height: 2px;
    border-top: 2px dotted rgba(247,212,138,0.3);
    z-index: 0;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.step-icon.teal, .step-icon.gold, .step-icon.blue, .step-icon.pink {
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
    color: #241f18;
}

.step-number {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    max-width: 180px;
    margin: 0 auto;
}

/* ===== HOW IT WORKS MOBILE FIX ===== */
@media (max-width: 768px) {
    .how-it-works { 
        padding: 0 24px 40px; 
    }
    .hiw-container { 
        padding: 36px 20px; 
    }
    .hiw-steps { 
        flex-direction: column; 
        gap: 32px; 
        align-items: center;
    }
    .step-connector { 
        display: none; 
    }
    .hiw-step {
        width: 100%;
        max-width: 280px;
        padding: 0;
        align-items: center;
        text-align: center;
    }
    .step-icon {
        margin: 0 auto 16px;
    }
    .step-number {
        text-align: center;
        width: 100%;
    }
    .step-desc {
        text-align: center;
        margin: 0 auto;
    }
}
/* ===== SAFETY SECTION ===== */
.safety-section {
    padding: 0 80px 40px;
    background: linear-gradient(180deg, var(--bg1), var(--bg2));
}

.safety-card {
    background: linear-gradient(145deg, #2a2520, #3d3428);
    border-radius: 20px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    border: 1px solid rgba(191,140,76,0.08);
    box-shadow: 0 20px 60px rgba(35,31,28,0.1);
}

.safety-shield {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    position: relative;
    filter: drop-shadow(0 0 30px rgba(191, 140, 76, 0.4));
}

.safety-shield svg {
    width: 100%;
    height: 100%;
}

.safety-content {
    flex: 1;
}

.safety-content h3 {
    color: var(--gold-start);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.safety-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.safety-content p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.safety-divider {
    width: 1px;
    height: 120px;
    background: rgba(191,140,76,0.15);
}

.safety-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 300px;
}

.safety-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.safety-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #241f18;
    font-size: 10px;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(191,140,76,0.3);
}

.safety-feature span {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 0 80px 40px;
    background: linear-gradient(180deg, var(--bg1), var(--bg2));
}

.cta-card {
    background: linear-gradient(135deg, #2a2520 0%, #3d3428 30%, #bf8c4c 70%, #f7d48a 100%);
    border-radius: 16px;
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(35,31,28,0.12);
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1;
}

.cta-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════════ */
/* DUAL SECTION AVATAR — RESPONSIVE SIZING    */
/* ═══════════════════════════════════════════ */

/* Desktop: 56×56 square */
@media (min-width: 769px) {
    .cta-avatar {
        width: 56px;
        height: 56px;
    }
}

/* Mobile: 55×35 flatter */
@media (max-width: 768px) {
    .cta-avatar {
        width: 55px;
        height: 35px;
    }
}

.cta-text h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.cta-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.cta-btn {
    background: #fffaf6;
    color: var(--ink);
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(35,31,28,0.1);
}

.cta-btn:hover {
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(35,31,28,0.15);
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 80px 80px 60px;
    position: relative;
    background: linear-gradient(180deg, var(--bg1), var(--bg2));
    margin-bottom: 40px;
}

.blog-header {
    text-align: center;
    margin-bottom: 48px;
}

.blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(191,140,76,0.08);
    border: 1px solid rgba(191,140,76,0.12);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.blog-dot {
    width: 7px;
    height: 7px;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    border-radius: 50%;
}

.blog-eyebrow span {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-end);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 16px;
}

.blog-title span {
    background: linear-gradient(135deg, var(--gold-end), var(--gold-start));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-subtitle {
    font-size: 16px;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(191,140,76,0.08);
    box-shadow: 0 4px 20px rgba(35,31,28,0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(191,140,76,0.12);
    border-color: rgba(191,140,76,0.15);
    background: rgba(255, 255, 255, 0.95);
}

.blog-image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-image-wrap img {
    transform: scale(1.08);
}

.blog-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(35,31,32,0.5) 100%);
    pointer-events: none;
}

.blog-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold-end);
    border: 1px solid rgba(191,140,76,0.1);
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 12px;
    color: var(--muted);
}

.blog-meta i {
    margin-right: 4px;
    color: var(--gold-end);
}

.blog-meta-divider {
    color: rgba(191,140,76,0.3);
}

.blog-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.blog-card:hover .blog-content h3 {
    color: var(--gold-end);
}

.blog-content p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-end);
    text-decoration: none;
    transition: all 0.3s;
}

.blog-read-more i {
    font-size: 11px;
    transition: transform 0.3s;
}

.blog-read-more:hover {
    gap: 12px;
    color: var(--ink);
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

.blog-cta-wrap {
    text-align: center;
}

.blog-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    color: var(--ink);
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid rgba(191,140,76,0.15);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-cta:hover {
    border-color: rgba(191,140,76,0.4);
    background: rgba(191,140,76,0.06);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(35,31,32,0.06);
}

.blog-cta i {
    color: var(--gold-end);
    font-size: 12px;
    transition: transform 0.3s;
}

.blog-cta:hover i {
    transform: translateX(4px);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 0 80px;
    position: relative;
    background: linear-gradient(180deg, var(--bg1), var(--bg2));
    margin-bottom: 40px;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(191,140,76,0.08);
    border: 1px solid rgba(191,140,76,0.12);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.faq-dot {
    width: 7px;
    height: 7px;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    border-radius: 50%;
}

.faq-eyebrow span {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-end);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 16px;
}

.faq-title span {
    background: linear-gradient(135deg, var(--gold-end), var(--gold-start));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-size: 16px;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(191,140,76,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(35,31,28,0.05);
}

.faq-item:hover {
    border-color: rgba(191,140,76,0.15);
    box-shadow: 0 8px 24px rgba(191,140,76,0.08);
}

.faq-item[open] {
    border-color: rgba(191,140,76,0.2);
    box-shadow: 0 12px 32px rgba(191,140,76,0.1);
}

.faq-item summary {
    padding: 22px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: var(--gold-end);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(191,140,76,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: #241f18;
    transform: rotate(0deg);
}

.faq-item summary:hover {
    color: var(--gold-end);
}

.faq-item summary:hover::after {
    background: rgba(191,140,76,0.15);
}

.faq-item[open] summary {
    color: var(--gold-end);
    border-bottom: 1px solid rgba(191,140,76,0.08);
}

.faq-item p {
    padding: 20px 28px 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

.faq-item p:last-child {
    padding-bottom: 24px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 50px 80px 24px;
    background: #fffaf6;
    border-top: 1px solid rgba(191,140,76,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-brand .brand-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(191,140,76,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none !important;
}

.social-icon:hover {
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
    color: #241f18;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col h4.gold, .footer-col h4.teal, .footer-col h4.purple, .footer-col h4.orange {
    color: var(--gold-end);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #000;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

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

.footer-col .contact-link {
    color: var(--gold-end);
}

.footer-book p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-book-btn {
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
    color: #241f18;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 8px 22px rgba(191,140,76,0.18);
}

.footer-book-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(191,140,76,0.25);
}

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

.footer-bottom p {
    font-size: 12px;
    color: var(--muted);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.whatsapp-number {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: #241f18;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(191,140,76,0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    animation: numberFloat 3s ease-in-out infinite;
}

.whatsapp-number i {
    font-size: 16px;
}

.whatsapp-float:hover .whatsapp-number {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(191,140,76,0.35);
}

@keyframes numberFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.whatsapp-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon i {
    margin-top: 2px;
}

.whatsapp-pulse {
    position: absolute;
    bottom: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-inner { grid-template-columns: 1fr; gap: 50px; padding: 120px 40px 80px; text-align: center; }
    .hero-h1 { font-size: 44px; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-location { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-image-col { order: -1; }
    .image-frame { width: 300px; height: 380px; border-radius: 20px; }
    .glass-card { left: 10px; bottom: 20px; min-width: 170px; padding: 18px; }
    .stat-badge { right: 10px; top: 30px; padding: 12px 16px; }
    .image-soft-circle { width: 360px; height: 360px; }
    
    .about-card { flex-wrap: wrap; padding: 32px; gap: 32px; }
    .about-image-wrap { width: 100%; min-height: 400px; max-height: 500px; }
    .about-features { border-left: none; padding-left: 0; grid-template-columns: repeat(2, 1fr); min-width: auto; width: 100%; }
    
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .cl-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    
    .wc-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .wc-center { order: -1; grid-column: 1 / -1; }
    .wc-image-wrap img { height: 280px; }
    .wc-left { position: relative; top: 0; }
    
    .feelings-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .feelings-title { font-size: 34px; }
    .feel-card { padding: 18px 14px; min-height: 130px; }
    .feel-icon { width: 44px; height: 44px; font-size: 18px; }
    
    .feelings-pills { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    
    .ts-grid { grid-template-columns: 1fr; gap: 24px; }
    .ts-title { font-size: 36px; }
    
    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .blog-title { font-size: 34px; }
    
    .faq-title { font-size: 34px; }
}

@media (max-width: 1100px) {
    .services-section { padding: 60px 40px; }
    .cl-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .cl-title { font-size: 34px; }
    
    .feelings-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .feelings-title { font-size: 34px; }
    .feel-card { padding: 18px 14px; min-height: 130px; }
    .feel-icon { width: 44px; height: 44px; font-size: 18px; }
    
    .why-choose-section { padding: 0 40px; }
}

@media (max-width: 768px) {
    .navbar { padding: 14px 16px; background: rgba(255,250,246,0.95); gap: 8px; }
    .nav-brand { gap: 8px; }
    .brand-text { font-size: 14px; }
    .nav-cta { padding: 10px 14px; font-size: 12px !important; gap: 6px; white-space: nowrap; }
    .nav-links { display: none; }
    .logo-icon { width: 32px; height: 32px; font-size: 13px; }
    
    .hero { padding: 100px 24px 60px; flex-direction: column; }
    .hero-image { position: relative; width: 100%; height: 400px; margin-top: 40px; }
    .hero-inner { padding: 100px 24px 60px; gap: 36px; }
    .hero-h1 { font-size: 32px; }
    .hero-desc { font-size: 15px; max-width: 100%; }
    .hero-buttons { flex-direction: column; gap: 12px; }
    .btn-gold, .btn-outline { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; gap: 12px; align-items: center; }
    .image-frame { width: 240px; height: 320px; border-radius: 16px; transform: none; animation: floatImageMobile 6s ease-in-out infinite; }
    .image-frame:hover { transform: scale(1.02); }
    .image-soft-circle { width: 280px; height: 280px; }
    .glass-card { left: 0; bottom: 10px; min-width: 150px; padding: 14px; border-radius: 14px; }
    .glass-avatar { width: 30px; height: 30px; font-size: 12px; }
    .glass-name { font-size: 12px; }
    .stat-badge { right: 0; top: 10px; padding: 10px 14px; border-radius: 12px; }
    .stat-value { font-size: 18px; }
    .image-corner { width: 24px; height: 24px; }
    
    @keyframes floatImageMobile {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }
    
    .pricing-section { padding: 0 24px; }
    .pr-header { margin-bottom: 36px; }
    .pr-title { font-size: 28px; }
    .pr-subtitle { font-size: 15px; }
    .pr-card { padding: 32px 24px; border-radius: 20px; }
    .pr-price { font-size: 44px; }
    .pr-price span { font-size: 16px; }
    .pr-features-grid { grid-template-columns: 1fr; gap: 10px; }
    .pr-feature-item { padding: 12px 14px; }
    .pr-btn { width: 100%; justify-content: center; padding: 14px 24px; }
    .pr-safety-row { gap: 12px; flex-direction: column; }
    
    .about-section { padding: 0 24px; margin-top: -30px; }
    .about-card { flex-direction: column; padding: 24px; gap: 28px; border-radius: 20px; }
    .about-image-wrap { width: 100%; min-height: 380px; max-height: 600px; border-radius: 16px; }
    .about-image-badge { bottom: 16px; left: 16px; right: 16px; padding: 12px 16px; border-radius: 12px; }
    .about-badge-avatar { width: 36px; height: 36px; font-size: 14px; }
    .about-title { font-size: 28px; }
    .about-text { font-size: 14px; }
    .about-quote { padding: 14px 16px; margin: 16px 0 20px; }
    .about-quote p { font-size: 15px; }
    .about-features { grid-template-columns: 1fr; gap: 12px; }
    .feature-item { padding: 16px; }
    .about-btn { width: 100%; justify-content: center; }
    
    .services-section { padding: 60px 24px; }
    .cl-header { margin-bottom: 36px; }
    .cl-title { font-size: 28px; }
    .cl-subtitle { font-size: 15px; }
    .cl-tabs { gap: 8px; }
    .cl-tab { padding: 8px 16px; font-size: 12px; }
    .cl-grid { grid-template-columns: 1fr; gap: 14px; }
    .cl-card { padding: 24px 20px; min-height: auto; flex-direction: row; align-items: flex-start; gap: 16px; }
    .cl-card-icon { width: 40px; height: 40px; font-size: 16px; }
    .cl-card-content { flex: 1; }
    .cl-card h4 { margin-bottom: 4px; }
    .cl-bottom { padding: 20px 24px; margin-top: 36px; }
    .cl-bottom p { font-size: 16px; }
    
    .how-it-works { padding: 0 24px 40px; }
    .hiw-container { padding: 36px 28px; }
    .hiw-steps { flex-direction: column; gap: 32px; }
    .step-connector { display: none; }
    
    .safety-section { padding: 0 24px 40px; }
    .safety-card { flex-direction: column; text-align: center; gap: 28px; padding: 32px 24px; }
    .safety-divider { display: none; }
    .safety-features { min-width: auto; }
    
    .cta-banner { padding: 0 24px 40px; }
    .cta-card { flex-direction: column; text-align: center; gap: 20px; padding: 24px; }
    
    .why-choose-section { padding: 0 24px; }
    .wc-header { margin-bottom: 40px; }
    .wc-title { font-size: 30px; }
    .wc-subtitle { font-size: 15px; }
    .wc-grid { grid-template-columns: 1fr; gap: 20px; }
    .wc-center { order: 0; grid-column: auto; }
    .wc-image-wrap img { height: 240px; }
    .wc-card, .wc-who-card, .wc-benefit-card { padding: 24px; }
    .wc-cta-row { margin-top: 12px; }
    .wc-cta { width: 100%; justify-content: center; padding: 14px 24px; }
    
    .feelings-section { padding: 0 24px; }
    .feelings-header { margin-bottom: 36px; }
    .feelings-title { font-size: 28px; }
    .feelings-subtitle { font-size: 15px; }
    .feelings-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .feel-card { padding: 16px 12px; min-height: 120px; border-radius: 14px; }
    .feel-icon { width: 40px; height: 40px; font-size: 16px; }
    .feel-text { font-size: 12px; line-height: 1.35; }
    
    .feelings-pills { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .feel-pill { padding: 12px 10px; min-height: 80px; font-size: 11px; border-radius: 10px; }
    .feel-pill i { font-size: 15px; }
    
    .trust-safety-section { padding: 0 24px; }
    .ts-header { margin-bottom: 40px; }
    .ts-title { font-size: 28px; }
    .ts-subtitle { font-size: 15px; }
    .ts-card, .ts-dark-card { padding: 22px; gap: 14px; }
    .ts-card-icon { width: 42px; height: 42px; font-size: 17px; }
    .ts-trust-banner { padding: 28px 24px; border-radius: 16px; }
    .ts-trust-banner h4 { font-size: 18px; }
    .ts-bottom-statement p { font-size: 16px; }
    
    .blog-section { padding: 60px 24px; }
    .blog-header { margin-bottom: 36px; }
    .blog-title { font-size: 28px; }
    .blog-subtitle { font-size: 15px; }
    .blog-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
    .blog-image-wrap { height: 200px; }
    .blog-content { padding: 20px; }
    .blog-content h3 { font-size: 17px; }
    .blog-cta { width: 100%; justify-content: center; }
    
    .faq-section { padding: 0 24px; }
    .faq-header { margin-bottom: 36px; }
    .faq-title { font-size: 28px; }
    .faq-subtitle { font-size: 15px; }
    .faq-item summary { padding: 18px 20px; font-size: 14px; }
    .faq-item p { padding: 16px 20px 0; font-size: 13px; }
    .faq-item p:last-child { padding-bottom: 20px; }
    
    .footer { padding: 40px 24px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    
    .whatsapp-float { bottom: 16px; right: 16px; gap: 8px; }
    .whatsapp-number { padding: 6px 12px; font-size: 11px; }
    .whatsapp-number i { font-size: 14px; }
    .whatsapp-icon { width: 50px; height: 50px; font-size: 24px; }
    .whatsapp-pulse { width: 50px; height: 50px; }
}

@media (max-width: 640px) {
    .hero-inner { padding: 100px 24px 60px; gap: 36px; }
    .hero-h1 { font-size: 32px; }
    .hero-desc { font-size: 15px; max-width: 100%; }
    .hero-buttons { flex-direction: column; gap: 12px; }
    .btn-gold, .btn-outline { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; gap: 12px; align-items: center; }
    .image-frame { width: 240px; height: 320px; border-radius: 16px; transform: none; animation: floatImageMobile 6s ease-in-out infinite; }
    .image-frame:hover { transform: scale(1.02); }
    .image-soft-circle { width: 280px; height: 280px; }
    .glass-card { left: 0; bottom: 10px; min-width: 150px; padding: 14px; border-radius: 14px; }
    .glass-avatar { width: 30px; height: 30px; font-size: 12px; }
    .glass-name { font-size: 12px; }
    .stat-badge { right: 0; top: 10px; padding: 10px 14px; border-radius: 12px; }
    .stat-value { font-size: 18px; }
    .image-corner { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
    .hero-h1 { font-size: 26px; }
    .image-frame { width: 200px; height: 280px; border-radius: 16px; }
    
    .pr-title { font-size: 24px; }
    .pr-price { font-size: 38px; }
    .pr-plan-name { font-size: 20px; }
    .pr-feature-text h5 { font-size: 13px; }
    .pr-feature-text p { font-size: 11.5px; }
    
    .about-image-wrap { min-height: 320px; }
    .about-title { font-size: 24px; }
    .about-badge-info h4 { font-size: 13px; }
    .about-badge-rating { display: none; }
    
    .cl-title { font-size: 24px; }
    .cl-card { flex-direction: column; gap: 12px; }
    .cl-card-icon { width: 36px; height: 36px; font-size: 14px; }
    
    .wc-title { font-size: 26px; }
    .wc-image-wrap img { height: 200px; }
    .wc-image-caption h4 { font-size: 18px; }
    .wc-image-caption { bottom: 16px; left: 16px; right: 16px; }
    .wc-benefit-card { flex-direction: column; gap: 12px; }
    
    .feelings-title { font-size: 24px; }
    .feelings-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .feel-card { padding: 14px 10px; min-height: 110px; }
    .feel-icon { width: 36px; height: 36px; font-size: 14px; }
    .feel-text { font-size: 11px; }
    
    .feel-pill { padding: 10px 8px; min-height: 75px; font-size: 10.5px; gap: 6px; }
    .feel-pill i { font-size: 14px; }
    
    .ts-title { font-size: 24px; }
    .ts-card, .ts-dark-card { flex-direction: column; gap: 12px; }
    .ts-card-icon { width: 40px; height: 40px; font-size: 16px; }
    .ts-trust-banner { padding: 24px 20px; }
    .ts-bottom-statement { padding: 20px; }
    .ts-bottom-statement p { font-size: 15px; }
    
    .blog-title { font-size: 24px; }
    .blog-image-wrap { height: 180px; }
    .blog-content h3 { font-size: 16px; }
    .blog-content p { font-size: 12px; }
    
    .faq-title { font-size: 24px; }
    .faq-item summary { padding: 16px 18px; font-size: 13px; }
    .faq-item summary::after { width: 28px; height: 28px; font-size: 18px; }
    .faq-item p { padding: 14px 18px 0; font-size: 12.5px; }
}

@media (max-width: 380px) {
    .hero-h1 { font-size: 26px; }
    .image-frame { width: 200px; height: 280px; border-radius: 16px; }
}

/* ═══════════════════════════════════════════ */
/* CSS: PROFESSIONAL STANDARDS SECTION        */
/* ═══════════════════════════════════════════ */

.standards-section {
  padding: 0 80px 60px;
  background: linear-gradient(180deg, var(--bg1), var(--bg2));
  position: relative;
}
.standards-section::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 50px;
  background: linear-gradient(180deg, transparent, rgba(191,140,76,0.2));
}
.st-header { text-align: center; margin-bottom: 44px; }
.st-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(191,140,76,0.08); border: 1px solid rgba(191,140,76,0.12);
  padding: 8px 20px; border-radius: 100px; margin-bottom: 20px;
}
.st-eyebrow-dot {
  width: 7px; height: 7px;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  border-radius: 50%;
}
.st-eyebrow span {
  font-size: 11px; font-weight: 700; color: var(--gold-end);
  letter-spacing: 2.5px; text-transform: uppercase;
}
.st-title {
  font-family: 'Playfair Display', serif; font-size: 40px;
  font-weight: 700; color: var(--ink); line-height: 1.15; margin-bottom: 16px;
}
.st-title span {
  background: linear-gradient(135deg, var(--gold-end), var(--gold-start));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.st-subtitle {
  font-size: 16px; color: var(--muted); max-width: 560px;
  margin: 0 auto; line-height: 1.7;
}

.st-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 1100px; margin: 0 auto;
}
.st-card {
  background: rgba(255,255,255,0.75); backdrop-filter: blur(20px);
  border: 1px solid rgba(191,140,76,0.08); border-radius: 20px;
  padding: 28px; display: flex; gap: 16px; align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(35,31,28,0.03);
}
.st-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(191,140,76,0.1);
  border-color: rgba(191,140,76,0.15); background: rgba(255,255,255,0.9);
}
.st-card-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; border: 1.5px solid rgba(191,140,76,0.15);
  background: linear-gradient(135deg, rgba(247,212,138,0.2), rgba(191,140,76,0.1));
  color: var(--gold-end); transition: transform 0.3s;
}
.st-card:hover .st-card-icon { transform: scale(1.1) rotate(-3deg); }
.st-card-body h4 {
  font-size: 15px; font-weight: 600; color: var(--ink);
  margin-bottom: 6px; letter-spacing: -0.2px;
}
.st-card-body p {
  font-size: 13px; color: var(--muted); line-height: 1.65;
}

.st-notfor-banner {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, #2a2520, #3d3428);
  border-radius: 20px; padding: 32px 40px;
  border: 1px solid rgba(191,140,76,0.1);
  box-shadow: 0 12px 40px rgba(35,31,28,0.12);
  display: flex; gap: 28px; align-items: flex-start;
}
.st-notfor-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(247,212,138,0.2), rgba(191,140,76,0.15));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-start); font-size: 22px;
  border: 1.5px solid rgba(247,212,138,0.2);
}
.st-notfor-body h4 {
  font-family: 'Playfair Display', serif; font-size: 20px;
  font-weight: 600; color: #fff; margin-bottom: 16px;
}
.st-notfor-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px;
  list-style: none; padding: 0; margin: 0;
}
.st-notfor-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5;
}
.st-notfor-list li i {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(247,212,138,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-start); font-size: 9px; flex-shrink: 0;
}

.st-cta-wrap {
  grid-column: 1 / -1; text-align: center; margin-top: 8px;
}
.st-cta {
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: #241f18; padding: 16px 36px; border-radius: 14px;
  font-size: 15px; font-weight: 700; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(191,140,76,0.25);
  position: relative; overflow: hidden; text-decoration: none;
}
.st-cta::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}
.st-cta:hover::before { left: 100%; }
.st-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(191,140,76,0.35);
}
.st-cta i { transition: transform 0.3s; }
.st-cta:hover i { transform: translateX(4px); }

@media (max-width: 768px) {
  .standards-section { padding: 0 24px 40px; }
  .st-title { font-size: 28px; }
  .st-subtitle { font-size: 15px; }
  .st-grid { grid-template-columns: 1fr; gap: 14px; }
  .st-card { padding: 22px; gap: 14px; }
  .st-card-icon { width: 40px; height: 40px; font-size: 16px; }
  .st-notfor-banner {
    flex-direction: column; padding: 24px; gap: 20px;
  }
  .st-notfor-list { grid-template-columns: 1fr; }
  .st-notfor-body h4 { font-size: 18px; }
  .st-cta { width: 100%; justify-content: center; padding: 14px 24px; }
}
/* ═══════════════════════════════════════════ */
/* CSS: TRUST, PROCESS & PRIVACY SECTION      */
/* ═══════════════════════════════════════════ */

.trust-process-section {
  padding: 0 80px 60px;
  background: linear-gradient(180deg, var(--bg1), var(--bg2));
  position: relative;
}
.trust-process-section::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 50px;
  background: linear-gradient(180deg, transparent, rgba(191,140,76,0.2));
}
.tp-header { text-align: center; margin-bottom: 44px; }
.tp-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(191,140,76,0.08); border: 1px solid rgba(191,140,76,0.12);
  padding: 8px 20px; border-radius: 100px; margin-bottom: 20px;
}
.tp-eyebrow-dot {
  width: 7px; height: 7px;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  border-radius: 50%;
}
.tp-eyebrow span {
  font-size: 11px; font-weight: 700; color: var(--gold-end);
  letter-spacing: 2.5px; text-transform: uppercase;
}
.tp-title {
  font-family: 'Playfair Display', serif; font-size: 40px;
  font-weight: 700; color: var(--ink); line-height: 1.15; margin-bottom: 16px;
}
.tp-title span {
  background: linear-gradient(135deg, var(--gold-end), var(--gold-start));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.tp-subtitle {
  font-size: 16px; color: var(--muted); max-width: 560px;
  margin: 0 auto; line-height: 1.7;
}

.tp-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px;
  max-width: 1100px; margin: 0 auto; align-items: start;
}

/* Left: Process Steps */
.tp-left {
  background: rgba(255,255,255,0.75); backdrop-filter: blur(20px);
  border: 1px solid rgba(191,140,76,0.08); border-radius: 20px;
  padding: 32px; box-shadow: 0 8px 32px rgba(35,31,28,0.04);
}
.tp-left h3 {
  font-family: 'Playfair Display', serif; font-size: 20px;
  font-weight: 600; color: var(--ink); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.tp-left h3 i {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(247,212,138,0.2), rgba(191,140,76,0.1));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-end); font-size: 15px;
  border: 1.5px solid rgba(191,140,76,0.15);
}

.tp-step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid rgba(191,140,76,0.08);
}
.tp-step:last-child { border-bottom: none; padding-bottom: 0; }
.tp-step:first-child { padding-top: 0; }

.tp-step-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  display: flex; align-items: center; justify-content: center;
  color: #241f18; font-size: 14px; font-weight: 700;
  box-shadow: 0 4px 12px rgba(191,140,76,0.2);
}
.tp-step-body h5 {
  font-size: 14px; font-weight: 600; color: var(--ink);
  margin-bottom: 4px; letter-spacing: -0.2px;
}
.tp-step-body p {
  font-size: 13px; color: var(--muted); line-height: 1.6;
}

/* Right: Privacy Promise + Why Trust */
.tp-right {
  display: flex; flex-direction: column; gap: 20px;
}

.tp-promise-card {
  background: linear-gradient(145deg, #2a2520, #3d3428);
  border-radius: 20px; padding: 28px;
  border: 1px solid rgba(191,140,76,0.1);
  box-shadow: 0 12px 40px rgba(35,31,28,0.12);
}
.tp-promise-card h4 {
  font-family: 'Playfair Display', serif; font-size: 18px;
  font-weight: 600; color: #fff; margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.tp-promise-card h4 i {
  color: var(--gold-start); font-size: 16px;
}
.tp-promise-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.tp-promise-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.55;
}
.tp-promise-list li i {
  width: 22px; height: 22px; border-radius: 6px;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  display: flex; align-items: center; justify-content: center;
  color: #241f18; font-size: 10px; flex-shrink: 0; margin-top: 1px;
}

.tp-trust-card {
  background: rgba(255,255,255,0.75); backdrop-filter: blur(20px);
  border: 1px solid rgba(191,140,76,0.08); border-radius: 20px;
  padding: 28px; box-shadow: 0 4px 20px rgba(35,31,28,0.03);
}
.tp-trust-card h4 {
  font-family: 'Playfair Display', serif; font-size: 18px;
  font-weight: 600; color: var(--ink); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.tp-trust-card h4 i {
  color: var(--gold-end); font-size: 16px;
}
.tp-trust-card p {
  font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 16px;
}
.tp-trust-card p strong { color: var(--ink); font-weight: 600; }

.tp-trust-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.tp-trust-tag {
  font-size: 11px; font-weight: 500; color: var(--gold-end);
  background: rgba(191,140,76,0.06); border: 1px solid rgba(191,140,76,0.1);
  padding: 5px 12px; border-radius: 100px;
}

.tp-cta-wrap {
  grid-column: 1 / -1; text-align: center; margin-top: 8px;
}
.tp-cta {
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: #241f18; padding: 16px 36px; border-radius: 14px;
  font-size: 15px; font-weight: 700; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(191,140,76,0.25);
  position: relative; overflow: hidden; text-decoration: none;
}
.tp-cta::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}
.tp-cta:hover::before { left: 100%; }
.tp-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(191,140,76,0.35);
}
.tp-cta i { transition: transform 0.3s; }
.tp-cta:hover i { transform: translateX(4px); }

@media (max-width: 768px) {
  .trust-process-section { padding: 0 24px 40px; }
  .tp-title { font-size: 28px; }
  .tp-subtitle { font-size: 15px; }
  .tp-grid { grid-template-columns: 1fr; gap: 20px; }
  .tp-left { padding: 24px; }
  .tp-left h3 { font-size: 18px; }
  .tp-promise-card, .tp-trust-card { padding: 24px; }
  .tp-cta { width: 100%; justify-content: center; padding: 14px 24px; }
}

/* ── Keyword Section ── */
.keyword-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,242,236,0.6));
  padding: 0 20px;
  border-bottom: 1px solid rgba(191,140,76,0.06);
}

/* ── Toggle Button ── */
.keyword-toggle {
  width: 100%;
  padding: 18px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.3s ease;
}

.keyword-toggle:hover {
  color: var(--gold-end);
}

.keyword-toggle-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.keyword-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(247,212,138,0.2), rgba(191,140,76,0.1));
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--gold-end);
  transition: all 0.3s ease;
}

.keyword-toggle-hint {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Expandable Content ── */
.keyword-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.keyword-content.open {
  max-height: 2000px; /* Adjust if you have more links */
  padding-bottom: 20px;
}

/* ── Pills ── */
.keyword-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 4px;
}

.keyword-pill {
  padding: 10px 16px;
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(251,248,243,0.8));
  border: 1px solid rgba(191,140,76,0.08);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.keyword-pill::before {
  content: '•';
  color: var(--gold-end);
  font-size: 8px;
}

.keyword-pill:hover {
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: #241f18;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(191,140,76,0.15);
}

.keyword-pill:hover::before {
  color: #241f18;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .keyword-toggle {
    padding: 16px 20px;
    font-size: 0.9rem;
  }
  .keyword-pill {
    padding: 8px 14px;
    font-size: 0.78rem;
  }
}

@media (max-width: 380px) {
  .keyword-pills {
    gap: 8px;
  }
  .keyword-pill {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}