/* =========================================================
   FINANS — Luxury Emerald & Gold Theme
   Sema Albayrak Mali Müşavirlik için ödüllü, dinamik tasarım
   Renk paleti: koyu emerald + altın + şampanya
   ========================================================= */

:root {
    /* Palette */
    --emerald-950: #061a14;
    --emerald-900: #0a2920;
    --emerald-800: #0d3528;
    --emerald-700: #114435;
    --emerald-600: #1a5e49;
    --emerald-500: #2a7a60;
    --emerald-300: #74c4a7;

    --gold-50:  #fbf3e1;
    --gold-100: #f4e4bf;
    --gold-200: #ecd599;
    --gold-300: #e0c277;
    --gold-400: #d4af37;
    --gold-500: #c9a961;
    --gold-600: #a8862c;
    --gold-700: #7d6320;

    --champagne-50:  #fbf6ec;
    --champagne-100: #f5ebd6;
    --champagne-200: #ede0c8;
    --champagne-300: #e2cfa9;

    --ivory: #fdfaf3;
    --cream: #f7f1e3;

    /* Semantic mapping (compatible with default theme) */
    --bg: var(--ivory);
    --panel: #ffffff;
    --panel-dark: var(--emerald-900);
    --text: #18241f;
    --text-soft: #3d4d47;
    --muted: #6b7872;
    --line: #e5dcc6;
    --line-dark: rgba(212, 175, 55, 0.18);

    --primary: var(--emerald-700);
    --primary-strong: var(--emerald-900);
    --accent: var(--gold-500);
    --accent-strong: var(--gold-600);
    --danger: #b8442b;

    /* Effects */
    --shadow-sm: 0 4px 14px rgba(10, 41, 32, 0.06);
    --shadow-md: 0 18px 40px rgba(10, 41, 32, 0.10);
    --shadow-lg: 0 30px 80px rgba(10, 41, 32, 0.16);
    --shadow-gold: 0 22px 50px rgba(201, 169, 97, 0.30);

    --gold-gradient: linear-gradient(135deg, #f4e4bf 0%, #d4af37 45%, #a8862c 100%);
    --gold-gradient-soft: linear-gradient(135deg, #fbf3e1 0%, #ecd599 100%);
    --emerald-gradient: linear-gradient(135deg, #0d3528 0%, #114435 50%, #061a14 100%);
    --emerald-radial: radial-gradient(circle at 30% 20%, #1a5e49 0%, #0d3528 45%, #061a14 100%);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    --container: 1200px;
    --container-narrow: 880px;
    --section-pad: clamp(80px, 9vw, 140px);

    --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --transition: 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   Base
   ========================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(900px 600px at 90% -10%, rgba(212, 175, 55, 0.08), transparent 60%),
        radial-gradient(800px 600px at -10% 110%, rgba(13, 53, 40, 0.06), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

img, svg, video { max-width: 100%; display: block; }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-strong); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--emerald-900);
    letter-spacing: -0.01em;
    line-height: 1.12;
    margin: 0 0 0.6em;
    font-weight: 600;
}

h1 { font-size: clamp(2.6rem, 5.8vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); font-weight: 500; }
h3 { font-size: clamp(1.25rem, 1.6vw, 1.55rem); }
h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

p { margin: 0 0 1em; color: var(--text-soft); }

::selection { background: var(--gold-300); color: var(--emerald-900); }

/* =========================================================
   Helpers
   ========================================================= */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

.container.narrow { max-width: var(--container-narrow); }

.section { padding: var(--section-pad) 0; position: relative; }

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(48px, 6vw, 80px);
}

.section-heading.with-action {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    text-align: left;
    max-width: var(--container);
}

.section-heading p { font-size: 1.05rem; color: var(--text-soft); margin-top: 12px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-700);
    margin-bottom: 22px;
}

.eyebrow.gold { color: var(--gold-600); }

.eyebrow::before {
    content: "";
    width: 32px; height: 1px;
    background: var(--gold-gradient);
    display: inline-block;
}

.eyebrow.no-line::before { display: none; }

[data-reveal] {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
    line-height: 1;
}

.btn svg { width: 18px; height: 18px; }

.btn-gold {
    background: var(--gold-gradient);
    color: var(--emerald-900);
    box-shadow: var(--shadow-gold);
}

.btn-gold::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.9s ease;
}

.btn-gold:hover::before { transform: translateX(100%); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 28px 60px rgba(212, 175, 55, 0.40); color: var(--emerald-900); }

.btn-ghost {
    background: transparent;
    color: var(--ivory);
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--gold-300); color: var(--gold-200); }

.btn-outline {
    background: transparent;
    color: var(--emerald-800);
    border: 1px solid var(--emerald-700);
}
.btn-outline:hover { background: var(--emerald-900); color: var(--gold-200); border-color: var(--emerald-900); }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: var(--gold-600);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
}
.text-link:hover { border-color: var(--gold-500); color: var(--gold-700); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(253, 250, 243, 0.82);
    border-bottom: 1px solid transparent;
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
    background: rgba(253, 250, 243, 0.96);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 6px 30px rgba(10, 41, 32, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
    padding: 18px clamp(20px, 4vw, 48px);
    gap: 24px;
    min-width: 0;
}

.brand { min-width: 0; flex-shrink: 1; }
.site-nav { flex-shrink: 0; }

.brand { display: flex; align-items: center; gap: 14px; color: var(--emerald-900); }

.brand-mark {
    width: 46px; height: 46px;
    border-radius: 14px;
    background: var(--emerald-gradient);
    display: grid;
    place-items: center;
    color: var(--gold-300);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 13px;
    background: linear-gradient(135deg, transparent 40%, rgba(212, 175, 55, 0.18));
    pointer-events: none;
}

.brand-mark svg { width: 22px; height: 22px; position: relative; z-index: 1; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.brand-text strong {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--emerald-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 280px;
}
.brand-text small {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 280px;
}

.site-nav { display: flex; align-items: center; gap: 28px; }

.site-nav > a:not(.nav-cta) {
    color: var(--text);
    font-size: 0.93rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    padding: 6px 0;
}
.site-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--gold-gradient);
    transition: width var(--transition);
}
.site-nav > a:not(.nav-cta):hover { color: var(--emerald-800); }
.site-nav > a:not(.nav-cta):hover::after { width: 100%; }

.lang-switch {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
}
.lang-switch a {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--muted);
}
.lang-switch a.is-active { background: var(--emerald-900); color: var(--gold-200); }

.nav-cta {
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--emerald-900);
    color: var(--gold-200);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    border: 1px solid var(--emerald-900);
    transition: all var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-gradient); color: var(--emerald-900); border-color: var(--gold-400); }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.nav-toggle span {
    width: 20px; height: 1.5px;
    background: var(--emerald-900);
    transition: transform var(--transition), opacity var(--transition);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
    position: relative;
    padding: clamp(80px, 10vw, 140px) 0 clamp(100px, 11vw, 160px);
    background: var(--emerald-radial);
    color: var(--ivory);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 500px at 80% 20%, rgba(212, 175, 55, 0.20), transparent 60%),
        radial-gradient(500px 400px at 10% 80%, rgba(116, 196, 167, 0.10), transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 90px;
    background: linear-gradient(to top, var(--ivory), transparent);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
    z-index: 1;
}

.hero-copy .eyebrow { color: var(--gold-300); }
.hero-copy .eyebrow::before { background: linear-gradient(90deg, var(--gold-400), transparent); }

.hero-copy h1 {
    color: var(--ivory);
    font-size: clamp(2.6rem, 5.6vw, 4.6rem);
    font-weight: 400;
    letter-spacing: -0.015em;
}

.hero-copy h1 em {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: rgba(245, 235, 214, 0.78);
    max-width: 560px;
    margin: 24px 0 36px;
    line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 60px; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 28px;
    padding-top: 32px;
    border-top: 1px solid rgba(212, 175, 55, 0.22);
}

.hero-stats .stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 500;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.hero-stats .stat span {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(245, 235, 214, 0.65);
}

.hero-portrait {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    background: var(--portrait-image, linear-gradient(135deg, #114435, #061a14)) center/cover no-repeat;
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    isolation: isolate;
}

.hero-portrait::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(6, 26, 20, 0.8));
    z-index: 1;
}

.portrait-frame {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: calc(var(--radius-lg) - 8px);
    z-index: 2;
    pointer-events: none;
}

.portrait-frame::before,
.portrait-frame::after {
    content: "";
    position: absolute;
    width: 24px; height: 24px;
    border: 1px solid var(--gold-400);
}
.portrait-frame::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.portrait-frame::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.portrait-name {
    position: absolute;
    bottom: 28px; left: 28px; right: 28px;
    z-index: 3;
    color: var(--ivory);
    display: flex;
    flex-direction: column;
}
.portrait-name strong {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--gold-200);
}
.portrait-name span {
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 235, 214, 0.7);
    margin-top: 4px;
}

.portrait-glow {
    position: absolute;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.35), transparent 70%);
    top: 20%; right: -60px;
    z-index: 0;
    pointer-events: none;
    filter: blur(28px);
    animation: floatGlow 8s ease-in-out infinite;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0); opacity: 0.7; }
    50% { transform: translate(-20px, 20px); opacity: 1; }
}

/* =========================================================
   Services
   ========================================================= */
.services-section { background: var(--ivory); }

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.service-card {
    position: relative;
    padding: 38px 32px 36px;
    border-radius: var(--radius-md);
    background: var(--panel);
    border: 1px solid var(--line);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-300); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: var(--gold-gradient-soft);
    display: grid;
    place-items: center;
    color: var(--gold-700);
    border: 1px solid var(--gold-200);
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 { color: var(--emerald-900); margin-bottom: 4px; }
.service-card p { font-size: 0.96rem; color: var(--text-soft); flex-grow: 1; margin: 0; }

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-top: 8px;
}
.service-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-card:hover .service-link svg { transform: translateX(4px); }

.service-dark {
    background: var(--emerald-gradient);
    color: var(--ivory);
    border-color: transparent;
}
.service-dark h3 { color: var(--gold-200); }
.service-dark p  { color: rgba(245, 235, 214, 0.78); }
.service-dark .service-icon {
    background: rgba(212, 175, 55, 0.16);
    color: var(--gold-300);
    border-color: rgba(212, 175, 55, 0.28);
}
.service-dark .service-link { color: var(--gold-300); }

.service-gold {
    background: var(--gold-gradient-soft);
    border-color: var(--gold-300);
}
.service-gold h3 { color: var(--emerald-900); }
.service-gold .service-icon { background: var(--ivory); color: var(--gold-700); }

/* =========================================================
   About
   ========================================================= */
.about-section { background: var(--cream); }

.split {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

.about-media { position: relative; border-radius: var(--radius-lg); overflow: visible; }

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: 28px; right: -22px;
    background: var(--gold-gradient);
    color: var(--emerald-900);
    padding: 22px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-gold);
    text-align: center;
}
.about-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 600;
}
.about-badge span {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-copy h2 { margin-bottom: 18px; }
.lead { font-size: 1.08rem; line-height: 1.75; color: var(--text-soft); }

.check-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
    display: grid;
    gap: 14px;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--text);
    font-weight: 500;
}
.check-icon {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--emerald-900);
    display: grid;
    place-items: center;
}
.check-icon svg { width: 14px; height: 14px; }

.signature {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--gold-700);
    margin-top: 12px;
}

/* =========================================================
   Products
   ========================================================= */
.products-section {
    background: var(--ivory);
    background-image: linear-gradient(180deg, var(--ivory), var(--cream));
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: var(--container);
    margin: 0 auto;
}

.product-card {
    background: var(--panel);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

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

.product-media {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--cream);
}
.product-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.product-card:hover .product-media img { transform: scale(1.06); }

.product-body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.product-price {
    align-self: flex-start;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold-700);
    background: var(--gold-gradient-soft);
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid var(--gold-200);
}

.product-card h3 { margin-bottom: 0; color: var(--emerald-900); }
.product-card p { color: var(--text-soft); font-size: 0.96rem; flex-grow: 1; margin: 0; }

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-700);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 8px;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}
.product-link:hover { border-color: var(--gold-500); }
.product-link svg { width: 16px; height: 16px; }

/* =========================================================
   Logo band (references)
   ========================================================= */
.logo-band {
    background: var(--emerald-gradient);
    color: var(--ivory);
    padding: 60px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.logo-band-title {
    display: block;
    text-align: center;
    color: var(--gold-300);
    font-size: 0.74rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-weight: 600;
}

.logo-band-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

.logo-band-row img {
    height: 38px;
    opacity: 0.75;
    filter: brightness(1.4) saturate(0);
    transition: opacity var(--transition), filter var(--transition);
}
.logo-band-row img:hover { opacity: 1; filter: brightness(1.4) saturate(1); }

.logo-text {
    color: var(--gold-200);
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    opacity: 0.7;
    transition: opacity var(--transition);
}
.logo-text:hover { opacity: 1; }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials-section { background: var(--cream); }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: var(--container);
    margin: 0 auto;
}

.testimonial-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 38px 32px;
    position: relative;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.quote-mark {
    width: 48px; height: 48px;
    background: var(--gold-gradient);
    color: var(--emerald-900);
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-gold);
}
.quote-mark svg { width: 22px; height: 22px; }

.quote {
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--emerald-900);
    font-style: italic;
    margin: 0;
    flex-grow: 1;
}

.person-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.person-row img.avatar,
.avatar-placeholder {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--gold-gradient-soft);
    color: var(--emerald-900);
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--gold-300);
}

.person-row strong { display: block; color: var(--emerald-900); font-size: 0.98rem; }
.person-row span { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; }

/* =========================================================
   Team
   ========================================================= */
.team-section { background: var(--ivory); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: var(--container);
    margin: 0 auto;
}

.team-card {
    background: var(--panel);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.team-photo { aspect-ratio: 1/1; background: var(--cream); overflow: hidden; }
.team-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(0.15);
    transition: filter var(--transition), transform 0.8s ease;
}
.team-card:hover .team-photo img { filter: grayscale(0); transform: scale(1.05); }

.team-info { padding: 24px 26px 28px; }
.team-info h3 { margin-bottom: 4px; color: var(--emerald-900); font-size: 1.2rem; }

.team-role {
    display: block;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-700);
    margin-bottom: 12px;
}

.team-info p { font-size: 0.92rem; color: var(--text-soft); margin: 0; }

/* =========================================================
   Pricing
   ========================================================= */
.pricing-section { background: var(--cream); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.pricing-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 38px 32px 34px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.pricing-card.featured {
    background: var(--emerald-gradient);
    color: var(--ivory);
    border-color: var(--gold-400);
    box-shadow: 0 30px 70px rgba(13, 53, 40, 0.3);
    transform: translateY(-12px);
}
.pricing-card.featured h3 { color: var(--gold-200); }
.pricing-card.featured .pricing-desc { color: rgba(245, 235, 214, 0.75); }
.pricing-card.featured .pricing-price { color: var(--gold-300); }
.pricing-card.featured .pricing-features li { color: rgba(245, 235, 214, 0.85); }

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: var(--emerald-900);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 999px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: var(--shadow-gold);
}

.pricing-card h3 { color: var(--emerald-900); margin-bottom: 8px; font-size: 1.5rem; }

.pricing-price {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--emerald-900);
    margin-bottom: 8px;
    line-height: 1.1;
}

.pricing-desc { color: var(--text-soft); margin-bottom: 22px; font-size: 0.94rem; }

.pricing-features {
    list-style: none;
    padding: 22px 0;
    margin: 0 0 26px;
    border-top: 1px solid var(--line);
    flex-grow: 1;
}
.pricing-card.featured .pricing-features { border-top-color: rgba(212, 175, 55, 0.2); }

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.94rem;
    margin-bottom: 12px;
    color: var(--text-soft);
}
.pricing-features svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--gold-600); }
.pricing-card.featured .pricing-features svg { color: var(--gold-300); }

.pricing-card .btn { margin-top: auto; }

/* =========================================================
   Gallery
   ========================================================= */
.gallery-section { background: var(--ivory); }

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    max-width: var(--container);
    margin: 0 auto;
}

.masonry-grid figure {
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
}
.masonry-grid figure:nth-child(3n+1) { aspect-ratio: 1/1; }
.masonry-grid figure:nth-child(3n+2) { aspect-ratio: 3/4; }

.masonry-grid img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.masonry-grid figure:hover img { transform: scale(1.06); }

.masonry-grid figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 18px 20px 16px;
    background: linear-gradient(to top, rgba(6, 26, 20, 0.85), transparent);
    color: var(--gold-200);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
}

/* =========================================================
   Certificates
   ========================================================= */
.certificates-section { background: var(--cream); }

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    max-width: var(--container);
    margin: 0 auto;
}

.certificate-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 32px 26px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.certificate-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-300); }

.certificate-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--emerald-900);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-gold);
    margin-bottom: 8px;
}
.certificate-icon svg { width: 24px; height: 24px; }

.certificate-card strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--emerald-900);
    font-weight: 600;
}
.certificate-card small { color: var(--text-soft); font-size: 0.88rem; }

/* =========================================================
   Before / After
   ========================================================= */
.before-after-section { background: var(--ivory); }

.before-after-grid { display: grid; gap: 26px; max-width: var(--container); margin: 0 auto; }

.before-after-card {
    margin: 0;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: center;
}

.before-after-card .ba-img {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.before-after-card .ba-img img { width: 100%; height: 100%; object-fit: cover; }
.before-after-card .ba-img span {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--gold-gradient);
    color: var(--emerald-900);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
}

.before-after-card figcaption {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-soft);
    font-style: italic;
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

/* =========================================================
   Blog & News
   ========================================================= */
.blog-section { background: var(--cream); }
.news-section { background: var(--ivory); }

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: var(--container);
    margin: 0 auto;
}

.post-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.post-media { aspect-ratio: 16/10; overflow: hidden; }
.post-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.post-card:hover .post-media img { transform: scale(1.06); }

.post-body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 10px; }

.post-date {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-700);
    font-weight: 600;
}

.post-card h3 { font-size: 1.3rem; margin: 4px 0 6px; }
.post-card h3 a { color: var(--emerald-900); }
.post-card h3 a:hover { color: var(--gold-700); }
.post-card p { color: var(--text-soft); font-size: 0.95rem; margin: 0; }

.news-list {
    display: grid;
    gap: 0;
    max-width: var(--container);
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.news-item {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 28px 8px;
    border-bottom: 1px solid var(--line);
    transition: background var(--transition);
}
.news-item:hover { background: rgba(212, 175, 55, 0.06); padding-left: 16px; }
.news-item svg { color: var(--gold-600); width: 22px; height: 22px; }

.news-date {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-700);
    font-weight: 600;
}

.news-item h3 { font-size: 1.2rem; margin: 0 0 6px; }
.news-item h3 a { color: var(--emerald-900); }
.news-item h3 a:hover { color: var(--gold-700); }
.news-item p { font-size: 0.92rem; color: var(--text-soft); margin: 0; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { background: var(--cream); }

.faq-list { display: grid; gap: 14px; max-width: var(--container-narrow); margin: 0 auto; }

.faq-list details {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 0;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-list details[open] { border-color: var(--gold-300); box-shadow: var(--shadow-md); }

.faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 500;
    color: var(--emerald-900);
}
.faq-list summary::-webkit-details-marker { display: none; }

.faq-toggle {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gold-gradient-soft);
    color: var(--gold-700);
    display: grid;
    place-items: center;
    transition: transform var(--transition), background var(--transition);
}
.faq-list details[open] .faq-toggle {
    transform: rotate(45deg);
    background: var(--gold-gradient);
    color: var(--emerald-900);
}
.faq-toggle svg { width: 18px; height: 18px; }

.faq-list details p { padding: 0 26px 24px; margin: 0; color: var(--text-soft); line-height: 1.75; }

/* =========================================================
   Appointment
   ========================================================= */
.appointment-section {
    background: var(--emerald-gradient);
    color: var(--ivory);
    position: relative;
    overflow: hidden;
}

.appointment-section::before {
    content: "";
    position: absolute;
    top: -150px; right: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 70%);
    pointer-events: none;
}

.appointment-section .split { position: relative; z-index: 1; }

.appointment-copy h2 { color: var(--ivory); }
.appointment-copy p { color: rgba(245, 235, 214, 0.78); }

.trust-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: grid;
    gap: 14px;
}
.trust-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(245, 235, 214, 0.9);
    font-weight: 500;
    font-size: 0.96rem;
}
.trust-list svg { width: 22px; height: 22px; color: var(--gold-300); flex-shrink: 0; }

.lead-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: var(--radius-lg);
    padding: 38px 36px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.lead-form .span-two { grid-column: 1 / -1; }

.lead-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-300);
    font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--radius-sm);
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 0.96rem;
    letter-spacing: normal;
    text-transform: none;
    transition: border-color var(--transition), background var(--transition);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder { color: rgba(245, 235, 214, 0.4); }

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: var(--gold-400);
    background: rgba(255, 255, 255, 0.12);
}

.lead-form select { color: var(--ivory); appearance: none; cursor: pointer; }
.lead-form select option { color: var(--emerald-900); background: var(--ivory); }

.lead-form textarea { min-height: 120px; resize: vertical; }
.lead-form .honeypot { position: absolute; left: -9999px; }

.lead-form button { margin-top: 6px; }

.form-status {
    text-align: center;
    color: var(--gold-200);
    font-size: 0.92rem;
    margin: 0;
    min-height: 22px;
}

/* =========================================================
   Map
   ========================================================= */
.map-section {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    background: var(--ivory);
}

.map-info {
    padding: clamp(60px, 7vw, 100px) clamp(30px, 4vw, 60px);
    background: var(--cream);
}
.map-info h2 { color: var(--emerald-900); }
.map-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--text-soft);
}
.map-info svg { color: var(--gold-700); width: 22px; height: 22px; }

.map-embed { min-height: 420px; position: relative; }
.map-embed iframe {
    width: 100%; height: 100%;
    border: 0;
    position: absolute;
    inset: 0;
    filter: saturate(0.85) brightness(0.96);
}

/* =========================================================
   CTA banner
   ========================================================= */
.cta-section { padding: clamp(40px, 5vw, 80px) 0; background: var(--ivory); }

.cta-banner {
    background: var(--emerald-gradient);
    border-radius: var(--radius-lg);
    padding: clamp(40px, 5vw, 64px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    color: var(--ivory);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.22);
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.20), transparent 70%);
    pointer-events: none;
}

.cta-banner > div { position: relative; max-width: 60%; }
.cta-banner h2 { color: var(--ivory); }
.cta-banner p { color: rgba(245, 235, 214, 0.78); margin: 0; }
.cta-banner .btn { position: relative; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
    background: var(--emerald-950);
    color: rgba(245, 235, 214, 0.72);
    padding: 80px 0 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    max-width: var(--container);
    margin: 0 auto 48px;
    padding: 0 clamp(20px, 4vw, 48px);
}

.footer-brand strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold-200);
    margin: 18px 0 10px;
    font-weight: 500;
}
.footer-brand p { color: rgba(245, 235, 214, 0.6); font-size: 0.94rem; line-height: 1.7; }

.footer-mark {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.28);
    display: grid;
    place-items: center;
    color: var(--gold-300);
}
.footer-mark svg { width: 26px; height: 26px; }

.footer-col h4 {
    color: var(--gold-300);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    color: rgba(245, 235, 214, 0.65);
    font-size: 0.94rem;
    padding: 6px 0;
    transition: color var(--transition), padding-left var(--transition);
}
.footer-col a:hover { color: var(--gold-300); padding-left: 6px; }

.footer-col a svg {
    width: 16px; height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    color: var(--gold-500);
}

.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold-300);
    display: grid;
    place-items: center;
    padding: 0;
}
.footer-social a:hover {
    background: var(--gold-gradient);
    color: var(--emerald-900);
    border-color: var(--gold-400);
    padding-left: 0;
}
.footer-social svg { width: 18px; height: 18px; margin: 0; color: inherit; }

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px clamp(20px, 4vw, 48px) 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
    color: rgba(245, 235, 214, 0.4);
}

.footer-mono {
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-500);
    font-size: 0.72rem;
}

.floating-whatsapp {
    position: fixed;
    bottom: 26px; right: 26px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--emerald-900);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-gold);
    z-index: 90;
    transition: transform var(--transition);
}
.floating-whatsapp:hover { transform: scale(1.08); color: var(--emerald-900); }
.floating-whatsapp svg { width: 26px; height: 26px; }

/* =========================================================
   AI Chat Widget (luxury emerald + gold)
   ========================================================= */
.floating-chat {
    position: fixed;
    bottom: 26px; right: 96px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--emerald-gradient);
    color: var(--gold-300);
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: grid;
    place-items: center;
    box-shadow: 0 22px 50px rgba(10, 41, 32, 0.35);
    z-index: 90;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    overflow: visible;
}
.floating-chat:hover { transform: scale(1.08); color: var(--gold-200); box-shadow: 0 26px 60px rgba(212, 175, 55, 0.32); }
.floating-chat svg { width: 26px; height: 26px; position: relative; z-index: 1; }

.chat-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--gold-400);
    animation: chatPulse 2.4s ease-out infinite;
    pointer-events: none;
}

@keyframes chatPulse {
    0%   { transform: scale(0.95); opacity: 0.8; }
    70%  { transform: scale(1.25); opacity: 0; }
    100% { transform: scale(1.25); opacity: 0; }
}

.chat-panel {
    position: fixed;
    bottom: 100px; right: 26px;
    width: min(380px, calc(100vw - 40px));
    max-height: min(620px, calc(100vh - 140px));
    background: var(--ivory);
    border: 1px solid var(--gold-300);
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 80px rgba(10, 41, 32, 0.28);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 95;
    transform: translateY(20px) scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
}

.chat-panel.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.chat-header {
    background: var(--emerald-gradient);
    color: var(--ivory);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.chat-header strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold-200);
}
.chat-header span {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(245, 235, 214, 0.65);
}
.chat-header button {
    background: rgba(212, 175, 55, 0.14);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--gold-200);
    width: 32px; height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background var(--transition);
}
.chat-header button:hover { background: rgba(212, 175, 55, 0.25); }
.chat-header button svg { width: 16px; height: 16px; }

.chat-messages {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.94rem;
    line-height: 1.55;
    word-wrap: break-word;
    margin: 0;
    animation: bubbleIn 0.3s ease-out;
}

.chat-bubble.ai {
    align-self: flex-start;
    background: var(--panel);
    color: var(--text);
    border: 1px solid var(--line);
    border-bottom-left-radius: 4px;
}
.chat-bubble.ai p { margin: 0 0 0.5em; color: inherit; }
.chat-bubble.ai p:last-child { margin-bottom: 0; }
.chat-bubble.ai strong { color: var(--emerald-900); }

.chat-bubble.user {
    align-self: flex-end;
    background: var(--emerald-gradient);
    color: var(--gold-200);
    border-bottom-right-radius: 4px;
}

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

.chat-form {
    display: flex;
    gap: 8px;
    padding: 14px 16px;
    background: var(--panel);
    border-top: 1px solid var(--line);
}

.chat-form input {
    flex-grow: 1;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--cream);
    color: var(--text);
    transition: border-color var(--transition), background var(--transition);
}
.chat-form input:focus {
    outline: none;
    border-color: var(--gold-400);
    background: var(--ivory);
}

.chat-form button {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 0;
    background: var(--gold-gradient);
    color: var(--emerald-900);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform var(--transition), box-shadow var(--transition);
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(201, 169, 97, 0.35);
}
.chat-form button:hover { transform: scale(1.06); box-shadow: 0 10px 24px rgba(201, 169, 97, 0.5); }
.chat-form button svg { width: 18px; height: 18px; }

.chat-disclaimer {
    margin: 0;
    padding: 8px 16px 12px;
    background: var(--panel);
    color: var(--muted);
    font-size: 0.72rem;
    text-align: center;
    border-top: 1px solid var(--line);
}

@media (max-width: 480px) {
    .floating-chat { right: 86px; bottom: 22px; width: 52px; height: 52px; }
    .floating-whatsapp { right: 22px; bottom: 22px; width: 52px; height: 52px; }
    .chat-panel { right: 16px; bottom: 86px; width: calc(100vw - 32px); }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-portrait { max-width: 480px; margin: 0 auto; }
    .split { grid-template-columns: 1fr; }
    .about-badge { right: 20px; }
    .map-section { grid-template-columns: 1fr; }
    .map-embed { min-height: 320px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .section-heading.with-action { flex-direction: column; align-items: flex-start; text-align: left; }
    .news-item { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 720px) {
    .nav-toggle { display: flex; }
    .site-nav {
        position: fixed;
        top: 0; right: 0;
        width: min(85vw, 360px);
        height: 100vh;
        background: var(--emerald-gradient);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 60px 40px;
        gap: 22px;
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 80;
        border-left: 1px solid rgba(212, 175, 55, 0.18);
    }
    .site-nav.is-open { transform: translateX(0); }
    .site-nav > a { color: var(--ivory); font-size: 1.2rem; font-family: var(--font-display); }
    .site-nav > a:hover { color: var(--gold-300); }
    .nav-cta { background: var(--gold-gradient); color: var(--emerald-900); margin-top: 12px; }

    .lead-form { grid-template-columns: 1fr; padding: 28px 22px; }
    .lead-form .span-two { grid-column: 1; }

    .pricing-card.featured { transform: none; }

    .cta-banner { flex-direction: column; align-items: flex-start; }
    .cta-banner > div { max-width: 100%; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; }

    .before-after-card { grid-template-columns: 1fr; }
    .about-badge { right: 12px; bottom: 12px; padding: 16px 22px; }
    .about-badge strong { font-size: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
}

/* ========== Blog & Haber sayfaları (default şablon class'larını finans paletinde stilize eder) ========== */
.page-shell {
    max-width: 1080px;
    margin: 0 auto;
    padding: 120px 24px 96px;
}
.page-shell .page-hero {
    text-align: center;
    padding: 24px 0 56px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 56px;
}
.page-shell .page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.4rem);
    color: var(--emerald-900);
    margin: 12px 0 14px;
    letter-spacing: -0.01em;
}
.page-shell .page-hero p {
    color: var(--text-soft);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
}
.page-shell .eyebrow {
    color: var(--gold-600);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}
.page-shell .section { padding: 0; }
.page-shell .card-grid.three {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}
.page-shell .card-grid .post-card {
    display: flex;
    flex-direction: column;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.page-shell .card-grid .post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(13, 53, 40, 0.12);
}
.page-shell .card-grid .post-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.page-shell .card-grid .post-card > div {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.page-shell .card-grid .post-card > div > span {
    color: var(--gold-600);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.page-shell .card-grid .post-card h2 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1.25;
    margin: 0;
}
.page-shell .card-grid .post-card h2 a {
    color: var(--emerald-900);
    text-decoration: none;
}
.page-shell .card-grid .post-card h2 a:hover { color: var(--emerald-600); }
.page-shell .card-grid .post-card p {
    color: var(--text-soft);
    font-size: 0.96rem;
    line-height: 1.55;
    margin: 0;
}

.page-shell .news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.page-shell .news-list article {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 28px;
    padding: 24px 28px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    transition: border-color var(--transition);
}
.page-shell .news-list article:hover { border-color: var(--gold-300); }
.page-shell .news-list article > span {
    color: var(--gold-600);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}
.page-shell .news-list article h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin: 0 0 8px;
}
.page-shell .news-list article h2 a {
    color: var(--emerald-900);
    text-decoration: none;
}
.page-shell .news-list article h2 a:hover { color: var(--emerald-600); }
.page-shell .news-list article p {
    color: var(--text-soft);
    margin: 0;
    line-height: 1.55;
}

.article-shell {
    max-width: 760px;
    margin: 0 auto;
}
.article-shell .article-image {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 32px;
}
.article-shell h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--emerald-900);
    margin: 8px 0 18px;
    letter-spacing: -0.01em;
}
.article-shell .article-excerpt {
    font-size: 1.18rem;
    line-height: 1.55;
    color: var(--text-soft);
    margin: 0 0 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-style: italic;
}
.article-shell .video-frame {
    width: 100%;
    aspect-ratio: 16/9;
    border: 0;
    border-radius: 14px;
    margin: 24px 0 32px;
}
.article-content {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.75;
}
.article-content > * + * { margin-top: 22px; }
.article-content p { margin: 0; }
.article-content h2 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--emerald-800);
    margin: 44px 0 6px;
    line-height: 1.25;
}
.article-content h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--emerald-700);
    margin: 32px 0 4px;
}
.article-content ul, .article-content ol {
    margin: 0;
    padding-left: 1.4em;
}
.article-content li { margin-bottom: 8px; }
.article-content blockquote {
    border-left: 3px solid var(--gold-400);
    padding: 6px 0 6px 20px;
    margin: 0;
    color: var(--text-soft);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
}
.article-content strong { color: var(--emerald-900); }
.article-content a {
    color: var(--emerald-600);
    text-decoration: underline;
    text-decoration-color: var(--gold-300);
    text-underline-offset: 3px;
}
.article-content a:hover { color: var(--emerald-800); }
.article-content figure.article-figure {
    margin: 32px -20px;
}
.article-content figure.article-figure img {
    width: 100%;
    border-radius: 14px;
    height: auto;
}
.text-link {
    color: var(--emerald-700);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.text-link:hover { color: var(--gold-600); }

@media (max-width: 720px) {
    .page-shell { padding: 100px 18px 72px; }
    .page-shell .news-list article { grid-template-columns: 1fr; gap: 8px; padding: 20px; }
    .article-content figure.article-figure { margin: 24px 0; }
}
