/* ==============================
   VARIABLES & RESET
   ============================== */
:root {
    --bg: #0c0c0e;
    --bg2: #101013;
    --bg3: #0e0e11;
    --surface: rgba(255,255,255,0.03);
    --surface-hover: rgba(255,255,255,0.06);
    --surface-card: rgba(255,255,255,0.03);
    --border: rgba(255,255,255,0.06);
    --border-gold: rgba(212,175,55,0.2);
    --text: #f0ede8;
    --text2: #9b9490;
    --text3: #5c5852;
    --gold: #d4af37;
    --gold2: #b8992f;
    --gold-glow: rgba(212,175,55,0.12);
    --gold-glow2: rgba(212,175,55,0.06);
    --shadow: rgba(0,0,0,0.7);
    --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
    --radius: 20px;
    --radius-sm: 12px;
    --nav-h: 80px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
}

[data-theme="light"] {
    --bg: #f7f4ef;
    --bg2: #efe9df;
    --bg3: #e8e2d6;
    --surface: rgba(255,255,255,0.6);
    --surface-hover: rgba(212,175,55,0.1);
    --surface-card: rgba(255,255,255,0.75);
    --border: rgba(160,140,100,0.15);
    --border-gold: rgba(180,140,30,0.3);
    --text: #1a1510;
    --text2: #5a4e3e;
    --text3: #8a7e6e;
    --gold: #b8942a;
    --gold2: #9a7d22;
    --gold-glow: rgba(180,140,30,0.2);
    --gold-glow2: rgba(180,140,30,0.1);
    --shadow: rgba(100,80,40,0.12);
    --shadow-card: 0 4px 24px rgba(100,80,40,0.1), 0 1px 3px rgba(100,80,40,0.08);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }

/* ==============================
   LAYOUT
   ============================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
    background: var(--gold-glow2);
}

[data-theme="light"] .section-label {
    background: rgba(180,140,30,0.08);
    border-color: rgba(180,140,30,0.25);
    box-shadow: 0 2px 8px rgba(180,140,30,0.06);
}

.section-title {
    font-family: var(--font-display);
    font-size: 58px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--text);
    margin-bottom: 20px;
}

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

.section-title.left {
    text-align: left;
}

.section-desc {
    font-size: 18px;
    color: var(--text2);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==============================
   MODERN SECTION BACKGROUNDS
   ============================== */
.section-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.footer-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

/* Background Orbs — floating gradient blobs */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: bgOrbFloat 25s infinite ease-in-out;
}

[data-theme="light"] .bg-orb {
    opacity: 0.7;
    filter: blur(100px);
}

@keyframes bgOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.03); }
}

/* ===== DARK THEME SECTION BACKGROUNDS ===== */

/* Services BG */
#services {
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(212,175,55,0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 90% 80%, rgba(212,175,55,0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%);
}

/* About BG */
.about-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 50% at 85% 30%, rgba(212,175,55,0.05) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 15% 70%, rgba(212,175,55,0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg2) 0%, var(--bg) 40%, var(--bg2) 100%);
}

/* Cases BG */
#cases {
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212,175,55,0.05) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 20% 90%, rgba(212,175,55,0.03) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg3) 50%, var(--bg) 100%);
}

/* Reviews BG */
.reviews-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 60% at 0% 50%, rgba(212,175,55,0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 100% 30%, rgba(212,175,55,0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg2) 0%, var(--bg) 50%, var(--bg2) 100%);
}

/* Features BG */
#features {
    background:
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(212,175,55,0.05) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 10% 80%, rgba(212,175,55,0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg3) 50%, var(--bg) 100%);
}

/* Contact BG */
.contact-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 50% at 30% 20%, rgba(212,175,55,0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 80% 80%, rgba(212,175,55,0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg2) 0%, var(--bg) 30%, var(--bg) 70%, var(--bg2) 100%);
}

/* Footer BG */
.footer {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,175,55,0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg3) 0%, #08080a 100%);
    border-top: 1px solid var(--border);
    padding: 64px 0 40px;
    position: relative;
    overflow: hidden;
}


/* ===== LIGHT THEME SECTION BACKGROUNDS ===== */

[data-theme="light"] #services {
    background:
        radial-gradient(ellipse 90% 70% at 5% 10%, rgba(180,140,30,0.1) 0%, transparent 50%),
        radial-gradient(ellipse 70% 60% at 95% 85%, rgba(180,140,30,0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255,245,220,0.4) 0%, transparent 60%),
        linear-gradient(180deg, #f7f4ef 0%, #f0e8d8 30%, #ede5d2 50%, #f0e8d8 70%, #f7f4ef 100%);
}

[data-theme="light"] .about-section {
    background:
        radial-gradient(ellipse 80% 60% at 80% 20%, rgba(180,140,30,0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 70% at 10% 80%, rgba(180,140,30,0.07) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 50% 40%, rgba(255,248,230,0.5) 0%, transparent 50%),
        linear-gradient(180deg, #efe9df 0%, #ebe3d0 30%, #e8dfc8 50%, #ebe3d0 70%, #efe9df 100%);
}

[data-theme="light"] #cases {
    background:
        radial-gradient(ellipse 70% 60% at 50% 0%, rgba(180,140,30,0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 15% 90%, rgba(180,140,30,0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 70% 60%, rgba(255,245,220,0.35) 0%, transparent 50%),
        linear-gradient(180deg, #f7f4ef 0%, #ede5d2 30%, #e8dfc8 50%, #ede5d2 70%, #f7f4ef 100%);
}

[data-theme="light"] .reviews-section {
    background:
        radial-gradient(ellipse 80% 70% at 0% 40%, rgba(180,140,30,0.1) 0%, transparent 50%),
        radial-gradient(ellipse 70% 60% at 100% 20%, rgba(180,140,30,0.07) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 40% 60%, rgba(255,248,230,0.4) 0%, transparent 50%),
        linear-gradient(180deg, #efe9df 0%, #ebe3d0 30%, #e6dcc6 50%, #ebe3d0 70%, #efe9df 100%);
}

[data-theme="light"] #features {
    background:
        radial-gradient(ellipse 60% 60% at 85% 15%, rgba(180,140,30,0.09) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 5% 85%, rgba(180,140,30,0.07) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255,245,220,0.35) 0%, transparent 50%),
        linear-gradient(180deg, #f7f4ef 0%, #ede5d2 30%, #e8dfc8 50%, #ede5d2 70%, #f7f4ef 100%);
}

[data-theme="light"] .contact-section {
    background:
        radial-gradient(ellipse 70% 60% at 25% 15%, rgba(180,140,30,0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 70% at 85% 85%, rgba(180,140,30,0.08) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 60% 40%, rgba(255,248,230,0.4) 0%, transparent 50%),
        linear-gradient(180deg, #efe9df 0%, #ebe3d0 25%, #e8dfc8 50%, #ebe3d0 75%, #efe9df 100%);
}

[data-theme="light"] .footer {
    background:
        radial-gradient(ellipse 90% 60% at 50% 0%, rgba(180,140,30,0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 10% 80%, rgba(180,140,30,0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 90% 60%, rgba(255,248,230,0.3) 0%, transparent 50%),
        linear-gradient(180deg, #ebe3d0 0%, #e4dbc6 30%, #ddd3bc 60%, #d8ccb4 100%);
    border-top: 1px solid rgba(180,140,30,0.15);
}

/* Light theme orb colors — warmer, more visible */
[data-theme="light"] .bg-orb-1 {
    background: radial-gradient(circle, rgba(180,140,30,0.18) 0%, rgba(180,140,30,0.05) 40%, transparent 70%);
}
[data-theme="light"] .bg-orb-2 {
    background: radial-gradient(circle, rgba(200,160,40,0.14) 0%, rgba(200,160,40,0.04) 40%, transparent 70%);
}
[data-theme="light"] .bg-orb-3 {
    background: radial-gradient(circle, rgba(180,140,30,0.16) 0%, rgba(180,140,30,0.04) 50%, transparent 70%);
}
[data-theme="light"] .bg-orb-4 {
    background: radial-gradient(circle, rgba(200,160,40,0.12) 0%, transparent 60%);
}
[data-theme="light"] .bg-orb-5 {
    background: radial-gradient(circle, rgba(180,140,30,0.15) 0%, rgba(180,140,30,0.04) 45%, transparent 70%);
}
[data-theme="light"] .bg-orb-6 {
    background: radial-gradient(circle, rgba(200,160,40,0.1) 0%, transparent 60%);
}
[data-theme="light"] .bg-orb-7 {
    background: radial-gradient(circle, rgba(180,140,30,0.16) 0%, rgba(180,140,30,0.04) 50%, transparent 70%);
}
[data-theme="light"] .bg-orb-8 {
    background: radial-gradient(circle, rgba(200,160,40,0.12) 0%, transparent 60%);
}
[data-theme="light"] .bg-orb-9 {
    background: radial-gradient(circle, rgba(180,140,30,0.14) 0%, transparent 60%);
}
[data-theme="light"] .bg-orb-10 {
    background: radial-gradient(circle, rgba(200,160,40,0.1) 0%, rgba(200,160,40,0.03) 40%, transparent 70%);
}
[data-theme="light"] .bg-orb-11 {
    background: radial-gradient(circle, rgba(180,140,30,0.16) 0%, rgba(180,140,30,0.04) 45%, transparent 70%);
}
[data-theme="light"] .bg-orb-12 {
    background: radial-gradient(circle, rgba(200,160,40,0.12) 0%, transparent 60%);
}
[data-theme="light"] .bg-orb-13 {
    background: radial-gradient(ellipse, rgba(212,175,55,0.1) 0%, transparent 60%);
}

/* BG Orb positions */
.bg-orb-1 {
    width: 600px; height: 600px;
    top: -200px; left: -150px;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, rgba(212,175,55,0.03) 40%, transparent 70%);
    animation-delay: 0s;
}

.bg-orb-2 {
    width: 450px; height: 450px;
    bottom: -100px; right: -80px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, rgba(180,160,100,0.03) 40%, transparent 70%);
    animation-delay: 8s;
}

.bg-orb-3 {
    width: 500px; height: 500px;
    top: 10%; right: -100px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(180,140,40,0.02) 50%, transparent 70%);
    animation-delay: 3s;
}

.bg-orb-4 {
    width: 400px; height: 400px;
    bottom: 5%; left: -80px;
    background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 60%);
    animation-delay: 12s;
}

.bg-orb-5 {
    width: 550px; height: 550px;
    top: -120px; left: 30%;
    background: radial-gradient(circle, rgba(212,175,55,0.09) 0%, rgba(212,175,55,0.02) 45%, transparent 70%);
    animation-delay: 5s;
}

.bg-orb-6 {
    width: 380px; height: 380px;
    bottom: -60px; right: 10%;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 60%);
    animation-delay: 15s;
}

.bg-orb-7 {
    width: 480px; height: 480px;
    top: -80px; left: -100px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.02) 50%, transparent 70%);
    animation-delay: 2s;
}

.bg-orb-8 {
    width: 350px; height: 350px;
    bottom: -60px; right: 20%;
    background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 60%);
    animation-delay: 10s;
}

.bg-orb-9 {
    width: 420px; height: 420px;
    top: -80px; right: 5%;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 60%);
    animation-delay: 6s;
}

.bg-orb-10 {
    width: 500px; height: 500px;
    bottom: -150px; left: -80px;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, rgba(212,175,55,0.015) 40%, transparent 70%);
    animation-delay: 18s;
}

.bg-orb-11 {
    width: 550px; height: 550px;
    top: -120px; left: 10%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.02) 45%, transparent 70%);
    animation-delay: 4s;
}

.bg-orb-12 {
    width: 400px; height: 400px;
    bottom: -80px; right: -50px;
    background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 60%);
    animation-delay: 14s;
}

.bg-orb-13 {
    width: 600px; height: 300px;
    top: -100px; left: 20%;
    background: radial-gradient(ellipse, rgba(212,175,55,0.06) 0%, transparent 60%);
    animation-delay: 7s;
    border-radius: 50%;
}


/* Mesh gradient overlay */
.bg-mesh {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(at 20% 30%, rgba(212,175,55,0.04) 0%, transparent 50%),
        radial-gradient(at 80% 70%, rgba(212,175,55,0.03) 0%, transparent 50%),
        radial-gradient(at 50% 50%, rgba(255,255,255,0.01) 0%, transparent 50%);
    opacity: 0.8;
}

[data-theme="light"] .bg-mesh {
    background-image:
        radial-gradient(at 20% 30%, rgba(180,140,30,0.1) 0%, transparent 50%),
        radial-gradient(at 80% 70%, rgba(180,140,30,0.07) 0%, transparent 50%),
        radial-gradient(at 50% 50%, rgba(255,245,220,0.3) 0%, transparent 50%);
    opacity: 1;
}

/* Decorative lines */
.bg-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(212,175,55,0.02) 25%, transparent 25%),
        linear-gradient(225deg, rgba(212,175,55,0.02) 25%, transparent 25%);
    background-size: 60px 60px;
    opacity: 0.5;
}

[data-theme="light"] .bg-lines {
    background-image:
        linear-gradient(135deg, rgba(180,140,30,0.05) 25%, transparent 25%),
        linear-gradient(225deg, rgba(180,140,30,0.05) 25%, transparent 25%);
    opacity: 0.4;
}

/* Grid pattern overlay */
.bg-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,175,55,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 70%);
}

[data-theme="light"] .bg-grid-pattern {
    background-image:
        linear-gradient(rgba(180,140,30,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180,140,30,0.05) 1px, transparent 1px);
}

/* Diagonal pattern */
.bg-diagonal {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 80px,
        rgba(212,175,55,0.008) 80px,
        rgba(212,175,55,0.008) 81px
    );
    mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 70%);
}

[data-theme="light"] .bg-diagonal {
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 80px,
        rgba(180,140,30,0.04) 80px,
        rgba(180,140,30,0.04) 81px
    );
}


/* Section transition gradients — smooth blending between sections */
#services::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg2));
    pointer-events: none;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none;
    z-index: 0;
}

#cases::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg2));
    pointer-events: none;
    z-index: 0;
}

.reviews-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none;
    z-index: 0;
}

#features::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg2));
    pointer-events: none;
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--bg3));
    pointer-events: none;
    z-index: 0;
}

[data-theme="light"] #services::after {
    background: linear-gradient(to bottom, transparent, #efe9df);
}
[data-theme="light"] .about-section::after {
    background: linear-gradient(to bottom, transparent, #f7f4ef);
}
[data-theme="light"] #cases::after {
    background: linear-gradient(to bottom, transparent, #efe9df);
}
[data-theme="light"] .reviews-section::after {
    background: linear-gradient(to bottom, transparent, #f7f4ef);
}
[data-theme="light"] #features::after {
    background: linear-gradient(to bottom, transparent, #efe9df);
}
[data-theme="light"] .contact-section::after {
    background: linear-gradient(to bottom, transparent, #ebe3d0);
}


/* ==============================
   NAV
   ============================== */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-h);
    z-index: 1000;
    transition: all 0.4s ease;
}

.nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav.scrolled::before {
    opacity: 0.92;
}

[data-theme="light"] .nav.scrolled::before {
    opacity: 0.88;
}

.nav.scrolled {
    backdrop-filter: blur(30px) saturate(150%);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 40px var(--shadow);
    height: 68px;
}

[data-theme="light"] .nav.scrolled {
    box-shadow: 0 4px 30px rgba(100,80,40,0.1), 0 1px 0 rgba(180,140,30,0.1);
}

.nav-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

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

.logo-emblem {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 30px var(--gold-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="light"] .logo-emblem {
    box-shadow: 0 4px 20px rgba(180,140,30,0.25), 0 0 0 1px rgba(180,140,30,0.15);
}

.logo-emblem:hover {
    transform: rotate(8deg) scale(1.05);
    box-shadow: 0 0 50px var(--gold-glow);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.3px;
}

.logo-title {
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text2);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

[data-theme="light"] .theme-toggle {
    background: rgba(255,255,255,0.7);
    border-color: rgba(160,140,100,0.2);
    box-shadow: 0 2px 8px rgba(100,80,40,0.06);
}

.theme-toggle:hover {
    background: var(--surface-hover);
    border-color: var(--border-gold);
    transform: scale(1.05);
}

.nav-cta {
    padding: 11px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #0a0a0a;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--gold-glow);
    white-space: nowrap;
}

[data-theme="light"] .nav-cta {
    color: #fff;
    box-shadow: 0 4px 16px rgba(180,140,30,0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--gold-glow);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
}

.burger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 0 40px;
}

.mobile-link {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--text);
    padding: 12px 0;
    text-align: center;
    transition: color 0.3s;
    width: 100%;
    border-bottom: 1px solid var(--border);
}

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

.mobile-cta {
    margin-top: 32px;
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #0a0a0a;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 30px var(--gold-glow);
}

[data-theme="light"] .mobile-cta {
    color: #fff;
}

/* ==============================
   BUTTONS
   ============================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #0a0a0a;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px var(--gold-glow);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .btn-primary {
    color: #fff;
    box-shadow: 0 6px 24px rgba(180,140,30,0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.3s ease;
}

.btn-primary:hover::before {
    background: rgba(255,255,255,0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px var(--gold-glow);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 42px;
    border: 1.5px solid var(--border-gold);
    color: var(--text);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: var(--surface);
    backdrop-filter: blur(10px);
}

[data-theme="light"] .btn-outline {
    background: rgba(255,255,255,0.6);
    border-color: rgba(180,140,30,0.3);
    box-shadow: 0 2px 12px rgba(100,80,40,0.06);
}

.btn-outline:hover {
    background: var(--gold-glow);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* ==============================
   HERO
   ============================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--nav-h) 48px 80px;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .hero {
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(180,140,30,0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(180,140,30,0.06) 0%, transparent 50%),
        linear-gradient(180deg, #f7f4ef 0%, #ede5d2 40%, #e8dfc8 60%, #f0e8d8 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.4;
}

[data-theme="light"] .hero-grid {
    background-image:
        linear-gradient(rgba(160,140,100,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(160,140,100,0.08) 1px, transparent 1px);
    opacity: 0.6;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orbFloat 20s infinite ease-in-out;
    opacity: 0.7;
}

[data-theme="light"] .orb {
    opacity: 0.8;
}

.orb-1 {
    width: 700px; height: 700px;
    top: -220px; right: -120px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0.04) 50%, transparent 70%);
    animation-delay: 0s;
}
.orb-2 {
    width: 500px; height: 500px;
    bottom: -100px; left: -100px;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, rgba(212,175,55,0.03) 50%, transparent 70%);
    animation-delay: 7s;
}
.orb-3 {
    width: 320px; height: 320px;
    top: 45%; left: 48%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    animation-delay: 14s;
}

[data-theme="light"] .orb-1 {
    background: radial-gradient(circle, rgba(180,140,30,0.2) 0%, rgba(180,140,30,0.06) 50%, transparent 70%);
}
[data-theme="light"] .orb-2 {
    background: radial-gradient(circle, rgba(200,160,40,0.15) 0%, rgba(200,160,40,0.04) 50%, transparent 70%);
}
[data-theme="light"] .orb-3 {
    background: radial-gradient(circle, rgba(180,140,30,0.12) 0%, transparent 70%);
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -60px) scale(1.08); }
    66% { transform: translate(-40px, 40px) scale(0.92); }
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text2);
    margin-bottom: 32px;
    background: var(--gold-glow2);
    backdrop-filter: blur(10px);
}

[data-theme="light"] .hero-badge {
    background: rgba(255,255,255,0.6);
    border-color: rgba(180,140,30,0.25);
    box-shadow: 0 2px 12px rgba(100,80,40,0.06);
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--gold); }
    50% { opacity: 0.6; box-shadow: 0 0 18px var(--gold); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 88px;
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: -2.5px;
    color: var(--text);
    margin-bottom: 28px;
}

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

.hero-sub {
    font-size: 20px;
    color: var(--text2);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 32px 48px;
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 24px;
    flex-wrap: wrap;
}

[data-theme="light"] .hero-stats {
    background: rgba(255,255,255,0.65);
    border-color: rgba(160,140,100,0.15);
    box-shadow: 0 8px 40px rgba(100,80,40,0.08), 0 0 0 1px rgba(255,255,255,0.5) inset;
}

.hero-stat {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 0 24px;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-suf {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--gold);
}

.hero-stat-label {
    display: block;
    font-size: 13px;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
    flex-shrink: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 280px;
    background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.hero-scroll-hint span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text3);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

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

.service-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2px;
    background: linear-gradient(125deg, rgba(212,175,55,0.06) 0%, rgba(212,175,55,0.01) 50%, var(--bg) 100%);
    position: relative;
    transition: border-color 0.4s ease;
}

[data-theme="light"] .service-hero {
    background: linear-gradient(125deg, rgba(255,248,230,0.7) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.3) 100%);
    border-color: rgba(180,140,30,0.25);
    box-shadow: 0 8px 40px rgba(100,80,40,0.08), 0 0 0 1px rgba(255,255,255,0.4) inset;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold2), transparent 80%);
}

.service-hero:hover {
    border-color: rgba(212,175,55,0.4);
}

.service-hero-left {
    padding: 56px 52px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.service-hero-right {
    padding: 56px 52px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    background: rgba(0,0,0,0.08);
}

[data-theme="light"] .service-hero-right {
    background: rgba(180,140,30,0.03);
}

.service-hero-num {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-hero-num::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
}

.service-hero-icon {
    font-size: 40px;
    margin-bottom: 24px;
    line-height: 1;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.03));
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(212,175,55,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

[data-theme="light"] .service-hero-icon {
    background: linear-gradient(135deg, rgba(180,140,30,0.12), rgba(255,248,230,0.6));
    border-color: rgba(180,140,30,0.25);
    box-shadow: 0 4px 16px rgba(180,140,30,0.1);
}

.service-hero:hover .service-hero-icon {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(212,175,55,0.15);
}

.service-hero-title {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.service-hero-desc {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.75;
    margin-bottom: 36px;
    flex: 1;
}

.service-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50px;
    background: rgba(212,175,55,0.04);
    transition: all 0.35s ease;
    align-self: flex-start;
}

[data-theme="light"] .service-hero-link {
    background: rgba(255,255,255,0.5);
    border-color: rgba(180,140,30,0.3);
}

.service-hero-link:hover {
    background: rgba(212,175,55,0.1);
    border-color: var(--gold);
    gap: 16px;
    box-shadow: 0 0 24px rgba(212,175,55,0.12);
}

.service-hero-link svg {
    transition: transform 0.35s ease;
}

.service-hero-link:hover svg {
    transform: translateX(4px);
}

.service-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0a0a0a;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    padding: 6px 16px;
    border-radius: 50px;
    align-self: flex-start;
}

[data-theme="light"] .service-hero-tag {
    color: #fff;
    box-shadow: 0 2px 8px rgba(180,140,30,0.3);
}

.service-hero-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

[data-theme="light"] .service-hero-list {
    background: rgba(255,255,255,0.4);
    border-color: rgba(160,140,100,0.15);
}

.service-hero-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    font-size: 13px;
    color: var(--text2);
    border-bottom: 1px solid var(--border);
    transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

.service-hero-list li:last-child {
    border-bottom: none;
}

.service-hero-list li:hover {
    background: rgba(212,175,55,0.04);
    color: var(--text);
    padding-left: 26px;
}

[data-theme="light"] .service-hero-list li:hover {
    background: rgba(180,140,30,0.06);
}

.shl-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
    flex-shrink: 0;
}

.service-hero-list li:hover .shl-dot {
    opacity: 1;
}

.service-hero-stat {
    padding: 20px 24px;
    background: rgba(212,175,55,0.04);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: var(--radius-sm);
}

[data-theme="light"] .service-hero-stat {
    background: rgba(255,248,230,0.5);
    border-color: rgba(180,140,30,0.2);
}

.service-hero-stat strong {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    display: block;
    background: linear-gradient(135deg, #f0d060, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .service-hero-stat strong {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero-stat span {
    font-size: 12px;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 4px;
}

/* SERVICE ROWS LIST */
.services-list {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 2px;
}

[data-theme="light"] .services-list {
    box-shadow: 0 4px 24px rgba(100,80,40,0.06);
    border-color: rgba(160,140,100,0.15);
}

.service-row {
    display: grid;
    grid-template-columns: 80px 64px 1fr 48px;
    align-items: center;
    gap: 0;
    padding: 0 40px 0 0;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
    cursor: pointer;
}

[data-theme="light"] .service-row {
    background: rgba(255,255,255,0.5);
}

.service-row:last-child {
    border-bottom: none;
}

.service-row::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--gold2));
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.service-row:hover::before {
    transform: scaleY(1);
}

.service-row:hover {
    background: linear-gradient(90deg, rgba(212,175,55,0.03) 0%, var(--surface) 60%);
}

[data-theme="light"] .service-row:hover {
    background: linear-gradient(90deg, rgba(180,140,30,0.06) 0%, rgba(255,255,255,0.5) 60%);
}

.sr-num {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    opacity: 0.5;
    letter-spacing: 2px;
    padding: 32px 0 32px 40px;
    transition: opacity 0.3s ease;
    user-select: none;
}

.service-row:hover .sr-num {
    opacity: 1;
}

.sr-icon {
    font-size: 22px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,0.03);
    border: 1px solid rgba(212,175,55,0.1);
    border-radius: 12px;
    transition: all 0.35s ease;
    margin: 0 24px 0 8px;
}

[data-theme="light"] .sr-icon {
    background: rgba(180,140,30,0.06);
    border-color: rgba(180,140,30,0.15);
}

.service-row:hover .sr-icon {
    background: rgba(212,175,55,0.08);
    border-color: rgba(212,175,55,0.3);
    transform: scale(1.06);
}

.sr-body {
    padding: 28px 40px 28px 0;
}

.sr-body h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.sr-body p {
    font-size: 13px;
    color: var(--text3);
    line-height: 1.6;
    transition: color 0.3s ease;
    max-width: 560px;
}

.service-row:hover .sr-body p {
    color: var(--text2);
}

.sr-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text3);
    transition: all 0.35s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.service-row:hover .sr-arrow {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212,175,55,0.06);
    transform: translateX(4px);
}

/* ==============================
   ABOUT
   ============================== */
.about-section .container {
    position: relative;
    z-index: 1;
}

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

.about-photo-wrap {
    position: sticky;
    top: calc(var(--nav-h) + 40px);
}

.about-photo-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: visible;
    aspect-ratio: 3/4;
    max-height: 520px;
    margin-bottom: 28px;
}

.about-photo-frame::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid var(--border-gold);
    border-radius: calc(var(--radius) + 10px);
    pointer-events: none;
    opacity: 0.4;
}

.about-photo-frame::after {
    content: '';
    position: absolute;
    inset: -22px;
    border: 1px solid rgba(212,175,55,0.08);
    border-radius: calc(var(--radius) + 22px);
    pointer-events: none;
}

[data-theme="light"] .about-photo-frame::before {
    border-color: rgba(180,140,30,0.2);
    opacity: 0.6;
}

[data-theme="light"] .about-photo-frame::after {
    border-color: rgba(180,140,30,0.1);
}

.about-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius);
    display: block;
    border: 1px solid var(--border-gold);
    box-shadow: 0 30px 80px var(--shadow);
}

[data-theme="light"] .about-photo-img {
    box-shadow: 0 20px 60px rgba(100,80,40,0.15), 0 0 0 1px rgba(180,140,30,0.15);
}

.photo-badge {
    position: absolute;
    bottom: -16px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #0a0a0a;
    border-radius: 16px;
    padding: 18px 28px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(212,175,55,0.3), 0 0 0 4px var(--bg);
    z-index: 10;
}

[data-theme="light"] .photo-badge {
    color: #fff;
    box-shadow: 0 8px 30px rgba(180,140,30,0.35), 0 0 0 4px var(--bg);
}

.photo-badge span {
    display: block;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.photo-badge small {
    font-size: 11px;
    font-weight: 700;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 32px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text2);
    transition: all 0.3s ease;
}

[data-theme="light"] .credential {
    background: rgba(255,255,255,0.55);
    box-shadow: 0 2px 8px rgba(100,80,40,0.04);
}

.credential:hover {
    border-left-color: var(--gold);
    border-color: var(--border-gold);
    background: var(--gold-glow2);
    transform: translateX(4px);
}

[data-theme="light"] .credential:hover {
    background: rgba(255,248,230,0.6);
    box-shadow: 0 4px 16px rgba(180,140,30,0.08);
}

.cred-icon {
    font-size: 18px;
}

.about-text {
    padding-top: 8px;
}

.about-lead {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text);
    line-height: 1.55;
    margin-bottom: 24px;
}

.about-body {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.75;
    margin-bottom: 20px;
}

.about-highlights {
    display: flex;
    gap: 40px;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 32px 0;
}

.highlight {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.highlight strong {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.highlight span {
    font-size: 13px;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==============================
   PROCESS — VERTICAL TIMELINE
   ============================== */
#cases .container {
    position: relative;
    z-index: 1;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    max-width: 860px;
    margin: 0 auto;
    gap: 0;
}

.pt-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 120px;
}

.pt-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 6px;
    position: relative;
}

.pt-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 5px var(--bg);
}

[data-theme="light"] .pt-num {
    background: #f7f4ef;
    box-shadow: 0 0 0 5px #ede5d2, 0 4px 12px rgba(100,80,40,0.06);
    border-color: rgba(180,140,30,0.25);
}

.pt-step:hover .pt-num {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #0a0a0a;
    border-color: transparent;
    box-shadow: 0 0 0 5px var(--bg), 0 0 30px rgba(212,175,55,0.25);
    transform: scale(1.08);
}

[data-theme="light"] .pt-step:hover .pt-num {
    color: #fff;
    box-shadow: 0 0 0 5px #ede5d2, 0 4px 20px rgba(180,140,30,0.3);
}

.pt-line {
    flex: 1;
    width: 1px;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(212,175,55,0.1) 100%);
    margin: 8px 0;
    position: relative;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.pt-step:hover .pt-line {
    opacity: 0.6;
}

.pt-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin: 0 0 20px 0;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

[data-theme="light"] .pt-card {
    background: rgba(255,255,255,0.55);
    border-color: rgba(160,140,100,0.12);
    box-shadow: 0 2px 12px rgba(100,80,40,0.04);
}

.pt-card::after {
    content: attr(data-step);
    position: absolute;
    right: -8px;
    bottom: -20px;
    font-family: var(--font-display);
    font-size: 120px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.03;
    line-height: 1;
    letter-spacing: -4px;
    pointer-events: none;
    user-select: none;
}

[data-theme="light"] .pt-card::after {
    opacity: 0.06;
}

.pt-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold2), transparent 80%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}

.pt-step:hover .pt-card::before {
    transform: scaleX(1);
}

.pt-step:hover .pt-card {
    border-color: var(--border-gold);
    background: rgba(212,175,55,0.02);
    transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

[data-theme="light"] .pt-step:hover .pt-card {
    background: rgba(255,248,230,0.5);
    box-shadow: 0 8px 32px rgba(100,80,40,0.1);
}

.pt-icon {
    font-size: 26px;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02));
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 14px;
    transition: all 0.4s ease;
}

[data-theme="light"] .pt-icon {
    background: linear-gradient(135deg, rgba(180,140,30,0.1), rgba(255,248,230,0.6));
    border-color: rgba(180,140,30,0.2);
}

.pt-step:hover .pt-icon {
    background: linear-gradient(135deg, rgba(212,175,55,0.14), rgba(212,175,55,0.04));
    border-color: rgba(212,175,55,0.35);
    transform: scale(1.05);
}

.pt-body {
    flex: 1;
}

.pt-body h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.2;
}

.pt-body p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
}

.pt-tag {
    flex-shrink: 0;
    align-self: flex-start;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    padding: 5px 14px;
    background: var(--gold-glow2);
    white-space: nowrap;
    transition: all 0.3s ease;
}

[data-theme="light"] .pt-tag {
    background: rgba(180,140,30,0.08);
    border-color: rgba(180,140,30,0.2);
}

.pt-step:hover .pt-tag {
    background: rgba(212,175,55,0.1);
    border-color: var(--gold);
}

.pt-step--last .pt-card {
    margin-bottom: 0;
}

.process-connector { display: none; }

/* ==============================
   REVIEWS
   ============================== */
.reviews-section .container {
    position: relative;
    z-index: 1;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

[data-theme="light"] .reviews-grid {
    gap: 1px;
    background: rgba(160,140,100,0.12);
    border-color: rgba(160,140,100,0.15);
    box-shadow: 0 8px 40px rgba(100,80,40,0.06);
}

.review-card {
    background: var(--bg);
    padding: 40px 36px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .review-card {
    background: rgba(255,255,255,0.65);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 24px;
    font-family: var(--font-display);
    font-size: 160px;
    color: var(--gold);
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    user-select: none;
}

[data-theme="light"] .review-card::before {
    opacity: 0.08;
}

.review-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold2), transparent);
    transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}

.review-card:hover::after {
    width: 100%;
}

.review-card:hover::before {
    opacity: 0.1;
    transform: scale(1.05) translateY(-5px);
}

.review-card:hover {
    background: var(--bg2);
}

[data-theme="light"] .review-card:hover {
    background: rgba(255,248,230,0.6);
}

.review-stars {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.review-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0a;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(212,175,55,0.25);
}

[data-theme="light"] .review-avatar {
    color: #fff;
    box-shadow: 0 4px 16px rgba(180,140,30,0.3);
}

.review-author div:last-child {
    display: flex;
    flex-direction: column;
}

.review-author strong {
    font-size: 15px;
    color: var(--text);
    font-weight: 600;
}

.review-author span {
    font-size: 12px;
    color: var(--text3);
    margin-top: 2px;
}

/* ==============================
   FEATURES
   ============================== */
#features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

[data-theme="light"] .features-grid {
    gap: 1px;
    background: rgba(160,140,100,0.12);
    border-color: rgba(160,140,100,0.15);
    box-shadow: 0 8px 40px rgba(100,80,40,0.06);
}

.feature-card {
    background: var(--bg);
    padding: 44px 32px;
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .feature-card {
    background: rgba(255,255,255,0.6);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    background: var(--bg2);
}

[data-theme="light"] .feature-card:hover {
    background: rgba(255,248,230,0.6);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--gold-glow2);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

[data-theme="light"] .feature-icon {
    background: rgba(180,140,30,0.08);
    border-color: rgba(180,140,30,0.2);
}

.feature-card:hover .feature-icon {
    background: var(--gold-glow);
    border-color: var(--gold);
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 8px 24px rgba(212,175,55,0.15);
}

.feature-card h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.2;
}

.feature-card p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
}

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

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

.contact-info .section-title {
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 17px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid transparent;
    border-radius: var(--radius-sm);
    transition: all 0.35s ease;
}

[data-theme="light"] .contact-item {
    background: rgba(255,255,255,0.55);
    box-shadow: 0 2px 8px rgba(100,80,40,0.04);
}

a.contact-item:hover {
    border-left-color: var(--gold);
    border-color: var(--border-gold);
    background: var(--gold-glow2);
    transform: translateX(6px);
    box-shadow: 0 4px 24px var(--shadow);
}

[data-theme="light"] a.contact-item:hover {
    background: rgba(255,248,230,0.6);
    box-shadow: 0 4px 20px rgba(180,140,30,0.1);
}

.contact-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow2);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    transition: all 0.35s ease;
}

[data-theme="light"] .contact-icon {
    background: rgba(180,140,30,0.08);
    border-color: rgba(180,140,30,0.2);
}

a.contact-item:hover .contact-icon {
    background: var(--gold-glow);
}

.contact-item div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text3);
    font-weight: 700;
}

.contact-value {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text2);
}

[data-theme="light"] .social-btn {
    background: rgba(255,255,255,0.55);
    box-shadow: 0 2px 8px rgba(100,80,40,0.04);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212,175,55,0.12);
}

/* FORM */
.contact-form-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px;
}

[data-theme="light"] .contact-form-wrap {
    background: rgba(255,255,255,0.65);
    border-color: rgba(160,140,100,0.15);
    box-shadow: 0 8px 40px rgba(100,80,40,0.08), 0 0 0 1px rgba(255,255,255,0.5) inset;
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-note {
    font-size: 13px;
    color: var(--text3);
    margin-bottom: 28px;
}

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

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text2);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

[data-theme="light"] .contact-form input,
[data-theme="light"] .contact-form select,
[data-theme="light"] .contact-form textarea {
    background: rgba(255,255,255,0.7);
    border-color: rgba(160,140,100,0.18);
}

.contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239b9490' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.contact-form select option {
    background: var(--bg2);
    color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow2);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #0a0a0a;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px var(--gold-glow);
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

[data-theme="light"] .submit-btn {
    color: #fff;
    box-shadow: 0 4px 20px rgba(180,140,30,0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--gold-glow);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-privacy {
    font-size: 11px;
    color: var(--text3);
    text-align: center;
    line-height: 1.5;
}

.form-success {
    text-align: center;
    padding: 32px 20px;
    background: var(--gold-glow2);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    margin-top: 16px;
}

.form-success span {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.form-success strong {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text);
    display: block;
    margin-bottom: 6px;
}

.form-success p {
    font-size: 14px;
    color: var(--text2);
}

/* ==============================
   SECTION DIVIDERS — subtle gold lines between sections
   ============================== */
.about-section::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
    pointer-events: none;
    z-index: 2;
}

#cases::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
    pointer-events: none;
    z-index: 2;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
    pointer-events: none;
    z-index: 2;
}

#features::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
    pointer-events: none;
    z-index: 2;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
    pointer-events: none;
    z-index: 2;
}

/* ==============================
   FOOTER
   ============================== */
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold2) 50%, var(--gold) 70%, transparent 100%);
    opacity: 0.4;
}

.footer .container {
    position: relative;
    z-index: 1;
}

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

.footer-brand p {
    font-size: 14px;
    color: var(--text3);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

/* Light footer — warm light style matching the theme */
[data-theme="light"] .footer {
    --text: #2a2418;
    --text2: #5a4e3e;
    --text3: #8a7e6e;
    --border: rgba(160,140,100,0.18);
    --border-gold: rgba(180,140,30,0.3);
    --surface: rgba(255,255,255,0.4);
    --gold: #9a7d22;
    --gold2: #7d6618;
    --gold-glow: rgba(180,140,30,0.2);
    --gold-glow2: rgba(180,140,30,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 10px var(--gold-glow));
}

.footer-logo strong {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    display: block;
    color: var(--text);
}

.footer-logo small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
}

.footer-nav h5 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text3);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a,
.footer-nav li {
    font-size: 14px;
    color: var(--text2);
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text3);
    line-height: 1.6;
}

[data-theme="light"] .footer::before {
    background: linear-gradient(90deg, transparent 0%, rgba(180,140,30,0.4) 30%, rgba(180,140,30,0.5) 50%, rgba(180,140,30,0.4) 70%, transparent 100%);
    opacity: 0.6;
}

[data-theme="light"] .footer-logo-icon {
    filter: drop-shadow(0 0 8px rgba(180,140,30,0.2));
}

[data-theme="light"] .footer-brand p {
    color: var(--text2);
}

[data-theme="light"] .footer-nav h5 {
    color: var(--gold2);
}

[data-theme="light"] .footer-nav a:hover {
    color: var(--gold);
}

[data-theme="light"] .footer-bottom {
    border-top-color: rgba(160,140,100,0.2);
}

[data-theme="light"] .footer-bottom p {
    color: var(--text3);
}


/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1100px) {
    .hero-title { font-size: 68px; }
    .section-title { font-size: 46px; }
    .service-hero { grid-template-columns: 1fr; }
    .service-hero-left { border-right: none; border-bottom: 1px solid var(--border); }
    .service-hero-right { padding: 40px 52px; }
    .service-row { grid-template-columns: 64px 56px 1fr 48px; padding-right: 24px; }
    .sr-num { padding-left: 24px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-photo-wrap { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .section { padding: 80px 0; }
    .hero-title { font-size: 48px; letter-spacing: -1.5px; }
    .hero-sub { font-size: 17px; }
    .hero-stats { padding: 24px; gap: 0; }
    .hero-stat { padding: 0 16px; min-width: 100px; }
    .hero-stat-num { font-size: 38px; }
    .section-title { font-size: 36px; }
    .service-hero-left { padding: 36px 28px; }
    .service-hero-right { padding: 32px 28px; }
    .service-hero-title { font-size: 28px; }
    .service-row { grid-template-columns: 48px 48px 1fr 40px; padding-right: 16px; }
    .sr-num { padding: 24px 0 24px 16px; font-size: 11px; }
    .sr-icon { width: 40px; height: 40px; font-size: 18px; margin: 0 12px 0 4px; }
    .sr-body { padding: 20px 16px 20px 0; }
    .sr-body h3 { font-size: 18px; }
    .sr-body p { display: none; }
    .reviews-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .form-row { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .nav-links, .nav-cta { display: none; }
    .burger { display: flex; }
    .hero { padding: var(--nav-h) 24px 60px; }
    .about-highlights { flex-wrap: wrap; gap: 24px; }
    .hero-btns { flex-direction: column; align-items: center; }
    .contact-form-wrap { padding: 28px 24px; }
    .process-timeline { max-width: 100%; }
    .pt-step { grid-template-columns: 64px 1fr; }
    .pt-num { width: 44px; height: 44px; font-size: 15px; }
    .pt-card { padding: 20px; gap: 14px; }
    .pt-icon { width: 42px; height: 42px; font-size: 20px; }
    .pt-body h3 { font-size: 18px; }
    .pt-tag { display: none; }
    .pt-step:hover .pt-card { transform: none; }
    
    /* Reduce bg orb sizes on mobile */
    .bg-orb { filter: blur(80px); opacity: 0.3; }
    [data-theme="light"] .bg-orb { opacity: 0.5; }
}
