/* ======================================
   EKOL KOLTUK - MODERN MARKA STILI
   Warm Copper | Charcoal | Clean Layout
   ====================================== */

/* ===== CSS VARIABLES - KALITELI PALETTE ===== */
:root {
    /* Kaliteli Renkler */
    --primary: #0A1D4E;
    --primary-light: #1c3273;
    --primary-dark: #071338;
    --accent: #d94983;
    --accent-light: #f18cb8;
    --accent-dark: #af2f61;
    --accent-glow: rgba(217, 73, 131, 0.34);
    --gold: #D4AF37;
    --gold-bright: #F4C430;
    --white: #ffffff;
    --off-white: #fcfaf7;
    --cream: #f6f1e6;
    --light-gray: #eadfcb;
    --medium-gray: #4a4a4a;
    --dark-gray: #333333;
    --border-color: #dfd2bc;
    --glass-bg: rgba(255, 255, 255, 0.16);
    --glass-border: rgba(255, 255, 255, 0.24);
    
    /* Typography - Kaliteli Fonts */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    
    /* Shadows - Kaliteli */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.3);
    
    /* Transitions */
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    --spacing-3xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-toast: 500;
    --header-offset: 112px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: #fcfaf7;
}

body {
    font-family: var(--font-primary);
    color: var(--primary);
    background-color: #fcfaf7;
    background:
        radial-gradient(circle at 8% -8%, rgba(217, 73, 131, 0.17), transparent 34%),
        radial-gradient(circle at 85% 0%, rgba(212, 175, 55, 0.12), transparent 36%),
        radial-gradient(circle at 55% 100%, rgba(241, 140, 184, 0.1), transparent 40%),
        var(--off-white);
    line-height: 1.7;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: 112px;
}

body.inner-page {
    background-color: #fcfaf7;
    background:
        radial-gradient(circle at 12% 2%, rgba(217, 73, 131, 0.16), transparent 35%),
        radial-gradient(circle at 90% 8%, rgba(212, 175, 55, 0.14), transparent 36%),
        radial-gradient(circle at 56% 100%, rgba(212, 175, 55, 0.12), transparent 38%),
        linear-gradient(180deg, #fff8f3 0%, #fdf3eb 48%, #f8e8e2 100%);
}

/* ===== TYPOGRAPHY - KALITELI ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-lg);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: -0.01em;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

h4 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--medium-gray);
    line-height: 1.8;
    max-width: 65ch;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
}

a:hover {
    color: var(--accent-dark);
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS - KALITELI ===== */
.btn {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    white-space: nowrap;
    user-select: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(217, 73, 131, 0.35);
}

.btn-primary:active {
    transform: translateY(-1px);
}

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

.btn-secondary:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

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

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #F4C430 50%, #D4AF37 100%);
    background-size: 200% auto;
    color: var(--white);
    box-shadow: var(--shadow-gold);
    animation: shimmer 3s ease infinite;
}

.btn-gold:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

/* ===== SEO CONVERSION BLOCKS ===== */
.lead-conversion-band {
    margin: var(--spacing-lg) 0 var(--spacing-xl);
    padding: clamp(1.25rem, 2vw, 2rem);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 88% 8%, rgba(212, 175, 55, 0.32), transparent 32%),
        radial-gradient(circle at 14% 92%, rgba(217, 73, 131, 0.2), transparent 30%),
        linear-gradient(140deg, rgba(10, 29, 78, 0.97) 0%, rgba(15, 41, 105, 0.95) 55%, rgba(19, 56, 138, 0.9) 100%);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.lead-conversion-band h3 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    margin-bottom: 0.75rem;
}

.lead-conversion-band p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 72ch;
    margin-bottom: 1rem;
}

.lead-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.lead-metric {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    padding: 0.85rem 1rem;
    backdrop-filter: blur(4px);
}

.lead-metric strong {
    display: block;
    color: #ffd8a8;
    font-size: 1.05rem;
    line-height: 1.2;
}

.lead-metric span {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
}

.lead-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.lead-actions .btn {
    transition: all var(--transition-normal);
}

.lead-actions .btn:hover {
    transform: translateY(-2px);
}

.service-fit-block {
    margin-top: var(--spacing-lg);
    padding: clamp(1rem, 2vw, 1.5rem);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-md);
}

.service-fit-block h3 {
    margin-bottom: 0.55rem;
}

.service-fit-block p {
    margin-bottom: 0.8rem;
}

.service-fit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.service-fit-tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.78rem;
    border-radius: var(--radius-full);
    background: rgba(217, 73, 131, 0.12);
    border: 1px solid rgba(217, 73, 131, 0.26);
    color: var(--primary-dark);
    font-size: 0.84rem;
    font-weight: 600;
}

@media (max-width: 900px) {
    .lead-metrics {
        grid-template-columns: 1fr;
    }
}

@keyframes shimmer {
    0% { background-position: left center; }
    50% { background-position: right center; }
    100% { background-position: left center; }
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1.25rem 3.5rem;
    font-size: 1.15rem;
}

/* ===== HEADER & NAVIGATION - KALITELI ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    transition: all var(--transition-normal);
    background: rgba(255, 249, 242, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.top-bar {
    border-bottom: 1px solid rgba(212, 175, 55, 0.28);
    background: linear-gradient(90deg, rgba(10, 29, 78, 0.98), rgba(18, 44, 108, 0.96));
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.top-bar-inner a {
    color: var(--gold-bright);
    font-weight: 600;
}

.top-bar-inner a:hover {
    color: #ffe08c;
}

header.scrolled {
    background: rgba(255, 252, 246, 0.98);
    box-shadow: 0 10px 30px rgba(10, 29, 78, 0.14);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.65rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 78px;
}

.logo {
    font-family: var(--font-display);
    color: var(--primary);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    line-height: 0;
}

.logo span {
    color: var(--accent);
}

.logo:hover {
    transform: translateY(-1px);
}

.brand-logo-image {
    display: block;
    width: auto;
    height: 82px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(10, 29, 78, 0.14));
}

footer .brand-logo-image {
    height: 44px;
}

nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: nowrap;
}

nav a {
    color: rgba(10, 29, 78, 0.84);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: all var(--transition-fast);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transition: width var(--transition-normal);
}

nav a:hover {
    color: var(--accent);
}

nav a:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.dropdown-caret {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform var(--transition-fast);
}

.nav-dropdown.open .dropdown-caret,
.nav-dropdown:hover .dropdown-caret,
.nav-dropdown:focus-within .dropdown-caret {
    transform: rotate(-135deg) translateY(-1px);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(92vw, 720px);
    max-height: min(74vh, 620px);
    overflow: auto;
    padding: 0.9rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(252, 246, 240, 0.97));
    border: 1px solid rgba(217, 73, 131, 0.22);
    box-shadow: 0 22px 48px rgba(17, 24, 39, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(12px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.78rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.985);
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    z-index: var(--z-dropdown);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.nav-dropdown-menu a {
    display: block;
    width: 100%;
    color: rgba(10, 29, 78, 0.9);
    padding: 0.52rem 0.68rem;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.35;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    color: var(--primary);
    background: rgba(217, 73, 131, 0.12);
}

.dropdown-all-link {
    grid-column: 1 / -1;
    background: linear-gradient(140deg, rgba(217, 73, 131, 0.22), rgba(217, 73, 131, 0.1));
    border: 1px solid rgba(217, 73, 131, 0.34);
    font-weight: 600;
    text-align: center;
    padding: 0.62rem 0.76rem !important;
}

.dropdown-group {
    border: 1px solid rgba(217, 73, 131, 0.12);
    background: rgba(255, 255, 255, 0.82);
    border-radius: 12px;
    padding: 0.6rem;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
}

.dropdown-group-title {
    margin: 0 0 0.38rem;
    padding: 0.28rem 0.56rem;
    color: rgba(10, 29, 78, 0.72);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white) !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    transition: all var(--transition-normal) !important;
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 73, 131, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 600;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--primary);
    margin: 6px 0;
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* ===== HERO SECTION - ULTRA KALITELI ===== */
.hero {
    min-height: 84vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 6%, rgba(217, 73, 131, 0.2), transparent 36%),
        radial-gradient(circle at 12% 0%, rgba(212, 175, 55, 0.16), transparent 34%),
        linear-gradient(135deg, #f6efe3 0%, #ebdcc4 46%, #e2cfb1 100%);
    padding: var(--spacing-2xl) 2rem var(--spacing-xl);
    margin-top: calc(-1 * var(--header-offset));
    padding-top: calc(var(--spacing-2xl) + var(--header-offset));
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(217, 73, 131, 0.1) 0%, transparent 74%);
    animation: float 30s ease-in-out infinite;
    opacity: 0.6;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.09) 0%, transparent 75%);
    animation: float 34s ease-in-out infinite reverse;
    opacity: 0.55;
}

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

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.55);
    background: rgba(212, 175, 55, 0.16);
    color: var(--primary);
    border-radius: var(--radius-full);
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.hero h1 {
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 4px 18px rgba(255, 255, 255, 0.35);
}

.hero p {
    color: rgba(44, 44, 44, 0.86);
    font-size: 1.12rem;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 1s ease-out 0.2s both;
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.4s both;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-conversion-note {
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
    color: rgba(44, 44, 44, 0.78);
    max-width: none;
}

.hero-meta {
    margin-top: var(--spacing-lg);
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.hero-meta-item {
    border: 1px solid rgba(10, 29, 78, 0.16);
    color: rgba(10, 29, 78, 0.86);
    background: rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-full);
    padding: 0.4rem 0.85rem;
    font-size: 0.82rem;
}

.hero-aside {
    display: none;
}

.hero-showcase {
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(217, 73, 131, 0.26);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 22px 50px rgba(10, 29, 78, 0.16);
}

.hero-showcase-title {
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    margin-bottom: var(--spacing-sm);
}

.hero-showcase-list {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    margin: 0 0 var(--spacing-md);
}

.hero-showcase-list li {
    color: rgba(10, 29, 78, 0.86);
    font-size: 0.94rem;
    line-height: 1.5;
    padding-left: 1.4rem;
    position: relative;
}

.hero-showcase-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.hero-materials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
}

.material-pill {
    font-size: 0.78rem;
    color: rgba(10, 29, 78, 0.82);
    border: 1px solid rgba(10, 29, 78, 0.16);
    background: rgba(255, 255, 255, 0.64);
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.03em;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(217, 73, 131, 0.24);
    border-radius: var(--radius-md);
    padding: 0.65rem;
    text-align: center;
}

.hero-stat strong {
    display: block;
    color: var(--accent-light);
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.hero-stat span {
    color: rgba(10, 29, 78, 0.66);
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-floating-card {
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 220px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-lg);
    padding: 1rem;
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.hero-floating-card p {
    margin: 0;
    color: var(--white);
    font-size: 0.88rem;
    line-height: 1.5;
}

.hero-badges {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(10, 29, 78, 0.7);
    font-size: 0.9rem;
    border: 1px solid rgba(10, 29, 78, 0.14);
    background: rgba(255, 255, 255, 0.58);
    border-radius: var(--radius-full);
    padding: 0.5rem 1rem;
}

.hero-badge svg {
    color: var(--accent);
}

/* ===== HOME PAGE RHYTHM & SYMMETRY ===== */
body.home-page .container {
    max-width: 1320px;
    padding: 0 1.6rem;
}

body.home-page .hero {
    min-height: 90vh;
    padding-bottom: var(--spacing-lg);
}

body.home-page .hero-grid {
    gap: 1.15rem;
}

body.home-page .hero h1 {
    font-size: clamp(2rem, 4.8vw, 3.25rem);
    margin-bottom: var(--spacing-md);
}

body.home-page .hero p {
    margin-bottom: var(--spacing-lg);
    max-width: 66ch;
}

body.home-page .hero-badges {
    margin-top: var(--spacing-md);
    gap: 0.75rem;
}

body.home-page .hero-cta .btn {
    padding: 0.78rem 1.5rem;
    font-size: 0.93rem;
    min-height: 44px;
}

body.home-page main section {
    padding: clamp(3rem, 5vw, 4.6rem) 1.6rem;
}

body.home-page .section-header {
    margin-bottom: clamp(1.5rem, 3vw, 2.3rem);
    max-width: 760px;
}

body.home-page .signature-strip {
    padding-top: 1rem;
    padding-bottom: 1.2rem;
}

body.home-page .grid.grid-3 {
    gap: 1.05rem;
    align-items: stretch;
}

body.home-page .grid.grid-3 > .card {
    height: 100%;
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
}

body.home-page .card-title {
    font-size: 1.22rem;
    margin-bottom: 0.45rem;
}

body.home-page .card-text {
    font-size: 0.95rem;
    line-height: 1.62;
    margin-bottom: 0.75rem;
}

body.home-page .card-link {
    margin-top: auto;
}

body.home-page .process-timeline {
    padding: 0.35rem 0 0;
    max-width: 980px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

body.home-page .process-item {
    margin: 0;
    flex-direction: row !important;
    align-items: stretch;
}

body.home-page .process-item:last-child {
    margin-bottom: 0;
}

body.home-page .process-timeline::before {
    content: none;
}

body.home-page .process-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 1.05rem;
    box-shadow: 0 8px 16px rgba(217, 73, 131, 0.28);
}

body.home-page .process-content {
    margin: 0 0 0 0.65rem;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

body.home-page .process-content h3 {
    font-size: 1.05rem;
    margin-bottom: 0.22rem;
}

body.home-page .process-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
}

body.home-page .faq-section .container > div[style*="max-width: 700px"] {
    max-width: 860px !important;
}

body.home-page section .container > p[style*="max-width: 800px"] {
    max-width: 980px !important;
}

/* ===== INNER PAGE REDESIGN ===== */
body.inner-page .hero {
    min-height: 36vh;
    padding-bottom: var(--spacing-md);
}

body.inner-page .hero .hero-container {
    max-width: 980px;
    text-align: center;
}

body.inner-page .hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

body.inner-page .hero p {
    max-width: 64ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.02rem;
}

.inner-hero-kicker {
    display: inline-flex;
    margin-bottom: var(--spacing-md);
    border-radius: var(--radius-full);
    border: 1px solid rgba(217, 73, 131, 0.45);
    background: rgba(217, 73, 131, 0.12);
    color: var(--accent-light);
    font-size: 0.78rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
}

body.inner-page main {
    margin-top: 0;
    position: relative;
    z-index: 2;
}

body.inner-page .container {
    max-width: 1380px;
}

body.inner-page main section:first-of-type {
    padding-top: 0;
}

body.inner-page .page-content-shell {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-xl);
    box-shadow: 0 26px 64px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2rem;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

body.service-detail .page-content-shell {
    max-width: 1460px;
    margin: 0 auto;
}

body.inner-page .page-content-shell > h2:first-child {
    margin-top: 0;
}

body.inner-page .breadcrumb {
    padding: var(--spacing-sm) 0 var(--spacing-md);
}

body.inner-page .hero .breadcrumb.hero-breadcrumb {
    margin-top: var(--spacing-md);
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem;
}

body.inner-page .hero .breadcrumb.hero-breadcrumb a {
    color: rgba(10, 29, 78, 0.88);
}

body.inner-page .hero .breadcrumb.hero-breadcrumb a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

body.inner-page .hero .breadcrumb.hero-breadcrumb span,
body.inner-page .hero .breadcrumb.hero-breadcrumb .breadcrumb-separator {
    color: rgba(10, 29, 78, 0.62);
}

body.inner-page .inner-card,
body.inner-page .page-content-shell .card {
    background: #fff;
    border: 1px solid #e4dbc9;
    box-shadow: var(--shadow-sm);
}

body.inner-page .inner-card:hover,
body.inner-page .page-content-shell .card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(217, 73, 131, 0.45);
}

body.inner-page section[style*="background-color: var(--light-gray)"] {
    background: linear-gradient(180deg, #f7f2e9, #f0e8d9) !important;
    border-top: 1px solid #e7dece;
    border-bottom: 1px solid #e7dece;
}

/* ===== SERVICE PAGES - ULTRA UPGRADE ===== */
body.service-page .hero {
    background:
        radial-gradient(circle at 12% 10%, rgba(217, 73, 131, 0.16), transparent 34%),
        radial-gradient(circle at 84% 8%, rgba(212, 175, 55, 0.15), transparent 34%),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.62), transparent 42%),
        linear-gradient(135deg, #f6efe3 0%, #ead9be 50%, #e1cdad 100%);
    display: block;
    margin-top: 0;
    min-height: 22vh;
    padding-top: calc(var(--header-offset) + 0.38rem);
    padding-bottom: 0.9rem;
}

body.service-page .hero .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1160px;
    margin: 0 auto;
}

body.service-page .hero .hero-container::before {
    content: 'İSTANBUL ANADOLU YAKASI';
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.6rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(10, 29, 78, 0.34);
    background: rgba(255, 255, 255, 0.72);
    color: var(--primary);
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.28rem 0.72rem;
    box-shadow: 0 8px 18px rgba(10, 29, 78, 0.08);
}

body.service-page .inner-hero-kicker {
    display: none !important;
}

body.service-page .hero h1 {
    font-size: clamp(1.72rem, 3.2vw, 2.5rem);
    margin-bottom: 0.45rem;
    line-height: 1.15;
}

body.service-page .hero p {
    font-size: 1.08rem;
    margin-bottom: 0.7rem;
    line-height: 1.62;
}

body.service-page .hero .hero-cta {
    gap: 0.44rem;
}

body.service-page .hero .hero-cta .btn {
    padding: 0.7rem 1.18rem;
    font-size: 0.9rem;
    min-height: 0;
}

body.service-page .hero .hero-conversion-note {
    margin-top: 0.25rem;
    font-size: 0.86rem;
}

body.service-page .hero::after {
    opacity: 0.24;
}

.service-hero-badges {
    margin-top: 0.52rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.44rem;
}

body.service-page .hero .breadcrumb.hero-breadcrumb {
    margin-top: 0.6rem;
    margin-bottom: 0.2rem;
    padding: 0;
}

.service-hero-badges span {
    color: rgba(10, 29, 78, 0.86);
    border: 1px solid rgba(10, 29, 78, 0.2);
    background: rgba(255, 255, 255, 0.62);
    border-radius: var(--radius-full);
    padding: 0.28rem 0.64rem;
    font-size: 0.74rem;
}

body.service-detail .page-content-shell,
body.service-detail main section .container .breadcrumb + div {
    background: linear-gradient(180deg, #ffffff 0%, #fdfaf4 100%);
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
}

.service-top-ribbon {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: var(--spacing-lg);
}

.service-pill {
    background: rgba(217, 73, 131, 0.14);
    border: 1px solid rgba(217, 73, 131, 0.45);
    color: var(--primary);
    border-radius: var(--radius-full);
    padding: 0.35rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

body.service-detail .breadcrumb {
    margin-bottom: var(--spacing-lg);
    padding-top: 0;
}

body.service-detail .grid .card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(217, 73, 131, 0.24);
    box-shadow: 0 10px 30px rgba(30, 41, 59, 0.08);
}

body.service-detail .grid .card h4 {
    color: var(--primary);
}

body.service-detail .service-reading h2,
body.service-detail .service-reading h3 {
    scroll-margin-top: 110px;
}

body.service-detail .service-reading h2 {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-sm);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
}

body.service-detail .service-reading h3 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-xs);
    font-size: clamp(1.2rem, 2.4vw, 1.5rem);
}

body.service-detail .service-reading p,
body.service-detail .service-reading li {
    max-width: 100%;
    color: #4b5563;
    line-height: 1.85;
}

body.service-detail .service-reading ul {
    margin: 0 0 var(--spacing-lg);
    padding-left: 1.3rem;
}

body.service-detail .service-reading ul li {
    margin-bottom: 0.35rem;
}

body.service-detail .service-reading[style*="max-width: 900px"],
body.service-detail .service-reading > div[style*="max-width: 900px"] {
    max-width: 100% !important;
}

.service-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) 330px;
    gap: 1.35rem;
    align-items: start;
}

.service-main {
    display: grid;
    gap: 1.25rem;
}

.service-main > *:first-child {
    margin-top: 0 !important;
}

body.service-detail .service-main h2 {
    position: relative;
    padding-left: 0.9rem;
    margin-top: 1.55rem;
    letter-spacing: -0.01em;
}

body.service-detail .service-main h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.28em;
    width: 4px;
    height: 1.15em;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), var(--accent-dark));
}

body.service-detail .service-main h3 {
    margin-top: 1.2rem;
    font-size: clamp(1.18rem, 2.2vw, 1.4rem);
}

.service-side {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 0.9rem;
}

.service-side-card {
    border: 1px solid rgba(217, 73, 131, 0.24);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(249,244,235,0.88));
    padding: 0.95rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.service-side-card h4 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}

.service-side-card p {
    margin: 0 0 0.7rem;
    font-size: 0.92rem;
    line-height: 1.6;
}

.service-side-card .btn {
    width: 100%;
}

.service-insight {
    margin: var(--spacing-xl) 0 0;
    border-top: 1px solid #efe6d8;
    padding-top: var(--spacing-lg);
}

.service-insight h2 {
    margin-top: 0 !important;
}

.service-insight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin: var(--spacing-md) 0 var(--spacing-lg);
}

.service-insight-card {
    border: 1px solid rgba(217, 73, 131, 0.24);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,243,233,0.86));
    padding: 0.8rem;
    box-shadow: 0 8px 22px rgba(30, 41, 59, 0.08);
}

.service-insight-card h4 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
}

.service-insight-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
}

.service-toc {
    margin: 0 0 var(--spacing-lg);
    border: 1px solid rgba(217, 73, 131, 0.26);
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,242,230,0.9));
    border-radius: var(--radius-lg);
    padding: 0.88rem;
    box-shadow: 0 16px 34px rgba(30, 41, 59, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.52rem;
    align-self: stretch;
}

.service-toc::before {
    content: none;
}

.service-toc::after {
    content: '';
    position: absolute;
    top: -70px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at center, rgba(217, 73, 131, 0.16), transparent 72%);
    pointer-events: none;
}

.service-toc-title {
    margin: 0;
    padding: 0.2rem 0.2rem 0.1rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 0.98rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.service-toc-title::before {
    content: '';
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--accent), var(--accent-dark));
    box-shadow: 0 0 0 4px rgba(217, 73, 131, 0.16);
    flex: 0 0 auto;
}

.service-toc-list {
    counter-reset: toc-item;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.38rem;
}

.service-toc-list li {
    position: relative;
    counter-increment: toc-item;
}

.service-toc-list li a {
    display: flex;
    align-items: center;
    width: 100%;
    color: #364152;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.3;
    padding: 0.52rem 0.62rem 0.52rem 2.35rem;
    border-radius: 10px;
    border: 1px solid rgba(217, 73, 131, 0.2);
    background: rgba(255, 255, 255, 0.82);
    transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.service-toc-list li::before {
    content: counter(toc-item, decimal-leading-zero);
    position: absolute;
    left: 0.72rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    width: 1.2rem;
    line-height: 1.2rem;
    text-align: center;
    border-radius: 999px;
    background: rgba(217, 73, 131, 0.14);
    border: 1px solid rgba(217, 73, 131, 0.22);
    padding: 0;
}

.service-toc-list li a:hover {
    color: var(--accent-dark);
    background: rgba(217, 73, 131, 0.12);
    border-color: rgba(217, 73, 131, 0.26);
    transform: translateX(1px);
}

.service-toc-list .toc-sub {
    padding-left: 0.4rem;
}

.service-toc-list .toc-sub a {
    font-size: 0.86rem;
    opacity: 0.95;
}

.service-toc-list .toc-sub::before {
    font-size: 0.62rem;
}

body.service-hub .page-content-shell {
    max-width: 1320px;
    margin: 0 auto;
}

body.service-hub .grid.grid-3 {
    gap: 1.15rem;
}

body.service-hub .grid.grid-3,
body.service-detail .service-main .grid.grid-2 {
    align-items: stretch;
}

body.service-detail .service-main .grid.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.service-detail .service-main .grid.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 1rem;
}

body.service-detail .service-main .grid.grid-3 > .card {
    padding: 1.05rem 1.1rem;
    border-radius: 16px;
    min-height: 0;
}

body.service-detail .service-main .grid.grid-3 > .card h4 {
    margin: 0 0 0.45rem;
    font-size: 1.02rem;
    line-height: 1.3;
    letter-spacing: 0;
}

body.service-detail .service-main .grid.grid-3 > .card p {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.62;
    max-width: none;
}

body.service-hub .inner-card,
body.service-hub .card {
    border-radius: var(--radius-lg);
}

body.service-hub main > section:first-of-type {
    background: linear-gradient(180deg, var(--off-white), #f7f1e6);
}

body.service-hub .card {
    background: #fff;
    border: 1px solid #e6dece;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

body.service-hub .card-icon {
    border: 1px solid rgba(217, 73, 131, 0.25);
}

body.service-hub .card h3 {
    margin-bottom: 0.45rem;
}

body.service-hub .card p {
    margin-bottom: 0.7rem;
}

body.service-hub .service-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

body.service-hub .service-hero-badges a {
    display: inline-flex;
    align-items: center;
    padding: 0.34rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(217, 73, 131, 0.32);
    background: rgba(217, 73, 131, 0.12);
    color: #5f471e;
    font-size: 0.76rem;
    line-height: 1.2;
    font-weight: 600;
}

body.service-hub .service-hero-badges a:hover {
    background: rgba(217, 73, 131, 0.2);
    border-color: rgba(217, 73, 131, 0.5);
}

.region-toolbar {
    margin: 0 0 1rem;
    padding: 0.9rem;
    border-radius: 16px;
    border: 1px solid rgba(217, 73, 131, 0.25);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 243, 233, 0.9));
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.region-toolbar-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.6rem;
    align-items: center;
    margin-bottom: 0.65rem;
}

.region-search-input {
    width: 100%;
    border: 1px solid rgba(217, 73, 131, 0.38);
    background: #fff;
    color: #1f2937;
    border-radius: 999px;
    padding: 0.58rem 0.95rem;
    font: inherit;
    font-size: 0.9rem;
}

.region-search-input:focus {
    outline: 0;
    border-color: rgba(217, 73, 131, 0.85);
    box-shadow: 0 0 0 3px rgba(217, 73, 131, 0.16);
}

.region-result-count {
    margin: 0;
    font-size: 0.82rem;
    color: #6b7280;
    white-space: nowrap;
}

.region-tab-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.46rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: thin;
}

.region-tab {
    border: 1px solid rgba(217, 73, 131, 0.28);
    background: #fff;
    color: #5f471e;
    border-radius: 999px;
    padding: 0.36rem 0.68rem;
    font: inherit;
    font-size: 0.8rem;
    line-height: 1.2;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    white-space: nowrap;
}

.region-tab-icon {
    display: inline-grid;
    place-items: center;
    min-width: 1.28rem;
    height: 1.28rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #6b4f22;
    background: linear-gradient(180deg, rgba(217, 73, 131, 0.26), rgba(217, 73, 131, 0.12));
    border: 1px solid rgba(217, 73, 131, 0.35);
}

.region-tab:hover {
    background: rgba(217, 73, 131, 0.14);
}

.region-tab.active {
    background: linear-gradient(180deg, rgba(217, 73, 131, 0.24), rgba(217, 73, 131, 0.12));
    border-color: rgba(217, 73, 131, 0.52);
    color: #4f3b18;
}

.region-tab.active .region-tab-icon {
    color: #52380f;
    border-color: rgba(217, 73, 131, 0.56);
}

.region-tab-count {
    display: inline-grid;
    place-items: center;
    min-width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    padding: 0 0.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: #6b4f22;
    background: rgba(217, 73, 131, 0.16);
    border: 1px solid rgba(217, 73, 131, 0.32);
}

.region-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
}

.region-chip {
    border: 1px solid rgba(217, 73, 131, 0.28);
    background: #fff;
    color: #5f471e;
    border-radius: 999px;
    padding: 0.3rem 0.62rem;
    font: inherit;
    font-size: 0.78rem;
    line-height: 1.2;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.region-chip:hover {
    background: rgba(217, 73, 131, 0.14);
}

.region-chip.active {
    background: linear-gradient(180deg, rgba(217, 73, 131, 0.24), rgba(217, 73, 131, 0.12));
    border-color: rgba(217, 73, 131, 0.52);
    color: #4f3b18;
}

body.home-page .trust-inline {
    margin: 0 auto 1.05rem;
    max-width: 880px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

body.home-page .trust-inline-item {
    border-radius: 12px;
    border: 1px solid rgba(217, 73, 131, 0.26);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 244, 235, 0.9));
    padding: 0.65rem 0.7rem;
    font-size: 0.86rem;
    color: #4b5563;
    line-height: 1.45;
    text-align: left;
}

body.about-page .hero .hero-container {
    max-width: 980px;
}

body.about-page .hero {
    min-height: 24vh;
    padding-top: calc(var(--header-offset) + 0.75rem);
    padding-bottom: 0.55rem;
}

body.about-page .hero h1 {
    font-size: clamp(1.55rem, 2.8vw, 2.2rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 0.65rem;
}

body.about-page .hero p {
    max-width: 64ch;
    margin-bottom: 0.75rem;
}

body.about-page main > section {
    padding-top: 0.7rem;
    padding-bottom: 1.15rem;
}

body.about-page .page-content-shell {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0.82rem;
}

body.about-page .breadcrumb {
    padding: 0.28rem 0 0.45rem;
    margin-bottom: 0.2rem;
}

body.about-page .page-content-shell section {
    margin: 0;
    padding: 0;
}

body.about-page .about-intro-block p {
    max-width: 100%;
}

body.about-page .about-story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
    gap: 0.62rem;
    align-items: stretch;
}

body.about-page .about-story-card,
body.about-page .about-story-side {
    border: 1px solid rgba(217, 73, 131, 0.24);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 233, 0.9));
    padding: 0.82rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

body.about-page .about-story-card p:last-child,
body.about-page .about-story-side ul {
    margin-bottom: 0;
}

body.about-page .about-story-card h2 {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    margin-bottom: 0.3rem;
}

body.about-page .about-story-side h3 {
    margin-top: 0;
    font-size: 1rem;
}

body.about-page .about-story-side ul {
    padding-left: 1.1rem;
}

body.about-page .about-story-side li {
    margin-bottom: 0.35rem;
    color: #46556a;
    line-height: 1.6;
}

body.about-page .about-metric-card {
    text-align: center;
    padding: 0.78rem;
}

body.about-page .about-metric-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.08rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

body.about-page .about-metric-card p {
    margin: 0;
    color: #526174;
    font-size: 0.9rem;
}

body.about-page .about-process-block,
body.about-page .about-values-block,
body.about-page .about-coverage-block,
body.about-page .about-quality-block,
body.about-page .about-customer-block,
body.about-page .about-faq-block,
body.about-page .about-cta-block {
    margin-top: 0.38rem;
}

body.about-page .about-process-timeline {
    padding-top: 0.15rem;
    gap: 0.45rem;
}

body.about-page .about-cta-panel {
    background:
        radial-gradient(circle at 82% 0%, rgba(217, 73, 131, 0.16), transparent 30%),
        linear-gradient(135deg, #f7f2e9 0%, #ecdfca 100%);
    border-radius: var(--radius-xl);
    padding: clamp(1.05rem, 2.3vw, 1.4rem);
    text-align: center;
}

body.about-page .about-cta-panel h2 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

body.about-page .about-cta-panel p {
    color: rgba(10, 29, 78, 0.74);
    margin: 0 auto 1rem;
    max-width: 60ch;
}

body.about-page .about-quality-lead {
    max-width: 100%;
    margin-bottom: 0.45rem;
}

body.about-page .page-content-shell section > h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 0.35rem;
}

body.about-page .page-content-shell h3,
body.about-page .page-content-shell .card-title {
    font-size: 1rem;
    line-height: 1.35;
}

body.about-page .about-process-timeline .process-content h3 {
    font-size: 0.98rem;
    margin-bottom: 0.1rem;
}

body.about-page .about-process-timeline .process-content p {
    font-size: 0.9rem;
    line-height: 1.5;
}

body.about-page .page-content-shell section p {
    margin-bottom: 0.42rem;
}

body.about-page .page-content-shell .card {
    padding: 0.72rem;
}

body.about-page .faq-container {
    gap: 0.4rem;
}

body.about-page .faq-question {
    padding: 0.76rem 0.88rem;
}

body.about-page .faq-answer p {
    padding: 0 0.88rem 0.88rem;
}

body.about-page .grid {
    gap: 0.55rem;
}

/* ===== ABOUT CLEAN OVERRIDES ===== */
body.about-page-clean .hero {
    min-height: 20vh;
    padding-top: calc(var(--header-offset) + 0.7rem);
    padding-bottom: 0.7rem;
}

body.about-page-clean .hero h1 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

body.about-page-clean .hero p {
    max-width: 64ch;
    margin-bottom: 0.65rem;
    font-size: 1rem;
    line-height: 1.7;
}

body.about-page-clean main > section {
    background: transparent;
    padding-top: 0.85rem;
    padding-bottom: 1.2rem;
}

body.about-page-clean .breadcrumb {
    padding: 0.25rem 0 0.6rem;
    margin-bottom: 0;
}

body.about-page-clean .about-premium-shell {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

body.about-page-clean .about-premium-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
    gap: 0.75rem;
}

body.about-page-clean .about-intro-card,
body.about-page-clean .about-intro-aside,
body.about-page-clean .about-clean-block {
    background: #fff;
    border: 1px solid #e4dbc9;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    padding: 1.1rem;
}

body.about-page-clean .about-kicker {
    display: inline-block;
    margin: 0 0 0.45rem;
    color: #6d5123;
    font-size: 0.9rem;
    font-weight: 600;
}

body.about-page-clean .about-intro-card h2,
body.about-page-clean .about-clean-block h2,
body.about-page-clean .about-clean-cta h2 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 0.55rem;
}

body.about-page-clean .about-intro-card p,
body.about-page-clean .about-clean-block p,
body.about-page-clean .about-step p,
body.about-page-clean .about-value-item p,
body.about-page-clean .about-intro-aside span {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
}

body.about-page-clean .about-intro-card p:last-child,
body.about-page-clean .about-clean-block p:last-child {
    margin-bottom: 0;
}

body.about-page-clean .about-intro-aside h3 {
    margin: 0 0 0.5rem;
    font-family: var(--font-primary);
    font-size: 1.1rem;
}

body.about-page-clean .about-fact-list {
    display: grid;
    gap: 0.55rem;
}

body.about-page-clean .about-fact-list div {
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    border: 1px solid #eadfcd;
    background: #fcfaf6;
}

body.about-page-clean .about-fact-list strong {
    display: block;
    font-size: 1rem;
    color: var(--primary);
}

body.about-page-clean .about-process-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

body.about-page-clean .about-step {
    position: relative;
    border-radius: 10px;
    border: 1px solid #eadfcd;
    background: #fcfaf6;
    padding: 0.7rem 0.8rem 0.7rem 2.3rem;
}

body.about-page-clean .about-step span {
    position: absolute;
    left: 0.8rem;
    top: 0.7rem;
    color: #8b6a34;
    font-size: 0.9rem;
    font-weight: 700;
}

body.about-page-clean .about-step p {
    margin: 0;
}

body.about-page-clean .about-values-modern {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

body.about-page-clean .about-value-item {
    border-radius: 10px;
    border: 1px solid #eadfcd;
    background: #fcfaf6;
    padding: 0.8rem;
}

body.about-page-clean .about-value-item h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin: 0 0 0.35rem;
}

body.about-page-clean .about-value-item p {
    margin: 0;
}

body.about-page-clean .about-client-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

body.about-page-clean .about-client-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid #e4dbc9;
    background: #fff;
    color: #374151;
    font-size: 1rem;
    font-weight: 500;
}

body.about-page-clean .about-clean-cta {
    background:
        radial-gradient(circle at 84% 0%, rgba(217, 73, 131, 0.14), transparent 32%),
        linear-gradient(135deg, #f6efe2 0%, #eadcc6 100%);
    border-radius: 14px;
    padding: 1.25rem 1.1rem;
    text-align: center;
}

body.about-page-clean .about-clean-cta h2 {
    color: var(--primary);
}

body.about-page-clean .about-clean-cta p {
    color: rgba(10, 29, 78, 0.74);
    margin: 0 auto 0.85rem;
    max-width: 62ch;
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 980px) {
    body.about-page-clean .about-premium-intro,
    body.about-page-clean .about-process-grid,
    body.about-page-clean .about-values-modern {
        grid-template-columns: 1fr;
    }
}

/* ===== ABOUT PAGE V2 - PREMIUM LANDING ===== */
body.about-page-v2 {
    background:
        radial-gradient(circle at 12% -8%, rgba(217, 73, 131, 0.16), transparent 34%),
        radial-gradient(circle at 88% 2%, rgba(26, 39, 68, 0.14), transparent 36%),
        linear-gradient(180deg, #f8f5ee 0%, #f3ede2 52%, #f5f0e6 100%);
}

body.about-page-v2 .hero.about-hero-v2 {
    min-height: 58vh;
    padding-top: calc(var(--header-offset) + 1.25rem);
    padding-bottom: 2.5rem;
    background:
        radial-gradient(circle at 14% 8%, rgba(217, 73, 131, 0.24), transparent 28%),
        radial-gradient(circle at 86% 10%, rgba(217, 73, 131, 0.16), transparent 24%),
        linear-gradient(132deg, #f7f2e9 0%, #ede1ce 58%, #f9f4eb 100%);
}

body.about-page-v2 .about-hero-v2 .hero-container {
    max-width: 1220px;
    padding: 0 1.8rem;
}

body.about-page-v2 .about-hero-v2 .hero-breadcrumb {
    justify-content: flex-start;
    margin-top: 0;
    margin-bottom: 0.7rem;
}

body.about-page-v2 .about-hero-v2 .hero-breadcrumb a,
body.about-page-v2 .about-hero-v2 .hero-breadcrumb span {
    color: rgba(10, 29, 78, 0.78);
}

body.about-page-v2 .about-hero-kicker {
    display: inline-flex;
    margin-bottom: 0.9rem;
    border: 1px solid rgba(217, 73, 131, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: rgba(10, 29, 78, 0.86);
    padding: 0.38rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.about-page-v2 .about-hero-v2 h1 {
    font-size: clamp(2rem, 4.1vw, 3.4rem);
    line-height: 1.1;
    margin-bottom: 0.8rem;
    color: var(--primary);
    max-width: 18ch;
}

body.about-page-v2 .about-hero-v2 p {
    color: rgba(10, 29, 78, 0.74);
    max-width: 72ch;
    font-size: 1.02rem;
    line-height: 1.78;
    margin-bottom: 1rem;
}

body.about-page-v2 .about-hero-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

body.about-page-v2 .about-hero-actions .btn {
    min-height: 48px;
}

body.about-page-v2 .about-hero-actions .btn-secondary {
    border-color: rgba(255, 255, 255, 0.42);
    color: #fff;
}

body.about-page-v2 .about-hero-actions .btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(217, 73, 131, 0.16);
}

body.about-page-v2 .about-trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

body.about-page-v2 .about-trust-list li {
    border-radius: 999px;
    border: 1px solid rgba(217, 73, 131, 0.26);
    background: rgba(255, 255, 255, 0.62);
    color: rgba(10, 29, 78, 0.84);
    padding: 0.34rem 0.72rem;
    font-size: 0.86rem;
    font-weight: 500;
}

body.about-page-v2 .about-main-v2 section {
    padding: clamp(2.2rem, 4vw, 3.6rem) 0;
}

body.about-page-v2 .about-story-v2 .container,
body.about-page-v2 .about-process-v2 .container,
body.about-page-v2 .about-benefits-v2 .container,
body.about-page-v2 .about-audience-v2 .container,
body.about-page-v2 .about-cta-v2 .container {
    max-width: 1220px;
    padding: 0 1.8rem;
}

body.about-page-v2 .about-story-layout-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.8fr);
    gap: 1rem;
    align-items: stretch;
}

body.about-page-v2 .about-story-content-v2,
body.about-page-v2 .about-story-panel-v2 {
    border: 1px solid #e4dbc9;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,245,236,0.96));
    box-shadow: 0 16px 38px rgba(10, 22, 40, 0.08);
}

body.about-page-v2 .about-story-content-v2 {
    padding: 1.4rem 1.5rem;
}

body.about-page-v2 .about-story-panel-v2 {
    padding: 1.2rem 1.1rem;
}

body.about-page-v2 .about-section-kicker {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: #7b5a28;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.about-page-v2 .about-story-content-v2 h2,
body.about-page-v2 .about-section-head h2,
body.about-page-v2 .about-benefits-copy-v2 h2,
body.about-page-v2 .about-cta-panel-v2 h2 {
    font-size: clamp(1.55rem, 2.5vw, 2.2rem);
    line-height: 1.24;
    margin-bottom: 0.7rem;
}

body.about-page-v2 .about-story-content-v2 p,
body.about-page-v2 .about-story-panel-v2 li,
body.about-page-v2 .about-benefits-copy-v2 p,
body.about-page-v2 .about-stepper-v2 p,
body.about-page-v2 .about-benefits-list-v2 p,
body.about-page-v2 .about-cta-panel-v2 p {
    font-size: 1rem;
    line-height: 1.72;
    color: #4b5563;
}

body.about-page-v2 .about-story-panel-v2 h3 {
    font-family: var(--font-primary);
    font-size: 1.12rem;
    margin: 0 0 0.5rem;
}

body.about-page-v2 .about-story-panel-v2 ul {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.42rem;
}

body.about-page-v2 .about-section-head {
    max-width: 760px;
    margin-bottom: 1.1rem;
}

body.about-page-v2 .about-stepper-v2 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
}

body.about-page-v2 .about-stepper-v2::before {
    content: '';
    position: absolute;
    left: 4%;
    right: 4%;
    top: 26px;
    height: 1px;
    background: linear-gradient(90deg, rgba(217, 73, 131, 0.45), rgba(217, 73, 131, 0.2));
}

body.about-page-v2 .about-stepper-v2 article {
    position: relative;
    padding: 2.6rem 0.85rem 0.95rem;
    border-radius: 14px;
    border: 1px solid #e7dece;
    background: #fff;
    box-shadow: 0 10px 24px rgba(10, 22, 40, 0.06);
}

body.about-page-v2 .about-stepper-v2 article span {
    position: absolute;
    left: 0.8rem;
    top: 0.7rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #dfc48f, #c7a367);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 8px 16px rgba(217, 73, 131, 0.35);
}

body.about-page-v2 .about-stepper-v2 h3 {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

body.about-page-v2 .about-stepper-v2 p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.58;
}

body.about-page-v2 .about-benefits-grid-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

body.about-page-v2 .about-benefits-copy-v2 p {
    margin-bottom: 0;
    max-width: 62ch;
}

body.about-page-v2 .about-benefits-list-v2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

body.about-page-v2 .about-benefits-list-v2 article {
    border-radius: 12px;
    border: 1px solid #e7dece;
    background: #fff;
    padding: 0.85rem;
}

body.about-page-v2 .about-benefits-list-v2 h3 {
    font-family: var(--font-primary);
    font-size: 1.02rem;
    margin: 0 0 0.25rem;
}

body.about-page-v2 .about-benefits-list-v2 p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.56;
}

body.about-page-v2 .about-audience-tags-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.58rem;
}

body.about-page-v2 .about-audience-tags-v2 span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.45rem 0.78rem;
    border: 1px solid #e4dbc9;
    border-radius: 999px;
    background: #fff;
    color: #334155;
    font-size: 0.94rem;
    font-weight: 500;
}

body.about-page-v2 .about-cta-panel-v2 {
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2.2rem);
    background:
        radial-gradient(circle at 20% 0%, rgba(217, 73, 131, 0.28), transparent 35%),
        linear-gradient(132deg, #f7f1e6 0%, #ecdeca 60%, #f9f5ee 100%);
    box-shadow: 0 22px 46px rgba(10, 29, 78, 0.14);
    text-align: center;
}

body.about-page-v2 .about-cta-panel-v2 .about-section-kicker {
    color: #7a5a28;
}

body.about-page-v2 .about-cta-panel-v2 h2 {
    color: var(--primary);
    max-width: 22ch;
    margin: 0 auto 0.65rem;
}

body.about-page-v2 .about-cta-panel-v2 p {
    color: rgba(10, 29, 78, 0.74);
    max-width: 68ch;
    margin: 0 auto 1rem;
}

@media (max-width: 1024px) {
    body.about-page-v2 .about-story-layout-v2,
    body.about-page-v2 .about-benefits-grid-v2 {
        grid-template-columns: 1fr;
    }

    body.about-page-v2 .about-stepper-v2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.about-page-v2 .about-stepper-v2::before {
        content: none;
    }
}

@media (max-width: 768px) {
    body.about-page-v2 .about-hero-v2 .hero-container,
    body.about-page-v2 .about-story-v2 .container,
    body.about-page-v2 .about-process-v2 .container,
    body.about-page-v2 .about-benefits-v2 .container,
    body.about-page-v2 .about-audience-v2 .container,
    body.about-page-v2 .about-cta-v2 .container {
        padding: 0 1.1rem;
    }

    body.about-page-v2 .hero.about-hero-v2 {
        min-height: auto;
        padding-top: calc(var(--header-offset) + 0.9rem);
        padding-bottom: 1.8rem;
    }

    body.about-page-v2 .about-hero-v2 h1 {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
    }

    body.about-page-v2 .about-hero-actions {
        flex-direction: column;
    }

    body.about-page-v2 .about-hero-actions .btn {
        width: 100%;
    }

    body.about-page-v2 .about-stepper-v2,
    body.about-page-v2 .about-benefits-list-v2 {
        grid-template-columns: 1fr;
    }
}

body.service-hub main > section:nth-of-type(2) {
    position: relative;
    overflow: hidden;
}

body.service-hub main > section:nth-of-type(2)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(217, 73, 131, 0.2), transparent 45%);
    pointer-events: none;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== CONTAINER & SECTIONS ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--spacing-2xl) 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.section-desc {
    color: var(--medium-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 auto;
}

/* Decorative Line */
.section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    margin: var(--spacing-md) auto 0;
    border-radius: var(--radius-full);
}

/* ===== CARDS - GLASSMORPHISM ===== */
.card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
    background-size: 200% auto;
    animation: shimmer 3s ease infinite;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

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

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl), var(--shadow-gold);
    border-color: rgba(217, 73, 131, 0.3);
}

.card-white {
    background: var(--white);
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow-md);
}

.card-white:hover {
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(217, 73, 131, 0.1) 0%, rgba(217, 73, 131, 0.05) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    font-size: 2rem;
    transition: all var(--transition-normal);
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.card:hover .card-icon svg,
.card:hover .card-icon span {
    color: var(--white);
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

.card-text {
    color: var(--medium-gray);
    font-size: 0.975rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.card-link {
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.card-link:hover {
    color: var(--accent-dark);
    gap: 0.75rem;
}

/* ===== GRID LAYOUTS ===== */
.grid {
    display: grid;
    gap: var(--spacing-lg);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--off-white);
}

.signature-strip {
    padding: var(--spacing-lg) 2rem;
    background:
        radial-gradient(circle at 10% 0%, rgba(217, 73, 131, 0.2), transparent 34%),
        linear-gradient(180deg, #f3eee4 0%, var(--off-white) 100%);
}

.signature-items {
    border: 1px solid #e5ddce;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(251,246,238,0.92));
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    overflow: visible;
    padding: 0.75rem;
}

.signature-item {
    display: grid;
    gap: 0.48rem;
    align-content: start;
    text-align: left;
    padding: 0.9rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(217, 73, 131, 0.2);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.signature-item:hover {
    transform: translateY(-2px);
    border-color: rgba(217, 73, 131, 0.4);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.signature-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #7f612c;
    background: linear-gradient(180deg, rgba(217, 73, 131, 0.2), rgba(217, 73, 131, 0.08));
    border: 1px solid rgba(217, 73, 131, 0.3);
}

.signature-title {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.04rem;
    line-height: 1.3;
    color: var(--primary);
}

.signature-note {
    display: block;
    font-size: 0.83rem;
    line-height: 1.45;
    color: #556072;
}

.atelier-section {
    background: linear-gradient(180deg, var(--off-white) 0%, #f7f1e6 100%);
}

.atelier-grid {
    align-items: stretch;
}

.atelier-card,
.atelier-highlight {
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.atelier-card {
    background: linear-gradient(180deg, #ffffff 0%, #faf4ea 100%);
    border: 1px solid #e7dcc8;
    position: relative;
    overflow: hidden;
}

.atelier-card::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #edd6ab);
}

.atelier-list {
    list-style: none;
    margin: var(--spacing-md) 0 0;
    display: grid;
    gap: var(--spacing-sm);
}

.atelier-list li {
    color: var(--medium-gray);
    position: relative;
    padding: 0.58rem 0.68rem 0.58rem 1.55rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(217, 73, 131, 0.18);
}

.atelier-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.atelier-highlight {
    background:
        radial-gradient(circle at 85% 0%, rgba(217, 73, 131, 0.16), transparent 35%),
        linear-gradient(135deg, #f6efe3 0%, #ecdfcb 100%);
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

body.home-page .atelier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    align-items: stretch;
}

body.home-page .atelier-card,
body.home-page .atelier-highlight {
    display: flex;
    flex-direction: column;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    min-height: 0;
    height: 100%;
    align-self: stretch;
    justify-content: flex-start;
}

body.home-page .atelier-section .section-header {
    max-width: 620px;
    margin-bottom: 1rem;
}

body.home-page .atelier-section .section-header h2 {
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    margin-bottom: 0.45rem;
}

body.home-page .atelier-section .section-desc {
    font-size: 0.97rem;
    line-height: 1.62;
    max-width: 60ch;
}

body.home-page .atelier-card h3,
body.home-page .atelier-highlight h3 {
    font-size: 1.08rem;
    margin-bottom: 0.38rem;
}

body.home-page .atelier-list {
    margin-top: 0.45rem;
    gap: 0.42rem;
    grid-template-columns: 1fr;
    align-items: start;
    flex: 1;
    align-content: start;
}

body.home-page .atelier-list li {
    padding: 0.5rem 0.58rem 0.5rem 1.12rem;
    font-size: 0.88rem;
    line-height: 1.35;
    min-height: 52px;
}

body.home-page .atelier-list li::before {
    width: 6px;
    height: 6px;
    left: 0.45rem;
    top: 0.72rem;
}

.atelier-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(217, 73, 131, 0.35), transparent 55%);
}

.atelier-highlight > * {
    position: relative;
    z-index: 1;
}

.atelier-highlight-label {
    display: inline-block;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 600;
}

.atelier-highlight h3 {
    color: var(--primary);
}

.atelier-highlight p {
    color: rgba(10, 29, 78, 0.78);
    max-width: none;
}

.atelier-metrics {
    display: grid;
    gap: var(--spacing-sm);
}

.atelier-metrics strong {
    display: block;
    color: var(--accent-dark);
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.atelier-metrics span {
    color: rgba(10, 29, 78, 0.68);
    font-size: 0.9rem;
}

.services-section .card {
    background: var(--white);
    border: 1px solid var(--light-gray);
}

/* ===== CHAIR SERVICES - DARK ===== */
.chair-services {
    background:
        radial-gradient(circle at 8% 8%, rgba(217, 73, 131, 0.12), transparent 30%),
        linear-gradient(135deg, #f9f4eb 0%, #f3eadc 50%, #fbf8f0 100%);
    position: relative;
    overflow: hidden;
}

.chair-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.chair-services .section-header h2,
.chair-services .section-header .section-subtitle {
    color: var(--primary);
}

.chair-services .section-desc {
    color: rgba(10, 29, 78, 0.68);
}

.chair-services .card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(217, 73, 131, 0.2);
}

.chair-services .card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(217, 73, 131, 0.3);
}

.chair-services .card-title {
    color: var(--primary);
}

.chair-services .card-text {
    color: rgba(10, 29, 78, 0.68);
}

/* ===== WHY CHOOSE US ===== */
.why-us {
    background: var(--off-white);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-lg);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    color: var(--medium-gray);
    font-size: 1rem;
    font-weight: 500;
}

/* ===== PROCESS SECTION - TIMELINE ===== */
.process-section {
    background: var(--cream);
}

.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xl) 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--accent-light), var(--accent));
    border-radius: var(--radius-full);
}

.process-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.process-item:nth-child(odd) {
    flex-direction: row;
}

.process-item:nth-child(even) {
    flex-direction: row-reverse;
}

.process-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow-gold);
    z-index: 2;
    position: relative;
}

.process-content {
    flex: 1;
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: 0 var(--spacing-lg);
    transition: all var(--transition-normal);
}

.process-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.process-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.process-content p {
    margin: 0;
    font-size: 0.95rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--off-white);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--accent);
    opacity: 0.15;
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
}

.author-name {
    font-weight: 600;
    color: var(--primary);
}

.author-location {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.stars {
    color: var(--accent);
    margin-bottom: var(--spacing-sm);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background:
        radial-gradient(circle at 16% 0%, rgba(217, 73, 131, 0.15), transparent 34%),
        linear-gradient(135deg, #f7f2e9 0%, #efe4d2 50%, #f8f3ea 100%);
    padding: var(--spacing-3xl) 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(10, 29, 78, 0.08) 0%, transparent 50%);
    opacity: 0.45;
}

.cta-section h2 {
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(10, 29, 78, 0.76);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    position: relative;
    z-index: 1;
}

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

.faq-item {
    margin-bottom: var(--spacing-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--light-gray);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    font: inherit;
    padding: var(--spacing-md) var(--spacing-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-md);
    color: var(--medium-gray);
    line-height: 1.8;
}

body.service-detail .faq-container {
    display: grid;
    gap: 0.7rem;
    margin-top: 0.55rem;
}

body.service-detail .faq-item {
    margin: 0;
    border-radius: 14px;
    border: 1px solid rgba(217, 73, 131, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 233, 0.88));
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

body.service-detail .faq-item:hover {
    border-color: rgba(217, 73, 131, 0.45);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

body.service-detail .faq-question {
    padding: 0.92rem 1rem;
    gap: 0.9rem;
}

body.service-detail .faq-question h4 {
    margin: 0;
    font-size: 0.99rem;
    font-weight: 600;
    line-height: 1.4;
    color: #243041;
}

body.service-detail .faq-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(217, 73, 131, 0.16);
    border: 1px solid rgba(217, 73, 131, 0.35);
    color: #7a5a28;
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
}

body.service-detail .faq-item.active .faq-icon {
    transform: rotate(45deg);
}

body.service-detail .faq-answer p {
    margin: 0;
    padding: 0 1rem 1rem;
    font-size: 0.94rem;
    line-height: 1.72;
    color: #475569;
}

/* ===== FOOTER - KALITELI ===== */
footer {
    background:
        radial-gradient(circle at 10% 0%, rgba(217, 73, 131, 0.12), transparent 28%),
        linear-gradient(180deg, #f8f3e9 0%, #f1e7d8 100%);
    color: var(--primary);
    padding: var(--spacing-2xl) 2rem var(--spacing-lg);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f8f6f0' fill-opacity='1' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,261.3C960,256,1056,224,1152,197.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'/%3E%3C/svg%3E") no-repeat top center;
    background-size: cover;
    transform: rotate(180deg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-xl);
    max-width: 1400px;
    margin: 0 auto var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
    border-radius: var(--radius-full);
}

.footer-section p {
    color: rgba(10, 29, 78, 0.72);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section li {
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    color: rgba(10, 29, 78, 0.74);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(217, 73, 131, 0.14);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.footer-contact-text {
    flex: 1;
}

.footer-contact-label {
    font-size: 0.8rem;
    color: rgba(10, 29, 78, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    display: block;
}

.footer-contact-value {
    color: var(--primary);
    font-weight: 500;
}

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

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

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(217, 73, 131, 0.22);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(10, 29, 78, 0.78);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(10, 29, 78, 0.12);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: rgba(10, 29, 78, 0.58);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-bottom a {
    color: rgba(10, 29, 78, 0.58);
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* ===== STICKY WHATSAPP BUTTON ===== */
.sticky-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    z-index: var(--z-toast);
    transition: all var(--transition-normal);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.sticky-whatsapp svg {
    width: 30px;
    height: 30px;
}

.mobile-lead-bar {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: max(0.8rem, env(safe-area-inset-bottom));
    z-index: 520;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    padding: 0.55rem;
    border-radius: 14px;
    border: 1px solid rgba(217, 73, 131, 0.34);
    background: rgba(255, 251, 246, 0.96);
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.18);
    backdrop-filter: blur(10px);
}

.mobile-lead-bar .btn {
    width: 100%;
    margin: 0;
    padding: 0.74rem 0.76rem;
    font-size: 0.86rem;
    min-height: 42px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translate(0, 0) !important;
}

.fade-up { transform: translateY(30px); }
.fade-left { transform: translateX(-30px); }
.fade-right { transform: translateX(30px); }
.scale-in { transform: scale(0.9); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: var(--spacing-md) 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--accent);
}

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

.breadcrumb span {
    color: var(--medium-gray);
}

.breadcrumb-separator {
    color: var(--border-color);
}

/* ===== FORMS ===== */
input, textarea, select {
    font-family: var(--font-primary);
    font-size: 1rem;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    background: var(--white);
    width: 100%;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(217, 73, 131, 0.1);
}

label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mt-2xl { margin-top: var(--spacing-2xl); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mb-2xl { margin-bottom: var(--spacing-2xl); }
.text-muted { color: var(--medium-gray); }
.text-accent { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    :root {
        --header-offset: 108px;
    }

    body {
        padding-top: 108px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }

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

    .hero-content {
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta,
    .hero-meta,
    .hero-badges {
        justify-content: center;
    }

    .hero-aside {
        max-width: 640px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-floating-card {
        right: 1rem;
    }

    .signature-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-item,
    .process-item:nth-child(even) {
        flex-direction: row;
    }
    
    .process-content {
        margin: 0 0 0 var(--spacing-lg);
    }

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

    .service-side {
        position: static;
    }

    body.service-detail .service-main .grid.grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1180px) {
    :root {
        --header-offset: 72px;
    }

    body {
        padding-top: 72px;
    }

    .top-bar {
        display: none;
    }

    header {
        z-index: 760;
    }

    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 780;
    }

    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        background: rgba(251, 247, 239, 0.98);
        backdrop-filter: blur(20px);
        gap: 0;
        z-index: 770;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 86px 1.1rem 1.4rem;
    }

    nav.active {
        display: flex;
    }

    nav a {
        color: var(--primary) !important;
        font-size: 1.08rem;
        padding: var(--spacing-sm) 0;
    }

    .nav-dropdown {
        width: 100%;
        flex-direction: column;
        align-items: center;
        margin-top: 0.2rem;
    }

    .nav-dropdown-trigger {
        justify-content: center;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        width: min(94vw, 560px);
        max-height: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        overflow: hidden;
        padding: 0;
        margin-top: 0;
        border: 1px solid rgba(217, 73, 131, 0.28);
        background: rgba(255, 255, 255, 0.92);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
        grid-template-columns: 1fr;
        transition: max-height var(--transition-normal), padding var(--transition-fast), margin-top var(--transition-fast);
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        max-height: 0;
        padding: 0;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: min(68vh, 560px);
        padding: 0.5rem;
        margin-top: 0.4rem;
        overflow: auto;
    }

    .nav-dropdown-menu a {
        font-size: 0.9rem;
        padding: 0.56rem 0.62rem;
    }

    .dropdown-all-link {
        grid-column: auto;
    }

    nav a::after {
        display: none;
    }

    .nav-cta {
        margin-top: var(--spacing-md);
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    body.has-mobile-lead-bar {
        padding-bottom: 5.4rem;
    }

    body {
        padding-top: 72px;
    }

    .top-bar {
        display: none;
    }

    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.35rem; }
    
    nav a {
        font-size: 1rem;
    }
    
    nav a::after {
        display: none;
    }
    
    .nav-cta {
        margin-top: var(--spacing-md);
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    section {
        padding: var(--spacing-xl) 1rem;
    }
    
    .hero {
        padding: var(--spacing-2xl) 1.5rem;
        min-height: 74vh;
    }

    body.inner-page .hero {
        min-height: auto;
    }

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

    body.inner-page .page-content-shell {
        padding: var(--spacing-lg);
    }

    body.service-page .hero {
        min-height: auto;
        padding-top: calc(var(--header-offset) + 0.3rem);
        padding-bottom: 0.85rem;
    }

    body.service-page .hero .hero-container {
        max-width: 100%;
    }

    body.service-page .hero h1 {
        font-size: clamp(1.7rem, 7vw, 2.1rem);
        line-height: 1.2;
    }

    body.service-page .hero p {
        font-size: 1rem;
        line-height: 1.55;
    }

    body.service-detail .service-main .grid.grid-2,
    body.service-detail .service-main .grid.grid-3 {
        grid-template-columns: 1fr;
    }

    body.service-detail .service-reading p,
    body.service-detail .service-reading li {
        max-width: none;
    }

    .service-toc {
        padding: var(--spacing-sm);
    }

    .service-toc-list li a {
        font-size: 0.9rem;
    }

    .service-toc {
        padding: 0.8rem 0.85rem;
    }

    .service-toc-title {
        font-size: 0.95rem;
    }

    .service-toc-list li a {
        padding: 0.45rem 0.48rem 0.45rem 2.2rem;
        font-size: 0.86rem;
    }

    .service-toc-list li::before {
        left: 0.62rem;
        width: 1.2rem;
        font-size: 0.64rem;
    }

    .service-insight-grid {
        grid-template-columns: 1fr;
    }

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

    .service-side {
        position: static;
    }

    .service-hero-badges {
        gap: 0.34rem;
    }

    .service-hero-badges span {
        font-size: 0.7rem;
        padding: 0.22rem 0.5rem;
    }

    body.service-detail .faq-question {
        padding: 0.82rem 0.86rem;
        gap: 0.62rem;
    }

    body.service-detail .faq-question h4 {
        font-size: 0.92rem;
    }

    body.service-detail .faq-icon {
        width: 27px;
        height: 27px;
        min-width: 27px;
        font-size: 0.9rem;
    }

    body.service-detail .faq-answer p {
        padding: 0 0.86rem 0.86rem;
        font-size: 0.9rem;
    }

    body.service-detail .page-content-shell,
    body.service-detail main section .container .breadcrumb + div {
        padding: 1rem;
    }

    body.service-detail .service-main h2 {
        padding-left: 0.65rem;
        margin-top: 1.2rem;
    }

    body.service-detail .service-main h2::before {
        width: 3px;
    }

    .breadcrumb {
        flex-wrap: wrap;
        row-gap: 0.3rem;
        column-gap: 0.35rem;
    }

    .breadcrumb a,
    .breadcrumb span {
        font-size: 0.8rem;
    }

    .region-toolbar {
        padding: 0.75rem;
    }

    .region-toolbar-top {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .region-result-count {
        white-space: normal;
    }

    .region-tab {
        font-size: 0.76rem;
        padding: 0.32rem 0.58rem;
    }

    .region-tab-icon {
        min-width: 1.15rem;
        height: 1.15rem;
        font-size: 0.56rem;
    }

    .region-tab-count {
        min-width: 1.2rem;
        height: 1.2rem;
        font-size: 0.65rem;
    }

    body.home-page .trust-inline {
        grid-template-columns: 1fr;
        gap: 0.45rem;
        margin-bottom: 0.9rem;
    }

    body.home-page .trust-inline-item {
        font-size: 0.82rem;
        padding: 0.58rem 0.62rem;
    }

    body.about-page .about-metric-card {
        padding: 0.7rem;
    }

    body.about-page .about-metric-card strong {
        font-size: 1.1rem;
    }

    body.about-page .about-story-layout {
        grid-template-columns: 1fr;
    }

    body.about-page .about-story-card,
    body.about-page .about-story-side {
        padding: 0.72rem;
    }

    body.about-page .about-cta-panel {
        padding: 0.95rem;
    }

    body.about-page .hero {
        min-height: 22vh;
    }

    body.about-page .page-content-shell {
        padding: 0.72rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-badges {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.45rem 0.8rem;
    }

    body.home-page .container {
        padding: 0 1.1rem;
    }

    body.home-page .hero {
        min-height: 76vh;
    }

    body.home-page main section {
        padding: 2.3rem 1.1rem;
    }

    body.home-page .section-header {
        margin-bottom: 1.3rem;
    }

    body.home-page .grid.grid-3 > .card {
        padding: 1rem;
    }

    body.home-page .atelier-grid {
        grid-template-columns: 1fr;
    }

    body.home-page .atelier-list {
        grid-template-columns: 1fr;
    }

    body.home-page .process-timeline {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    body.home-page .process-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 0.95rem;
    }

    body.home-page .process-content {
        padding: 0.72rem 0.78rem;
        margin-left: 0.55rem;
    }

    body.home-page .process-content h3 {
        font-size: 0.98rem;
    }

    body.home-page .process-content p {
        font-size: 0.86rem;
        line-height: 1.5;
    }

    .hero-cta {
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 0.74rem 1.1rem;
        font-size: 0.9rem;
        min-height: 42px;
    }

    .hero-conversion-note {
        text-align: center;
        font-size: 0.82rem;
    }

    .lead-conversion-band {
        padding: 0.95rem;
        border-radius: var(--radius-lg);
    }

    .lead-conversion-band h3 {
        font-size: 1.15rem;
    }

    .lead-conversion-band p {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .lead-metric {
        padding: 0.65rem 0.72rem;
    }

    .lead-metric strong {
        font-size: 0.96rem;
    }

    .lead-metric span {
        font-size: 0.8rem;
    }

    .lead-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .lead-actions .btn {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.72rem 0.9rem;
    }

    .service-fit-block {
        padding: 0.82rem;
        border-radius: var(--radius-lg);
    }

    .service-fit-block h3 {
        font-size: 1.02rem;
    }

    .service-fit-tags span {
        font-size: 0.77rem;
        padding: 0.3rem 0.58rem;
    }

    .service-layout {
        gap: 0.75rem;
    }

    .service-main {
        gap: 0.9rem;
    }

    .service-side-card .btn {
        font-size: 0.85rem;
        padding: 0.66rem 0.85rem;
    }

    body.service-detail .service-reading p,
    body.service-detail .service-reading li {
        font-size: 0.95rem;
        line-height: 1.7;
        word-break: break-word;
    }

    h1, h2, h3, h4, p, li, a {
        overflow-wrap: anywhere;
    }

    .hero-meta {
        justify-content: center;
    }

    .hero-showcase {
        padding: var(--spacing-md);
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-floating-card {
        position: static;
        width: 100%;
        margin-top: 0.8rem;
    }

    .signature-strip {
        padding: var(--spacing-md) 1.5rem;
    }

    .signature-items {
        grid-template-columns: 1fr;
    }

    .signature-item {
        padding: 0.85rem;
    }

    .atelier-card,
    .atelier-highlight {
        padding: var(--spacing-lg);
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .sticky-whatsapp {
        bottom: 5.4rem;
        right: 1.5rem;
        width: 54px;
        height: 54px;
    }
    
    .btn {
        width: 100%;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }

    .mobile-lead-bar {
        display: grid;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }
    
    .header-container {
        padding: 0.8rem 1rem;
    }

    .container {
        padding: 0 0.82rem;
        max-width: 100%;
    }

    section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .brand-logo-image {
        height: 64px;
    }

    footer .brand-logo-image {
        height: 38px;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .card {
        padding: var(--spacing-md);
    }

    .nav-dropdown-menu {
        width: 100%;
    }

    body.service-detail .faq-question h4 {
        font-size: 0.88rem;
    }
}

/* ===== CONTACT PAGE - PREMIUM MODERN ===== */
body.contact-page .hero h1 {
    font-size: clamp(1.9rem, 3.8vw, 2.7rem);
}

body.contact-page .hero p {
    font-size: 1.02rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 1rem;
}

.contact-panel {
    border: 1px solid rgba(217, 73, 131, 0.22);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 243, 233, 0.92));
    box-shadow: 0 18px 40px rgba(10, 29, 78, 0.08);
    padding: 1.2rem;
}

.contact-panel h2 {
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
    margin-bottom: 0.45rem;
}

.contact-lead {
    margin-bottom: 0.85rem;
    color: #5b6473;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(212, 175, 55, 0.26);
    border-radius: 14px;
    padding: 0.9rem;
    box-shadow: 0 10px 22px rgba(10, 29, 78, 0.06);
    transition: all var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(10, 29, 78, 0.11);
    border-color: rgba(217, 73, 131, 0.45);
}

.contact-card strong {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7b5a28;
    margin-bottom: 0.28rem;
}

.contact-card p {
    margin: 0;
    max-width: 100%;
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.55;
}

.contact-phone {
    font-family: var(--font-display);
    font-size: clamp(1.38rem, 2.3vw, 1.7rem);
    color: var(--primary);
}

.contact-cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: clamp(1.3rem, 2.6vw, 1.9rem);
    background:
        radial-gradient(circle at 88% 8%, rgba(244, 196, 48, 0.26), transparent 34%),
        radial-gradient(circle at 12% 100%, rgba(217, 73, 131, 0.2), transparent 36%),
        linear-gradient(138deg, #0a1d4e 0%, #132f72 52%, #1d3f8f 100%);
    box-shadow: 0 26px 52px rgba(10, 29, 78, 0.24);
}

.contact-cta-box h3,
.contact-cta-box p {
    color: #fff;
}

.contact-cta-box p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-mini-list {
    display: grid;
    gap: 0.45rem;
    margin: 0 0 1rem;
}

.contact-mini-list li {
    list-style: none;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 1.05rem;
    position: relative;
}

.contact-mini-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffd782;
    position: absolute;
    left: 0;
    top: 0.55rem;
}

.contact-info-strip {
    margin-top: 0.85rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.contact-info-chip {
    border-radius: 12px;
    border: 1px solid rgba(217, 73, 131, 0.2);
    background: rgba(255, 255, 255, 0.78);
    padding: 0.62rem 0.68rem;
}

.contact-info-chip strong {
    display: block;
    font-size: 0.73rem;
    text-transform: uppercase;
    color: #7b5a28;
    letter-spacing: 0.08em;
}

.contact-info-chip span {
    display: block;
    margin-top: 0.18rem;
    color: #334155;
    font-size: 0.9rem;
}

.contact-faq-quick {
    margin-top: 1rem;
}

.contact-faq-quick h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 0.55rem;
}

.contact-faq-list {
    display: grid;
    gap: 0.45rem;
}

.contact-faq-pill {
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    background: rgba(255, 255, 255, 0.84);
    padding: 0.58rem 0.72rem;
    font-size: 0.9rem;
    color: #475569;
}

/* ===== FAQ PAGE - PREMIUM MODERN ===== */
body.faq-page .hero h1 {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
}

body.faq-page .hero p {
    font-size: 1.02rem;
}

.faq-page h2 {
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
}

.faq-page h3 {
    font-size: clamp(1.02rem, 1.9vw, 1.25rem);
}

.faq-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-intro-card,
.faq-help-card {
    border-radius: 18px;
    border: 1px solid rgba(217, 73, 131, 0.22);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 243, 233, 0.92));
    box-shadow: 0 14px 34px rgba(10, 29, 78, 0.08);
    padding: 1.2rem;
}

.faq-intro-card h2,
.faq-help-card h3 {
    margin-bottom: 0.45rem;
    font-size: clamp(1.25rem, 2.3vw, 1.75rem);
}

.faq-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.8rem;
}

.faq-tag {
    border-radius: 999px;
    border: 1px solid rgba(217, 73, 131, 0.28);
    background: rgba(255, 255, 255, 0.8);
    color: #4b5563;
    font-size: 0.82rem;
    padding: 0.35rem 0.66rem;
}

.faq-list-shell {
    border: 1px solid rgba(217, 73, 131, 0.22);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 244, 236, 0.93));
    box-shadow: 0 20px 42px rgba(10, 29, 78, 0.1);
    padding: 1rem;
}

body.faq-page .faq-item {
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(10, 29, 78, 0.06);
    margin-bottom: 0.68rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

body.faq-page .faq-item:last-child {
    margin-bottom: 0;
}

body.faq-page .faq-question {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247, 242, 232, 0.94)) !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    padding: 0.92rem 1rem !important;
}

body.faq-page .faq-question h3,
body.faq-page .faq-question h4 {
    font-size: clamp(0.97rem, 2vw, 1.07rem) !important;
    line-height: 1.4;
}

body.faq-page .faq-answer p {
    padding: 0.8rem 1rem 1rem !important;
    font-size: 0.95rem;
    line-height: 1.68;
    margin: 0;
}

body.faq-page .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(10, 29, 78, 0.11);
    border-color: rgba(217, 73, 131, 0.45);
}

.faq-bottom-cta {
    margin-top: 1rem;
    border-radius: 20px;
    padding: clamp(1.2rem, 2.5vw, 1.8rem);
    text-align: center;
    background:
        radial-gradient(circle at 90% 8%, rgba(244, 196, 48, 0.22), transparent 35%),
        radial-gradient(circle at 12% 100%, rgba(217, 73, 131, 0.2), transparent 36%),
        linear-gradient(140deg, #0a1d4e 0%, #132f72 52%, #1d3f8f 100%);
    box-shadow: 0 26px 54px rgba(10, 29, 78, 0.22);
}

.faq-bottom-cta h2,
.faq-bottom-cta p {
    color: #fff;
}

.faq-bottom-cta h2 {
    font-size: clamp(1.3rem, 2.3vw, 1.75rem);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.faq-bottom-cta p {
    margin: 0 auto 1rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 64ch;
    font-size: 0.96rem;
}

@media (max-width: 980px) {
    .contact-layout,
    .faq-top-grid,
    .contact-card-grid,
    .contact-info-strip {
        grid-template-columns: 1fr;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    header, footer, .nav-cta, .btn, .sticky-whatsapp {
        display: none !important;
    }
    
    body {
        background-color: var(--white);
    }
    
    a {
        text-decoration: underline;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

/* ===== ABOUT PAGE V3 - HIGH CONVERSION LANDING ===== */
body.about-page-v3 {
    --about3-radius: 20px;
    --about3-shadow-soft: 0 14px 32px rgba(10, 22, 40, 0.08);
    --about3-shadow-strong: 0 24px 52px rgba(6, 11, 24, 0.35);
    background:
        radial-gradient(circle at 12% 0%, rgba(217, 73, 131, 0.16), transparent 34%),
        radial-gradient(circle at 84% 6%, rgba(10, 22, 40, 0.08), transparent 32%),
        linear-gradient(180deg, #f8f5ee 0%, #f4efe5 52%, #f6f1e8 100%);
}

body.about-page-v3 .hero .hero-container {
    max-width: none;
    text-align: left;
}

body.about-page-v3 main {
    margin-top: 0;
}

body.about-page-v3 main > section:first-of-type {
    padding-top: clamp(3.75rem, 7vw, 6rem);
}

body.about-page-v3 .about3-main {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(circle at 8% 12%, rgba(217, 73, 131, 0.08), transparent 38%),
        radial-gradient(circle at 90% 76%, rgba(10, 33, 64, 0.06), transparent 40%),
        linear-gradient(180deg, #f9f6ef 0%, #f4efe4 100%);
}

body.about-page-v3 .container {
    max-width: 1200px;
    padding: 0 1.2rem;
}

body.about-page-v3 .about3-section {
    padding: clamp(2.6rem, 5.2vw, 4.3rem) 0;
}

body.about-page-v3 .about3-section .container {
    position: relative;
    z-index: 1;
}

body.about-page-v3 .about3-section:nth-of-type(even) {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(248, 242, 231, 0.65));
}

body.about-page-v3 .about3-section:nth-of-type(even)::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(10, 22, 40, 0.07) 0.45px, transparent 0.45px);
    background-size: 3px 3px;
    opacity: 0.1;
    pointer-events: none;
}

body.about-page-v3 .about3-section-kicker {
    display: inline-flex;
    margin-bottom: 0.5rem;
    color: #7a5a28;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

body.about-page-v3 .about3-section-head {
    max-width: 760px;
    margin-bottom: 1.45rem;
}

body.about-page-v3 .about3-section-head h2,
body.about-page-v3 .about3-about-copy h2,
body.about-page-v3 .about3-cta-panel h2 {
    font-size: clamp(1.55rem, 2.4vw, 2.35rem);
    line-height: 1.16;
    margin-bottom: 0.62rem;
}

body.about-page-v3 .about3-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: auto;
    padding-top: calc(var(--header-offset) + 1.2rem);
    padding-bottom: 3.2rem;
    background:
        radial-gradient(circle at 92% -8%, rgba(255, 255, 255, 0.16), transparent 32%),
        radial-gradient(circle at 12% 10%, rgba(217, 73, 131, 0.2), transparent 26%),
        radial-gradient(circle at 84% 10%, rgba(217, 73, 131, 0.12), transparent 24%),
        linear-gradient(133deg, #f9f4eb 0%, #eee0cc 56%, #f8f2e7 100%);
}

body.about-page-v3 .about3-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 20% -10%, rgba(217, 73, 131, 0.28), transparent 30%),
        radial-gradient(circle at 82% -15%, rgba(255, 255, 255, 0.06), transparent 28%);
}

body.about-page-v3 .about3-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.2;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.28) 0.6px, transparent 0.6px);
    background-size: 3px 3px;
    pointer-events: none;
}

body.about-page-v3 .hero.about3-hero .breadcrumb.hero-breadcrumb {
    justify-content: flex-start;
    margin: 0 0 0.8rem;
    padding: 0;
}

body.about-page-v3 .hero.about3-hero .breadcrumb.hero-breadcrumb a,
body.about-page-v3 .hero.about3-hero .breadcrumb.hero-breadcrumb span {
    color: rgba(10, 29, 78, 0.82);
}

body.about-page-v3 .about3-hero-grid {
    display: grid;
    gap: 1.25rem;
    align-items: stretch;
}

body.about-page-v3 .about3-kicker {
    display: inline-flex;
    margin-bottom: 0.95rem;
    padding: 0.3rem 0.64rem;
    border-radius: 10px;
    border: 1px solid rgba(217, 73, 131, 0.28);
    background: rgba(255, 255, 255, 0.58);
    color: rgba(10, 29, 78, 0.86);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.about-page-v3 .about3-hero-content h1 {
    margin-bottom: 0.88rem;
    color: var(--primary);
    font-size: clamp(1.62rem, 3.6vw, 2.7rem);
    line-height: 1.04;
    max-width: 13ch;
    letter-spacing: -0.02em;
}

body.about-page-v3 .about3-hero-content h1 span {
    display: block;
}

body.about-page-v3 .about3-hero-content p {
    color: rgba(10, 29, 78, 0.76);
    max-width: 58ch;
    font-size: 1rem;
    line-height: 1.74;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1rem;
}

body.about-page-v3 .about3-actions {
    display: flex;
    flex-direction: column;
    gap: 0.64rem;
    margin-bottom: 0.95rem;
}

body.about-page-v3 .about3-actions .btn {
    width: 100%;
}

body.about-page-v3 .about3-actions .btn-primary {
    background: linear-gradient(135deg, #e5bf7d 0%, #c89f62 55%, #b98b51 100%);
    color: #111827;
    box-shadow: 0 14px 30px rgba(217, 73, 131, 0.42);
}

body.about-page-v3 .about3-actions .btn-primary:hover {
    transform: translateY(-3px) scale(1.035);
    box-shadow: 0 22px 42px rgba(217, 73, 131, 0.58);
}

body.about-page-v3 .about3-actions .btn-secondary {
    border-color: rgba(10, 29, 78, 0.24);
    color: var(--primary);
}

body.about-page-v3 .about3-actions .btn-secondary:hover {
    border-color: var(--accent-dark);
    background: rgba(217, 73, 131, 0.12);
}

body.about-page-v3 .about3-badges {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
}

body.about-page-v3 .about3-badges li {
    border-radius: 10px;
    padding: 0.26rem 0.5rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(217, 73, 131, 0.24);
    color: rgba(10, 29, 78, 0.86);
    font-size: 0.74rem;
    letter-spacing: 0.02em;
}

body.about-page-v3 .about3-badges li:hover {
    border-color: rgba(217, 73, 131, 0.55);
    background: rgba(217, 73, 131, 0.12);
}

body.about-page-v3 .about3-hero-visual {
    border-radius: var(--about3-radius);
    border: 1px solid transparent;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.82), rgba(255, 245, 232, 0.66)) padding-box,
        linear-gradient(135deg, rgba(217, 73, 131, 0.58), rgba(255, 255, 255, 0.52), rgba(217, 73, 131, 0.36)) border-box;
    box-shadow: 0 20px 40px rgba(10, 29, 78, 0.14), inset 0 0 30px rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 1rem;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body.about-page-v3 .about3-visual-photo {
    position: relative;
    min-height: 220px;
    border-radius: calc(var(--about3-radius) - 4px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    overflow: hidden;
    margin-bottom: 0.76rem;
}

body.about-page-v3 .about3-visual-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

body.about-page-v3 .about3-photo-badge {
    position: absolute;
    left: 0.65rem;
    bottom: 0.65rem;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.24rem 0.6rem;
    border-radius: 999px;
    background: rgba(10, 29, 78, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

body.about-page-v3 .about3-visual-photo:hover {
    transform: translateY(-2px);
}

body.about-page-v3 .about3-visual-main {
    border-radius: calc(var(--about3-radius) - 6px);
    border: 1px solid rgba(217, 73, 131, 0.22);
    background: rgba(255, 255, 255, 0.72);
    padding: 1rem;
    margin-bottom: 0.8rem;
}

body.about-page-v3 .about3-visual-main span {
    display: inline-flex;
    margin-bottom: 0.45rem;
    color: #8a6733;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.about-page-v3 .about3-visual-main strong {
    display: block;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.42rem;
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

body.about-page-v3 .about3-visual-main p {
    margin: 0;
    color: rgba(10, 29, 78, 0.72);
    font-size: 0.92rem;
    line-height: 1.58;
}

body.about-page-v3 .about3-visual-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.56rem;
}

body.about-page-v3 .about3-visual-mini-grid > div {
    border-radius: calc(var(--about3-radius) - 8px);
    border: 1px solid rgba(217, 73, 131, 0.2);
    background: rgba(255, 255, 255, 0.72);
    padding: 0.64rem;
}

body.about-page-v3 .about3-visual-mini-grid strong {
    display: block;
    color: var(--primary);
    font-size: 0.98rem;
    margin-bottom: 0.15rem;
}

body.about-page-v3 .about3-visual-mini-grid span {
    color: rgba(10, 29, 78, 0.72);
    font-size: 0.8rem;
}

body.about-page-v3 .about3-about-grid {
    display: block;
}

body.about-page-v3 .about3-about-shell {
    border-radius: calc(var(--about3-radius) + 4px);
    padding: clamp(1.1rem, 2.2vw, 1.6rem);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(248, 241, 230, 0.58));
    box-shadow: 0 20px 40px rgba(10, 22, 40, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: grid;
    gap: 0.95rem;
    grid-template-columns: minmax(0, 1fr);
}

body.about-page-v3 .about3-about-copy {
    border-radius: var(--about3-radius);
    background: linear-gradient(180deg, rgba(251, 246, 236, 0.92) 0%, rgba(246, 239, 223, 0.86) 100%);
    box-shadow: 0 14px 30px rgba(10, 22, 40, 0.1);
    padding: clamp(1.45rem, 2.8vw, 2.1rem);
    width: 100%;
}

body.about-page-v3 .about3-about-copy p {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.72;
}

body.about-page-v3 .about3-highlights {
    display: grid;
    gap: 0.78rem;
    align-content: start;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.about-page-v3 .about3-highlights article {
    border-radius: var(--about3-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(249, 243, 231, 0.7));
    box-shadow: 0 14px 30px rgba(10, 22, 40, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem;
    min-height: 118px;
}

body.about-page-v3 .about3-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(217, 73, 131, 0.26), rgba(217, 73, 131, 0.1));
    color: #6f5222;
    font-size: 1rem;
    margin-bottom: 0.46rem;
}

body.about-page-v3 .about3-highlights h3,
body.about-page-v3 .about3-feature-grid h3,
body.about-page-v3 .about3-stepper h3 {
    font-family: var(--font-primary);
    font-size: 1rem;
    margin-bottom: 0.28rem;
}

body.about-page-v3 .about3-highlights p,
body.about-page-v3 .about3-feature-grid p,
body.about-page-v3 .about3-stepper p {
    margin: 0;
    color: rgba(51, 65, 85, 0.86);
    font-size: 0.92rem;
    line-height: 1.55;
}

body.about-page-v3 .about3-process {
    background: linear-gradient(180deg, #fbf8f2, #f5efe4);
    border-top: 1px solid #ebe2d2;
    border-bottom: 1px solid #ebe2d2;
}

body.about-page-v3 .about3-stepper {
    position: relative;
    display: grid;
    gap: 0.9rem;
}

body.about-page-v3 .about3-stepper article {
    position: relative;
    overflow: hidden;
    border-radius: var(--about3-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(251, 248, 242, 0.72));
    box-shadow: 0 14px 30px rgba(10, 22, 40, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.3rem 1.05rem 1.05rem;
    min-height: 176px;
}

body.about-page-v3 .about3-stepper article::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(217, 73, 131, 0.12), transparent 48%);
    opacity: 0;
    transition: all 300ms ease-out;
    pointer-events: none;
}

body.about-page-v3 .about3-step-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #e2c992, #c7a367);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(217, 73, 131, 0.35);
}

body.about-page-v3 .about3-step-glyph {
    display: inline-flex;
    margin: 0.55rem 0 0.34rem;
    color: #7d5d2a;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

body.about-page-v3 .about3-feature-grid {
    display: grid;
    gap: 0.75rem;
}

body.about-page-v3 .about3-feature-grid article {
    border-radius: var(--about3-radius);
    border: 1px solid rgba(217, 73, 131, 0.2);
    background:
        radial-gradient(circle at 90% 0%, rgba(217, 73, 131, 0.2), transparent 45%),
        linear-gradient(180deg, rgba(255,255,255,0.78), rgba(249,244,233,0.72));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.08rem;
    min-height: 182px;
}

body.about-page-v3 .about3-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.58rem;
}

body.about-page-v3 .about3-chip-list span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    border-radius: 12px;
    border: 1px solid #e3dac8;
    background: #fff;
    padding: 0.42rem 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #344053;
}

body.about-page-v3 .about3-cta-panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--about3-radius);
    background:
        radial-gradient(circle at 22% 0%, rgba(217, 73, 131, 0.34), transparent 35%),
        linear-gradient(135deg, #f8f2e8 0%, #ebdcc7 62%, #f7f1e4 100%);
    box-shadow: 0 24px 50px rgba(10, 29, 78, 0.14), 0 0 40px rgba(217, 73, 131, 0.12);
    padding: clamp(1.7rem, 4vw, 3rem);
    text-align: center;
    border: 1px solid rgba(217, 73, 131, 0.32);
}

body.about-page-v3 .about3-cta-panel::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    right: -80px;
    top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 73, 131, 0.32), transparent 70%);
    pointer-events: none;
}

body.about-page-v3 .about3-cta-panel .about3-section-kicker {
    color: #7a5a28;
}

body.about-page-v3 .about3-cta-panel h2 {
    color: var(--primary);
    max-width: 20ch;
    margin: 0 auto 0.7rem;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

body.about-page-v3 .about3-cta-panel p {
    color: rgba(10, 29, 78, 0.74);
    max-width: 62ch;
    margin: 0 auto 1.25rem;
    font-size: 1rem;
    line-height: 1.74;
}

body.about-page-v3 .about3-cta-panel .btn {
    min-height: 62px;
    padding: 1.12rem 2.7rem;
    font-size: 1.08rem;
}

body.about-page-v3 .about3-cta-panel .btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 36px rgba(255, 255, 255, 0.22);
}

body.about-page-v3 .about3-hero-visual,
body.about-page-v3 .about3-highlights article,
body.about-page-v3 .about3-stepper article,
body.about-page-v3 .about3-feature-grid article,
body.about-page-v3 .about3-chip-list span,
body.about-page-v3 .about3-visual-mini-grid > div,
body.about-page-v3 .about3-about-copy,
body.about-page-v3 .about3-badges li,
body.about-page-v3 .about3-visual-photo {
    transition: all 300ms ease-out;
}

body.about-page-v3 .about3-hero-visual:hover,
body.about-page-v3 .about3-highlights article:hover,
body.about-page-v3 .about3-feature-grid article:hover,
body.about-page-v3 .about3-chip-list span:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(10, 22, 40, 0.14);
}

body.about-page-v3 .about3-stepper article:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 46px rgba(13, 28, 52, 0.2);
    border-color: rgba(217, 73, 131, 0.52);
}

body.about-page-v3 .about3-stepper article:hover::after {
    opacity: 1;
}

body.about-page-v3 .about3-stepper article:hover .about3-step-icon {
    filter: brightness(1.05);
    box-shadow: 0 16px 28px rgba(217, 73, 131, 0.5);
}

body.about-page-v3 .about3-feature-grid article:hover {
    border-color: rgba(217, 73, 131, 0.48);
    box-shadow: 0 18px 34px rgba(13, 28, 52, 0.14), 0 0 0 1px rgba(217, 73, 131, 0.28) inset;
}

body.about-page-v3 .about3-visual-mini-grid > div:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

body.about-page-v3 .about3-chip-list span:hover {
    border-color: rgba(217, 73, 131, 0.5);
    background: #fbf6ec;
    transform: translateY(-2px);
}

@media (min-width: 760px) {
    body.about-page-v3 .container {
        padding: 0 1.6rem;
    }

    body.about-page-v3 .about3-actions {
        flex-direction: row;
    }

    body.about-page-v3 .about3-actions .btn {
        width: auto;
    }

    body.about-page-v3 .about3-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 980px) {
    body.about-page-v3 .about3-about-shell {
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
        gap: 1rem;
        align-items: stretch;
    }

    body.about-page-v3 .about3-hero-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    }

    body.about-page-v3 .about3-stepper {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: stretch;
        padding-top: 1.3rem;
    }

    body.about-page-v3 .about3-stepper::before {
        content: '';
        position: absolute;
        left: 8%;
        right: 8%;
        top: 2.15rem;
        height: 2px;
        background: linear-gradient(90deg, rgba(217, 73, 131, 0.62), rgba(217, 73, 131, 0.22));
    }

    body.about-page-v3 .about3-stepper article {
        padding-top: 2.25rem;
        z-index: 1;
    }

    body.about-page-v3 .about3-step-icon {
        position: absolute;
        top: -0.55rem;
        left: 50%;
        transform: translateX(-50%);
    }

    body.about-page-v3 .about3-step-glyph {
        margin-top: 0;
    }

    body.about-page-v3 .about3-feature-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    body.about-page-v3 .about3-highlights article {
        min-height: 124px;
    }
}

@media (max-width: 979px) {
    body.about-page-v3 .about3-highlights {
        grid-template-columns: 1fr;
    }

    body.about-page-v3 .about3-hero-visual {
        min-height: 0;
    }

    body.about-page-v3 .about3-visual-photo {
        min-height: 180px;
    }

    body.about-page-v3 .about3-stepper {
        padding-left: 0.35rem;
    }

    body.about-page-v3 .about3-stepper::before {
        content: '';
        position: absolute;
        left: 1.08rem;
        top: 0.5rem;
        bottom: 0.5rem;
        width: 1px;
        background: linear-gradient(180deg, rgba(217, 73, 131, 0.45), rgba(217, 73, 131, 0.14));
    }

    body.about-page-v3 .about3-stepper article {
        margin-left: 1.25rem;
        padding-left: 1.1rem;
    }

    body.about-page-v3 .about3-step-icon {
        position: absolute;
        left: -1.8rem;
        top: 1.05rem;
        z-index: 1;
    }
}

/* ===== MOBILE CONSOLIDATED FIXES ===== */
@media (max-width: 1180px) {
    header {
        overflow: visible;
        z-index: 760;
    }

    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 780;
    }

    nav {
        display: none;
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        z-index: 770;
        background: rgba(251, 247, 239, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 86px 1rem 1.25rem;
    }

    nav.active {
        display: flex;
    }
}

@media (max-width: 768px) {
    body,
    body.inner-page,
    body.service-page,
    body.service-detail {
        overflow-x: hidden;
    }

    .container,
    body.inner-page .container,
    body.service-detail .container {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    section,
    body.service-detail section {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    body.inner-page .page-content-shell,
    body.service-detail .page-content-shell {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
        border-radius: 16px;
    }

    body.service-page .hero,
    body.inner-page .hero,
    body.service-detail .hero {
        display: flex;
        min-height: auto;
        margin-top: 0;
        visibility: visible;
        padding-top: calc(var(--header-offset) + 0.45rem);
        padding-bottom: 0.95rem;
    }

    body.service-page .hero .hero-container,
    body.inner-page .hero .hero-container {
        width: 100%;
        max-width: 100%;
    }

    body.service-page .hero h1,
    body.service-detail .hero h1 {
        font-size: clamp(1.75rem, 7vw, 2.2rem);
        line-height: 1.2;
    }

    body.service-page .hero p,
    body.service-detail .hero p {
        font-size: 1rem;
        line-height: 1.58;
    }

    body.service-detail .hero .hero-cta,
    body.service-detail .lead-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.55rem;
        width: 100%;
    }

    body.service-detail .hero .hero-cta .btn,
    body.service-detail .lead-actions .btn,
    body.service-detail .btn.btn-large,
    body.service-detail .btn.btn-small {
        width: 100%;
        max-width: 100%;
        min-height: 42px;
        padding: 0.72rem 0.9rem;
        white-space: normal;
        line-height: 1.35;
        text-align: center;
    }

    body.service-detail .hero p,
    body.service-detail .hero-conversion-note,
    body.service-detail .faq-question h4,
    body.service-detail .faq-answer p,
    body.service-detail .footer-section p,
    body.service-detail .footer-section a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    body.service-detail .lead-conversion-band {
        padding: 0.95rem;
        border-radius: 16px;
    }

    body.service-detail .lead-metrics {
        grid-template-columns: 1fr;
    }

    body.service-detail .service-fit-tags span,
    body.service-hub .service-hero-badges a {
        white-space: normal;
        text-align: left;
    }

    body.service-detail main .container > div[style*="padding: var(--spacing-2xl)"] {
        padding: 1rem !important;
    }
}

@media (max-width: 480px) {
    body.service-detail .hero h1 {
        font-size: clamp(1.56rem, 7.2vw, 1.95rem);
        line-height: 1.2;
    }

    body.service-detail .hero p {
        font-size: 0.98rem;
        line-height: 1.58;
    }
}

/* ===== CHATGPT MOBILE REVIEW FIXES - 2026-04-29 =====
   Amaç: mobilde menüyü daha stabil yapmak, istenmeyen X ikonunu kaldırmak,
   taşma/ızgara sorunlarını azaltmak. Dosya sonunda olduğu için eski tekrar eden
   mobil kuralların üzerine yazar.
*/
@media (max-width: 1180px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    header {
        overflow: visible;
        z-index: 1000;
    }

    .header-container {
        min-height: 72px;
        padding: 0.45rem 1rem;
    }

    .brand-logo-image {
        height: 58px;
        max-width: 180px;
    }

    .mobile-menu-btn {
        width: 44px;
        height: 44px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(10, 29, 78, 0.1);
        position: relative;
        z-index: 1002;
    }

    .mobile-menu-btn span {
        width: 24px;
        height: 2px;
        margin: 0;
    }

    /* Mobilde menü açılınca hamburgerin X'e dönüşmesini engeller */
    .mobile-menu-btn.active span:nth-child(1),
    .mobile-menu-btn.active span:nth-child(2),
    .mobile-menu-btn.active span:nth-child(3) {
        transform: none;
        opacity: 1;
    }

    nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        inset: 72px 0 0 0;
        display: none;
        width: 100%;
        max-width: 100vw;
        padding: 0.75rem 1rem 1.25rem;
        align-items: stretch;
        justify-content: flex-start;
        background: rgba(251, 247, 239, 0.98);
        border-top: 1px solid rgba(10, 29, 78, 0.08);
        box-shadow: 0 18px 35px rgba(10, 29, 78, 0.12);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1001;
    }

    nav.active {
        display: flex;
    }

    nav a,
    .nav-dropdown-trigger {
        width: 100%;
        min-height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.72rem 0.85rem !important;
        border-radius: 14px;
        text-align: center;
        background: rgba(255, 255, 255, 0.44);
        margin-bottom: 0.45rem;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
        margin: 0.45rem 0 0.75rem;
    }

    .nav-dropdown,
    .nav-dropdown-menu {
        width: 100%;
    }

    .nav-dropdown-menu {
        max-width: 100%;
        grid-template-columns: 1fr;
    }

    body.mobile-nav-open {
        overflow: hidden;
        touch-action: none;
    }
}

@media (max-width: 768px) {
    :root {
        --header-offset: 72px;
    }

    body {
        padding-top: 72px;
    }

    .container,
    .hero-container,
    .section-header,
    .contact-container,
    .footer-container {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero {
        margin-top: -72px;
        padding: calc(72px + 2rem) 1rem 2.25rem;
        min-height: auto;
    }

    .hero-grid,
    .grid,
    .grid-2,
    .grid-3,
    .grid-4,
    .service-layout,
    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr !important;
    }

    img,
    svg,
    video,
    canvas {
        max-width: 100%;
        height: auto;
    }

    h1 {
        font-size: clamp(2rem, 9vw, 2.55rem);
    }

    h2 {
        font-size: clamp(1.55rem, 7vw, 2rem);
    }

    .btn,
    .hero-cta,
    .cta-buttons {
        width: 100%;
    }

    .hero-cta,
    .cta-buttons {
        display: grid;
        gap: 0.75rem;
    }

    .btn {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brand-logo-image {
        height: 52px;
        max-width: 160px;
    }

    .header-container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    section {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }
}

/* === EKOL FINAL MOBILE + SEO UX PATCH === */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
img, svg, video, canvas, iframe {
    max-width: 100%;
}
@media (max-width: 1180px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    .header-container {
        min-height: 72px;
        gap: 0.75rem;
    }
    .mobile-menu-btn {
        display: inline-flex !important;
        flex-direction: column;
        gap: 5px;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
        -webkit-tap-highlight-color: transparent;
    }
    .mobile-menu-btn span,
    .mobile-menu-btn.active span:nth-child(1),
    .mobile-menu-btn.active span:nth-child(2),
    .mobile-menu-btn.active span:nth-child(3) {
        transform: none !important;
        opacity: 1 !important;
        width: 24px;
        height: 2px;
        margin: 0 !important;
    }
    nav {
        top: 72px !important;
        height: calc(100dvh - 72px);
        max-height: calc(100dvh - 72px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    }
    nav ul {
        width: 100%;
    }
    nav a {
        min-height: 46px;
        word-break: normal;
    }
    .nav-dropdown-menu {
        position: static !important;
        transform: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        box-shadow: none !important;
        width: 100% !important;
        max-height: none;
    }
    body.mobile-nav-open {
        overflow: hidden !important;
    }
}
@media (max-width: 768px) {
    .hero, .inner-hero, .service-hero {
        min-height: auto !important;
        padding-top: calc(72px + 1.75rem) !important;
        padding-bottom: 2rem !important;
    }
    .hero-container, .container, .section-header, .contact-container, .footer-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .hero-grid, .grid, .grid-2, .grid-3, .grid-4, .contact-grid, .footer-content, .service-layout {
        grid-template-columns: 1fr !important;
    }
    .btn, .nav-cta, .hero-cta .btn, .cta-buttons .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    h1 {
        font-size: clamp(1.85rem, 8.5vw, 2.55rem) !important;
        line-height: 1.12 !important;
    }
    h2 {
        font-size: clamp(1.45rem, 6.5vw, 2rem) !important;
        line-height: 1.2 !important;
    }
}
@media (max-width: 420px) {
    .brand-logo-image {
        max-width: 145px !important;
        height: auto !important;
    }
    .top-bar {
        font-size: 0.75rem;
    }
}

/* =========================================================
   EKOL REAL MOBILE HOTFIX - 2026-04-29
   Fixes from live screenshots: horizontal overflow, oversized/blank hero,
   and mobile menu not opening because generic nav rules affected breadcrumbs.
   ========================================================= */
html,
body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

*, *::before, *::after {
    max-width: 100%;
}

img, svg, video, iframe, canvas {
    max-width: 100% !important;
    height: auto;
}

/* Breadcrumb nav must never behave like the mobile menu */
nav.breadcrumb,
.breadcrumb {
    position: static !important;
    inset: auto !important;
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0.65rem 0 0.85rem !important;
    margin: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.35rem !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 1 !important;
}

nav.breadcrumb a,
.breadcrumb a,
.breadcrumb span {
    width: auto !important;
    min-height: 0 !important;
    display: inline-flex !important;
    padding: 0.2rem 0.1rem !important;
    margin: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    text-align: center !important;
    font-size: 0.9rem !important;
    line-height: 1.35 !important;
    white-space: normal !important;
}

@media (max-width: 1180px) {
    :root { --header-offset: 72px !important; }

    body {
        padding-top: 72px !important;
    }

    header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 72px !important;
        min-height: 72px !important;
        z-index: 9999 !important;
        overflow: visible !important;
        background: rgba(255, 249, 242, 0.98) !important;
        box-shadow: 0 6px 18px rgba(10, 29, 78, 0.08) !important;
    }

    .top-bar { display: none !important; }

    .header-container {
        width: 100% !important;
        max-width: 100% !important;
        height: 72px !important;
        min-height: 72px !important;
        padding: 0.35rem 0.85rem !important;
        gap: 0.65rem !important;
    }

    .logo,
    a.logo {
        min-width: 0 !important;
        flex: 1 1 auto !important;
        overflow: hidden !important;
    }

    .brand-logo-image {
        width: auto !important;
        height: 54px !important;
        max-width: 185px !important;
        object-fit: contain !important;
    }

    .mobile-menu-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 5px !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        flex: 0 0 44px !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 50% !important;
        border: 1px solid rgba(10, 29, 78, 0.14) !important;
        background: rgba(255,255,255,0.82) !important;
        z-index: 10001 !important;
        cursor: pointer !important;
    }

    .mobile-menu-btn span,
    .mobile-menu-btn.active span:nth-child(1),
    .mobile-menu-btn.active span:nth-child(2),
    .mobile-menu-btn.active span:nth-child(3) {
        display: block !important;
        width: 23px !important;
        height: 2px !important;
        margin: 0 !important;
        padding: 0 !important;
        background: var(--primary) !important;
        border-radius: 2px !important;
        transform: none !important;
        opacity: 1 !important;
    }

    /* Only the HEADER navigation is the mobile menu. Other navs stay normal. */
    header nav {
        position: fixed !important;
        top: 72px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: calc(100dvh - 72px) !important;
        max-height: calc(100dvh - 72px) !important;
        display: none !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 0.45rem !important;
        padding: 0.9rem 1rem max(1.25rem, env(safe-area-inset-bottom)) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        background: #fff9f2 !important;
        border-top: 1px solid rgba(10,29,78,0.1) !important;
        box-shadow: 0 20px 45px rgba(10,29,78,0.16) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        z-index: 10000 !important;
    }

    header nav.active,
    body.mobile-nav-open header nav {
        display: flex !important;
    }

    header nav a,
    header nav .nav-dropdown-trigger {
        width: 100% !important;
        min-height: 46px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0.75rem 0.9rem !important;
        margin: 0 !important;
        border-radius: 14px !important;
        background: rgba(255,255,255,0.78) !important;
        color: var(--primary) !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        line-height: 1.25 !important;
        text-align: center !important;
        white-space: normal !important;
    }

    header nav a::after { display: none !important; }

    header nav .nav-cta {
        background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
        color: #fff !important;
        margin-top: 0.2rem !important;
    }

    header .nav-dropdown,
    header .nav-dropdown-menu {
        width: 100% !important;
        max-width: 100% !important;
    }

    header .nav-dropdown-menu {
        position: static !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        max-height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
    }

    header .nav-dropdown.open .nav-dropdown-menu {
        max-height: 60dvh !important;
        overflow-y: auto !important;
        padding: 0.45rem 0 !important;
    }

    body.mobile-nav-open {
        overflow: hidden !important;
        touch-action: none !important;
    }
}

@media (max-width: 768px) {
    body.home-page .hero,
    body.inner-page .hero,
    body.service-page .hero,
    body.service-detail .hero,
    .hero {
        min-height: 0 !important;
        height: auto !important;
        margin-top: 0 !important;
        padding: 1.15rem 1rem 1.35rem !important;
        align-items: center !important;
        overflow: hidden !important;
    }

    body.home-page .hero {
        padding-top: 1.35rem !important;
    }

    .hero::before,
    .hero::after {
        width: 260px !important;
        height: 260px !important;
        opacity: 0.35 !important;
    }

    .hero-container,
    .container,
    main .container,
    section .container,
    .section-header,
    .footer-container,
    .contact-container {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-grid,
    .grid,
    .grid-2,
    .grid-3,
    .grid-4,
    .service-layout,
    .contact-grid,
    .footer-content,
    .footer-grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .hero-content,
    .hero-aside,
    .hero-showcase,
    .card,
    .page-content-shell,
    body.inner-page .page-content-shell,
    body.service-detail .page-content-shell,
    body.service-detail main section .container .breadcrumb + div,
    main section .container > div {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
    }

    body.inner-page .page-content-shell,
    body.service-detail .page-content-shell,
    body.service-detail main section .container .breadcrumb + div,
    main section .container > div {
        padding: 1.05rem !important;
        border-radius: 18px !important;
    }

    h1,
    .hero h1,
    body.home-page .hero h1,
    body.inner-page .hero h1,
    body.service-page .hero h1,
    body.service-detail .hero h1 {
        font-size: clamp(1.82rem, 8vw, 2.35rem) !important;
        line-height: 1.12 !important;
        margin-bottom: 0.9rem !important;
        max-width: 100% !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
    }

    h2,
    body.service-detail .service-main h2,
    body.inner-page .page-content-shell h2,
    main h2 {
        font-size: clamp(1.48rem, 6.7vw, 2rem) !important;
        line-height: 1.18 !important;
        max-width: 100% !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
        padding-left: 0.55rem !important;
    }

    p,
    li,
    .hero p,
    .card p {
        max-width: 100% !important;
        font-size: 0.98rem !important;
        line-height: 1.62 !important;
        overflow-wrap: break-word !important;
    }

    .btn,
    .hero-cta,
    .hero-cta .btn,
    .cta-buttons,
    .cta-buttons .btn,
    .lead-actions,
    .lead-actions .btn {
        width: 100% !important;
        max-width: 100% !important;
        white-space: normal !important;
        text-align: center !important;
        justify-content: center !important;
    }

    .hero-cta,
    .cta-buttons,
    .lead-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.65rem !important;
    }

    .sticky-whatsapp {
        right: 1rem !important;
        bottom: 5.5rem !important;
        width: 54px !important;
        height: 54px !important;
    }

    .mobile-lead-bar,
    .mobile-lead-actions {
        left: 0.75rem !important;
        right: 0.75rem !important;
        width: auto !important;
        max-width: calc(100vw - 1.5rem) !important;
    }
}

@media (max-width: 420px) {
    .brand-logo-image {
        height: 48px !important;
        max-width: 155px !important;
    }

    .header-container {
        padding-left: 0.7rem !important;
        padding-right: 0.7rem !important;
    }

    body.inner-page .page-content-shell,
    body.service-detail .page-content-shell,
    body.service-detail main section .container .breadcrumb + div,
    main section .container > div {
        padding: 0.95rem !important;
    }

    h1,
    .hero h1 {
        font-size: clamp(1.65rem, 8.4vw, 2.05rem) !important;
    }

    h2,
    main h2 {
        font-size: clamp(1.36rem, 7vw, 1.72rem) !important;
    }
}
