/* ==========================================
   KAMUFLAJ MAKYAJI - PREMIUM DESIGN SYSTEM
   Modern, Apple-esque, Mobile-First
   ========================================== */

/* CSS Variables */
:root {
    /* Colors - Premium Palette */
    --primary: #C9A87C;
    --primary-dark: #B8956A;
    --primary-light: #D4B88E;
    --secondary: #2D3436;
    --secondary-light: #3D4446;
    --accent: #E17055;
    --accent-dark: #D05A3F;

    --bg-primary: #FFFFFF;
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #F8F8F8;
    --bg-dark: #1A1A1A;

    --text-primary: #1A1A1A;
    --text-secondary: #636E72;
    --text-tertiary: #B2BEC3;
    --text-inverse: #FFFFFF;

    /* Shadows - Soft & Premium */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(201, 168, 124, 0.3);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Montserrat', var(--font-primary);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Container */
    --container-max: 1280px;
    --container-padding: 1.5rem;
}

/* Dark Mode - DISABLED: Always use light mode */
/*
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #0F0F0F;
        --bg-secondary: #1A1A1A;
        --bg-tertiary: #252525;

        --text-primary: #FFFFFF;
        --text-secondary: #A0A0A0;
        --text-tertiary: #666666;

        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
        --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    }
}
*/

/* ==========================================
   TOP UTILITY BAR — Refined Premium
   ========================================== */

.topbar.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(90deg, #14141a 0%, #1c1c24 50%, #14141a 100%);
    border-bottom: 1px solid rgba(201, 168, 124, 0.15);
    overflow: visible;
}

.topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    height: 42px;
}

/* Left — contact */
.topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: color 0.25s ease;
    white-space: nowrap;
}
.topbar-link svg {
    width: 13px;
    height: 13px;
    color: #c9a87c;
    flex-shrink: 0;
    opacity: 0.9;
}
.topbar-link:hover {
    color: #fff;
}
.topbar-link:hover svg {
    opacity: 1;
}
.topbar-link--muted {
    color: rgba(255, 255, 255, 0.55);
}
.topbar-link--muted:hover {
    color: rgba(255, 255, 255, 0.9);
}

.topbar-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.12);
}

/* Center — promo */
.topbar-promo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-self: center;
    white-space: nowrap;
}
.topbar-pulse {
    width: 7px;
    height: 7px;
    background: #c9a87c;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}
.topbar-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 168, 124, 0.6);
    animation: topbar-ping 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes topbar-ping {
    0% { transform: scale(0.8); opacity: 1; }
    75%, 100% { transform: scale(2.4); opacity: 0; }
}
.topbar-promo-text {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.01em;
}
.topbar-promo-text strong {
    color: #fff;
    font-weight: 600;
    margin-right: 2px;
}
.topbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    padding: 4px 14px;
    background: rgba(201, 168, 124, 0.12);
    color: #d8b88a;
    border: 1px solid rgba(201, 168, 124, 0.35);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.topbar-cta svg {
    width: 11px;
    height: 11px;
    transition: transform 0.25s ease;
}
.topbar-cta:hover {
    background: linear-gradient(135deg, #c9a87c 0%, #b08c5e 100%);
    color: #14141a;
    border-color: transparent;
}
.topbar-cta:hover svg {
    transform: translateX(2px);
}

/* Right — social + close */
.topbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    min-width: 0;
}
.topbar-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}
.topbar-icon svg {
    width: 14px;
    height: 14px;
}
.topbar-icon:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}
.topbar-close:hover {
    color: #c9a87c;
}

@media (max-width: 1100px) {
    .topbar-left .topbar-link--muted,
    .topbar-left .topbar-sep {
        display: none;
    }
}

@media (max-width: 860px) {
    .topbar-inner {
        grid-template-columns: 1fr auto;
        height: 38px;
        padding: 0 16px;
        gap: 12px;
    }
    .topbar-left {
        display: none;
    }
    .topbar-promo {
        justify-self: start;
        gap: 8px;
        min-width: 0;
        flex-wrap: nowrap;
        overflow: hidden;
    }
    .topbar-promo-text {
        font-size: 11.5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .topbar-cta {
        font-size: 11px;
        padding: 3px 10px;
    }
    .topbar-right > a:not(.topbar-close) {
        display: none;
    }
}

/* ==========================================
   BASE STYLES
   ========================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Hide external injections causing layout issues */
#content_app {
    display: none !important;
}

main {
    flex: 1;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ==========================================
   NAVIGATION - LUXURY BOUTIQUE
   ========================================== */

.navbar-modern {
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    background: rgba(255, 255, 255, 0.0);
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, top 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.page-inner .announcement-bar {
    position: relative;
}

.page-inner .navbar-modern {
    position: relative;
    top: 0;
    margin-bottom: 0;
}

.page-inner main {
    margin-top: 0;
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 2px 16px rgba(15, 23, 42, 0.04);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 32px;
    gap: 10px;
    transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-scrolled .nav-inner {
    padding: 10px 32px;
}

@media (max-width: 1023px) {
    .nav-inner,
    .navbar-scrolled .nav-inner {
        padding: 12px 14px;
    }
}
@media (max-width: 480px) {
    .nav-inner,
    .navbar-scrolled .nav-inner {
        padding: 10px 12px;
    }
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1002;
    flex-shrink: 0;
}

.logo-avatar {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.logo-avatar.small {
    width: 36px;
    height: 36px;
}

.logo-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(201, 168, 124, 0.2);
    transition: all 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.nav-logo:hover .logo-avatar img {
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12), 0 0 0 1.5px rgba(201, 168, 124, 0.5);
}

/* Logo ↔ Profil fotoğrafı arası değişimli geçiş */
.logo-avatar-swap .logo-img-a,
.logo-avatar-swap .logo-img-b {
    position: absolute;
    inset: 0;
    animation: logoSwapFade 8s infinite ease-in-out;
}
.logo-avatar-swap .logo-img-b {
    animation-delay: 4s;
}
@keyframes logoSwapFade {
    0%, 45%   { opacity: 1; transform: scale(1); }
    50%, 95%  { opacity: 0; transform: scale(0.92); }
    100%      { opacity: 1; transform: scale(1); }
}

.logo-avatar-ring {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.35s ease;
    pointer-events: none;
}

.nav-logo:hover .logo-avatar-ring {
    inset: -4px;
    border-color: rgba(201, 168, 124, 0.3);
}

/* Stories Avatar Ring */
.logo-avatar.has-stories {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.logo-avatar.has-stories .logo-avatar-ring {
    border: 2px solid transparent;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    inset: -4px;
    animation: story-ring-pulse 3s ease-in-out infinite;
}

@keyframes story-ring-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.logo-avatar.has-stories:hover .logo-avatar-ring {
    inset: -5px;
    opacity: 0.9;
}

/* Stories Viewer Overlay */
.stories-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: stories-fade-in 0.3s ease;
}

@keyframes stories-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.stories-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 90vh;
    max-height: 750px;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

@media (max-width: 480px) {
    .stories-container {
        max-width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
}

.stories-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 4px;
    padding: 12px 12px 0;
    z-index: 3;
}

.stories-progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
}

.stories-progress-fill {
    height: 100%;
    background: #fff;
    border-radius: 3px;
    width: 0%;
    transition: none;
}

.stories-header {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    z-index: 3;
}

.stories-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stories-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.3);
}

.stories-user-name {
    display: block;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.stories-user-time {
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
}

.stories-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.stories-close:hover {
    opacity: 1;
}

.stories-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stories-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stories-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 20px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    z-index: 2;
    text-align: center;
}

.stories-caption-text {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.4;
}

.stories-caption-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.stories-caption-link:hover {
    background: rgba(255,255,255,0.25);
}

.stories-nav {
    position: absolute;
    top: 70px;
    bottom: 80px;
    width: 40%;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
}

.stories-prev {
    left: 0;
}

.stories-next {
    right: 0;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.logo-brand {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.005em;
}
.logo-brand .text-primary {
    font-weight: 500;
    color: var(--primary);
}

.logo-sub {
    font-size: 0.58rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-weight: 500;
    margin-top: 3px;
    opacity: 0.8;
}

/* Nav Center - Underline Links */
.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 999px;
    padding: 4px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.navbar-scrolled .nav-links {
    background: rgba(15, 23, 42, 0.03);
    border-color: rgba(15, 23, 42, 0.05);
}

.nav-link-item {
    position: relative;
}

.nav-link-item.has-mega {
    position: relative;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.005em;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 999px;
    transition: all 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.8);
}
.navbar-scrolled .nav-link:hover {
    background: rgba(15, 23, 42, 0.04);
}

.nav-link.active {
    color: #14141a;
    font-weight: 600;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(201, 168, 124, 0.18);
}
.navbar-scrolled .nav-link.active {
    background: #fff;
}

/* Featured — ana hizmet vurgusu */
.nav-link-featured {
    color: #8a6a3a !important;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(201,168,124,0.16), rgba(201,168,124,0.06));
    box-shadow: inset 0 0 0 1px rgba(201, 168, 124, 0.3);
}
.nav-link-featured:hover {
    color: #6b4f24 !important;
    background: linear-gradient(135deg, rgba(201,168,124,0.28), rgba(201,168,124,0.12)) !important;
    box-shadow: inset 0 0 0 1px rgba(201, 168, 124, 0.5);
}
.nav-link-featured.active {
    color: #6b4f24 !important;
    background: #fff !important;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 0 0 1.5px rgba(201, 168, 124, 0.6);
}

/* Soon — coming soon variant */
.nav-link--soon {
    cursor: default;
    opacity: 0.85;
    gap: 8px;
    padding-right: 8px;
}
.nav-link--soon:hover {
    background: rgba(201, 168, 124, 0.08);
    color: #5a5a5a;
}
.nav-link-soon-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: linear-gradient(135deg, #c9a87c 0%, #b08c5e 100%);
    color: #fff;
    border-radius: 999px;
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 2px 6px rgba(201, 168, 124, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    line-height: 1.4;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.nav-link-soon-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: nav-soon-shine 3s ease-in-out infinite;
}
@keyframes nav-soon-shine {
    0%, 60% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.nav-arrow {
    width: 13px;
    height: 13px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    opacity: 0.6;
}

.nav-link-item.has-mega:hover .nav-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* ==========================================
   MEGA DROPDOWN - Hizmetler
   ========================================== */

.nav-link-item.has-mega {
    position: relative;
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 880px;
    padding-top: 14px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1), visibility 0.28s ease;
    z-index: 100;
}

.mega-dropdown-inner {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.14), 0 8px 24px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.nav-link-item.has-mega:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

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

.mega-cols {
    display: grid;
    grid-template-columns: 320px 1fr;
    min-height: 440px;
}

/* Sol kolon */
.mega-col-left {
    padding: 18px 14px;
    background: linear-gradient(180deg, #fcfaf6 0%, #ffffff 100%);
    border-right: 1px solid rgba(15, 23, 42, 0.06);
    max-height: 480px;
    overflow-y: auto;
}
.mega-col-left::-webkit-scrollbar { width: 4px; }
.mega-col-left::-webkit-scrollbar-thumb { background: rgba(201, 168, 124, 0.3); border-radius: 4px; }
.mega-col-left::-webkit-scrollbar-track { background: transparent; }

.mega-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #7a5d35;
    padding: 4px 10px 14px;
}
.mega-heading::before {
    content: '';
    width: 18px;
    height: 1.5px;
    background: linear-gradient(90deg, #c9a87c, transparent);
    border-radius: 2px;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.mega-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, #c9a87c, #b08c5e);
    border-radius: 0 2px 2px 0;
    transition: transform 0.2s ease;
}

.mega-item:hover,
.mega-item.is-active {
    background: rgba(201, 168, 124, 0.08);
}
.mega-item.is-active::before {
    transform: translateY(-50%) scaleY(1);
}

.mega-item-thumb {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    object-fit: cover;
    flex-shrink: 0;
    background: #faf7f1;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.mega-item-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.25;
    transition: color 0.2s ease;
}

.mega-item.is-active .mega-item-title,
.mega-item:hover .mega-item-title {
    color: #14141a;
}

.mega-item-sub {
    font-size: 11.5px;
    color: var(--text-tertiary);
    margin-top: 2px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Sağ kolon - Preview */
.mega-col-right {
    padding: 22px;
    background: linear-gradient(135deg, #fcfaf6 0%, #f3ede2 100%);
    position: relative;
}
.mega-col-right::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201,168,124,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.mega-preview-box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.mega-preview-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: #faf7f1;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}
.mega-preview-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.mega-preview-hero:hover img {
    transform: scale(1.04);
}
.mega-preview-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(20, 20, 26, 0.5) 100%);
    pointer-events: none;
}

.mega-preview-top {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.mega-preview-img {
    display: none;
}

.mega-preview-info {
    flex: 1;
    min-width: 0;
}

.mega-preview-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #14141a;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.mega-preview-info p {
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mega-subs-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #7a5d35;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mega-subs-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(201,168,124,0.3), transparent);
}

.mega-subs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mega-sub-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px 6px 14px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}
.mega-sub-chip:hover {
    border-color: rgba(201, 168, 124, 0.5);
    color: #14141a;
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(201, 168, 124, 0.15);
}
.mega-sub-chip svg {
    opacity: 0;
    margin-left: -8px;
    transition: all 0.2s ease;
    color: #c9a87c;
}
.mega-sub-chip:hover svg {
    opacity: 1;
    margin-left: 0;
}

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

.mega-tags span {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(201, 168, 124, 0.12);
    border-radius: 100px;
    font-size: 0.73rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.mega-detail-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #c9a87c 0%, #b08c5e 100%);
    border-radius: 999px;
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
    box-shadow: 0 4px 12px rgba(201, 168, 124, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.mega-detail-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(201, 168, 124, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.mega-detail-link svg {
    transition: transform 0.3s ease;
}

.mega-detail-link:hover svg {
    transform: translateX(3px);
}

/* CTA Button */
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #c9a87c 0%, #b08c5e 100%);
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.005em;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(201, 168, 124, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    position: relative;
    overflow: hidden;
}
.nav-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(201, 168, 124, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.nav-cta-btn:hover::before {
    opacity: 1;
}
.nav-cta-btn svg {
    position: relative;
    z-index: 1;
}

/* Mobile actions wrapper */
.nav-mobile-actions {
    display: none;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Instagram CTA — compact pill */
.nav-ig-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px 4px 4px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
    flex-shrink: 0;
}
.nav-ig-cta:hover, .nav-ig-cta:active {
    border-color: rgba(220, 39, 67, 0.35);
    box-shadow: 0 4px 10px rgba(220, 39, 67, 0.15);
}
.nav-ig-cta-icon {
    position: relative;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 2px 6px rgba(220, 39, 67, 0.28);
}
.nav-ig-cta-icon svg {
    width: 13px;
    height: 13px;
}
.nav-ig-cta-pulse {
    position: absolute;
    top: 0;
    right: 0;
    width: 7px;
    height: 7px;
    background: #22c55e;
    border: 1.5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    animation: nav-ig-pulse 2s ease-out infinite;
}
@keyframes nav-ig-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    50% { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
}
.nav-ig-cta-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: #14141a;
    letter-spacing: -0.005em;
    white-space: nowrap;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    transition: background 0.2s ease;
    z-index: 1010;
    gap: 3px;
    padding: 0;
    flex-shrink: 0;
}

.nav-hamburger:hover {
    background: rgba(0, 0, 0, 0.04);
}

.hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--text-primary);
    line-height: 1;
    margin-top: 1px;
}

.nav-hamburger.is-active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================
   MOBILE DRAWER — Premium Redesign
   ========================================== */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(15, 23, 42, 0);
    pointer-events: none;
    transition: background 0.35s ease;
    backdrop-filter: blur(0px);
}
.mobile-drawer.is-open {
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: auto;
}

.mobile-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -16px 0 40px rgba(15, 23, 42, 0.18);
}
.mobile-drawer-panel.is-open {
    transform: translateX(0);
}

/* Hero/Profile Header */
.mobile-drawer-hero {
    position: relative;
    padding: 26px 24px 20px;
    background: linear-gradient(135deg, #14141a 0%, #1c1c24 60%, #14141a 100%);
    color: #fff;
    overflow: hidden;
}
.mobile-drawer-hero-bg {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,124,0.32) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

.mobile-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.25s ease;
}
.mobile-close:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    transform: rotate(90deg);
}

.mobile-drawer-profile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}
.mobile-drawer-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}
.mobile-drawer-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(201, 168, 124, 0.6);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 4px rgba(201, 168, 124, 0.12);
}
.mobile-drawer-status {
    position: absolute;
    right: 2px;
    bottom: 2px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border: 2px solid #14141a;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    animation: drawer-pulse 2s ease-out infinite;
}
@keyframes drawer-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}
.mobile-drawer-profile-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.mobile-drawer-eyebrow {
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #d8b88a;
}
.mobile-drawer-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.15;
}
.mobile-drawer-role {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.mobile-drawer-rating {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.6);
}
.mobile-drawer-rating strong {
    color: #fff;
    font-weight: 600;
}
.mobile-drawer-stars {
    display: flex;
    gap: 1px;
    color: #f5b73c;
}
.mobile-drawer-stars svg {
    width: 12px;
    height: 12px;
}

/* Nav */
.mobile-nav {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 14px 14px 8px;
}
.mobile-nav::-webkit-scrollbar { width: 4px; }
.mobile-nav::-webkit-scrollbar-thumb { background: rgba(201,168,124,0.25); border-radius: 4px; }

.mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    color: #14141a;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.mobile-link:hover {
    background: rgba(201, 168, 124, 0.06);
}
.mobile-link.active {
    font-weight: 600;
    background: linear-gradient(135deg, rgba(201,168,124,0.12) 0%, rgba(201,168,124,0.04) 100%);
    border-color: rgba(201, 168, 124, 0.25);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.mobile-link.active .mobile-link-icon {
    background: linear-gradient(135deg, #c9a87c, #b08c5e);
    color: #fff;
    box-shadow: 0 4px 10px rgba(201, 168, 124, 0.3);
}

.mobile-link-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 124, 0.1);
    border-radius: 11px;
    color: #c9a87c;
    transition: all 0.25s ease;
}
.mobile-link-icon svg {
    width: 18px;
    height: 18px;
}
.mobile-link-label {
    flex: 1;
    min-width: 0;
}
.mobile-link-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: rgba(201, 168, 124, 0.18);
    color: #7a5d35;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.mobile-link-arrow {
    color: #c9a87c;
    opacity: 0.5;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.mobile-link:hover .mobile-link-arrow {
    opacity: 1;
    transform: translateX(2px);
}

/* Mobile soon variant */
.mobile-link--soon {
    cursor: default;
    opacity: 0.92;
}
.mobile-link--soon:hover {
    background: rgba(201, 168, 124, 0.06);
}
.mobile-link-soon-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    background: linear-gradient(135deg, #c9a87c 0%, #b08c5e 100%);
    color: #fff;
    border-radius: 999px;
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 2px 6px rgba(201, 168, 124, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    line-height: 1.4;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.mobile-link-soon-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: nav-soon-shine 3s ease-in-out infinite;
}

/* Sub-services as mini cards */
.mobile-sub-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px 4px 6px;
    margin: 0 0 4px;
    border-left: none;
}
.mobile-sub-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 8px;
    background: linear-gradient(180deg, #fff 0%, #fbf8f2 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}
.mobile-sub-card:hover {
    border-color: rgba(201, 168, 124, 0.4);
    box-shadow: 0 4px 12px rgba(201, 168, 124, 0.12);
    transform: translateY(-1px);
}
.mobile-sub-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    object-fit: cover;
    background: linear-gradient(135deg, #faf7f1, #f3ede2);
}
.mobile-sub-thumb--placeholder {
    display: block;
}
.mobile-sub-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    color: #14141a;
    line-height: 1.3;
    padding: 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mobile-sub-card svg {
    position: absolute;
    top: 14px;
    right: 14px;
    color: #fff;
    background: rgba(20, 20, 26, 0.55);
    padding: 4px;
    border-radius: 50%;
    width: 18px;
    height: 18px;
}

/* Section divider */
.mobile-nav-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 14px 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #7a5d35;
}
.mobile-nav-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(201,168,124,0.35), transparent);
}

/* Contact rows */
.mobile-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.mobile-contact-row:hover {
    background: rgba(201, 168, 124, 0.06);
}
.mobile-contact-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}
.mobile-contact-text strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #14141a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mobile-contact-text span {
    font-size: 11px;
    color: #7a7a7a;
}

/* Footer */
.mobile-drawer-footer {
    padding: 14px 18px 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    background: linear-gradient(180deg, #fff 0%, #fbf8f2 100%);
    display: flex;
    align-items: center;
    gap: 10px;
}
.mobile-cta {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 16px;
    background: linear-gradient(135deg, #25D366 0%, #1DA855 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: all 0.25s ease;
    white-space: nowrap;
}
.mobile-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.42);
}

.mobile-social {
    display: flex;
    gap: 6px;
}
.mobile-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    color: #5a5a5a;
    transition: all 0.25s ease;
}
.mobile-social a:hover {
    border-color: rgba(201, 168, 124, 0.4);
    color: #c9a87c;
    background: rgba(201, 168, 124, 0.06);
}
.mobile-social svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 380px) {
    .mobile-drawer-panel { max-width: 100%; }
}

/* Responsive */
@media (max-width: 1023px) {
    .nav-center {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-cta-btn {
        display: none;
    }

    .nav-mobile-actions {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .mobile-drawer {
        display: none;
    }

    .nav-hamburger {
        display: none !important;
    }

    .nav-mobile-actions {
        display: none !important;
    }
}

/* Very small phones — drop the label, keep just the icon */
@media (max-width: 380px) {
    .nav-ig-cta {
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    .nav-ig-cta-text {
        display: none;
    }
    .nav-ig-cta-icon {
        width: 32px;
        height: 32px;
    }
    .nav-ig-cta-icon svg {
        width: 15px;
        height: 15px;
    }
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-inverse);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--text-inverse);
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1rem;
}

.btn-cta {
    background: #25D366;
    color: white;
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1rem;
}

.btn-cta:hover {
    background: #1DA855;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px var(--container-padding) var(--space-4xl);
    /* Extra 40px for announcement bar */
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

/* Hero Slider Styles */
.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroSlideZoom 8s ease-in-out infinite alternate;
}

@keyframes heroSlideZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.85) 0%,
            rgba(255, 255, 255, 0.7) 50%,
            rgba(255, 255, 255, 0.85) 100%);
}

/* Dark mode disabled
@media (prefers-color-scheme: dark) {
    .hero-overlay {
        background: linear-gradient(135deg,
                rgba(15, 15, 15, 0.85) 0%,
                rgba(15, 15, 15, 0.7) 50%,
                rgba(15, 15, 15, 0.85) 100%);
    }
}
*/

.hero-gradient {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 124, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, 30px);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(201, 168, 124, 0.1);
    border: 1px solid rgba(201, 168, 124, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--text-tertiary);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-tertiary);
    font-size: 0.75rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--text-tertiary);
    border-bottom: 2px solid var(--text-tertiary);
    transform: rotate(45deg);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(10px);
    }

    60% {
        transform: translateX(-50%) translateY(5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ==========================================
   IMAGE MARQUEE / INFINITE SCROLL CAROUSEL
   ========================================== */

.image-marquee {
    padding: var(--space-2xl) 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    gap: var(--space-lg);
    padding-right: var(--space-lg);
}

.marquee-item {
    position: relative;
    display: block;
    width: 220px;
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #faf7f1 0%, #f3ede2 100%);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
    text-decoration: none;
}

.marquee-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1), 0 24px 48px rgba(201, 168, 124, 0.14);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #faf7f1;
    transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.marquee-item:hover img {
    transform: scale(1.04);
}

.marquee-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201, 168, 124, 0.5);
}
.marquee-item-placeholder svg {
    width: 48px;
    height: 48px;
}

.marquee-label {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: block;
    padding: 8px 12px;
    background: rgba(20, 20, 26, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 10px;
    text-align: center;
    transform: translateY(4px);
    opacity: 0;
    transition: all .3s cubic-bezier(.2,.7,.2,1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.marquee-item:hover .marquee-label {
    transform: translateY(0);
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive marquee sizes */
@media (max-width: 768px) {
    .marquee-item {
        width: 170px;
        height: 170px;
        border-radius: 14px;
    }
    .marquee-content {
        gap: var(--space-md);
        padding-right: var(--space-md);
    }
    .marquee-label {
        opacity: 1;
        transform: translateY(0);
        font-size: 11px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .marquee-item {
        width: 140px;
        height: 140px;
    }
    .marquee-label {
        font-size: 10.5px;
        left: 8px;
        right: 8px;
        bottom: 8px;
    }
}

/* ==========================================
   VIDEO SECTION
   ========================================== */

.video-section {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
    overflow: hidden;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
}

.video-content {
    padding-right: var(--space-xl);
}

.video-content .section-badge {
    margin-bottom: var(--space-md);
}

.video-content .section-title {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.video-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.video-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl) 0;
}

.video-features li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.video-features li svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.video-player {
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    aspect-ratio: 16/9;
    background: #000;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.video-placeholder:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    box-shadow: 0 10px 40px rgba(201, 168, 124, 0.4);
}

.video-play-btn svg {
    width: 32px;
    height: 32px;
    color: white;
    margin-left: 4px;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 50px rgba(201, 168, 124, 0.5);
}

.video-play-btn::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(201, 168, 124, 0.3);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.video-duration {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

.video-duration svg {
    width: 14px;
    height: 14px;
}

.video-iframe-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-iframe-container iframe {
    width: 100%;
    height: 100%;
}

.video-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.caption-icon {
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .video-content {
        padding-right: 0;
        text-align: center;
    }

    .video-content .section-title {
        text-align: center;
    }

    .video-features {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .video-content .btn {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .video-play-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* ==========================================
   SECTION STYLES
   ========================================== */

section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    background: rgba(201, 168, 124, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ==========================================
   WHAT IS CAMOUFLAGE MAKEUP SECTION
   ========================================== */

.what-is-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.what-is-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 124, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.what-is-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-3xl);
    align-items: start;
}

@media (max-width: 1024px) {
    .what-is-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

.what-is-content {
    max-width: 700px;
}

.what-is-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
}

.what-is-intro strong {
    color: var(--primary);
    font-weight: 600;
}

/* Concerns List */
.concerns-list {
    margin-bottom: var(--space-2xl);
}

.concerns-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(201, 168, 124, 0.3);
}

.concern-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.concern-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 168, 124, 0.3);
}

.concern-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 168, 124, 0.15) 0%, rgba(201, 168, 124, 0.05) 100%);
    border-radius: var(--radius-md);
    color: var(--primary);
}

.concern-icon svg {
    width: 24px;
    height: 24px;
}

.concern-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.concern-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA in What Is Section */
.what-is-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
}

.cta-note {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    font-style: italic;
}

/* Visual Cards */
.what-is-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (max-width: 1024px) {
    .what-is-visual {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .what-is-visual {
        grid-template-columns: repeat(2, 1fr);
    }
}

.visual-card {
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

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

.visual-card.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
}

.visual-card.highlight .stat-big,
.visual-card.highlight .stat-desc {
    color: white;
}

.stat-big {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Visual Quote */
.visual-quote {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(201, 168, 124, 0.1) 0%, rgba(201, 168, 124, 0.05) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border-left: 4px solid var(--primary);
}

.visual-quote blockquote {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.visual-quote cite {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    font-style: normal;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    position: relative;
    padding: 0;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
    overflow: hidden;
    cursor: pointer;
}

/* Dark mode disabled
@media (prefers-color-scheme: dark) {
    .service-card {
        background: var(--bg-tertiary);
        border-color: rgba(255, 255, 255, 0.05);
    }
}
*/

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
    z-index: 10;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

/* Service Card Image */
.service-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover .service-image-overlay {
    opacity: 1;
}

/* Service Card Content */
.service-content {
    padding: var(--space-lg);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 124, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    z-index: 5;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover .service-desc {
    max-height: 100px;
    opacity: 1;
    margin-bottom: var(--space-md);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.1s;
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-base);
}

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

/* ==========================================
   TESTIMONIALS MARQUEE
   ========================================== */

.testimonials-marquee {
    padding: 80px 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.marquee-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marqueeScroll 60s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-card {
    flex-shrink: 0;
    width: 340px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s;
    cursor: default;
}

.marquee-card:hover {
    border-color: rgba(201,168,124,0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.marquee-card-stars {
    display: flex;
    gap: 2px;
    color: #F59E0B;
    margin-bottom: 14px;
}

.marquee-card-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary, #555);
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.marquee-card-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.marquee-card-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light, #E8D5B7), var(--primary, #C9A87C));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
}

.marquee-card-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary, #1a1a2e);
}

.marquee-card-city {
    display: block;
    font-size: 0.72rem;
    color: var(--text-tertiary, #999);
}

/* ==========================================
   BLOG SECTION
   ========================================== */

.blog-section {
    background: var(--bg-primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.blog-card {
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.blog-category {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
}

.blog-content {
    padding: var(--space-lg);
}

.blog-date {
    display: block;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-bottom: var(--space-sm);
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: var(--space-sm);
}

.blog-title a {
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition-fast);
}

.blog-read-more svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.blog-read-more:hover {
    color: var(--primary-dark);
}

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

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

.blog-cta .btn {
    gap: var(--space-sm);
}

.blog-cta .btn svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

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

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

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq {
    background: var(--bg-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition-base);
}

/* Dark mode disabled
@media (prefers-color-scheme: dark) {
    .faq-item {
        background: var(--bg-tertiary);
        border-color: rgba(255, 255, 255, 0.05);
    }
}
*/

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition-base);
}

.faq-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 124, 0.1);
    border-radius: var(--radius-sm);
    color: var(--primary);
    flex-shrink: 0;
}

.faq-icon svg {
    width: 20px;
    height: 20px;
}

.faq-text {
    flex: 1;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.faq-toggle svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-base);
}

.faq-question[aria-expanded="true"] .faq-toggle {
    background: var(--primary);
    color: white;
}

.faq-question[aria-expanded="true"] .faq-toggle svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    padding-left: calc(40px + var(--space-lg) + var(--space-md));
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: var(--space-lg);
    background: var(--primary);
    color: white;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 767px) {
    .about-badge {
        right: var(--space-lg);
    }
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.85rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.about-features li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-weight: 500;
}

.about-features svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
}

.cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .cta-card {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-sm);
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--bg-dark);
    color: var(--text-inverse);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-brand .logo-text {
    color: white;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    margin: var(--space-md) 0 var(--space-lg);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ==========================================
   FLOATING WHATSAPP
   ========================================== */

.whatsapp-float {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-base);
}

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

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    padding: var(--space-sm) var(--space-md);
    background: white;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-base);
    white-space: nowrap;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================
   AI CHAT WIDGET
   ========================================== */

[x-cloak] {
    display: none !important;
}

.chat-float {
    position: fixed;
    bottom: calc(var(--space-xl) + 80px);
    right: var(--space-xl);
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201, 168, 124, 0.4);
    z-index: 998;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(201, 168, 124, 0.5);
}

.chat-float svg {
    width: 26px;
    height: 26px;
    color: white;
}

.chat-window {
    position: fixed;
    bottom: calc(var(--space-xl) + 150px);
    right: var(--space-xl);
    width: 380px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.chat-header-name {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
}

.chat-header-status {
    font-size: 0.72rem;
    opacity: 0.8;
    letter-spacing: 0.02em;
}

.chat-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-close svg {
    width: 18px;
    height: 18px;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 340px;
    min-height: 200px;
    background: #fafafa;
}

.chat-message {
    display: flex;
}

.chat-message.user {
    justify-content: flex-end;
}

.chat-message.assistant {
    justify-content: flex-start;
}

.chat-bubble {
    max-width: 82%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.88rem;
    line-height: 1.55;
    word-wrap: break-word;
}

.chat-message.assistant .chat-bubble {
    background: #fff;
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom-left-radius: 4px;
}

.chat-message.user .chat-bubble {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-input-area {
    padding: 12px 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
}

.chat-input-area form {
    display: flex;
    gap: 8px;
    align-items: center;
}

#chat-input {
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    padding: 10px 16px;
    font-size: 0.88rem;
    font-family: var(--font-primary);
    background: #fafafa;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

#chat-input:focus {
    border-color: var(--primary);
    background: #fff;
}

#chat-input::placeholder {
    color: var(--text-tertiary);
}

#chat-send {
    background: var(--primary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

#chat-send svg {
    width: 18px;
    height: 18px;
    color: white;
}

#chat-send:hover {
    background: var(--primary-dark);
}

#chat-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* WhatsApp link in chat */
.chat-wa-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.chat-wa-link:hover {
    background: #1DA855;
    transform: translateY(-1px);
}

.chat-wa-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Suggestion buttons */
.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.chat-suggestion-btn {
    background: rgba(201, 168, 124, 0.1);
    border: 1px solid rgba(201, 168, 124, 0.3);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-primary);
    text-align: left;
    line-height: 1.3;
}

.chat-suggestion-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Page link in chat */
.chat-page-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(201, 168, 124, 0.1);
    color: var(--primary-dark) !important;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.chat-page-link:hover {
    background: var(--primary);
    color: #fff !important;
    transform: translateY(-1px);
}

/* Time slot grid */
.chat-time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.chat-time-btn {
    text-align: center;
    justify-content: center;
    font-variant-numeric: tabular-nums;
}

/* Typing indicator */
.chat-typing .chat-bubble {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 14px 18px;
}

.typing-dot {
    width: 7px;
    height: 7px;
    background: var(--text-tertiary);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-5px);
    }
}

/* ↳ Kept for legacy desktop responsive only — overridden by mobile bottom bar */
@media (min-width: 481px) and (max-width: 768px) {
    /* nothing — the new bottom bar takes over below 768 */
}

/* Hide label by default (desktop) */
.float-label { display: none; }

/* ==========================================
   MOBILE BOTTOM ACTION BAR (.mbar)
   Dedicated element — independent of any Alpine wrapper
   ========================================== */
.mbar { display: none; }

@media (max-width: 768px) {
    body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }

    /* Hide desktop floating buttons on mobile — replaced by .mbar */
    .whatsapp-float,
    .chat-float { display: none !important; }

    /* The new dedicated bottom bar */
    .mbar {
        position: fixed;
        left: 0; right: 0; bottom: 0;
        display: flex;
        height: calc(60px + env(safe-area-inset-bottom, 0px));
        padding-bottom: env(safe-area-inset-bottom, 0px);
        z-index: 1050;
        box-shadow: 0 -2px 16px rgba(15, 23, 42, 0.1);
        touch-action: pan-y;
    }

    .mbar-btn {
        position: relative;
        flex: 1 1 50%;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 0 12px;
        background: #25D366;
        color: #fff;
        text-decoration: none;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        cursor: pointer;
        font-family: 'Montserrat', sans-serif;
    }
    .mbar-btn--chat { overflow: hidden; }

    /* AI Assistant — animated gold */
    .mbar-btn--chat {
        background: linear-gradient(135deg, #c9a87c 0%, #b08c5e 50%, #c9a87c 100%);
        background-size: 200% 100%;
        animation: mbar-shift 6s ease-in-out infinite;
    }
    @keyframes mbar-shift {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }
    .mbar-btn--chat::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
        transform: translateX(-100%);
        animation: mbar-shimmer 4s ease-in-out infinite;
        pointer-events: none;
    }
    @keyframes mbar-shimmer {
        0%, 70% { transform: translateX(-100%); }
        100% { transform: translateX(150%); }
    }

    /* WhatsApp — green gradient */
    .mbar-btn--wa {
        background: linear-gradient(135deg, #25D366 0%, #1DA855 100%);
    }
    .mbar-btn--wa::before {
        content: '';
        position: absolute;
        left: 0; top: 12px; bottom: 12px;
        width: 1px;
        background: rgba(255, 255, 255, 0.2);
    }

    .mbar-icon {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        z-index: 1;
    }
    .mbar-icon svg {
        width: 22px;
        height: 22px;
        color: #fff;
    }
    .mbar-btn--chat .mbar-icon {
        animation: mbar-bounce 2.4s ease-in-out infinite;
    }
    @keyframes mbar-bounce {
        0%, 100% { transform: translateY(0) rotate(0); }
        25% { transform: translateY(-2px) rotate(-3deg); }
        50% { transform: translateY(0) rotate(0); }
        75% { transform: translateY(-2px) rotate(3deg); }
    }

    .mbar-status {
        position: absolute;
        top: -2px; right: -2px;
        width: 9px; height: 9px;
        background: #22c55e;
        border: 1.5px solid #fff;
        border-radius: 50%;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
        animation: mbar-pulse 1.6s ease-out infinite;
    }
    @keyframes mbar-pulse {
        0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
        50% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
    }

    .mbar-label {
        font-size: 14px;
        font-weight: 700;
        color: #fff;
        letter-spacing: 0.02em;
        position: relative;
        z-index: 1;
    }

    /* Stacked text for WhatsApp button — label + phone */
    .mbar-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1.15;
        position: relative;
        z-index: 1;
        min-width: 0;
        overflow: hidden;
    }
    .mbar-text strong {
        font-family: 'Montserrat', sans-serif;
        font-size: 12.5px;
        font-weight: 700;
        color: #fff;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }
    .mbar-phone {
        font-family: 'Montserrat', sans-serif;
        font-size: 10.5px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.88);
        letter-spacing: 0.01em;
        white-space: nowrap;
    }

    /* Swipe-to-search handle on the far right */
    .mbar-swipe-handle {
        position: absolute;
        top: 0;
        right: 0;
        bottom: env(safe-area-inset-bottom, 0px);
        width: 38px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        background: linear-gradient(135deg, rgba(20, 20, 26, 0.85), rgba(20, 20, 26, 0.7));
        border: none;
        border-left: 1px solid rgba(255, 255, 255, 0.12);
        cursor: pointer;
        z-index: 2;
        backdrop-filter: blur(4px);
    }
    .mbar-swipe-handle::before {
        content: '';
        position: absolute;
        top: 8px; bottom: 8px; left: 0;
        width: 1px;
        background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    }
    .mbar-swipe-arrows {
        display: inline-flex;
        align-items: center;
        gap: 0;
        color: #c9a87c;
        height: 16px;
    }
    .mbar-swipe-arrows svg {
        width: 11px;
        height: 11px;
        opacity: 0.4;
        animation: mbar-swipe-arrow 1.5s ease-in-out infinite;
        margin-left: -3px;
    }
    .mbar-swipe-arrows svg:nth-child(1) {
        animation-delay: 0s;
    }
    .mbar-swipe-arrows svg:nth-child(2) {
        animation-delay: 0.2s;
    }
    .mbar-swipe-arrows svg:nth-child(3) {
        animation-delay: 0.4s;
    }
    @keyframes mbar-swipe-arrow {
        0%, 100% { opacity: 0.3; transform: translateX(2px); }
        50% { opacity: 1; transform: translateX(-1px); }
    }
    .mbar-swipe-label {
        font-family: 'Montserrat', sans-serif;
        font-size: 8.5px;
        font-weight: 700;
        letter-spacing: 0.16em;
        color: #c9a87c;
    }
    /* Make WA button leave space for the swipe handle */
    .mbar-btn--wa {
        padding-right: 46px;
    }

    .mbar-typing {
        display: inline-flex;
        align-items: center;
        gap: 3px;
        height: 6px;
        position: relative;
        z-index: 1;
    }
    .mbar-typing > span {
        display: block;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.85);
        animation: mbar-dot 1.4s ease-in-out infinite;
    }
    .mbar-typing > span:nth-child(2) { animation-delay: 0.2s; }
    .mbar-typing > span:nth-child(3) { animation-delay: 0.4s; }
    @keyframes mbar-dot {
        0%, 60%, 100% { transform: translateY(0); opacity: 0.55; }
        30% { transform: translateY(-3px); opacity: 1; }
    }

    /* Tiny screens */
    @media (max-width: 360px) {
        .mbar-label { font-size: 13px; }
        .mbar-icon svg { width: 20px; height: 20px; }
    }

    /* Chat window — anchored between header and bottom action bar */
    .chat-window {
        position: fixed !important;
        top: 120px !important;
        bottom: 72px !important;
        right: 8px !important;
        left: 8px !important;
        width: auto !important;
        max-width: none !important;
        max-height: none !important;
        z-index: 1000 !important;
    }
    .chat-messages {
        flex: 1 !important;
        max-height: none !important;
        min-height: 0 !important;
    }
}

/* ==========================================
   MOBILE QUICK SEARCH (swipe-triggered)
   ========================================== */
.mobile-search {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: stretch;
    pointer-events: none;
}
.mobile-search.is-open { display: flex; pointer-events: auto; }

.mobile-search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0);
    backdrop-filter: blur(0);
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.mobile-search.is-open .mobile-search-backdrop {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.mobile-search-panel {
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 100%;
    max-width: 420px;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -16px 0 40px rgba(15, 23, 42, 0.18);
}
.mobile-search.is-open .mobile-search-panel { transform: translateX(0); }

.mobile-search-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    background: linear-gradient(180deg, #fff 0%, #fbf8f2 100%);
}
.mobile-search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    background: rgba(201, 168, 124, 0.08);
    border: 1px solid rgba(201, 168, 124, 0.25);
    border-radius: 999px;
    transition: all 0.25s ease;
}
.mobile-search-input-wrap:focus-within {
    background: #fff;
    border-color: rgba(201, 168, 124, 0.5);
    box-shadow: 0 0 0 3px rgba(201, 168, 124, 0.15);
}
.mobile-search-icon { width: 16px; height: 16px; color: #c9a87c; flex-shrink: 0; }
#mobile-search-input {
    flex: 1;
    height: 44px;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #14141a;
    min-width: 0;
}
#mobile-search-input::placeholder { color: #a0a0a0; font-weight: 400; }
.mobile-search-clear {
    width: 24px; height: 24px;
    display: none;
    align-items: center; justify-content: center;
    background: rgba(15, 23, 42, 0.08);
    border: none; border-radius: 50%;
    color: #5a5a5a; cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.mobile-search-clear:hover { background: #14141a; color: #fff; }
.mobile-search-clear svg { width: 12px; height: 12px; }
.mobile-search-clear.is-visible { display: inline-flex; }

.mobile-search-close {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(15, 23, 42, 0.04);
    border: none; border-radius: 50%;
    color: #5a5a5a; cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.mobile-search-close:hover { background: #14141a; color: #fff; transform: rotate(90deg); }
.mobile-search-close svg { width: 18px; height: 18px; }

.mobile-search-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(180deg, #fbf8f2 0%, #fff 100%);
    font-size: 12px;
    color: #6a6a6a;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}
.mobile-search-hint strong { color: #14141a; font-weight: 700; }
.mobile-search-hint-dot {
    width: 7px; height: 7px;
    background: #c9a87c;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(201, 168, 124, 0.5);
    animation: ms-hint-pulse 2s ease-out infinite;
}
@keyframes ms-hint-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 124, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(201, 168, 124, 0); }
}

.mobile-search-results {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 10px;
}
.mobile-search-results::-webkit-scrollbar { width: 4px; }
.mobile-search-results::-webkit-scrollbar-thumb { background: rgba(201, 168, 124, 0.25); border-radius: 4px; }

.mobile-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    text-decoration: none;
    transition: background 0.2s ease;
}
.mobile-search-item:hover, .mobile-search-item:active {
    background: rgba(201, 168, 124, 0.07);
}
.mobile-search-item.is-hidden { display: none; }
.mobile-search-thumb {
    width: 48px; height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #faf7f1, #f3ede2);
    display: flex; align-items: center; justify-content: center;
    color: rgba(201, 168, 124, 0.5);
}
.mobile-search-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mobile-search-thumb svg { width: 22px; height: 22px; }
.mobile-search-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.mobile-search-text strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #14141a;
    letter-spacing: -0.005em;
}
.mobile-search-text span {
    font-size: 12px;
    color: #7a7a7a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mobile-search-arrow { width: 14px; height: 14px; color: #c9a87c; opacity: 0.6; flex-shrink: 0; }

.mobile-search-empty {
    display: none;
    padding: 32px 20px;
    text-align: center;
    color: #8a8a8a;
    font-size: 13.5px;
}
.mobile-search-empty.is-visible { display: block; }

.mobile-search-cta {
    padding: 12px 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    background: linear-gradient(180deg, #fff 0%, #fbf8f2 100%);
}
.mobile-search-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    background: linear-gradient(135deg, #14141a 0%, #1c1c24 100%);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.16), inset 0 1px 0 rgba(201, 168, 124, 0.18);
    transition: all 0.25s ease;
}
.mobile-search-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(15, 23, 42, 0.22); }
.mobile-search-cta-btn svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
.mobile-search-cta-btn:hover svg { transform: translateX(3px); }

/* Hide on desktop */
@media (min-width: 769px) {
    .mobile-search { display: none !important; }
    .mobile-swipe-hint { display: none !important; }
}

/* Swipe hint pill — peeks above bottom bar */
.mobile-swipe-hint {
    position: fixed;
    bottom: 70px;
    right: 12px;
    z-index: 998;
    display: none;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(20, 20, 26, 0.92);
    backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.22);
    pointer-events: none;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-swipe-hint.is-visible {
    opacity: 1;
    transform: translateX(0);
}
.mobile-swipe-hint strong { color: #d8b88a; font-weight: 700; }
.mobile-swipe-hint svg {
    width: 13px; height: 13px;
    color: #c9a87c;
    transform: rotate(180deg);
    animation: swipe-hint-arrow 1.6s ease-in-out infinite;
}
@keyframes swipe-hint-arrow {
    0%, 100% { transform: rotate(180deg) translateX(0); opacity: 0.6; }
    50% { transform: rotate(180deg) translateX(-4px); opacity: 1; }
}

@media (max-width: 768px) {
    .mobile-swipe-hint { display: inline-flex; }
}

/* Tiny screens — even more compact */
@media (max-width: 360px) {
    .float-label { font-size: 13px; }
    .whatsapp-float svg,
    .chat-float svg { width: 20px; height: 20px; }
}

/* ==========================================
   UTILITIES
   ========================================== */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Placeholder images */
.ba-slider .ba-image img,
.about-image-wrapper img,
.ba-gallery-item img {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

/* Dark mode disabled
@media (prefers-color-scheme: dark) {

    .ba-slider .ba-image img,
    .about-image-wrapper img,
    .ba-gallery-item img {
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    }
}
*/

/* ==========================================
   BOOKING PAGE STYLES
   ========================================== */

.booking-page {
    padding-top: 200px;
    /* Navbar + Annoucement Bar + spacing */
    padding-bottom: var(--space-4xl);
    background-color: var(--surface-alt);
    min-height: 100vh;
}

.booking-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.booking-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.booking-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    max-width: 1000px;
    margin: 0 auto;
}

/* Calendar Card */
.booking-calendar-card,
.booking-details-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--space-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.calendar-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.calendar-nav button {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav button:hover {
    background: var(--surface-alt);
    border-color: var(--text-muted);
}

.calendar-grid {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: var(--space-sm);
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.calendar-day:hover:not(.disabled):not(.selected) {
    background-color: var(--surface-alt);
    border-color: var(--primary-light);
}

.calendar-day.selected {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(201, 168, 108, 0.4);
}

.calendar-day.disabled {
    color: var(--text-muted);
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-day.empty {
    cursor: default;
    pointer-events: none;
}

/* Details Card */
.booking-details-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.selected-date-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-color);
}

.selected-date-display span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.date-icon {
    font-size: 1.5rem;
}

.time-slots-section h4,
.booking-form h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.time-slot {
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: transparent;
    cursor: pointer;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.time-slot:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--surface-alt);
}

.time-slot.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--surface-alt);
}

.booking-form textarea {
    min-height: 80px;
    resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.1);
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .booking-page {
        padding-top: 180px;
    }
}

/* Appointment Type Selection */
.selection-section,
.session-details-section {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-color);
    animation: fadeIn 0.4s ease-out;
}

.selection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.selection-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 16px;
    background: var(--surface-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.selection-card:hover {
    border-color: var(--primary);
    background: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.selection-card.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.selection-card .card-icon {
    font-size: 1.5rem;
}

.selection-card .card-content {
    display: flex;
    flex-direction: column;
}

.selection-card .card-title {
    font-weight: 600;
    font-size: 1rem;
    color: inherit;
}

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

.selection-card.selected .card-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Session Details */
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    background-color: var(--surface-alt);
    cursor: pointer;
    appearance: none;
    /* Removed SVG background for now to simplify valid CSS string in append */
}

.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.1);
}

.deposit-card {
    background: #fff8eb;
    border: 1px solid #e8d5b0;
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: var(--space-md);
    animation: slideDown 0.3s ease-out;
}

.deposit-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-weight: 600;
}

.deposit-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* ==========================================
   PAGE STYLES - MULTI-PAGE LAYOUT
   ========================================== */

/* Page Hero */
.page-hero {
    padding: 180px var(--container-padding) var(--space-3xl);
    padding-top: calc(44px + 80px + var(--space-3xl));
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    font-size: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-tertiary);
}

.breadcrumb .current {
    color: var(--text-secondary);
}

/* Services Page */
.services-page {
    padding: var(--space-4xl) var(--container-padding);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.services-page .service-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.services-page .service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.services-page .service-card:hover .service-image img {
    transform: scale(1.05);
}

.services-page .service-content {
    padding: var(--space-lg);
}

.services-page .service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.services-page .service-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.service-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.service-duration {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.service-duration svg {
    width: 16px;
    height: 16px;
}

/* Service Detail Page */
.service-detail .service-hero {
    padding: 160px var(--container-padding) var(--space-2xl);
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.service-detail-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.service-detail-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--space-lg);
}

.service-detail-meta {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
}

.meta-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.service-body {
    padding: var(--space-3xl) var(--container-padding);
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--space-3xl);
    max-width: 1200px;
    margin: 0 auto;
}

.service-image-large {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-xl);
}

.service-image-large img {
    width: 100%;
    height: auto;
}

.service-content-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.service-content-body h2,
.service-content-body h3 {
    color: var(--text-primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.service-content-body p {
    margin-bottom: var(--space-md);
}

.service-content-body ul {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.service-content-body li {
    margin-bottom: var(--space-sm);
}

/* Sidebar */
.service-sidebar,
.blog-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    color: white;
    margin-bottom: var(--space-xl);
}

.sidebar-cta h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.sidebar-cta p {
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    font-size: 0.95rem;
}

.sidebar-cta .btn {
    width: 100%;
    margin-bottom: var(--space-sm);
}

.sidebar-services,
.sidebar-related {
    background: var(--bg-tertiary);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
}

.sidebar-services h4,
.sidebar-related h4 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.sidebar-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-services li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.sidebar-services li a:hover {
    color: var(--primary);
}

.sidebar-services li a svg {
    width: 16px;
    height: 16px;
}

/* Blog Page */
.blog-page {
    padding: var(--space-4xl) var(--container-padding);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    display: block;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.blog-category {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--primary);
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card-content {
    padding: var(--space-lg);
}

.blog-card-meta {
    display: flex;
    gap: var(--space-md);
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-bottom: var(--space-sm);
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-primary);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
}

.blog-read-more svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

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

/* Blog Detail */
.blog-detail .blog-hero {
    padding: 160px var(--container-padding) var(--space-2xl);
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.blog-category-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.blog-detail-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    line-height: 1.3;
}

.blog-detail-meta {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.blog-detail-meta svg {
    width: 16px;
    height: 16px;
}

.blog-body {
    padding: var(--space-3xl) var(--container-padding);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-3xl);
    max-width: 1100px;
    margin: 0 auto;
}

.blog-featured-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-xl);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
}

.blog-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.blog-content h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.blog-content p {
    margin-bottom: var(--space-md);
}

.blog-content ul {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.blog-content li {
    margin-bottom: var(--space-sm);
}

.blog-share {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: var(--space-xl);
}

.share-btn {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    text-decoration: none;
    color: white;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.facebook {
    background: #4267B2;
}

.related-post {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.related-post img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.related-title {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.related-date {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* FAQ Page */
.faq-page {
    padding: var(--space-4xl) var(--container-padding);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.faq-page .faq-item {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-page .faq-question {
    width: 100%;
    padding: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    color: var(--text-primary);
}

.faq-page .faq-question span:first-child {
    flex: 1;
    padding-right: var(--space-md);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
    transition: var(--transition-base);
}

.faq-page .faq-item.active .faq-icon svg {
    transform: rotate(45deg);
}

.faq-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-page .faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--bg-tertiary);
    border-radius: var(--radius-xl);
    max-width: 600px;
    margin: 0 auto;
}

.faq-cta h3 {
    margin-bottom: var(--space-sm);
}

.faq-cta p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

/* About Page */
.about-page {
    padding: var(--space-4xl) var(--container-padding);
}

.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--space-3xl);
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-stats {
    display: flex;
    justify-content: space-around;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-lg);
}

.about-stats .stat {
    text-align: center;
}

.about-stats .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.about-stats .stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.about-content h3 {
    font-size: 1.25rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.about-certifications,
.about-reasons {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl) 0;
}

.about-certifications li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
    color: var(--text-secondary);
}

.about-certifications li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.about-reasons li {
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
}

.about-reasons li strong {
    color: var(--text-primary);
}

/* Contact Page */
.contact-page {
    padding: var(--space-4xl) var(--container-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form-container h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-icon.whatsapp {
    background: #25D366;
}

.contact-icon.whatsapp svg {
    color: white;
}

.contact-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-bottom: 2px;
}

.contact-details a,
.contact-details span {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--primary);
}

.contact-hours {
    background: var(--bg-tertiary);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xl);
}

.contact-hours h3 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.contact-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-hours li {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-hours li span {
    font-weight: 500;
    color: var(--text-primary);
}

.contact-quick-cta {
    margin-top: var(--space-xl);
}

.contact-form {
    background: var(--bg-tertiary);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact-form label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201, 168, 124, 0.1);
}

.contact-form .error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: var(--space-xs);
    display: block;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: var(--space-3xl) var(--container-padding);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.cta-content p {
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

/* Responsive for new pages */
@media (max-width: 992px) {

    .service-layout,
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .service-sidebar,
    .blog-sidebar {
        position: static;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px var(--container-padding) var(--space-2xl);
    }

    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .blog-detail-meta {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .blog-detail .blog-hero {
        padding: 130px 1rem var(--space-xl);
    }

    .blog-body {
        padding: var(--space-xl) 0;
    }

    .blog-layout {
        gap: var(--space-xl);
    }

    .blog-main {
        padding: 0 1rem;
    }

    .blog-featured-image {
        border-radius: 0;
        margin-left: -1rem;
        margin-right: -1rem;
        width: calc(100% + 2rem);
    }

    .blog-detail-title {
        max-width: 100%;
    }
}

/* Button block */
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ==========================================
   MARQUEE LABELS
   ========================================== */
.marquee-item {
    position: relative;
}

.marquee-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.marquee-item:hover .marquee-label {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Always show on mobile since there is no hover */
@media (max-width: 768px) {
    .marquee-label {
        opacity: 1;
        bottom: 10px;
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .marquee-label {
        opacity: 1;
        bottom: 10px;
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

/* ==========================================
   INSTAGRAM FEED
   ========================================== */
.instagram-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-tertiary);
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.insta-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--surface);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-overlay svg {
    width: 32px;
    height: 32px;
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.insta-item:hover img {
    transform: scale(1.05);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item:hover .insta-overlay svg {
    transform: scale(1);
}

@media (max-width: 768px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
}

/* ==========================================
   PROMO MODAL
   ========================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    /* Highest priority */
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #fff;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    text-align: center;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Sadece görsel modu — padding'siz, görsel modalı kaplar */
.modal-content--image {
    padding: 0;
    overflow: hidden;
    max-width: 460px;
    background: transparent;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
}
.modal-image-link {
    display: block;
    line-height: 0;
}
.modal-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}
.modal-content--image .modal-close {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 999px;
    top: 12px;
    right: 12px;
    backdrop-filter: blur(4px);
}
.modal-content--image .modal-close:hover {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 24px;
    height: 24px;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: inline-block;
    animation: bounce 2s infinite;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.modal-text {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    font-size: 1.05rem;
    line-height: 1.6;
}

.modal-actions .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ============================================
   WHAT-PRO — "Cildinizi Yeniden Doğal Güzelliğine Kavuşturun"
   ============================================ */
.what-pro {
    position: relative;
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}
.what-pro__bg { position: absolute; inset: 0; pointer-events: none; }
.what-pro__blob {
    position: absolute;
    top: 12%; right: -180px;
    width: 540px; height: 540px;
    background: radial-gradient(circle, rgba(201,168,124,0.12), transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
}
.what-pro__inner {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header */
.what-pro__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}
.what-pro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7a5d35;
}
.what-pro__eyebrow-line {
    width: 28px; height: 1.5px;
    background: linear-gradient(90deg, transparent, #c9a87c);
    border-radius: 2px;
}
.what-pro__eyebrow::after {
    content: ''; width: 28px; height: 1.5px;
    background: linear-gradient(90deg, #c9a87c, transparent);
    border-radius: 2px;
}
.what-pro__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #14141a;
    margin: 0 0 18px;
}
.what-pro__title em {
    font-family: 'Inter', serif;
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, #c9a87c, #b08c5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 4px;
}
.what-pro__subtitle {
    font-size: 16.5px;
    line-height: 1.7;
    color: #5a5a5a;
    margin: 0;
}
.what-pro__subtitle strong {
    color: #14141a;
    font-weight: 600;
}

/* Benefits — premium card grid with floating gold number */
.what-pro__benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 80px;
}
.what-pro__benefit {
    position: relative;
    padding: 32px 26px 28px;
    background: linear-gradient(180deg, #fff 0%, #fbf8f2 100%);
    border: 1px solid rgba(201, 168, 124, 0.18);
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(.2,.7,.2,1);
}
.what-pro__benefit::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c9a87c, #b08c5e);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.what-pro__benefit:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 124, 0.5);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06), 0 28px 56px rgba(201, 168, 124, 0.14);
}
.what-pro__benefit:hover::before { opacity: 1; }
.what-pro__benefit-num {
    position: absolute;
    top: 22px;
    right: 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: rgba(201, 168, 124, 0.12);
    letter-spacing: -0.04em;
}
.what-pro__benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(201,168,124,0.15), rgba(176,140,94,0.06));
    color: #c9a87c;
    margin-bottom: 18px;
    position: relative;
    transition: all 0.3s ease;
}
.what-pro__benefit:hover .what-pro__benefit-icon {
    background: linear-gradient(135deg, #c9a87c, #b08c5e);
    color: #fff;
    transform: scale(1.05);
}
.what-pro__benefit-icon svg { width: 22px; height: 22px; }
.what-pro__benefit-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #14141a;
    margin: 0 0 8px;
    letter-spacing: -0.005em;
}
.what-pro__benefit-desc {
    font-size: 13.5px;
    color: #5a5a5a;
    line-height: 1.65;
    margin: 0;
}

/* Problems section — full-width premium showcase */
.what-pro__problems-section {
    margin-top: 24px;
}
.what-pro__problems-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}
.what-pro__problems-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7a5d35;
}
.what-pro__problems-eyebrow-line {
    width: 26px; height: 1.5px;
    background: linear-gradient(90deg, transparent, #c9a87c);
    border-radius: 2px;
}
.what-pro__problems-eyebrow::after {
    content: ''; width: 26px; height: 1.5px;
    background: linear-gradient(90deg, #c9a87c, transparent);
    border-radius: 2px;
}
.what-pro__problems-sub {
    font-size: 15.5px;
    line-height: 1.65;
    color: #5a5a5a;
    margin: 14px 0 0;
}

/* Image-backed cards grid */
.what-pro__problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 64px;
}

.what-pro__problem-card {
    position: relative;
    display: flex;
    flex-direction: column;
    aspect-ratio: 4 / 5;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s ease;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    isolation: isolate;
}
.what-pro__problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16), 0 36px 60px rgba(201, 168, 124, 0.18);
}

.what-pro__problem-card-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #faf7f1, #f3ede2);
}
.what-pro__problem-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.what-pro__problem-card:hover .what-pro__problem-card-img img {
    transform: scale(1.08);
}
.what-pro__problem-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 20, 26, 0.05) 0%, rgba(20, 20, 26, 0.55) 55%, rgba(20, 20, 26, 0.92) 100%);
    transition: opacity 0.4s ease;
}

/* Big watermark number */
.what-pro__problem-card-num {
    position: absolute;
    top: 18px;
    left: 22px;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.65);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}

/* Tag — top-right featured chip */
.what-pro__problem-card-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    padding: 6px 12px;
    background: linear-gradient(135deg, #c9a87c, #b08c5e);
    color: #fff;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(201, 168, 124, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* Body — anchored to bottom over gradient */
.what-pro__problem-card-body {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 24px 24px 22px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.what-pro__problem-card-body h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.what-pro__problem-card-body p {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.what-pro__problem-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d8b88a;
    transition: gap 0.3s ease;
}
.what-pro__problem-card:hover .what-pro__problem-card-link {
    gap: 10px;
}
.what-pro__problem-card-link svg {
    transition: transform 0.3s ease;
}
.what-pro__problem-card:hover .what-pro__problem-card-link svg {
    transform: translateX(3px);
}

/* Bottom strip — stats + CTA */
.what-pro__bottom-strip {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.what-pro__strip-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 28px 32px;
    background: linear-gradient(135deg, #fff 0%, #fbf8f2 100%);
    border: 1px solid rgba(201, 168, 124, 0.2);
    border-radius: 22px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.what-pro__strip-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    border-right: 1px solid rgba(201, 168, 124, 0.15);
}
.what-pro__strip-stat:last-child { border-right: none; }
.what-pro__strip-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #c9a87c, #b08c5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}
.what-pro__strip-stat-num small {
    font-size: 0.4em;
    margin-left: 3px;
    letter-spacing: 0.08em;
    -webkit-text-fill-color: #c9a87c;
    color: #c9a87c;
}
.what-pro__strip-stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6a6a6a;
    line-height: 1.4;
}

.what-pro__strip-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #14141a 0%, #1c1c24 100%);
    border-radius: 22px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    border-left: 3px solid #c9a87c;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(.2,.7,.2,1), box-shadow 0.3s ease;
}
.what-pro__strip-cta::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 200px; height: 200px;
    background: radial-gradient(circle at top right, rgba(201,168,124,0.25), transparent 70%);
    pointer-events: none;
}
.what-pro__strip-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.22);
}
.what-pro__strip-cta-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366 0%, #1DA855 100%);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    position: relative;
    z-index: 1;
}
.what-pro__strip-cta-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.35;
    min-width: 0;
    position: relative;
    z-index: 1;
}
.what-pro__strip-cta-body strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.005em;
}
.what-pro__strip-cta-body span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}
.what-pro__strip-cta-arrow {
    flex-shrink: 0;
    color: #c9a87c;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}
.what-pro__strip-cta:hover .what-pro__strip-cta-arrow {
    transform: translateX(4px);
}

.what-pro__problems-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 700;
    color: #14141a;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin: 0 0 28px;
}
.what-pro__problems-title em {
    font-family: 'Inter', serif;
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, #c9a87c, #b08c5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.what-pro__problems {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.what-pro__problem {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 14px;
    transition: all 0.25s ease;
    position: relative;
}
.what-pro__problem::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, #c9a87c, #b08c5e);
    border-radius: 0 2px 2px 0;
    transition: transform 0.25s ease;
}
.what-pro__problem:hover {
    transform: translateX(4px);
    border-color: rgba(201, 168, 124, 0.4);
    box-shadow: 0 6px 18px rgba(201, 168, 124, 0.08);
}
.what-pro__problem:hover::before { transform: translateY(-50%) scaleY(1); }
.what-pro__problem-icon {
    flex-shrink: 0;
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201,168,124,0.12), rgba(176,140,94,0.05));
    color: #c9a87c;
    border-radius: 10px;
    transition: all 0.25s ease;
}
.what-pro__problem:hover .what-pro__problem-icon {
    background: linear-gradient(135deg, #c9a87c, #b08c5e);
    color: #fff;
}
.what-pro__problem-icon svg { width: 16px; height: 16px; }
.what-pro__problem-body h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #14141a;
    margin: 0 0 3px;
    letter-spacing: -0.005em;
}
.what-pro__problem-body p {
    font-size: 12.5px;
    color: #6a6a6a;
    line-height: 1.55;
    margin: 0;
}

.what-pro__problems-cta {
    margin-top: 24px;
    padding: 22px 24px;
    background: linear-gradient(135deg, #14141a 0%, #1c1c24 100%);
    border-radius: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}
.what-pro__problems-cta::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 200px; height: 200px;
    background: radial-gradient(circle at top right, rgba(201,168,124,0.18), transparent 70%);
    pointer-events: none;
}
.what-pro__cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #25D366 0%, #1DA855 100%);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.what-pro__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.42);
}
.what-pro__cta-hint {
    position: relative;
    flex: 1 1 200px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Visual side */
.what-pro__visual-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 100px;
}

.what-pro__hero-card {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}
.what-pro__hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.what-pro__hero-card:hover img { transform: scale(1.04); }
.what-pro__hero-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(20, 20, 26, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
}
.what-pro__hero-card-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 0.9;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.what-pro__hero-card-num small {
    font-size: 0.5em;
    color: #c9a87c;
    margin-left: 2px;
}
.what-pro__hero-card-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    font-weight: 500;
}

.what-pro__stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.what-pro__stat-card {
    padding: 22px 20px;
    border-radius: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
}
.what-pro__stat-card--dark {
    background: linear-gradient(135deg, #14141a 0%, #1c1c24 100%);
    color: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    border-left: 3px solid #c9a87c;
}
.what-pro__stat-card--gold {
    background: linear-gradient(135deg, #c9a87c 0%, #b08c5e 100%);
    color: #fff;
    box-shadow: 0 12px 28px rgba(201, 168, 124, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.what-pro__stat-card-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}
.what-pro__stat-card--dark .what-pro__stat-card-num {
    background: linear-gradient(135deg, #c9a87c, #d8b88a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.what-pro__stat-card-num small {
    font-size: 0.4em;
    margin-left: 4px;
    letter-spacing: 0.08em;
    -webkit-text-fill-color: currentColor;
    color: rgba(255, 255, 255, 0.7);
}
.what-pro__stat-card--dark .what-pro__stat-card-num small {
    color: #c9a87c;
}
.what-pro__stat-card-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
    opacity: 0.85;
}

.what-pro__quote {
    position: relative;
    margin: 0;
    padding: 26px 28px 24px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}
.what-pro__quote-mark {
    position: absolute;
    top: -8px; left: 22px;
    font-family: 'Inter', serif;
    font-size: 64px;
    line-height: 1;
    color: rgba(201, 168, 124, 0.32);
    pointer-events: none;
}
.what-pro__quote p {
    font-family: 'Inter', serif;
    font-style: italic;
    font-size: 15.5px;
    line-height: 1.65;
    color: #14141a;
    margin: 0 0 18px;
    position: relative;
}
.what-pro__quote footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px dashed rgba(15, 23, 42, 0.08);
}
.what-pro__quote-stars {
    display: inline-flex;
    gap: 1.5px;
    color: #f5b73c;
}
.what-pro__quote-stars svg { width: 13px; height: 13px; }
.what-pro__quote cite {
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #5a5a5a;
}

@media (max-width: 1024px) {
    .what-pro__benefits { grid-template-columns: repeat(2, 1fr); }
    .what-pro__problems-grid { grid-template-columns: repeat(2, 1fr); }
    .what-pro__bottom-strip { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .what-pro { padding: 70px 0; }
    .what-pro__inner { padding: 0 20px; }
    .what-pro__benefits { grid-template-columns: 1fr; gap: 16px; margin-bottom: 56px; }
    .what-pro__benefit { padding: 26px 22px 22px; }
    .what-pro__benefit-num { font-size: 44px; top: 16px; right: 18px; }

    .what-pro__problems-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
    .what-pro__problem-card { aspect-ratio: 16 / 11; }
    .what-pro__problem-card-body { padding: 18px 20px 18px; }
    .what-pro__problem-card-body h4 { font-size: 16px; }
    .what-pro__problem-card-body p { font-size: 12.5px; }

    .what-pro__strip-stats { grid-template-columns: 1fr 1fr 1fr; gap: 8px; padding: 18px 14px; }
    .what-pro__strip-stat-num { font-size: 22px; }
    .what-pro__strip-stat-label { font-size: 9.5px; }
    .what-pro__strip-cta { padding: 16px 18px; gap: 12px; }
    .what-pro__strip-cta-icon { width: 38px; height: 38px; }
}

/* ============================================
   REVIEWS PRO — Premium dark testimonials marquee
   ============================================ */
.reviews-pro {
    position: relative;
    padding: 90px 0 110px;
    background: linear-gradient(180deg, #0d0d12 0%, #14141a 60%, #0d0d12 100%);
    color: #fff;
    overflow: hidden;
}
.reviews-pro__bg { position: absolute; inset: 0; pointer-events: none; }
.reviews-pro__blob {
    position: absolute;
    width: 540px; height: 540px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.reviews-pro__blob:not(.reviews-pro__blob--alt) {
    top: -150px; left: -150px;
    background: radial-gradient(circle, rgba(201,168,124,0.32), transparent 70%);
}
.reviews-pro__blob--alt {
    bottom: -200px; right: -200px;
    background: radial-gradient(circle, rgba(176,140,94,0.22), transparent 70%);
}

.reviews-pro__header {
    position: relative;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
    padding: 0 32px;
}
.reviews-pro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d8b88a;
}
.reviews-pro__eyebrow-line {
    width: 28px; height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(201,168,124,0.7));
    border-radius: 2px;
}
.reviews-pro__eyebrow-line + .reviews-pro__eyebrow-line {
    background: linear-gradient(90deg, rgba(201,168,124,0.7), transparent);
}
.reviews-pro__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 28px;
}
.reviews-pro__title em {
    font-family: 'Inter', serif;
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, #c9a87c, #d8b88a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-pro__summary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 124, 0.25);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}
.reviews-pro__summary-stars {
    display: inline-flex;
    gap: 2px;
    color: #f5b73c;
}
.reviews-pro__summary-stars svg { width: 14px; height: 14px; }
.reviews-pro__summary-score {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1;
    padding: 0 6px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.reviews-pro__summary-label {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}
.reviews-pro__summary-label strong {
    color: #fff;
    font-weight: 600;
}

/* Marquee */
.reviews-pro__marquee {
    position: relative;
    overflow: hidden;
    padding: 16px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-pro__track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: reviews-marquee 60s linear infinite;
}
.reviews-pro__marquee:hover .reviews-pro__track {
    animation-play-state: paused;
}
@keyframes reviews-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.reviews-pro__card {
    position: relative;
    flex-shrink: 0;
    width: 360px;
    padding: 28px 28px 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.reviews-pro__card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 124, 0.35);
}
.reviews-pro__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 124, 0.4), transparent);
}
.reviews-pro__card-quote {
    position: absolute;
    top: 18px;
    right: 22px;
    color: rgba(201, 168, 124, 0.18);
    pointer-events: none;
}
.reviews-pro__card-quote svg { width: 36px; height: 36px; }

.reviews-pro__card-stars {
    display: inline-flex;
    gap: 2px;
    color: #f5b73c;
    margin-bottom: 14px;
}
.reviews-pro__card-stars svg { width: 14px; height: 14px; }

.reviews-pro__card-text {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reviews-pro__card-service {
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 18px;
    background: rgba(201, 168, 124, 0.12);
    border: 1px solid rgba(201, 168, 124, 0.3);
    color: #d8b88a;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.reviews-pro__card-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.reviews-pro__card-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.reviews-pro__card-author {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}
.reviews-pro__card-author strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.005em;
}
.reviews-pro__card-author span {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.55);
}
.reviews-pro__card-verified {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.reviews-pro__card-verified svg { width: 11px; height: 11px; }

@media (max-width: 640px) {
    .reviews-pro { padding: 70px 0 80px; }
    .reviews-pro__header { padding: 0 20px; margin-bottom: 40px; }
    .reviews-pro__summary { padding: 10px 18px; gap: 10px; flex-wrap: wrap; justify-content: center; }
    .reviews-pro__summary-score { font-size: 18px; padding: 0 4px; }
    .reviews-pro__summary-label { font-size: 11.5px; }
    .reviews-pro__card { width: 300px; padding: 22px 22px 20px; }
    .reviews-pro__track { gap: 16px; }
}

/* ============================================
   ABOUT PRO — Premium editorial About section
   ============================================ */
.about-pro {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fbf8f2 100%);
    overflow: hidden;
}
.about-pro__bg { position: absolute; inset: 0; pointer-events: none; }
.about-pro__blob {
    position: absolute;
    top: 10%; left: -120px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(201,168,124,0.18), transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
}

.about-pro__inner {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
}

/* Visual side */
.about-pro__visual {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 480px;
}
.about-pro__photo {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #f0e8d9;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18), 0 12px 24px rgba(15, 23, 42, 0.06);
}
.about-pro__photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(20, 20, 26, 0.18) 100%);
    z-index: 1;
    pointer-events: none;
}
.about-pro__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative corner frames */
.about-pro__visual::before,
.about-pro__visual::after {
    content: '';
    position: absolute;
    width: 56px;
    height: 56px;
    border: 2px solid #c9a87c;
    pointer-events: none;
}
.about-pro__visual::before {
    top: -16px; left: -16px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 18px;
}
.about-pro__visual::after {
    bottom: -16px; right: -16px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 18px;
}

/* Signature card — top left */
.about-pro__signature {
    position: absolute;
    top: 24px;
    left: -28px;
    z-index: 2;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.2;
    animation: about-float 5s ease-in-out infinite;
}
@keyframes about-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.about-pro__signature-name {
    font-family: 'Inter', serif;
    font-style: italic;
    font-size: 18px;
    font-weight: 600;
    color: #14141a;
    letter-spacing: -0.01em;
}
.about-pro__signature-role {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #c9a87c;
}

/* Stat tile — bottom left */
.about-pro__stat-tile {
    position: absolute;
    bottom: 30px;
    left: -32px;
    z-index: 2;
    padding: 18px 24px;
    background: linear-gradient(135deg, #14141a 0%, #1c1c24 100%);
    border-radius: 18px;
    color: #fff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1;
    animation: about-float 6s ease-in-out infinite -2s;
    border-left: 3px solid #c9a87c;
}
.about-pro__stat-tile-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #c9a87c, #d8b88a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}
.about-pro__stat-tile-num small {
    font-size: 0.55em;
    margin-left: 2px;
    -webkit-text-fill-color: #c9a87c;
    color: #c9a87c;
}
.about-pro__stat-tile-label {
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.6);
}

/* Mini stat row — bottom right */
.about-pro__mini-stats {
    position: absolute;
    bottom: -28px;
    right: -16px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(201, 168, 124, 0.18);
    animation: about-float 7s ease-in-out infinite -3s;
}
.about-pro__mini-stats > div {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.1;
}
.about-pro__mini-stats strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #14141a;
    letter-spacing: -0.01em;
}
.about-pro__mini-stats strong small {
    font-size: 0.8em;
    color: #c9a87c;
    margin-left: 1px;
}
.about-pro__mini-stats span {
    font-size: 9.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #7a7a7a;
}
.about-pro__mini-sep {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 124, 0.4), transparent);
}

/* Content side */
.about-pro__content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-pro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7a5d35;
}
.about-pro__eyebrow-line {
    width: 26px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #c9a87c);
    border-radius: 2px;
}
.about-pro__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #14141a;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

/* Lead — pull quote with gold left border */
.about-pro__lead {
    position: relative;
    margin: 4px 0;
    padding: 14px 22px;
    background: linear-gradient(135deg, rgba(201,168,124,0.08), rgba(176,140,94,0.04));
    border-left: 3px solid #c9a87c;
    border-radius: 0 12px 12px 0;
    font-family: 'Inter', serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.55;
    color: #14141a;
    font-weight: 400;
}
.about-pro__lead::before {
    content: '“';
    position: absolute;
    top: -4px; left: 14px;
    font-family: 'Inter', serif;
    font-size: 36px;
    color: rgba(201, 168, 124, 0.4);
    line-height: 1;
}

.about-pro__text {
    font-size: 15.5px;
    line-height: 1.75;
    color: #5a5a5a;
    margin: 0;
}

/* Features — 2-column grid */
.about-pro__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}
.about-pro__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
    transition: all 0.25s ease;
}
.about-pro__feature:hover {
    border-color: rgba(201, 168, 124, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(201, 168, 124, 0.15);
}
.about-pro__feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c9a87c, #b08c5e);
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(201, 168, 124, 0.32);
}
.about-pro__feature-icon svg { width: 14px; height: 14px; }
.about-pro__feature-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #14141a;
    line-height: 1.3;
    letter-spacing: -0.005em;
}

/* CTAs */
.about-pro__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}
.about-pro__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(.2,.7,.2,1);
}
.about-pro__btn--primary {
    background: linear-gradient(135deg, #c9a87c 0%, #b08c5e 100%);
    color: #fff;
    box-shadow: 0 6px 18px rgba(201,168,124,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
}
.about-pro__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(201,168,124,0.42);
}
.about-pro__btn--ghost {
    background: #fff;
    color: #14141a;
    border: 1px solid rgba(15, 23, 42, 0.1);
}
.about-pro__btn--ghost:hover {
    background: #14141a;
    color: #fff;
    border-color: #14141a;
    transform: translateY(-2px);
}
.about-pro__btn--ghost svg { transition: transform 0.3s ease; }
.about-pro__btn--ghost:hover svg { transform: translateX(3px); }

@media (max-width: 1024px) {
    .about-pro__inner { grid-template-columns: 1fr; gap: 60px; }
    .about-pro__visual { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 640px) {
    .about-pro { padding: 70px 0; }
    .about-pro__inner { padding: 0 20px; }
    .about-pro__visual { max-width: 100%; }
    .about-pro__visual::before,
    .about-pro__visual::after { width: 40px; height: 40px; }
    .about-pro__signature { left: -8px; padding: 10px 16px; }
    .about-pro__signature-name { font-size: 16px; }
    .about-pro__signature-role { font-size: 9.5px; }
    .about-pro__stat-tile { left: -12px; bottom: 18px; padding: 14px 18px; }
    .about-pro__stat-tile-num { font-size: 28px; }
    .about-pro__stat-tile-label { font-size: 9.5px; }
    .about-pro__mini-stats { right: 0; bottom: -20px; padding: 10px 16px; gap: 12px; }
    .about-pro__mini-stats strong { font-size: 14px; }
    .about-pro__mini-stats span { font-size: 9px; }
    .about-pro__features { grid-template-columns: 1fr; gap: 8px; }
    .about-pro__feature { padding: 12px 14px; }
    .about-pro__btn { flex: 1 1 100%; justify-content: center; }
}

/* ============================================
   IG SECTION — Premium Instagram showcase
   ============================================ */
.ig-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #fbf8f2 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.ig-section::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(220, 39, 67, 0.08), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}
.ig-section__inner {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: stretch;
}

/* Profile card */
.ig-section__profile {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 32px 28px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 22px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}
.ig-section__profile::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 180px; height: 180px;
    background: radial-gradient(circle at top right, rgba(220, 39, 67, 0.08), transparent 70%);
    pointer-events: none;
}

.ig-section__avatar {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.ig-section__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}
.ig-section__avatar-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px dashed rgba(220, 39, 67, 0.3);
    animation: ig-rotate 20s linear infinite;
}
@keyframes ig-rotate {
    to { transform: rotate(360deg); }
}

.ig-section__profile-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ig-section__handle {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #c9a87c;
    letter-spacing: 0.02em;
}
.ig-section__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 2vw, 1.7rem);
    font-weight: 700;
    color: #14141a;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.015em;
}
.ig-section__desc {
    font-size: 13.5px;
    color: #5a5a5a;
    line-height: 1.6;
    margin: 0;
}

.ig-section__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 16px 0;
    margin-top: auto;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.ig-section__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
    border-right: 1px solid rgba(15, 23, 42, 0.06);
}
.ig-section__stat:last-child { border-right: none; }
.ig-section__stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #14141a;
    line-height: 1;
}
.ig-section__stat-label {
    font-size: 10.5px;
    font-weight: 500;
    color: #7a7a7a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ig-section__follow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(220, 39, 67, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(.2,.7,.2,1);
}
.ig-section__follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(220, 39, 67, 0.42);
}

/* Post grid (3x2) */
.ig-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.ig-section__post {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #faf7f1, #f3ede2);
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.ig-section__post:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}
.ig-section__post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.ig-section__post:hover img { transform: scale(1.06); }

.ig-section__post-type {
    position: absolute;
    top: 10px; right: 10px;
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 26, 0.65);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    color: #fff;
}
.ig-section__post-type svg { width: 13px; height: 13px; }

.ig-section__post-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 12px;
    background: linear-gradient(180deg, transparent 50%, rgba(20,20,26,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.ig-section__post:hover .ig-section__post-overlay { opacity: 1; }
.ig-section__post-likes {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.92);
    color: #14141a;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
}
.ig-section__post-likes svg { color: #dc2743; }

@media (max-width: 1024px) {
    .ig-section__inner { grid-template-columns: 1fr; gap: 32px; }
    .ig-section__profile {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 18px;
    }
    .ig-section__avatar { flex-shrink: 0; }
    .ig-section__profile-text { flex: 1 1 280px; min-width: 0; }
    .ig-section__stats { flex: 1 1 100%; padding: 14px 0; }
    .ig-section__follow-btn { flex: 1 1 100%; }
}
@media (max-width: 640px) {
    .ig-section { padding: 60px 0; }
    .ig-section__inner { padding: 0 20px; }
    .ig-section__profile { padding: 24px 20px; }
    .ig-section__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .ig-section__post { border-radius: 12px; }
}

/* ============================================
   BLOG PRO HOME — Premium home blog showcase
   ============================================ */
.blog-pro-home {
    padding: 90px 0;
    background: #fff;
}
.blog-pro-home__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}
.blog-pro-home__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.blog-pro-home__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #7a5d35;
    margin-bottom: 14px;
}
.blog-pro-home__eyebrow-line {
    width: 22px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #c9a87c);
    border-radius: 2px;
}
.blog-pro-home__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 700;
    color: #14141a;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
}
.blog-pro-home__title em {
    font-family: 'Inter', serif;
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, #c9a87c, #b08c5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 4px;
}
.blog-pro-home__subtitle {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.6;
    margin: 0;
    max-width: 560px;
}
.blog-pro-home__all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #fff;
    color: #14141a;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.blog-pro-home__all:hover {
    background: #14141a;
    color: #fff;
    border-color: #14141a;
    transform: translateY(-1px);
}
.blog-pro-home__all svg { transition: transform 0.25s ease; }
.blog-pro-home__all:hover svg { transform: translateX(3px); }

/* Grid: featured spans 2 rows on left, 2 cards stack on right */
.blog-pro-home__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
}

/* Featured card */
.blog-pro-home__featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.2,.7,.2,1);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}
.blog-pro-home__featured:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 124, 0.4);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06), 0 24px 48px rgba(201, 168, 124, 0.12);
}
.blog-pro-home__featured-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, #faf7f1, #f3ede2);
}
.blog-pro-home__featured-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.blog-pro-home__featured:hover .blog-pro-home__featured-img img { transform: scale(1.04); }
.blog-pro-home__featured-cat {
    position: absolute;
    top: 18px; left: 18px;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: #7a5d35;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.1);
}
.blog-pro-home__featured-body {
    padding: 32px 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}
.blog-pro-home__featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(201,168,124,0.15), rgba(176,140,94,0.08));
    color: #7a5d35;
    border: 1px solid rgba(201, 168, 124, 0.3);
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.blog-pro-home__featured-tag::before {
    content: ''; width: 5px; height: 5px;
    background: #c9a87c; border-radius: 50%;
}
.blog-pro-home__featured-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 700;
    color: #14141a;
    line-height: 1.25;
    letter-spacing: -0.015em;
    margin: 0;
}
.blog-pro-home__featured-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}
.blog-pro-home__featured-title a:hover { color: #c9a87c; }
.blog-pro-home__featured-excerpt {
    font-size: 14.5px;
    color: #5a5a5a;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}
.blog-pro-home__featured-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: #7a7a7a;
    flex-wrap: wrap;
}
.blog-pro-home__featured-meta span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #14141a;
    font-weight: 600;
}
.blog-pro-home__featured-meta svg { color: #c9a87c; }
.blog-pro-home__featured-cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #c9a87c 0%, #b08c5e 100%);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(201, 168, 124, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: all 0.3s cubic-bezier(.2,.7,.2,1);
}
.blog-pro-home__featured-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(201, 168, 124, 0.42);
}
.blog-pro-home__featured-cta svg { transition: transform 0.3s ease; }
.blog-pro-home__featured-cta:hover svg { transform: translateX(3px); }

/* Side cards */
.blog-pro-home__card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(.2,.7,.2,1);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}
.blog-pro-home__card:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 168, 124, 0.4);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06), 0 24px 48px rgba(201, 168, 124, 0.12);
}
.blog-pro-home__card-img {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #faf7f1, #f3ede2);
}
.blog-pro-home__card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.blog-pro-home__card:hover .blog-pro-home__card-img img { transform: scale(1.04); }
.blog-pro-home__card-cat {
    position: absolute;
    top: 10px; left: 10px;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.95);
    color: #7a5d35;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.blog-pro-home__card-body {
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}
.blog-pro-home__card-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: #7a7a7a;
}
.blog-pro-home__card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #14141a;
    line-height: 1.3;
    letter-spacing: -0.005em;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-pro-home__card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}
.blog-pro-home__card:hover .blog-pro-home__card-title a { color: #c9a87c; }
.blog-pro-home__card-excerpt {
    font-size: 12.5px;
    color: #6a6a6a;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .blog-pro-home__grid { grid-template-columns: 1fr; gap: 18px; }
    .blog-pro-home__featured { grid-row: auto; }
}
@media (max-width: 640px) {
    .blog-pro-home { padding: 60px 0; }
    .blog-pro-home__inner { padding: 0 20px; }
    .blog-pro-home__featured-body { padding: 24px 22px 28px; }
    .blog-pro-home__card { grid-template-columns: 110px 1fr; }
    .blog-pro-home__card-body { padding: 14px 16px; }
    .blog-pro-home__card-excerpt { display: none; }
}

/* ============================================
   FOOTER PRO — Premium dark editorial
   ============================================ */
.footer-pro {
    position: relative;
    background: linear-gradient(180deg, #0d0d12 0%, #14141a 60%, #0d0d12 100%);
    color: #fff;
    margin-top: 0;
    padding-top: 220px;
}
.footer-pro::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 124, 0.4) 30%, rgba(201, 168, 124, 0.4) 70%, transparent);
    z-index: 1;
}
/* Backdrop blobs — clipped to a separate inner wrapper so the CTA banner is not clipped */
.footer-pro__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.footer-pro__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}
.footer-pro__blob:not(.footer-pro__blob--alt) {
    width: 540px; height: 540px;
    top: -100px; right: -160px;
    background: radial-gradient(circle, rgba(201,168,124,0.25), transparent 70%);
}
.footer-pro__blob--alt {
    width: 480px; height: 480px;
    bottom: -120px; left: -140px;
    background: radial-gradient(circle, rgba(176,140,94,0.18), transparent 70%);
}

/* CTA Banner — sits inside the dark footer, lifted so its top edge is at the section seam */
.footer-pro__cta-wrap {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: -160px auto 70px;
    padding: 0 32px;
}
.footer-pro__cta {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 48px;
    background: linear-gradient(135deg, #fff 0%, #fbf8f2 100%);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18), 0 12px 24px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(201, 168, 124, 0.2);
    position: relative;
    overflow: hidden;
}
.footer-pro__cta::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(201,168,124,0.12), transparent 70%);
    pointer-events: none;
}
.footer-pro__cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #7a5d35;
    margin-bottom: 14px;
}
.footer-pro__cta-pulse {
    width: 7px; height: 7px;
    background: #c9a87c;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(201, 168, 124, 0.6);
    animation: footer-pulse 2s ease-out infinite;
}
@keyframes footer-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 124, 0.6); }
    50% { box-shadow: 0 0 0 6px rgba(201, 168, 124, 0); }
}
.footer-pro__cta h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    font-weight: 700;
    color: #14141a;
    margin: 0 0 12px;
    line-height: 1.2;
    letter-spacing: -0.015em;
}
.footer-pro__cta h3 em,
.footer-pro__cta-text h3 em {
    font-family: 'Inter', serif !important;
    font-style: italic !important;
    font-weight: 700 !important;
    color: #3a2a14 !important;
    background: none !important;
    -webkit-text-fill-color: #3a2a14 !important;
    background-clip: initial !important;
    -webkit-background-clip: initial !important;
    text-shadow: none !important;
}
.footer-pro__cta p {
    font-size: 14.5px;
    color: #5a5a5a;
    line-height: 1.6;
    margin: 0;
}
.footer-pro__cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}
.footer-pro__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(.2,.7,.2,1);
}
.footer-pro__btn--primary {
    background: linear-gradient(135deg, #25D366 0%, #1DA855 100%);
    color: #fff;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.32), inset 0 1px 0 rgba(255,255,255,0.18);
}
.footer-pro__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.42);
}
.footer-pro__btn--ghost {
    background: #14141a;
    color: #fff;
    border: 1px solid #14141a;
}
.footer-pro__btn--ghost:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.2);
}
.footer-pro__btn--ghost svg { transition: transform 0.3s ease; }
.footer-pro__btn--ghost:hover svg { transform: translateX(3px); }

/* Main grid */
.footer-pro__inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px 60px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-pro__brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.footer-pro__logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.footer-pro__logo-mark {
    width: 48px; height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(201, 168, 124, 0.4);
    box-shadow: 0 0 0 4px rgba(201, 168, 124, 0.08);
    flex-shrink: 0;
}
.footer-pro__logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.footer-pro__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.footer-pro__logo-text strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.005em;
}
.footer-pro__logo-text strong span { color: #c9a87c; }
.footer-pro__logo-sub {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}

.footer-pro__brand-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    max-width: 420px;
}

.footer-pro__trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}
.footer-pro__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(201, 168, 124, 0.08);
    border: 1px solid rgba(201, 168, 124, 0.2);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}
.footer-pro__trust-item svg {
    width: 13px; height: 13px;
    color: #c9a87c;
    flex-shrink: 0;
}

/* Columns */
.footer-pro__col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-pro__col-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #d8b88a;
    margin: 0 0 6px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 168, 124, 0.15);
    position: relative;
}
.footer-pro__col-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: -1px;
    width: 24px; height: 2px;
    background: linear-gradient(90deg, #c9a87c, #b08c5e);
    border-radius: 2px;
}

.footer-pro__col-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-pro__col-list li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    padding: 2px 0;
}
.footer-pro__col-list li a::before {
    content: '';
    width: 4px; height: 4px;
    background: rgba(201, 168, 124, 0.4);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.footer-pro__col-list li a:hover {
    color: #c9a87c;
    transform: translateX(3px);
}
.footer-pro__col-list li a:hover::before {
    background: #c9a87c;
    transform: scale(1.4);
    box-shadow: 0 0 0 3px rgba(201, 168, 124, 0.2);
}
.footer-pro__col-list-all {
    font-weight: 600;
    color: #c9a87c !important;
    margin-top: 4px;
}
.footer-pro__col-list-all::before { display: none !important; }

/* Contact list */
.footer-pro__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-pro__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.footer-pro__contact-icon {
    width: 36px; height: 36px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 124, 0.1);
    border: 1px solid rgba(201, 168, 124, 0.18);
    border-radius: 10px;
    color: #c9a87c;
}
.footer-pro__contact-icon svg { width: 15px; height: 15px; }
.footer-pro__contact-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    line-height: 1.35;
}
.footer-pro__contact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.4);
}
.footer-pro__contact-body a,
.footer-pro__contact-body > span:not(.footer-pro__contact-label) {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-pro__contact-body a:hover { color: #c9a87c; }

/* Social row */
.footer-pro__social-row {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
}
.footer-pro__social-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #d8b88a;
}
.footer-pro__social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-pro__social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(.2,.7,.2,1);
}
.footer-pro__social-link svg { width: 14px; height: 14px; }
.footer-pro__social-link:hover {
    background: rgba(201, 168, 124, 0.15);
    border-color: rgba(201, 168, 124, 0.4);
    color: #fff;
    transform: translateY(-1px);
}

/* Bottom */
.footer-pro__bottom {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 24px 32px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-pro__copyright {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}
.footer-pro__copyright strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}
.footer-pro__legal {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;
}
.footer-pro__legal li a {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    border-radius: 999px;
    transition: all 0.2s ease;
}
.footer-pro__legal li + li {
    position: relative;
}
.footer-pro__legal li + li::before {
    content: '·';
    position: absolute;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.2);
}
.footer-pro__legal li a:hover {
    color: #c9a87c;
    background: rgba(201, 168, 124, 0.06);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-pro__inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-pro__brand {
        grid-column: span 2;
    }
    .footer-pro__cta {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 28px;
    }
    .footer-pro__cta-btns { justify-content: flex-start; }
}
@media (max-width: 640px) {
    .footer-pro { margin-top: 0; padding-top: 180px; }
    .footer-pro__cta-wrap { margin: -140px 0 50px; padding: 0 20px; }
    .footer-pro__cta { padding: 26px 22px; border-radius: 18px; }
    .footer-pro__cta-btns .footer-pro__btn { flex: 1 1 100%; justify-content: center; }
    .footer-pro__inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 20px 50px;
    }
    .footer-pro__brand { grid-column: auto; }
    .footer-pro__social-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 22px 20px;
    }
    .footer-pro__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 20px 28px;
        text-align: left;
    }
    .footer-pro__legal { flex-wrap: wrap; }
}

/* ============================================
   PROCESS SECTION — How it works
   ============================================ */
.process-section {
    position: relative;
    padding: 110px 0 120px;
    background: linear-gradient(180deg, #ffffff 0%, #fbf8f2 100%);
    overflow: hidden;
}
.process-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.process-blob {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,124,0.18) 0%, transparent 70%);
    filter: blur(60px);
}

.process-container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.process-header {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}
.process-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #7a5d35;
    margin-bottom: 18px;
}
.process-eyebrow-line {
    width: 28px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #c9a87c);
    border-radius: 2px;
}
.process-eyebrow::after {
    content: '';
    width: 28px;
    height: 1.5px;
    background: linear-gradient(90deg, #c9a87c, transparent);
    border-radius: 2px;
}
.process-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: #14141a;
    margin: 0 0 18px;
}
.process-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
    margin: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Steps */
.process-steps {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    counter-reset: step;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 22px;
    bottom: 22px;
    width: 1px;
    background: linear-gradient(180deg, rgba(201,168,124,0.4) 0%, rgba(201,168,124,0.1) 100%);
}

.process-step {
    display: flex;
    gap: 20px;
    padding: 4px 0 28px;
    position: relative;
}
.process-step:last-child {
    padding-bottom: 0;
}

.process-step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    background: linear-gradient(135deg, #c9a87c 0%, #b08c5e 100%);
    border: 3px solid #fbf8f2;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(201,168,124,0.3);
    z-index: 1;
}

.process-step-body {
    flex: 1;
    padding-top: 4px;
}
.process-step-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #14141a;
    margin: 0 0 8px;
    letter-spacing: -0.005em;
}
.process-step-body p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #5a5a5a;
    margin: 0 0 10px;
}
.process-step-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(201, 168, 124, 0.1);
    color: #7a5d35;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}
.process-step-meta svg {
    width: 12px;
    height: 12px;
}

/* Stats row */
.process-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 22px 24px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #faf5eb 100%);
    border: 1px solid rgba(201, 168, 124, 0.18);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}
.process-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    border-right: 1px solid rgba(201, 168, 124, 0.15);
}
.process-stat:last-child {
    border-right: none;
}
.process-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #c9a87c, #b08c5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.process-stat-label {
    font-size: 11px;
    font-weight: 500;
    color: #5a5a5a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* CTA pair */
.process-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.process-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(.2,.7,.2,1);
}
.process-btn--primary {
    background: linear-gradient(135deg, #c9a87c 0%, #b08c5e 100%);
    color: #fff;
    box-shadow: 0 6px 18px rgba(201,168,124,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
}
.process-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(201,168,124,0.42), inset 0 1px 0 rgba(255,255,255,0.22);
}
.process-btn--ghost {
    background: #fff;
    color: #14141a;
    border: 1px solid rgba(15, 23, 42, 0.1);
}
.process-btn--ghost:hover {
    border-color: #14141a;
    transform: translateY(-2px);
}
.process-btn--ghost svg {
    transition: transform 0.3s ease;
}
.process-btn--ghost:hover svg {
    transform: translateX(3px);
}

/* Video side */
.process-video-wrap {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.process-video {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 11;
    border-radius: 22px;
    overflow: hidden;
    background: #14141a;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18), 0 10px 24px rgba(15, 23, 42, 0.08);
}
.process-video-placeholder {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}
.process-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20,20,26,0.05) 0%, rgba(20,20,26,0.55) 100%);
    transition: background 0.3s ease;
}
.process-video:hover .process-video-overlay {
    background: linear-gradient(180deg, rgba(20,20,26,0.05) 0%, rgba(20,20,26,0.65) 100%);
}
.process-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #14141a;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.35);
    transition: all 0.3s cubic-bezier(.2,.7,.2,1);
}
.process-video-play::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    animation: process-pulse 2.5s ease-out infinite;
}
@keyframes process-pulse {
    0% { transform: scale(0.95); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}
.process-video-play svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}
.process-video:hover .process-video-play {
    transform: translate(-50%, -50%) scale(1.06);
    background: #fff;
}
.process-video-meta {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.process-video-duration,
.process-video-quality {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(20, 20, 26, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #fff;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.process-video-duration svg {
    width: 12px;
    height: 12px;
}
.process-video-quality {
    background: rgba(201, 168, 124, 0.85);
    color: #14141a;
    border-color: transparent;
}

.process-video-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}
.process-video-card-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c9a87c, #b08c5e);
    color: #fff;
    border-radius: 12px;
}
.process-video-card-icon svg {
    width: 20px;
    height: 20px;
}
.process-video-card-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.35;
}
.process-video-card-body strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #14141a;
}
.process-video-card-body span {
    font-size: 12.5px;
    color: #6a6a6a;
}

/* Tablet */
@media (max-width: 1024px) {
    .process-section {
        padding: 80px 0;
    }
    .process-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .process-video-wrap {
        position: static;
        max-width: 480px;
        margin: 0 auto;
    }
    .process-video {
        aspect-ratio: 16 / 9;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .process-section {
        padding: 60px 0 70px;
    }
    .process-container {
        padding: 0 20px;
    }
    .process-header {
        margin-bottom: 40px;
    }
    .process-step {
        gap: 16px;
        padding-bottom: 24px;
    }
    .process-step-num {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }
    .process-steps::before {
        left: 19px;
    }
    .process-stats {
        padding: 18px 14px;
        gap: 8px;
    }
    .process-stat-num {
        font-size: 18px;
    }
    .process-stat-label {
        font-size: 10px;
    }
    .process-btn {
        flex: 1 1 100%;
        justify-content: center;
    }
    .process-video-play {
        width: 64px;
        height: 64px;
    }
    .process-video-play svg {
        width: 24px;
        height: 24px;
    }
}

/* ============================================
   HERO PRO — Editorial split layout
   ============================================ */
.hero-pro {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #fefcf8 0%, #f9f5ee 100%);
    overflow: hidden;
}

.hero-pro__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-pro__grid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}
.hero-pro__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}
.hero-pro__blob--gold {
    width: 480px;
    height: 480px;
    top: -120px;
    right: -120px;
    background: radial-gradient(circle, rgba(201,168,124,0.55) 0%, transparent 70%);
    animation: heroFloat 12s ease-in-out infinite;
}
.hero-pro__blob--cream {
    width: 540px;
    height: 540px;
    bottom: -180px;
    left: -180px;
    background: radial-gradient(circle, rgba(231,199,150,0.35) 0%, transparent 70%);
    animation: heroFloat 14s ease-in-out infinite reverse;
}
@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.08); }
}

.hero-pro__container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

/* Left content */
.hero-pro__content {
    animation: heroFadeIn 0.8s ease-out;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Location stack — sticky right-edge with expandable contact actions */
.hero-pro__loc-stack {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 990;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.hero-pro__loc-sticker {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 8px 14px 10px;
    background: linear-gradient(135deg, #14141a 0%, #1c1c24 100%);
    border-radius: 14px 0 0 14px;
    color: #fff;
    box-shadow: -6px 0 18px rgba(15, 23, 42, 0.18), inset 1px 0 0 rgba(255, 255, 255, 0.06);
    border: none;
    border-left: 2px solid #c9a87c;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: transform 0.3s cubic-bezier(.2,.7,.2,1), box-shadow 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}
.hero-pro__loc-sticker:hover {
    box-shadow: -10px 0 24px rgba(15, 23, 42, 0.24);
    transform: translateX(-2px);
}
.hero-pro__loc-stack[data-open="true"] .hero-pro__loc-sticker {
    transform: translateX(-2px);
    box-shadow: -10px 0 24px rgba(15, 23, 42, 0.24);
}

.hero-pro__loc-pulse {
    width: 8px;
    height: 8px;
    background: #c9a87c;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(201, 168, 124, 0.6);
    animation: hero-loc-pulse 2s ease-out infinite;
}
@keyframes hero-loc-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 124, 0.6); }
    50% { box-shadow: 0 0 0 6px rgba(201, 168, 124, 0); }
}
.hero-pro__loc-pin { width: 16px; height: 16px; color: #c9a87c; }
.hero-pro__loc-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}
.hero-pro__loc-chevron {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s cubic-bezier(.2,.7,.2,1), color 0.3s ease;
}
.hero-pro__loc-stack[data-open="true"] .hero-pro__loc-chevron {
    transform: rotate(180deg);
    color: #c9a87c;
}

/* Action icons — hidden by default, fly out on open */
.hero-pro__loc-action {
    position: relative;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 14px 0 0 14px;
    text-decoration: none;
    box-shadow: -6px 0 16px rgba(15, 23, 42, 0.18), inset 1px 0 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(60px) scale(0.6);
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(.2,.7,.2,1), transform 0.45s cubic-bezier(.2,.7,.2,1);
    -webkit-tap-highlight-color: transparent;
}
.hero-pro__loc-action svg { width: 18px; height: 18px; }

.hero-pro__loc-action--phone {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
.hero-pro__loc-action--wa {
    background: linear-gradient(135deg, #25D366 0%, #1DA855 100%);
}
.hero-pro__loc-action--map {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
}

/* Tooltip on hover */
.hero-pro__loc-tip {
    position: absolute;
    right: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    padding: 4px 10px;
    background: rgba(20, 20, 26, 0.92);
    color: #fff;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2);
}
.hero-pro__loc-tip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: rgba(20, 20, 26, 0.92);
}
.hero-pro__loc-action:hover .hero-pro__loc-tip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Open state — actions fly out with stagger */
.hero-pro__loc-stack[data-open="true"] .hero-pro__loc-action {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}
.hero-pro__loc-stack[data-open="true"] .hero-pro__loc-action--phone { transition-delay: 0.05s; }
.hero-pro__loc-stack[data-open="true"] .hero-pro__loc-action--wa    { transition-delay: 0.12s; }
.hero-pro__loc-stack[data-open="true"] .hero-pro__loc-action--map   { transition-delay: 0.19s; }

.hero-pro__loc-action:hover {
    transform: translateX(-3px) scale(1.05);
    box-shadow: -10px 0 22px rgba(15, 23, 42, 0.25);
}

@media (max-width: 640px) {
    .hero-pro__loc-stack {
        top: auto;
        bottom: 90px;
        transform: none;
        gap: 8px;
    }
    .hero-pro__loc-sticker {
        padding: 10px 6px 10px 8px;
        gap: 6px;
        border-radius: 12px 0 0 12px;
    }
    .hero-pro__loc-pin { width: 13px; height: 13px; }
    .hero-pro__loc-text { font-size: 10.5px; letter-spacing: 0.22em; }
    .hero-pro__loc-chevron { width: 12px; height: 12px; }
    .hero-pro__loc-action {
        width: 38px;
        height: 38px;
        border-radius: 12px 0 0 12px;
    }
    .hero-pro__loc-action svg { width: 16px; height: 16px; }
    .hero-pro__loc-tip { display: none; }
}

.hero-pro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 14px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(201,168,124,0.25);
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #7a5d35;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 28px;
}
.hero-pro__eyebrow-dot {
    width: 8px;
    height: 8px;
    background: #c9a87c;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(201,168,124,0.2);
    animation: heroPulse 2s ease-in-out infinite;
}
@keyframes heroPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(201,168,124,0.2); }
    50% { box-shadow: 0 0 0 8px rgba(201,168,124,0.05); }
}

.hero-pro__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin: 0 0 28px;
}
.hero-pro__title-line {
    display: block;
    line-height: 1.12;
}
.hero-pro__title-line--accent {
    font-family: 'Inter', serif;
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, #c9a87c 0%, #b08c5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0.08em 6px 0.18em 0;
    line-height: 1.18;
    overflow: visible;
}

.hero-pro__subtitle {
    font-size: 17px;
    line-height: 1.65;
    color: #5a5a5a;
    max-width: 520px;
    margin: 0 0 22px;
}

/* Rotating subtitle — fades through descriptions */
.hero-pro__subtitle--rotator {
    position: relative;
    min-height: 5em;
    transition: min-height 0.5s ease;
}
.hero-pro__rotator-text {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.hero-pro__subtitle--rotator.is-fading .hero-pro__rotator-text {
    opacity: 0;
    transform: translateY(-8px);
}

/* Typewriter — services rotator */
.hero-pro__typer {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 32px;
    padding: 10px 18px 10px 12px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(201, 168, 124, 0.25);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
    max-width: 100%;
}
.hero-pro__typer-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 4px 12px;
    background: linear-gradient(135deg, #c9a87c 0%, #b08c5e 100%);
    color: #fff;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(201, 168, 124, 0.32);
}
.hero-pro__typer-label svg {
    width: 12px;
    height: 12px;
}
.hero-pro__typer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: #14141a;
    letter-spacing: -0.005em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.hero-pro__typer-cursor {
    display: inline-block;
    width: 2px;
    height: 16px;
    margin-left: 2px;
    background: #c9a87c;
    border-radius: 1px;
    animation: hero-pro-blink 1s steps(2, start) infinite;
    flex-shrink: 0;
    transform: translateY(2px);
}
@keyframes hero-pro-blink {
    50% { opacity: 0; }
}

@media (max-width: 640px) {
    .hero-pro__typer {
        gap: 8px;
        padding: 8px 14px 8px 8px;
        width: 100%;
    }
    .hero-pro__typer-label {
        font-size: 10px;
        padding: 3px 10px;
    }
    .hero-pro__typer-text {
        font-size: 13px;
    }
}

.hero-pro__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}
.hero-pro__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s cubic-bezier(.2,.7,.2,1);
    white-space: nowrap;
}
.hero-pro__btn--primary {
    background: linear-gradient(135deg, #c9a87c 0%, #b08c5e 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(201,168,124,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}
.hero-pro__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201,168,124,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
}
.hero-pro__btn--ghost {
    background: rgba(255,255,255,0.6);
    color: #1a1a1a;
    border: 1px solid rgba(15,23,42,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero-pro__btn--ghost:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
    transform: translateY(-2px);
}
.hero-pro__btn--ghost:hover svg {
    transform: translateX(3px);
}
.hero-pro__btn svg {
    transition: transform .3s ease;
}

/* Trust — clean inline social proof */
.hero-pro__trust {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    max-width: 100%;
}

.hero-pro__trust-stack {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.hero-pro__trust-stack img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid #fff;
    margin-left: -10px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}
.hero-pro__trust-stack img:first-child { margin-left: 0; }

.hero-pro__trust-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.hero-pro__trust-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hero-pro__stars {
    display: inline-flex;
    gap: 1.5px;
    color: #f5b73c;
}
.hero-pro__stars svg { width: 13px; height: 13px; }
.hero-pro__trust-score {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #14141a;
    letter-spacing: -0.005em;
    line-height: 1;
}
.hero-pro__trust-label {
    font-size: 12px;
    color: #6a6a6a;
    line-height: 1.35;
    white-space: nowrap;
}
.hero-pro__trust-label strong {
    color: #14141a;
    font-weight: 600;
}

@media (max-width: 640px) {
    .hero-pro__trust { gap: 12px; }
    .hero-pro__trust-stack img {
        width: 30px;
        height: 30px;
        margin-left: -8px;
        border-width: 2px;
    }
    .hero-pro__trust-label { font-size: 11.5px; }
}

/* Right visual */
.hero-pro__visual {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-width: 460px;
    margin: 0 auto;
    animation: heroFadeIn 0.8s ease-out 0.2s both;
}

.hero-pro__photo {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    overflow: hidden;
    background: #f0e8d9;
    box-shadow: 0 30px 60px rgba(15,23,42,0.15), 0 10px 20px rgba(15,23,42,0.06);
}
.hero-pro__photo img,
.hero-pro__photo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-pro__photo-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.08) 100%);
    pointer-events: none;
}

.hero-pro__card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(15,23,42,0.12), 0 1px 0 rgba(255,255,255,0.6) inset;
    border: 1px solid rgba(255,255,255,0.6);
    animation: heroCardFloat 5s ease-in-out infinite;
}
@keyframes heroCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-pro__card--ba {
    bottom: 16px;
    left: 16px;
    padding: 12px;
    width: 210px;
    animation-delay: -2s;
}
.hero-pro__card-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c9a87c;
    margin-bottom: 10px;
    text-align: center;
}
.hero-pro__ba {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    align-items: center;
}
.hero-pro__ba-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.hero-pro__ba-col img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(15,23,42,0.06);
}
.hero-pro__ba-col span {
    font-size: 10px;
    font-weight: 600;
    color: #5a5a5a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.hero-pro__ba-arrow {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #c9a87c, #b08c5e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.hero-pro__ba-arrow svg {
    width: 12px;
    height: 12px;
}

.hero-pro__card--badge {
    top: 16px;
    right: 16px;
    padding: 12px 16px 12px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-pro__badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #c9a87c, #b08c5e);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-pro__badge-icon svg {
    width: 20px;
    height: 20px;
}
.hero-pro__badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.hero-pro__badge-text strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
}
.hero-pro__badge-text span {
    font-size: 11px;
    color: #7a7a7a;
}

/* Bottom stats bar */
.hero-pro__stats {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 80px auto 0;
    padding: 32px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201,168,124,0.18);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.06);
    margin-left: 32px;
    margin-right: 32px;
}
.hero-pro__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}
.hero-pro__stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    background: linear-gradient(135deg, #c9a87c, #b08c5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.hero-pro__stat-label {
    font-size: 12.5px;
    font-weight: 500;
    color: #5a5a5a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.hero-pro__stat-sep {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,124,0.35), transparent);
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-pro {
        padding: 120px 0 60px;
    }
    .hero-pro__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero-pro__visual {
        max-width: 420px;
        margin: 0 auto;
    }
    .hero-pro__stats {
        flex-wrap: wrap;
        gap: 24px;
        padding: 24px 28px;
    }
    .hero-pro__stat-sep {
        display: none;
    }
    .hero-pro__stat {
        flex: 1 1 calc(50% - 12px);
        min-width: 120px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .hero-pro {
        padding: 110px 0 50px;
    }
    .hero-pro__container {
        padding: 0 20px;
        gap: 48px;
    }
    .hero-pro__title {
        font-size: clamp(32px, 9vw, 44px);
    }
    .hero-pro__subtitle {
        font-size: 15.5px;
    }
    .hero-pro__btn {
        flex: 1 1 100%;
        justify-content: center;
    }
    .hero-pro__visual {
        max-width: 100%;
    }
    .hero-pro__card--ba {
        width: 200px;
        left: -12px;
        bottom: -20px;
    }
    .hero-pro__card--badge {
        right: -8px;
        top: -8px;
        padding: 10px 14px 10px 10px;
    }
    .hero-pro__badge-icon {
        width: 34px;
        height: 34px;
    }
    .hero-pro__stats {
        margin: 50px 20px 0;
        padding: 20px;
    }
    .hero-pro__stat-num {
        font-size: 22px;
    }
    .hero-pro__stat-label {
        font-size: 11px;
    }
}

/* ============================================
   SVC CARD — Premium image-backed service card
   ============================================ */
.svc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    aspect-ratio: 4 / 5;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s ease;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    isolation: isolate;
}
.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16), 0 36px 60px rgba(201, 168, 124, 0.18);
}

.svc-card__img {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #faf7f1, #f3ede2);
}
.svc-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.svc-card:hover .svc-card__img img {
    transform: scale(1.08);
}
.svc-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 20, 26, 0.05) 0%, rgba(20, 20, 26, 0.55) 55%, rgba(20, 20, 26, 0.92) 100%);
    transition: opacity 0.4s ease;
}

.svc-card__num {
    position: absolute;
    top: 18px;
    left: 22px;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}

.svc-card__tag {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    padding: 6px 12px;
    background: linear-gradient(135deg, #c9a87c, #b08c5e);
    color: #fff;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(201, 168, 124, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.svc-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201, 168, 124, 0.4);
    background: linear-gradient(135deg, #faf7f1, #f3ede2);
}
.svc-card__placeholder svg { width: 48px; height: 48px; }

.svc-card__body {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 22px 22px 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.svc-card__body h2,
.svc-card__body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.svc-card__body p {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d8b88a;
    transition: gap 0.3s ease;
}
.svc-card:hover .svc-card__link { gap: 10px; }
.svc-card__link svg { transition: transform 0.3s ease; }
.svc-card:hover .svc-card__link svg { transform: translateX(3px); }

@media (max-width: 640px) {
    .svc-card { aspect-ratio: 4 / 5; border-radius: 16px; }
    .svc-card__num { top: 12px; left: 14px; padding: 4px 9px; font-size: 11px; letter-spacing: 0.14em; }
    .svc-card__tag { top: 12px; right: 12px; padding: 4px 9px; font-size: 9.5px; }
    .svc-card__body { padding: 16px 16px 14px; gap: 5px; }
    .svc-card__body h2,
    .svc-card__body h3 { font-size: 14px; line-height: 1.25; }
    .svc-card__body p { font-size: 11.5px; -webkit-line-clamp: 2; }
    .svc-card__link { font-size: 10.5px; padding-top: 8px; margin-top: 4px; }
    .svc-card__link svg { width: 12px; height: 12px; }
}

/* ============================================
   SERVICE CARD PRO — Homepage service grid (legacy)
   ============================================ */
.service-card-pro {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(201, 168, 124, 0.12);
    overflow: hidden;
    text-decoration: none;
    transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease, border-color .3s ease;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(15, 23, 42, 0.03);
}
.service-card-pro:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 124, 0.35);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08), 0 24px 48px rgba(201, 168, 124, 0.12);
}

.service-card-pro__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #f8f5ef 0%, #ffffff 55%, #f3ede2 100%);
    overflow: hidden;
}
.service-card-pro__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 100% 0%, rgba(201, 168, 124, 0.12), transparent 45%),
        radial-gradient(circle at 0% 100%, rgba(201, 168, 124, 0.08), transparent 45%);
    pointer-events: none;
}

.service-card-pro__frame {
    position: absolute;
    inset: 18px;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), inset 0 0 0 1px rgba(15, 23, 42, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-card-pro__frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #faf7f1;
    transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.service-card-pro:hover .service-card-pro__frame img {
    transform: scale(1.03);
}

.service-card-pro__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201, 168, 124, 0.5);
    background: linear-gradient(135deg, #faf7f1, #f1ebe0);
}
.service-card-pro__placeholder svg {
    width: 44px;
    height: 44px;
}

.service-card-pro__num {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 26px;
    padding: 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #7a5d35;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(201, 168, 124, 0.25);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
}

.service-card-pro__body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 22px 22px 24px;
}
.service-card-pro__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
    line-height: 1.3;
    transition: color .25s ease;
}
.service-card-pro:hover .service-card-pro__title {
    color: #c9a87c;
}
.service-card-pro__desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 18px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.service-card-pro__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #c9a87c;
    padding-top: 14px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.service-card-pro__cta svg {
    transition: transform .3s ease;
}
.service-card-pro:hover .service-card-pro__cta svg {
    transform: translateX(4px);
}

@media (max-width: 640px) {
    .service-card-pro {
        border-radius: 16px;
    }
    .service-card-pro__num {
        top: 8px;
        right: 8px;
        min-width: 28px;
        height: 22px;
        padding: 0 8px;
        font-size: 10px;
    }
    .service-card-pro__body {
        padding: 14px 14px 16px;
    }
    .service-card-pro__title {
        font-size: 14px;
        margin-bottom: 6px;
        line-height: 1.25;
    }
    .service-card-pro__desc {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 12px;
        -webkit-line-clamp: 2;
    }
    .service-card-pro__cta {
        font-size: 11.5px;
        padding-top: 10px;
        gap: 5px;
    }
    .service-card-pro__cta svg {
        width: 13px;
        height: 13px;
    }
}

/* ============================================================
   2026 expansion: hero cities, featured services, process,
   comparison table, cities cards, city landing pages
   ============================================================ */

/* Hero city pills */
.hero-pro__cities{display:inline-flex;gap:8px;flex-wrap:wrap;margin:14px 0 8px}
.hero-pro__city-pill{display:inline-flex;align-items:center;gap:6px;padding:7px 14px;border-radius:999px;background:rgba(201,168,124,.12);color:#c9a87c;border:1px solid rgba(201,168,124,.35);font-size:12.5px;font-weight:600;letter-spacing:.02em;transition:all .25s ease;text-decoration:none}
.hero-pro__city-pill:hover{background:rgba(201,168,124,.22);border-color:rgba(201,168,124,.55);transform:translateY(-1px)}
.hero-pro__city-pill svg{width:13px;height:13px;flex-shrink:0}

/* Featured services — editorial cards */
.featured-pro{position:relative;padding:110px 0 100px;background:var(--bg-primary);overflow:hidden}
.featured-pro__bg{position:absolute;inset:0;pointer-events:none;z-index:0}
.featured-pro__blob{position:absolute;width:520px;height:520px;border-radius:50%;background:radial-gradient(circle,rgba(201,168,124,.15),transparent 70%);top:-200px;right:-150px;filter:blur(60px)}
.featured-pro__inner{position:relative;z-index:1;max-width:1280px;margin:0 auto;padding:0 24px}
.featured-pro__header{text-align:center;max-width:760px;margin:0 auto 56px}
.featured-pro__eyebrow{display:inline-flex;align-items:center;gap:14px;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.18em;color:#c9a87c;margin-bottom:18px}
.featured-pro__eyebrow-line{width:36px;height:1px;background:linear-gradient(90deg,transparent,#c9a87c)}
.featured-pro__eyebrow-line:last-child{background:linear-gradient(90deg,#c9a87c,transparent)}
.featured-pro__title{font-family:var(--font-display,'Montserrat',serif);font-size:clamp(28px,4.2vw,46px);font-weight:700;line-height:1.15;color:var(--text-primary);margin:0 0 16px}
.featured-pro__title em{font-style:italic;color:#c9a87c;font-weight:500}
.featured-pro__subtitle{font-size:16.5px;line-height:1.7;color:var(--text-secondary,#666);margin:0}
.featured-pro__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.featured-pro__card{position:relative;display:flex;flex-direction:column;border-radius:18px;overflow:hidden;background:var(--bg-secondary,#fff);border:1px solid rgba(201,168,124,.16);box-shadow:0 12px 36px -18px rgba(0,0,0,.18);text-decoration:none;color:inherit;transition:all .35s cubic-bezier(.16,1,.3,1)}
.featured-pro__card:hover{transform:translateY(-6px);box-shadow:0 24px 60px -24px rgba(201,168,124,.4);border-color:rgba(201,168,124,.55)}
.featured-pro__img{position:relative;aspect-ratio:16/10;overflow:hidden;background:linear-gradient(135deg,rgba(201,168,124,.1),rgba(176,140,94,.05))}
.featured-pro__img img{width:100%;height:100%;object-fit:cover;transition:transform .8s cubic-bezier(.16,1,.3,1)}
.featured-pro__card:hover .featured-pro__img img{transform:scale(1.06)}
.featured-pro__rank{position:absolute;top:14px;left:14px;display:inline-flex;align-items:center;justify-content:center;min-width:38px;height:38px;padding:0 10px;background:rgba(20,20,26,.78);color:#c9a87c;border-radius:10px;font-family:var(--font-display);font-size:14px;font-weight:700;letter-spacing:.04em;backdrop-filter:blur(8px)}
.featured-pro__body{padding:22px 22px 24px;display:flex;flex-direction:column;gap:10px;flex:1}
.featured-pro__tag{display:inline-block;align-self:flex-start;padding:4px 10px;background:rgba(201,168,124,.14);color:#c9a87c;border-radius:999px;font-size:10.5px;font-weight:700;text-transform:uppercase;letter-spacing:.12em}
.featured-pro__name{font-family:var(--font-display);font-size:22px;font-weight:700;color:var(--text-primary);margin:2px 0 0;line-height:1.25}
.featured-pro__hook{font-size:14.5px;line-height:1.65;color:var(--text-secondary,#666);margin:0;flex:1}
.featured-pro__meta{display:flex;gap:14px;flex-wrap:wrap;font-size:12px;color:var(--text-secondary,#777);padding-top:6px;border-top:1px dashed rgba(201,168,124,.22);margin-top:4px}
.featured-pro__meta span{display:inline-flex;align-items:center;gap:5px}
.featured-pro__cta{display:inline-flex;align-items:center;gap:6px;color:#c9a87c;font-size:13.5px;font-weight:600;letter-spacing:.02em;padding-top:4px;transition:gap .25s ease}
.featured-pro__card:hover .featured-pro__cta{gap:10px}
@media(max-width:1024px){.featured-pro__grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.featured-pro{padding:70px 0 60px}.featured-pro__grid{grid-template-columns:1fr;gap:18px}.featured-pro__header{margin-bottom:38px}}

/* Process — 4 step timeline */
.process-pro{padding:110px 0 100px;background:linear-gradient(180deg,var(--bg-tertiary,#fafafa) 0%,var(--bg-primary,#fff) 100%);position:relative}
.process-pro__steps{list-style:none;padding:0;margin:48px 0 0;display:grid;grid-template-columns:repeat(4,1fr);gap:24px;counter-reset:step;position:relative}
.process-pro__steps::before{content:'';position:absolute;top:50px;left:8%;right:8%;height:2px;background:linear-gradient(90deg,transparent,rgba(201,168,124,.4) 20%,rgba(201,168,124,.4) 80%,transparent);z-index:0}
.process-pro__step{position:relative;z-index:1;background:#fff;border:1px solid rgba(201,168,124,.15);border-radius:16px;padding:32px 22px 26px;text-align:center;transition:all .35s ease}
.process-pro__step:hover{transform:translateY(-4px);box-shadow:0 18px 48px -22px rgba(201,168,124,.35);border-color:rgba(201,168,124,.4)}
.process-pro__num{display:inline-block;font-family:var(--font-display);font-size:13px;font-weight:700;color:#c9a87c;letter-spacing:.14em;margin-bottom:14px}
.process-pro__icon{display:inline-flex;align-items:center;justify-content:center;width:64px;height:64px;border-radius:50%;background:linear-gradient(135deg,rgba(201,168,124,.18),rgba(201,168,124,.06));color:#c9a87c;margin:0 auto 18px}
.process-pro__icon svg{width:28px;height:28px}
.process-pro__step h4{font-family:var(--font-display);font-size:18px;font-weight:700;color:var(--text-primary);margin:0 0 10px;line-height:1.3}
.process-pro__step p{font-size:14px;line-height:1.7;color:var(--text-secondary,#666);margin:0 0 14px}
.process-pro__cta{display:inline-flex;align-items:center;gap:6px;font-size:13px;font-weight:600;color:#fff;background:linear-gradient(135deg,#25D366,#128C7E);padding:9px 16px;border-radius:999px;text-decoration:none;transition:transform .2s ease,box-shadow .2s ease}
.process-pro__cta:hover{transform:translateY(-1px);box-shadow:0 10px 24px -10px rgba(37,211,102,.6)}
@media(max-width:1024px){.process-pro__steps{grid-template-columns:repeat(2,1fr)}.process-pro__steps::before{display:none}}
@media(max-width:640px){.process-pro{padding:70px 0 60px}.process-pro__steps{grid-template-columns:1fr;gap:16px}}

/* Comparison table */
.compare-pro{padding:110px 0 100px;background:var(--bg-primary)}
.compare-pro__table-wrap{margin-top:42px;overflow-x:auto;border-radius:18px;border:1px solid rgba(201,168,124,.2);box-shadow:0 14px 40px -22px rgba(0,0,0,.12);background:#fff}
.compare-pro__table{width:100%;min-width:780px;border-collapse:collapse;font-size:14.5px}
.compare-pro__table thead th{background:linear-gradient(180deg,#1a1a22,#0f0f15);color:#fff;padding:20px 18px;text-align:center;font-weight:600;letter-spacing:.02em;font-size:14px;border-bottom:1px solid rgba(201,168,124,.25)}
.compare-pro__table thead th:first-child{text-align:left}
.compare-pro__th-us{background:linear-gradient(180deg,#c9a87c,#a8835a) !important;color:#fff !important;position:relative}
.compare-pro__th-us::after{content:'';position:absolute;bottom:-1px;left:0;right:0;height:3px;background:#fff}
.compare-pro__table tbody tr{border-bottom:1px solid rgba(201,168,124,.08)}
.compare-pro__table tbody tr:last-child{border-bottom:none}
.compare-pro__table tbody tr:hover{background:rgba(201,168,124,.04)}
.compare-pro__table td{padding:16px 18px;text-align:center;color:var(--text-secondary,#555);vertical-align:middle}
.compare-pro__table td:first-child{text-align:left;font-weight:600;color:var(--text-primary);background:rgba(201,168,124,.04)}
.compare-pro__td-us{background:rgba(201,168,124,.08) !important;color:#7a5d35 !important;font-weight:600;border-left:1px solid rgba(201,168,124,.2);border-right:1px solid rgba(201,168,124,.2)}
.compare-pro__note{margin-top:18px;font-size:12.5px;color:var(--text-secondary,#888);text-align:center;font-style:italic}
@media(max-width:640px){.compare-pro{padding:70px 0 60px}.compare-pro__table{font-size:13px;min-width:680px}.compare-pro__table thead th,.compare-pro__table td{padding:12px 10px}}

/* Cities cards */
.cities-pro{padding:110px 0 100px;background:linear-gradient(180deg,var(--bg-primary) 0%,var(--bg-tertiary,#fafafa) 100%)}
.cities-pro__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;margin-top:48px}
.cities-pro__card{position:relative;display:flex;flex-direction:column;background:#fff;border:1px solid rgba(201,168,124,.2);border-radius:22px;padding:38px 36px 32px;overflow:hidden;text-decoration:none;color:inherit;transition:all .4s cubic-bezier(.16,1,.3,1);min-height:330px}
.cities-pro__card::before{content:'';position:absolute;top:0;right:0;width:240px;height:240px;border-radius:50%;background:radial-gradient(circle,rgba(201,168,124,.16),transparent 65%);transform:translate(30%,-30%);transition:transform .6s ease}
.cities-pro__card:hover{transform:translateY(-6px);box-shadow:0 28px 64px -24px rgba(201,168,124,.45);border-color:rgba(201,168,124,.5)}
.cities-pro__card:hover::before{transform:translate(20%,-20%) scale(1.2)}
.cities-pro__head{position:relative;z-index:1;margin-bottom:24px}
.cities-pro__badge{display:inline-block;padding:5px 12px;background:rgba(201,168,124,.14);color:#c9a87c;border-radius:999px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.14em;margin-bottom:14px}
.cities-pro__head h3{font-family:var(--font-display);font-size:38px;font-weight:700;color:var(--text-primary);margin:0 0 10px;line-height:1}
.cities-pro__head p{font-size:15px;line-height:1.65;color:var(--text-secondary,#666);margin:0}
.cities-pro__list{list-style:none;padding:0;margin:0 0 26px;display:flex;flex-direction:column;gap:10px;position:relative;z-index:1}
.cities-pro__list li{display:flex;align-items:flex-start;gap:10px;font-size:14px;line-height:1.55;color:var(--text-secondary,#555)}
.cities-pro__list svg{flex-shrink:0;margin-top:3px;color:#c9a87c}
.cities-pro__cta{margin-top:auto;display:inline-flex;align-items:center;gap:8px;color:#c9a87c;font-size:14.5px;font-weight:600;letter-spacing:.01em;padding-top:14px;border-top:1px solid rgba(201,168,124,.16);position:relative;z-index:1;transition:gap .25s ease}
.cities-pro__card:hover .cities-pro__cta{gap:14px}
@media(max-width:768px){.cities-pro{padding:70px 0 60px}.cities-pro__grid{grid-template-columns:1fr;gap:18px}.cities-pro__card{padding:32px 24px 26px;min-height:auto}.cities-pro__head h3{font-size:30px}}

/* ===== City landing pages ===== */
.city-hero{position:relative;padding:120px 0 80px;background:linear-gradient(180deg,#fdfaf5,#fff);overflow:hidden}
.city-hero__bg{position:absolute;inset:0;pointer-events:none;z-index:0}
.city-hero__blob{position:absolute;width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(201,168,124,.16),transparent 70%);top:-220px;right:-180px;filter:blur(50px)}
.city-hero__inner{position:relative;z-index:1;max-width:920px;margin:0 auto;padding:0 24px;text-align:center}
.city-hero__crumb{display:inline-flex;gap:8px;font-size:13px;color:var(--text-secondary,#777);margin-bottom:18px;align-items:center}
.city-hero__crumb a{color:#c9a87c;text-decoration:none;font-weight:500}
.city-hero__crumb a:hover{text-decoration:underline}
.city-hero__pin{display:inline-flex;align-items:center;gap:7px;padding:6px 14px;border-radius:999px;background:rgba(201,168,124,.14);color:#c9a87c;border:1px solid rgba(201,168,124,.32);font-size:12.5px;font-weight:600;letter-spacing:.01em;line-height:1;margin-bottom:22px;white-space:nowrap}
.city-hero__pin svg{width:14px;height:14px;flex-shrink:0}
.city-hero__crumb svg{width:13px;height:13px}
.city-hero__title{font-family:var(--font-display);font-size:clamp(34px,5.5vw,58px);font-weight:700;line-height:1.1;color:var(--text-primary);margin:0 0 22px}
.city-hero__subtitle{font-size:18px;line-height:1.7;color:var(--text-secondary,#555);max-width:720px;margin:0 auto 34px}
.city-hero__cta{display:inline-flex;gap:14px;flex-wrap:wrap;justify-content:center;margin-bottom:46px}
.city-hero__btn{display:inline-flex;align-items:center;gap:8px;padding:14px 26px;border-radius:999px;font-size:14.5px;font-weight:600;letter-spacing:.01em;text-decoration:none;transition:all .25s ease;border:1px solid transparent}
.city-hero__btn--primary{background:linear-gradient(135deg,#25D366,#128C7E);color:#fff;box-shadow:0 14px 34px -16px rgba(37,211,102,.7)}
.city-hero__btn--primary:hover{transform:translateY(-2px);box-shadow:0 20px 44px -16px rgba(37,211,102,.85)}
.city-hero__btn--ghost{background:transparent;color:var(--text-primary);border-color:rgba(201,168,124,.5)}
.city-hero__btn--ghost:hover{background:rgba(201,168,124,.08);border-color:#c9a87c}
.city-hero__stats{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;max-width:720px;margin:0 auto;padding-top:32px;border-top:1px solid rgba(201,168,124,.18)}
.city-hero__stats > div{display:flex;flex-direction:column;align-items:center;gap:4px}
.city-hero__stats strong{font-family:var(--font-display);font-size:24px;font-weight:700;color:#c9a87c;line-height:1}
.city-hero__stats span{font-size:12px;color:var(--text-secondary,#888);text-transform:uppercase;letter-spacing:.08em}
@media(max-width:640px){.city-hero{padding:80px 0 50px}.city-hero__stats{grid-template-columns:repeat(2,1fr)}.city-hero__stats strong{font-size:20px}}

.city-services{padding:80px 0;background:var(--bg-tertiary,#fafafa)}
.city-services .container,.city-why .container,.city-process .container{max-width:1200px;margin:0 auto;padding:0 24px}

.city-why{padding:90px 0;background:var(--bg-primary)}
.city-why__inner{display:grid;grid-template-columns:1.1fr 1fr;gap:48px;align-items:start}
.city-why__title{font-family:var(--font-display);font-size:clamp(26px,3.8vw,38px);font-weight:700;line-height:1.2;color:var(--text-primary);margin:14px 0 24px}
.city-why__list{list-style:none;padding:0;margin:0 0 30px;display:flex;flex-direction:column;gap:14px}
.city-why__list li{display:flex;align-items:flex-start;gap:12px;font-size:15px;line-height:1.65;color:var(--text-secondary,#555)}
.city-why__check{flex-shrink:0;width:28px;height:28px;display:inline-flex;align-items:center;justify-content:center;background:rgba(201,168,124,.15);color:#c9a87c;border-radius:50%}
.city-why__check svg{width:14px;height:14px}
.city-why__cta{display:inline-flex;align-items:center;gap:8px;padding:14px 26px;background:#c9a87c;color:#fff;border-radius:999px;text-decoration:none;font-size:14.5px;font-weight:600;transition:all .25s ease}
.city-why__cta:hover{background:#a8835a;transform:translateY(-2px);box-shadow:0 16px 34px -16px rgba(201,168,124,.7)}
.city-why__districts{background:linear-gradient(160deg,#1a1a22,#0f0f15);color:#fff;border-radius:18px;padding:32px 28px}
.city-why__districts h3{font-family:var(--font-display);font-size:18px;font-weight:600;margin:0 0 18px;color:#c9a87c}
.city-why__chips{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:18px}
.city-why__chip{display:inline-block;padding:6px 12px;background:rgba(201,168,124,.16);color:#e8d5b0;border-radius:999px;font-size:12.5px;font-weight:500;border:1px solid rgba(201,168,124,.25)}
.city-why__note{font-size:13px;line-height:1.6;color:rgba(255,255,255,.65);margin:0}
@media(max-width:900px){.city-why__inner{grid-template-columns:1fr;gap:32px}}

.city-process{padding:90px 0;background:var(--bg-tertiary,#fafafa)}
.city-process__steps{list-style:none;padding:0;margin:42px 0 0;display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.city-process__steps li{background:#fff;border:1px solid rgba(201,168,124,.16);border-radius:16px;padding:28px 26px;position:relative}
.city-process__steps li:hover{box-shadow:0 14px 36px -18px rgba(201,168,124,.4)}
.city-process__num{display:inline-block;font-family:var(--font-display);font-size:32px;font-weight:700;color:#c9a87c;line-height:1;margin-bottom:12px;opacity:.8}
.city-process__steps h4{font-family:var(--font-display);font-size:18px;font-weight:700;margin:0 0 8px;color:var(--text-primary)}
.city-process__steps p{font-size:14.5px;line-height:1.7;color:var(--text-secondary,#666);margin:0}
@media(max-width:640px){.city-process__steps{grid-template-columns:1fr}.city-why,.city-services,.city-process{padding:60px 0}}


/* =====================================================
   POLISH v2 — Editorial luxury refinements
   Header + everything below hero
   ===================================================== */

/* ---------- Universal section system ---------- */
.section-header{text-align:center;max-width:740px;margin:0 auto 64px;padding:0 16px}
.section-eyebrow{display:inline-flex;align-items:center;gap:12px;font-family:var(--font-primary,'Inter',sans-serif);font-size:11px;font-weight:600;letter-spacing:.24em;text-transform:uppercase;color:#c9a87c;margin-bottom:24px;background:transparent;padding:0;line-height:1}
.section-eyebrow::before{content:'';width:28px;height:1px;background:currentColor;display:inline-block;opacity:.9}
.section-eyebrow--light{color:rgba(232,213,176,.9)}
.section-title{font-family:var(--font-display);font-size:clamp(28px,4.4vw,46px);font-weight:600;line-height:1.16;letter-spacing:-.014em;color:var(--text-primary);margin:0 0 18px;text-align:center}
.section-title .title-accent{font-style:italic;font-weight:500;color:#c9a87c;display:inline}
.section-subtitle{font-size:16.5px;line-height:1.75;color:var(--text-secondary,#5a5a64);margin:0 auto;max-width:620px;font-weight:400}
.section-badge{display:inline-block;background:transparent;color:#c9a87c;padding:0 0 0 38px;position:relative;font-size:11px;letter-spacing:.22em;font-weight:600;text-transform:uppercase;margin-bottom:22px;line-height:1.2}
.section-badge::before{content:'';position:absolute;left:0;top:50%;width:28px;height:1px;background:currentColor}

/* ---------- Header / Navbar polish ---------- */
.navbar-modern .nav-inner{padding:14px 32px}
.navbar-scrolled{background:rgba(255,255,255,.96)!important;backdrop-filter:blur(20px) saturate(180%);-webkit-backdrop-filter:blur(20px) saturate(180%);border-bottom:1px solid rgba(15,23,42,.05)!important;box-shadow:0 1px 0 rgba(15,23,42,.03)!important}
.nav-link{font-size:14px!important;letter-spacing:.005em;font-weight:500}
.logo-brand{font-weight:500!important;letter-spacing:-.005em!important}
.logo-sub{letter-spacing:.06em;font-size:10.5px;opacity:.7}
.nav-cta-btn{background:#1a1a22!important;color:#fff!important;border-radius:999px!important;padding:11px 22px!important;font-size:13px!important;letter-spacing:.015em!important;font-weight:500!important;box-shadow:none!important;transition:all .28s ease!important;border:1px solid transparent!important}
.nav-cta-btn:hover{background:#c9a87c!important;transform:translateY(-1px)!important;box-shadow:0 10px 24px -12px rgba(201,168,124,.6)!important}

/* ---------- Promo video / Process section (legacy) ---------- */
.process-section{padding:120px 0!important;background:#fafaf7!important}

/* ---------- What-pro ---------- */
.what-pro{padding:130px 0 120px!important;background:#fff!important}
.what-pro__bg{opacity:.45}
.what-pro__benefit{border-radius:14px!important;border:1px solid rgba(15,23,42,.06)!important;background:#fff!important;box-shadow:none!important;transition:all .35s cubic-bezier(.2,.7,.2,1)}
.what-pro__benefit:hover{border-color:rgba(201,168,124,.36)!important;box-shadow:0 18px 44px -26px rgba(15,23,42,.16)!important;transform:translateY(-3px)}
.what-pro__benefit-num{color:#c9a87c;opacity:.4;font-weight:500;letter-spacing:.01em}
.what-pro__benefit-title{font-weight:600!important;letter-spacing:-.005em!important}

/* ---------- Featured pro ---------- */
.featured-pro{padding:130px 0 120px!important;background:#fff!important}
.featured-pro__bg{display:none}
.featured-pro__card{border-radius:14px!important;border:1px solid rgba(15,23,42,.06)!important;box-shadow:none!important;background:#fff}
.featured-pro__card:hover{border-color:rgba(201,168,124,.36)!important;box-shadow:0 22px 56px -32px rgba(15,23,42,.2)!important;transform:translateY(-4px)!important}
.featured-pro__rank{background:rgba(255,255,255,.94)!important;color:#1a1a22!important;border:1px solid rgba(201,168,124,.25);backdrop-filter:blur(10px);font-weight:600;font-family:var(--font-display);font-size:13px;height:34px;min-width:34px;border-radius:10px}
.featured-pro__name{font-weight:600!important;letter-spacing:-.008em!important;font-size:21px}
.featured-pro__tag{background:transparent!important;color:#8c7250!important;padding:0 0 0 26px!important;position:relative;letter-spacing:.2em!important;font-size:10px!important;font-weight:600}
.featured-pro__tag::before{content:'';position:absolute;left:0;top:50%;width:18px;height:1px;background:currentColor}
.featured-pro__hook{font-size:14.5px;line-height:1.7;color:#5a5a64}
.featured-pro__cta{font-size:13px;letter-spacing:.015em}

/* ---------- Process ---------- */
.process-pro{padding:130px 0 120px!important;background:linear-gradient(180deg,#fafaf7 0%,#fff 100%)!important}
.process-pro__step{border-radius:14px!important;border:1px solid rgba(15,23,42,.06)!important;box-shadow:none!important;background:#fff;padding:36px 26px 30px!important}
.process-pro__step:hover{border-color:rgba(201,168,124,.36)!important;box-shadow:0 22px 56px -32px rgba(15,23,42,.18)!important;transform:translateY(-4px)!important}
.process-pro__num{font-size:11.5px!important;letter-spacing:.22em!important;color:#c9a87c;opacity:.85;margin-bottom:18px!important}
.process-pro__icon{width:54px!important;height:54px!important;background:linear-gradient(135deg,rgba(201,168,124,.14),rgba(201,168,124,.04))!important;margin-bottom:20px!important}
.process-pro__icon svg{width:22px!important;height:22px!important;stroke-width:1.6}
.process-pro__step h4{font-weight:600!important;font-size:17.5px!important;letter-spacing:-.008em!important;margin-bottom:10px!important}
.process-pro__step p{font-size:14px!important;line-height:1.72!important;color:#5a5a64!important}
.process-pro__cta{background:#1a1a22!important;background-image:none!important;color:#fff;box-shadow:none!important;padding:10px 18px!important;font-size:12.5px!important;letter-spacing:.02em;font-weight:500;border-radius:999px}
.process-pro__cta:hover{background:#25D366!important;box-shadow:0 12px 28px -14px rgba(37,211,102,.55)!important}
.process-pro__steps::before{background:linear-gradient(90deg,transparent,rgba(201,168,124,.32) 20%,rgba(201,168,124,.32) 80%,transparent)!important}

/* ---------- Comparison table ---------- */
.compare-pro{padding:130px 0 120px!important;background:#fff!important}
.compare-pro__table-wrap{border-radius:14px!important;border:1px solid rgba(15,23,42,.07)!important;box-shadow:0 18px 50px -32px rgba(15,23,42,.12)!important}
.compare-pro__table thead th{background:#fdfaf5!important;color:#1a1a22!important;font-weight:600!important;font-size:13px!important;letter-spacing:.005em!important;text-transform:none;border-bottom:1px solid rgba(15,23,42,.08);padding:22px 18px}
.compare-pro__th-us{background:#1a1a22!important;color:#fff!important;position:relative;padding-top:30px!important}
.compare-pro__th-us::after{display:none}
.compare-pro__th-us::before{content:'BİZİM YÖNTEMİMİZ';position:absolute;top:8px;left:50%;transform:translateX(-50%);font-size:8px;letter-spacing:.22em;color:#c9a87c;font-weight:600;white-space:nowrap}
.compare-pro__td-us{background:rgba(201,168,124,.05)!important;color:#1a1a22!important;font-weight:600;border-left:1px solid rgba(201,168,124,.18);border-right:1px solid rgba(201,168,124,.18)}
.compare-pro__table td{font-size:14px;padding:15px 18px;color:#4a4a52}
.compare-pro__table td:first-child{background:transparent!important;font-weight:500;color:#1a1a22}
.compare-pro__table tbody tr{border-bottom:1px solid rgba(15,23,42,.05)}
.compare-pro__table tbody tr:hover{background:rgba(201,168,124,.025)}

/* ---------- Cities cards ---------- */
.cities-pro{padding:130px 0 120px!important;background:linear-gradient(180deg,#fff 0%,#fafaf7 100%)!important}
.cities-pro__card{border-radius:16px!important;border:1px solid rgba(15,23,42,.06)!important;padding:44px 40px 36px!important;background:#fff!important;min-height:360px;box-shadow:none!important}
.cities-pro__card:hover{border-color:rgba(201,168,124,.36)!important;box-shadow:0 26px 64px -34px rgba(15,23,42,.2)!important;transform:translateY(-4px)!important}
.cities-pro__card::before{width:280px!important;height:280px!important;background:radial-gradient(circle,rgba(201,168,124,.1),transparent 60%)!important}
.cities-pro__badge{background:transparent!important;color:#8c7250!important;padding:0 0 0 26px!important;position:relative;letter-spacing:.2em!important;font-size:10.5px!important;font-weight:600;margin-bottom:20px!important}
.cities-pro__badge::before{content:'';position:absolute;left:0;top:50%;width:18px;height:1px;background:currentColor}
.cities-pro__head h3{font-weight:600!important;letter-spacing:-.014em!important;font-size:36px!important}
.cities-pro__head p{font-size:15px;line-height:1.7;color:#5a5a64}
.cities-pro__list li{font-size:14.5px;color:#4a4a52}
.cities-pro__cta{font-size:14px;letter-spacing:.015em;color:#1a1a22;font-weight:600}
.cities-pro__card:hover .cities-pro__cta{color:#c9a87c}

/* ---------- Service cards (global) ---------- */
.svc-card{border-radius:14px!important;border:1px solid rgba(15,23,42,.06)!important;box-shadow:0 1px 0 rgba(15,23,42,.02)!important;background:#fff!important;transition:all .35s cubic-bezier(.2,.7,.2,1)!important;overflow:hidden}
.svc-card:hover{transform:translateY(-3px)!important;border-color:rgba(201,168,124,.4)!important;box-shadow:0 16px 42px -22px rgba(15,23,42,.2)!important}
.svc-card h3,.svc-card h2{font-weight:600!important;letter-spacing:-.005em!important}

/* ---------- Reviews (dark editorial) ---------- */
.reviews-pro{padding:130px 0 120px!important;background:#0e0e14!important}
.reviews-pro__card{background:rgba(255,255,255,.04)!important;border:1px solid rgba(201,168,124,.18)!important;border-radius:14px!important;backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px)}
.reviews-pro__card-text{font-size:14.5px;line-height:1.75}
.reviews-pro__card-service{font-size:10.5px;letter-spacing:.2em;font-weight:600;color:#c9a87c}
.reviews-pro__title{font-weight:600!important;letter-spacing:-.014em!important;color:#fff!important}
.reviews-pro__title .title-accent{color:#c9a87c}
.reviews-pro__summary-score{font-weight:600!important;font-family:var(--font-display)}

/* ---------- Instagram ---------- */
.ig-section{padding:110px 0!important;background:#fff!important}
.ig-section__title{font-weight:600!important;letter-spacing:-.012em!important}

/* ---------- FAQ ---------- */
.faq{padding:130px 0 120px!important;background:#fff!important}
.faq-item{border:1px solid rgba(15,23,42,.07)!important;border-radius:14px!important;background:#fff!important;margin-bottom:12px!important;box-shadow:none!important;overflow:hidden;transition:all .25s ease}
.faq-item:hover{border-color:rgba(201,168,124,.3)!important}
.faq-question{padding:22px 26px!important;font-size:15.5px!important;font-weight:500!important;letter-spacing:-.005em!important;color:#1a1a22!important}
.faq-icon{background:rgba(201,168,124,.12)!important;color:#c9a87c!important;width:34px!important;height:34px!important;border-radius:10px!important}
.faq-icon svg{width:16px;height:16px}
.faq-toggle{background:rgba(15,23,42,.04)!important;color:#1a1a22!important;width:30px!important;height:30px!important;border-radius:50%!important;transition:all .25s ease}
.faq-toggle svg{width:14px;height:14px;stroke-width:2.4}
.faq-question[aria-expanded="true"] .faq-toggle{background:#c9a87c!important;color:#fff!important;transform:rotate(45deg)}
.faq-answer{padding:0 26px 24px!important}
.faq-answer p{font-size:14.5px!important;line-height:1.78!important;color:#5a5a64!important}

/* ---------- About ---------- */
.about-pro{padding:130px 0 120px!important}
.about-pro__title{font-weight:600!important;letter-spacing:-.014em!important}
.about-pro__feature{border-radius:10px;background:rgba(201,168,124,.05);border:1px solid rgba(201,168,124,.14)}
.about-pro__signature-name{font-weight:600;letter-spacing:-.005em}
.about-pro__btn--primary{background:#1a1a22!important;background-image:none!important;box-shadow:none!important}
.about-pro__btn--primary:hover{background:#c9a87c!important}

/* ---------- Blog home ---------- */
.blog-pro-home{padding:130px 0 120px!important;background:#fafaf7!important}
.blog-pro-home__title{font-weight:600!important;letter-spacing:-.014em!important}
.blog-pro-home__featured,.blog-pro-home__card{border-radius:14px!important;border:1px solid rgba(15,23,42,.06)!important;box-shadow:none!important;background:#fff;overflow:hidden;transition:all .35s cubic-bezier(.2,.7,.2,1)}
.blog-pro-home__featured:hover,.blog-pro-home__card:hover{border-color:rgba(201,168,124,.34)!important;box-shadow:0 22px 56px -32px rgba(15,23,42,.2)!important;transform:translateY(-3px)}
.blog-pro-home__featured-title a,.blog-pro-home__card-title a{font-weight:600!important;letter-spacing:-.008em!important;color:#1a1a22!important}
.blog-pro-home__all{font-size:13px;letter-spacing:.015em;font-weight:500}

/* ---------- Footer ---------- */
.footer-pro{background:#0a0a10!important}
.footer-pro__cta{border-radius:18px!important;border:1px solid rgba(201,168,124,.22);background:linear-gradient(135deg,rgba(201,168,124,.1),rgba(201,168,124,.02))!important;padding:48px 40px!important}
.footer-pro__cta h3{font-weight:700!important;letter-spacing:-.012em!important;color:#fff!important}
.footer-pro__cta p{color:rgba(255,255,255,.72)!important}
.footer-pro__cta h3 em{color:#d8b88a!important;-webkit-text-fill-color:#d8b88a!important}
.footer-pro__btn--primary{background:linear-gradient(135deg,#25D366,#128C7E)!important;box-shadow:0 14px 32px -16px rgba(37,211,102,.55)!important;border-radius:999px!important;font-weight:500!important;letter-spacing:.015em}
.footer-pro__btn--ghost{border-radius:999px!important;font-weight:500!important;letter-spacing:.015em;background:transparent!important;border:1px solid rgba(201,168,124,.4)!important;color:#e8d5b0!important}
.footer-pro__btn--ghost:hover{background:rgba(201,168,124,.1)!important;border-color:#c9a87c!important}

/* ---------- CTA section ---------- */
.cta-section{background:linear-gradient(180deg,#fafaf7 0%,#fff 100%)!important;padding:90px 0!important;text-align:center}
.cta-section .cta-content{color:#14141a!important;max-width:680px!important}
.cta-section h2{font-family:var(--font-display);font-weight:700!important;font-size:clamp(26px,4vw,38px)!important;letter-spacing:-.015em!important;margin-bottom:14px!important;color:#14141a!important}
.cta-section p{color:#5a5a5a!important;font-size:16px!important;line-height:1.65!important;margin-bottom:28px!important;opacity:1!important}
.cta-section .btn-primary{background:#1a1a22!important;background-image:none!important;color:#fff!important;border-radius:999px!important;padding:16px 30px!important;font-size:14.5px!important;letter-spacing:.015em!important;font-weight:500!important;box-shadow:none!important;transition:all .28s ease!important;display:inline-flex;align-items:center;gap:8px}
.cta-section .btn-primary:hover{background:#25D366!important;transform:translateY(-2px)!important;box-shadow:0 16px 38px -16px rgba(37,211,102,.55)!important}

/* ---------- Page hero ---------- */
.page-hero{padding:130px 0 70px!important;background:linear-gradient(180deg,#fdfaf5 0%,#fff 100%)!important;text-align:center}
.page-title{font-family:var(--font-display);font-weight:600!important;font-size:clamp(34px,5vw,52px)!important;letter-spacing:-.018em!important;line-height:1.12!important;margin:18px 0 18px!important}
.page-subtitle{font-size:17px!important;line-height:1.7!important;color:#5a5a64!important;max-width:640px;margin:0 auto!important}

/* ---------- Topbar refinement ---------- */
.topbar.announcement-bar{background:#0a0a10!important;border-bottom:1px solid rgba(201,168,124,.14)}
.topbar-link{font-size:12.5px!important;letter-spacing:.005em!important;font-weight:500}
.topbar-promo-text{font-size:12.5px!important}
.topbar-cta{background:#c9a87c!important;color:#fff!important;border-radius:999px!important;padding:5px 14px!important;font-size:11.5px!important;letter-spacing:.04em;font-weight:600}

/* ---------- Legacy em accent unify ---------- */
.what-pro__title em,.reviews-pro__title em,.blog-pro-home__title em,.about-pro__title em,.featured-pro__title em{font-style:italic!important;font-weight:500!important;color:#c9a87c!important}

/* ---------- Mobile rhythm ---------- */
@media (max-width:768px){
  .featured-pro,.process-pro,.compare-pro,.cities-pro,.what-pro,.reviews-pro,.faq,.about-pro,.blog-pro-home{padding:80px 0 72px!important}
  .ig-section,.process-section{padding:72px 0!important}
  .section-header{margin-bottom:48px}
  .section-title{font-size:clamp(24px,7vw,32px)!important}
  .section-subtitle{font-size:15px}
  .cities-pro__card{padding:32px 26px 28px!important;min-height:auto}
  .cities-pro__head h3{font-size:30px!important}
  .footer-pro__cta{padding:32px 24px!important}
}


/* =====================================================
   SVC-CARD v3 — EDITORIAL SPLIT-LAYOUT
   Photo top (clean, no overlay) + white card body
   Eyebrow + display title + meta chips + refined CTA
   ===================================================== */

/* Reset the old absolute-positioned card */
.svc-card{
  position:relative !important;
  display:flex !important;
  flex-direction:column !important;
  aspect-ratio:auto !important;
  height:100% !important;
  min-height:380px;
  border-radius:16px !important;
  overflow:hidden !important;
  background:#fff !important;
  border:1px solid rgba(15,23,42,.07) !important;
  box-shadow:0 1px 0 rgba(15,23,42,.02), 0 14px 40px -24px rgba(15,23,42,.14) !important;
  transition:transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease, border-color .35s ease !important;
  text-decoration:none !important;
  isolation:isolate;
}
.svc-card:hover{
  transform:translateY(-6px) !important;
  border-color:rgba(201,168,124,.42) !important;
  box-shadow:0 28px 60px -28px rgba(15,23,42,.28), 0 0 0 1px rgba(201,168,124,.18) !important;
}

/* Top image area — fixed proportion, clean (no dark overlay) */
.svc-card__img{
  position:relative !important;
  inset:auto !important;
  width:100%;
  aspect-ratio:5 / 4 !important;
  overflow:hidden;
  background:linear-gradient(135deg,#fbf7f0,#efe7d8);
  flex-shrink:0;
}
.svc-card__img img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.svc-card:hover .svc-card__img img{transform:scale(1.07)}

/* Kill the heavy dark gradient overlay */
.svc-card__img::after{
  display:none !important;
}

/* Subtle bottom fade on image to ease into white body */
.svc-card__img::before{
  content:'';
  position:absolute;left:0;right:0;bottom:0;
  height:50%;
  background:linear-gradient(180deg,transparent 0%,rgba(255,255,255,.0) 60%,rgba(255,255,255,.18) 100%);
  pointer-events:none;
  z-index:1;
}

/* Number badge — light, refined, sits on image */
.svc-card__num{
  position:absolute !important;
  top:14px !important;
  left:14px !important;
  z-index:3 !important;
  font-family:'Montserrat',sans-serif !important;
  font-size:10.5px !important;
  font-weight:600 !important;
  letter-spacing:.22em !important;
  color:#1a1a22 !important;
  padding:5px 12px !important;
  background:rgba(255,255,255,.94) !important;
  border:1px solid rgba(15,23,42,.06) !important;
  border-radius:6px !important;
  box-shadow:0 2px 8px rgba(15,23,42,.08) !important;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

/* Duration tag — dark editorial, gold text */
.svc-card__tag{
  position:absolute !important;
  top:14px !important;
  right:14px !important;
  z-index:3 !important;
  padding:5px 11px !important;
  background:rgba(20,20,26,.88) !important;
  background-image:none !important;
  color:#d8b88a !important;
  border:1px solid rgba(201,168,124,.32) !important;
  border-radius:6px !important;
  font-family:'Montserrat',sans-serif !important;
  font-size:10px !important;
  font-weight:600 !important;
  letter-spacing:.14em !important;
  text-transform:uppercase !important;
  box-shadow:none !important;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

/* Placeholder (no image case) */
.svc-card__placeholder{
  position:absolute !important;
  inset:0 !important;
  display:flex;align-items:center;justify-content:center;
  color:rgba(201,168,124,.42);
  background:linear-gradient(135deg,#fbf7f0,#efe7d8);
}

/* Body — clean white, dark text */
.svc-card__body{
  position:relative !important;
  margin-top:0 !important;
  padding:24px 22px 22px !important;
  color:#1a1a22 !important;
  background:#fff !important;
  display:flex !important;
  flex-direction:column !important;
  gap:8px !important;
  flex:1 !important;
}

/* Hairline eyebrow above title */
.svc-card__body::before{
  content:'KAMUFLAJ UYGULAMASI';
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:'Inter',sans-serif;
  font-size:9.5px;
  font-weight:600;
  letter-spacing:.22em;
  color:#c9a87c;
  margin-bottom:4px;
  position:relative;
  padding-left:22px;
}
.svc-card__body::before{
  background-image:linear-gradient(90deg,#c9a87c 0,#c9a87c 14px,transparent 14px);
  background-repeat:no-repeat;
  background-position:left center;
  background-size:14px 1px;
}

/* Title — display, weight 600, dark */
.svc-card__body h2,
.svc-card__body h3{
  font-family:'Montserrat',sans-serif !important;
  font-size:18px !important;
  font-weight:600 !important;
  color:#1a1a22 !important;
  margin:0 !important;
  letter-spacing:-.012em !important;
  line-height:1.25 !important;
}

/* Description — gray, 2-line clamp, refined */
.svc-card__body p{
  font-size:13.5px !important;
  line-height:1.65 !important;
  color:#5a5a64 !important;
  margin:0 !important;
  display:-webkit-box !important;
  -webkit-line-clamp:2 !important;
  -webkit-box-orient:vertical !important;
  overflow:hidden !important;
}

/* Meta strip — "13-15 yıl kalıcı" chip injected via pseudo before CTA */
.svc-card__link{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:8px !important;
  margin-top:auto !important;
  padding-top:14px !important;
  border-top:1px solid rgba(15,23,42,.07) !important;
  border:none !important;
  font-family:'Inter',sans-serif !important;
  font-size:12.5px !important;
  font-weight:600 !important;
  letter-spacing:.02em !important;
  text-transform:none !important;
  color:#1a1a22 !important;
  position:relative;
}
.svc-card__link::before{
  content:'13-15 YIL KALICI';
  position:absolute;
  left:0; top:-14px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 10px 4px 22px;
  background:rgba(201,168,124,.1);
  border:1px solid rgba(201,168,124,.22);
  border-radius:999px;
  font-size:9.5px;
  font-weight:700;
  letter-spacing:.18em;
  color:#8c7250;
  background-image:radial-gradient(circle,#c9a87c 0 3px,transparent 3px);
  background-repeat:no-repeat;
  background-position:10px center;
  background-size:auto;
}
.svc-card__link{
  /* push margin-top down to make room for chip */
  margin-top:18px !important;
  padding-top:24px !important;
  border-top:1px solid rgba(15,23,42,.07) !important;
}

/* Underline-grow on CTA */
.svc-card__link svg{
  transition:transform .35s cubic-bezier(.2,.7,.2,1) !important;
  color:#c9a87c;
}
.svc-card:hover .svc-card__link svg{transform:translateX(6px) !important}
.svc-card:hover .svc-card__link{color:#c9a87c !important}

/* Override the older gap-hover */
.svc-card:hover .svc-card__link{gap:8px !important}

/* Mobile */
@media (max-width:640px){
  .svc-card{
    min-height:auto;
    border-radius:14px !important;
  }
  .svc-card__img{aspect-ratio:5 / 4 !important}
  .svc-card__num{
    top:10px !important;left:10px !important;
    padding:4px 9px !important;font-size:9.5px !important;letter-spacing:.18em !important;
  }
  .svc-card__tag{
    top:10px !important;right:10px !important;
    padding:4px 9px !important;font-size:9px !important;
  }
  .svc-card__body{padding:18px 16px 16px !important;gap:6px !important}
  .svc-card__body::before{font-size:8.5px;letter-spacing:.2em;padding-left:18px}
  .svc-card__body::before{background-size:12px 1px}
  .svc-card__body h2,.svc-card__body h3{font-size:15.5px !important}
  .svc-card__body p{font-size:12.5px !important;-webkit-line-clamp:2 !important}
  .svc-card__link{
    font-size:11.5px !important;
    margin-top:14px !important;
    padding-top:20px !important;
  }
  .svc-card__link::before{
    font-size:8.5px;
    padding:3px 8px 3px 18px;
    background-position:7px center;
  }
}


/* =====================================================
   SVC-CARD v3.1 — Minimal focus mode
   Kullanıcı isteği: numara / süre / kalıcılık YOK.
   Sadece fotoğraf + hizmet adı + açıklama + CTA.
   ===================================================== */

/* Numarayı tamamen gizle */
.svc-card__num{display:none !important}

/* Süre badge'ini tamamen gizle */
.svc-card__tag{display:none !important}

/* "KAMUFLAJ UYGULAMASI" eyebrow kaldır */
.svc-card__body::before{display:none !important;content:none !important}

/* "13-15 YIL KALICI" chip kaldır */
.svc-card__link::before{display:none !important;content:none !important}

/* CTA margin reset — chip kalktığı için ekstra boşluk gerekmez */
.svc-card__link{
  margin-top:14px !important;
  padding-top:16px !important;
  border-top:1px solid rgba(15,23,42,.08) !important;
}

/* Body: artık eyebrow yok — title üstten daha rahat soluksun */
.svc-card__body{
  padding:26px 24px 22px !important;
  gap:10px !important;
}

/* Title biraz büyütüldü (alan açıldı) */
.svc-card__body h2,
.svc-card__body h3{
  font-size:19px !important;
  letter-spacing:-.014em !important;
  line-height:1.22 !important;
}

/* Description biraz daha rahat */
.svc-card__body p{
  font-size:14px !important;
  line-height:1.65 !important;
  -webkit-line-clamp:3 !important;
}

/* Min-height düşür — daha hafif görünüm */
.svc-card{
  min-height:auto !important;
}

/* ───── FEATURED-PRO__CARD (Anasayfa Öne Çıkan 6) ───── */

/* Sıralama numarası rozeti kalkıyor */
.featured-pro__rank{display:none !important}

/* Meta strip kalkıyor (süre + 13-15 yıl) */
.featured-pro__meta{display:none !important}

/* Pazarlama eyebrow tag kalkıyor (En çok tercih edilen, vs.) */
.featured-pro__tag{display:none !important}

/* Body: artık tag/meta yok — title üstten daha rahat */
.featured-pro__body{
  padding:28px 26px 26px !important;
  gap:12px !important;
}

/* Title biraz büyütüldü */
.featured-pro__name{
  font-size:23px !important;
  letter-spacing:-.014em !important;
  line-height:1.22 !important;
  margin-top:2px !important;
}

/* Hook (açıklama) biraz daha rahat */
.featured-pro__hook{
  font-size:15px !important;
  line-height:1.68 !important;
}

/* CTA: hairline üst + zarif */
.featured-pro__cta{
  margin-top:8px !important;
  padding-top:18px !important;
  border-top:1px solid rgba(15,23,42,.08);
  font-size:13.5px !important;
}

/* Mobile rafinasyon */
@media (max-width:640px){
  .svc-card__body{padding:18px 16px 16px !important;gap:8px !important}
  .svc-card__body h2,.svc-card__body h3{font-size:16px !important}
  .svc-card__body p{font-size:13px !important;-webkit-line-clamp:2 !important}
  .svc-card__link{margin-top:10px !important;padding-top:14px !important;font-size:12px !important}

  .featured-pro__body{padding:22px 20px 20px !important}
  .featured-pro__name{font-size:19px !important}
  .featured-pro__hook{font-size:14px !important}
}


/* =====================================================
   STICKY HEADER SYSTEM v2
   Topbar: ALWAYS fixed at top on all pages
   Navbar: ALWAYS fixed below topbar (sticky on scroll)
   ===================================================== */

/* TOPBAR — ALL pages including .page-inner */
.topbar.announcement-bar,
.page-inner .topbar.announcement-bar,
.page-inner .announcement-bar{
  position:fixed !important;
  top:0 !important;
  left:0 !important;
  right:0 !important;
  z-index:1001 !important;
}

/* Hide X close button — topbar must always be visible */
.topbar-close{display:none !important}
/* Re-balance the right side without the close button */
.topbar-right{justify-content:flex-end !important;gap:8px}

/* NAVBAR — ALL pages including .page-inner */
.navbar-modern,
.page-inner .navbar-modern{
  position:fixed !important;
  top:42px !important;
  left:0 !important;
  right:0 !important;
  z-index:1000 !important;
  margin-bottom:0 !important;
}

/* Inner pages: main content must clear the fixed bars */
.page-inner main{
  padding-top:122px !important;
  margin-top:0 !important;
}

/* Mobile compensation */
@media (max-width:768px){
  .page-inner main{padding-top:108px !important}
}

/* Ensure topbar is solid (no transparency) so navbar visual doesn't bleed through */
.topbar.announcement-bar{
  background:#0a0a10 !important;
  backdrop-filter:none !important;
}


/* =====================================================
   STICKY HEADER v3 — CORRECTED
   Topbar: normal flow (scrolls away with page)
   Navbar: in flow initially, becomes fixed on scroll
   ===================================================== */

/* TOPBAR: revert to normal document flow — scrolls away on scroll */
.topbar.announcement-bar,
.page-inner .topbar.announcement-bar,
.page-inner .announcement-bar{
  position:relative !important;
  top:auto !important;
  left:auto !important;
  right:auto !important;
  z-index:auto !important;
}

/* NAVBAR: initially in normal flow (below topbar, before content) */
.navbar-modern,
.page-inner .navbar-modern{
  position:relative !important;
  top:auto !important;
  left:auto !important;
  right:auto !important;
  margin-bottom:0 !important;
  z-index:auto !important;
  transition:background .35s ease, box-shadow .35s ease;
}

/* NAVBAR: becomes sticky-fixed when user scrolls (Alpine adds .navbar-scrolled at scrollY>20) */
.navbar-modern.navbar-scrolled,
.page-inner .navbar-modern.navbar-scrolled{
  position:fixed !important;
  top:0 !important;
  left:0 !important;
  right:0 !important;
  z-index:1000 !important;
  animation:navbarSlideDown .35s cubic-bezier(.2,.7,.2,1);
}
@keyframes navbarSlideDown{
  from{transform:translateY(-100%);opacity:.7}
  to{transform:translateY(0);opacity:1}
}

/* Body padding-top compensation when navbar is stuck — prevents content jump */
body.navbar-stuck{padding-top:74px}

/* Inner pages: no longer need the padding-top trick because topbar is in flow */
.page-inner main{
  padding-top:0 !important;
  margin-top:0 !important;
}

/* Re-show topbar close button (topbar scrolls away naturally, X is optional) */
.topbar-close{display:inline-flex !important}

/* Mobile: navbar height differs */
@media (max-width:768px){
  body.navbar-stuck{padding-top:64px}
}


/* =====================================================
   HERO TOP PADDING — adjusted for in-flow navbar
   Navbar artık akışta olduğu için hero'nun üst paddinginde
   navbar overlay payı gerekmiyor — minimum nefes alanı yeterli.
   ===================================================== */
.hero-pro{padding-top:32px !important}

@media (max-width:1024px){
  .hero-pro{padding-top:24px !important}
}

@media (max-width:640px){
  .hero-pro{padding-top:20px !important}
}


/* ===== Service show — city cross-link CTA ===== */
.sd-cities-cross{margin:48px 0 28px;text-align:center}
.sd-cities-cross-title{font-family:var(--font-display);font-size:clamp(20px,2.8vw,26px);font-weight:600;letter-spacing:-.012em;color:#1a1a22;margin:0 0 22px}
.sd-cities-cross-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;max-width:720px;margin:0 auto}
.sd-cities-cross-link{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:18px 22px;background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:14px;text-decoration:none;color:#1a1a22;font-size:14.5px;transition:all .25s ease}
.sd-cities-cross-link:hover{border-color:#c9a87c;background:rgba(201,168,124,.04);transform:translateY(-2px);box-shadow:0 14px 32px -18px rgba(201,168,124,.4)}
.sd-cities-cross-link svg{color:#c9a87c;flex-shrink:0}
.sd-cities-cross-link strong{color:#c9a87c;font-weight:600;margin-right:4px}
@media (max-width:640px){.sd-cities-cross-grid{grid-template-columns:1fr;gap:10px}.sd-cities-cross-link{padding:14px 18px;font-size:13.5px}}

/* =====================================================
   DROPDOWN FIX
   1) Navbar her durumda yüksek z-index + isolation (stacking context)
      → mega-dropdown'lar her zaman üstte
   2) Şehirler dropdown'u dar genişlik
   ===================================================== */

/* Navbar isolation — kendi stacking context'i. Initial relative state'te de korur. */
.navbar-modern,
.page-inner .navbar-modern{
  z-index:1000 !important;
  isolation:isolate;
}

/* Compact dropdown variant (Şehirler için) */
.mega-dropdown--compact{
  width:280px !important;
  left:0 !important;
  transform:translateY(8px) !important;
}
.nav-link-item.has-mega:hover .mega-dropdown--compact{
  transform:translateY(0) !important;
}

/* Make sure the mega-dropdown is highest in navbar stacking */
.mega-dropdown{z-index:1100 !important}

/* Fix: Hizmetler mega-dropdown (880px) ortalandığında solu taşıyordu — sol kenara hizala */
.mega-dropdown:not(.mega-dropdown--compact){
  left: 0 !important;
  right: auto !important;
  transform: translateY(8px) !important;
  max-width: calc(100vw - 40px);
}
.nav-link-item.has-mega:hover .mega-dropdown:not(.mega-dropdown--compact){
  transform: translateY(0) !important;
}


/* =====================================================
   FAQ FIX — Kapalı state'i temizle, padding'i <p>'ye taşı
   Önceki polish .faq-answer{padding:0 26px 24px} hatası:
   kapalı max-height:0 + 24px padding box-sizing göre
   görünür kalıyordu, çift padding sorununu yarattı.
   ===================================================== */

/* Closed state — gerçekten 0 yüksekliğinde, padding yok */
.faq-answer{
  max-height:0 !important;
  overflow:hidden !important;
  padding:0 !important;
  transition:max-height .4s cubic-bezier(.2,.7,.2,1), padding .25s ease !important;
  box-sizing:border-box;
}

/* Open state (.faq-item.active) — gerçek yükseklik ve nefes alanı */
.faq-item.active .faq-answer{
  max-height:800px !important;
}

/* Answer text — padding burada, sol indent ikon hizasına göre */
.faq-answer p{
  margin:0 !important;
  padding:0 26px 22px 70px !important;
  font-size:14.5px !important;
  line-height:1.78 !important;
  color:#5a5a64 !important;
}

@media (max-width:640px){
  .faq-answer p{padding:0 18px 18px 18px !important;font-size:14px !important}
  .faq-item.active .faq-answer{max-height:1200px !important}
}

/* Footer CTA — em okunabilirlik düzeltmesi (dark glass kart üzerinde altın vurgu) */
.footer-pro__cta h3 em,
.footer-pro__cta-text h3 em,
.footer-pro__cta-text em {
  color: #d8b88a !important;
  -webkit-text-fill-color: #d8b88a !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  font-weight: 700 !important;
  font-style: italic !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

