/* General Styles */
:root {
    --primary-color: #3b82f6;
    --secondary-color: #6366f1;
    --accent-color: #22d3ee;
    --text-dark: #dbe4f0;
    --text-light: #070d1a;
    --bg-light: #0b1220;
    --bg-dark: #070d1a;
    --bg_alternate: #131c30;
    --border-color: #24304c;
    
    --font-primary: 'Manrope', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    --button-radius: 12px;
    --card-shadow: 0 20px 50px rgba(59,130,246,0.20);
    
    --sidebar-width: 260px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block; 
    border-radius: 8px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-top: 40px;}
h3 { font-size: 1.8rem; }
p { margin-bottom: 15px; }

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--button-radius);
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: var(--card-shadow);
    border: none;
    cursor: pointer;
}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}
.btn-primary:hover {
    background-color: var(--accent-color);
    color: color-mix(in srgb, var(--accent-color) 20%, var(--text-dark));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
}
.btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--bg-light);
    transform: translateY(-2px);
}

.layout-top-menu-standard, .layout-top-menu-split-hero, .layout-top-menu-minimal {
}

.main-header {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.navbar-style-center .nav-links {
    flex-grow: 1; 
    justify-content: center;
}
.navbar-style-right .nav-links {
    flex-grow: 1;
    justify-content: flex-end;
}
.main-header .navbar-brand {
    font-family: var(--font-primary);
    font-size: 2em;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    flex-shrink: 0;
}
.main-header .navbar-brand:hover {
    color: var(--primary-color);
}
.main-header .nav-links {
    list-style: none;
    display: flex;
}
.main-header .nav-links li {
    margin: 0 15px;
}
.main-header .nav-links a {
    color: var(--text-light);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}
.main-header .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    left: 0;
    bottom: -8px;
    transition: width 0.3s ease-out;
}
.main-header .nav-links a:hover,
.main-header .nav-links a.active {
    color: var(--primary-color);
}
.main-header .nav-links a:hover::after,
.main-header .nav-links a.active::after {
    width: 100%;
}

.layout-sidebar-left .main-content-wrapper.sidebar-active {
    padding-left: var(--sidebar-width);
}
.sidebar-left {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: var(--sidebar-width);
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 40px 20px;
    box-shadow: 4px 0 15px rgba(0,0,0,0.2);
    z-index: 1000;
    overflow-y: auto;
}
.sidebar-left .navbar-brand {
    font-family: var(--font-primary);
    font-size: 1.8em;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    display: block;
    text-align: center;
    margin-bottom: 40px;
}
.sidebar-left .navbar-brand:hover {
    color: var(--primary-color);
}
.sidebar-left .nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
}
.sidebar-left .nav-links li {
    margin: 10px 0;
}
.sidebar-left .nav-links a {
    color: var(--text-light);
    font-weight: 600;
    display: block;
    padding: 10px 15px;
    border-radius: var(--button-radius);
    transition: color 0.3s ease, background-color 0.3s ease;
}
.sidebar-left .nav-links a:hover,
.sidebar-left .nav-links a.active {
    color: var(--text-dark);
    background-color: var(--primary-color);
}

.hero-section, .page-hero {
    position: relative;
    min-height: 450px;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}
.hero-section::before, .page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
.hero-content, .page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}
.hero-content h1, .page-hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInDown 1s ease-out forwards;
}
.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #f0f0f0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out forwards 0.3s;
}

.hero-section.split-hero {
    display: flex;
    height: 80vh;
    min-height: 500px;
    text-align: left;
    background: var(--bg-light); 
    background-attachment: unset;
}
.hero-section.split-hero::before {
    display: none;
}
.hero-section.split-hero .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    z-index: 2;
}
.hero-section.split-hero .hero-content h1,
.hero-section.split-hero .hero-content p {
    color: var(--text-dark);
    text-shadow: none;
}
.hero-section.split-hero .hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    height: 100%;
    z-index: 1;
}

.hero-section.minimal-hero, .page-hero.minimal-page-hero {
    background-image: none !important;
    background-color: var(--bg_alternate);
    background-attachment: unset;
    min-height: 350px;
    height: auto;
    padding: 80px 0;
}
.hero-section.minimal-hero::before, .page-hero.minimal-page-hero::before {
    display: none;
}
.hero-section.minimal-hero .hero-content h1,
.hero-section.minimal-hero .hero-content p,
.page-hero.minimal-page-hero .page-hero-content h1 {
    color: var(--text-dark);
    text-shadow: none;
}
.page-hero.minimal-page-hero h1 {
    color: var(--primary-color);
}


@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    opacity: 0;
    transform: translateY(30px);
}
.section.visible {
    opacity: 1;
    transform: translateY(0);
}
.section:last-child {
    border-bottom: none;
}
.section h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-color);
    font-size: 2.8rem;
}
.section h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 5px;
    background-color: var(--accent-color);
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 3px;
}
.bg-light {
    background-color: var(--bg_alternate);
}

.content-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
    justify-content: center;
}
.content-flex p, .content-flex div:not(.price-list-container) {
    flex: 1;
    min-width: 350px;
    font-size: 1.15em;
    color: var(--text-dark);
    text-align: justify;
}
.text-content-container, .price-list-container, .legal-content-container {
     flex: 1;
     min-width: 350px;
}
.legal-content-container {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 1.8;
}
.legal-content-container h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-top: 30px;
}
.content-flex .section-image {
    flex: 1;
    min-width: 400px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 3px solid var(--border-color);
}
.content-flex .section-image:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.content-flex.reverse {
    flex-direction: row-reverse;
}

.price-list-container {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border-left: 6px solid var(--primary-color);
}
.price-list-container h3 {
    color: var(--accent-color);
    font-size: 1.8em;
    margin-top: 25px;
    margin-bottom: 15px;
}
.contact-section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.contact-info {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2em;
}
.contact-info p { margin-bottom: 12px; }
.contact-info a { color: var(--primary-color); }
.contact-form {
    background-color: var(--bg_alternate);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    width: 100%;
    max-width: 750px;
}
.form-group { margin-bottom: 30px; text-align: left; }
.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.1em;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1.05em;
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary-color) 25%, transparent);
}

.main-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.25);
}
.layout-sidebar-left .main-footer {
    margin-top: 0; 
    width: 100%;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.main-footer p { margin: 0; font-size: 0.95em; }
.footer-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
    padding: 0;
    margin: 0;
}
.footer-links a {
    color: var(--text-light);
    font-size: 0.9em;
    font-weight: 600;
}
.footer-links a:hover {
    color: var(--primary-color);
}
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.loading-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 2.2em;
    z-index: 9999;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.5s ease-out;
}
.loading-screen.active { display: flex; opacity: 1; }
.loading-screen .spinner {
    border: 12px solid rgba(255, 255, 255, 0.3);
    border-top: 12px solid var(--accent-color);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1.5s linear infinite;
    margin-bottom: 35px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 992px) {
    .main-header .navbar {
        flex-direction: column;
        padding-bottom: 10px;
    }
    .main-header .nav-links {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    .main-header .nav-links li { margin: 0 12px 10px; }
    .main-header .navbar-brand { margin-bottom: 15px; }

    .layout-sidebar-left .sidebar-left {
        position: relative;
        width: 100%;
        height: auto;
        box-shadow: none;
    }
    .layout-sidebar-left .sidebar-left .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
     .layout-sidebar-left .sidebar-left .navbar-brand { margin-bottom: 20px; }
    .layout-sidebar-left .main-content-wrapper.sidebar-active {
        padding-left: 0; 
    }

    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.2rem; }
    .hero-content p { font-size: 1.3rem; }
    .content-flex {
        flex-direction: column;
        gap: 30px;
    }
    .content-flex.reverse { flex-direction: column; }
    .content-flex p, .content-flex .section-image {
        min-width: unset;
        width: 100%;
    }
    .section-image { margin-bottom: 20px; }
    
    .hero-section.split-hero {
        flex-direction: column;
        height: auto;
    }
    .hero-section.split-hero .hero-image {
        height: 300px; 
        order: -1; 
    }
    .hero-section.split-hero .hero-content {
        text-align: center;
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    .hero-content { padding: 15px; }
    .hero-content p { font-size: 1.1rem; }
    .hero-section, .page-hero { height: auto; min-height: 350px; }
    .section { padding: 60px 0; }
    .contact-form { padding: 40px; }
}

@media (max-width: 576px) {
    .main-header .navbar-brand, .sidebar-left .navbar-brand { font-size: 1.8em; }
    .main-header .nav-links li, .sidebar-left .nav-links li { margin: 0 8px 8px; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .btn { padding: 10px 20px; font-size: 0.9em; }
    .section { padding: 40px 0; }
    .contact-form { padding: 25px; }
}

/* ================= MODERN GÖRÜNÜM KATMANI (v2) ================= */
html { scroll-behavior: smooth; }
body { animation: pageEnterFx .7s ease both; }
@keyframes pageEnterFx { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* Hero: görseli bozmadan hafif ışık + metin cilası */
.hero-section, .page-hero { position: relative; overflow: hidden; }
.hero-section::after, .page-hero::after {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background: radial-gradient(55% 75% at 82% 12%, rgba(255,255,255,.16), transparent 60%);
}
.hero-section > *, .page-hero > * { position: relative; z-index: 1; }
.hero-section h1, .page-hero h1 { letter-spacing: -.02em; }

/* Cam navbar */
.navbar, .main-header, .site-header, header nav {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

/* Nav alt-çizgi animasyonu */
.nav-links a { position: relative; }
.nav-links a::after {
    content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
    background: var(--primary-color); transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Gradyan butonlar + glow */
.btn, .button, a.btn, .cta-button, button.btn, .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--button-radius);
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover, .button:hover, a.btn:hover, .cta-button:hover, .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0,0,0,.24);
    filter: brightness(1.06);
}

/* Modern kartlar + hover kalkış */
.card, .service-card, .price-card, .feature-box, .box, .service-item {
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover, .service-card:hover, .price-card:hover, .feature-box:hover, .box:hover, .service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,0,0,.14);
}

/* Görseller yumuşak köşe + modern ince scrollbar */
.section img, .content-flex img, .section-image img { border-radius: 14px; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 10px; }
::-webkit-scrollbar-track { background: var(--bg_alternate); }

/* ================= HERO VARYANTLARI (yapısal olarak farklı) ================= */
.hero-section { min-height: 78vh; display: flex; align-items: center; position: relative; }
.hero-section .hero-content { max-width: 780px; padding: 44px; }
.hero-section h1 { font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.08; margin-bottom: 16px; }
.hero-section p { font-size: 1.15rem; opacity: .92; margin-bottom: 26px; max-width: 620px; }

/* SPLIT — solda içerik, sağda görsel */
.hero-split { padding: 0 !important; }
.hero-split .hero-content { flex: 1; background: var(--bg-light); color: var(--text-dark); }
.hero-split .hero-image { flex: 1; align-self: stretch; min-height: 78vh; background-size: cover; background-position: center; }
@media(max-width:820px){ .hero-split { flex-direction: column; } .hero-split .hero-image { min-height: 240px; width: 100%; } }

/* MINIMAL — ortalı, görselsiz, geniş boşluk */
.hero-minimal { justify-content: center; text-align: center; min-height: 72vh; background: var(--bg-light); color: var(--text-dark); }
.hero-minimal .hero-content { margin: 0 auto; }
.hero-minimal .hero-eyebrow { display:block; width:64px; height:5px; margin:0 auto 24px; border-radius:5px; background: linear-gradient(90deg, var(--primary-color), var(--accent-color)); }
.hero-minimal h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.hero-minimal p { margin-left:auto; margin-right:auto; }

/* OVERLAY — tam ekran görsel + koyu perde + ortalı beyaz metin */
.hero-overlay { background-size: cover; background-position: center; min-height: 92vh; color:#fff; justify-content:center; text-align:center; }
.hero-overlay .hero-veil { position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.72)); }
.hero-overlay .hero-content { position: relative; z-index:1; }
.hero-overlay h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
.hero-overlay p { margin-left:auto; margin-right:auto; opacity:.95; }
.hero-overlay .hero-scroll { position:absolute; bottom:26px; left:50%; transform:translateX(-50%); z-index:1; font-size:1.7rem; color:#fff; animation: heroBounce 1.8s infinite; }
@keyframes heroBounce { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,12px)} }

/* GRADIENT — animasyonlu gradyan + bulanık lekeler, görselsiz */
.hero-gradient { overflow:hidden; justify-content:center; text-align:center; color:#fff; min-height: 88vh;
    background: linear-gradient(130deg, var(--primary-color), var(--secondary-color), var(--accent-color)); background-size: 240% 240%; animation: gradShiftFx 16s ease infinite; }
.hero-gradient .hero-content { position: relative; z-index:2; }
.hero-gradient h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); }
.hero-gradient p { margin-left:auto; margin-right:auto; opacity:.96; }
.hero-gradient .hero-blob { position:absolute; border-radius:50%; filter: blur(64px); opacity:.5; z-index:1; }
.hero-gradient .b1 { width:420px; height:420px; background:#fff; top:-120px; right:-70px; }
.hero-gradient .b2 { width:360px; height:360px; background: var(--accent-color); bottom:-120px; left:-60px; }
.hero-gradient .hero-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.btn-ghost { background: transparent !important; border: 2px solid rgba(255,255,255,.75) !important; color:#fff !important; box-shadow:none !important; }

/* BOXED — renkli bant üzerinde havada duran beyaz kart */
.hero-boxed { min-height: 80vh; background: var(--bg-light); align-items:center; justify-content:center; }
.hero-boxed .hero-band { position:absolute; top:0; left:0; right:0; height:58%; background: linear-gradient(130deg, var(--primary-color), var(--accent-color)); background-size: cover; background-position:center; }
.hero-boxed .hero-band::after { content:""; position:absolute; inset:0; background: linear-gradient(130deg, rgba(0,0,0,.12), rgba(0,0,0,.28)); }
.hero-boxed .hero-card { position: relative; z-index:1; margin: 0 24px; max-width: 720px; background:#fff; color:#1f2430; border-radius: 22px; padding: 52px 44px; box-shadow: 0 34px 70px rgba(0,0,0,.22); text-align:center; }
.hero-boxed .hero-card h1 { color:#111827; }
.hero-boxed .hero-card p { color:#4b5563; margin-left:auto; margin-right:auto; }

/* ================= ANA SAYFA DÜZENLERİ (temaya göre farklı) ================= */
/* cards */
.home-cards .hc-head { text-align:center; max-width:760px; margin:0 auto 40px; }
.home-cards .hc-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; }
.home-cards .hc-card { background:var(--bg_alternate); border:1px solid var(--border-color); border-radius:18px; padding:32px; box-shadow:var(--card-shadow); transition:transform .25s; }
.home-cards .hc-card:hover { transform:translateY(-6px); }
.home-cards .hc-ic { display:inline-flex; width:52px; height:52px; align-items:center; justify-content:center; border-radius:14px; background:linear-gradient(135deg,var(--primary-color),var(--accent-color)); color:#fff; font-size:1.3rem; margin-bottom:16px; }

/* magazine */
.home-magazine { background:var(--bg-light); }
.home-magazine .mag-wrap { max-width:760px; margin:0 auto; padding:20px; }
.home-magazine .mag-kicker { display:inline-block; text-transform:uppercase; letter-spacing:3px; font-size:.8rem; color:var(--primary-color); font-weight:700; margin-bottom:14px; }
.home-magazine .mag-body { font-size:1.2rem; line-height:1.9; color:var(--text-dark); }
.home-magazine .mag-body:first-letter { font-size:3.2rem; font-weight:800; float:left; line-height:.9; margin:6px 12px 0 0; color:var(--primary-color); }
.home-magazine .mag-rule { border:none; border-top:2px solid var(--border-color); margin:36px 0; }
.home-magazine .mag-h { font-size:2rem; margin-bottom:16px; }
.home-magazine .mag-cta { margin-top:28px; }

/* bands */
.band { padding:70px 0; }
.band-primary { background:linear-gradient(135deg,var(--primary-color),var(--accent-color)); color:#fff; }
.band-primary h2, .band-primary p { color:#fff; }
.band-dark { background:var(--bg-dark); color:#fff; }
.band-dark h2, .band-dark p { color:#fff; }
.band-plain { background:var(--bg-light); }
.band-inner { max-width:820px; }

/* stats */
.stat-strip { background:var(--bg-dark); color:#fff; }
.stat-strip .stat-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; text-align:center; }
.stat-strip .stat b { display:block; font-size:2.6rem; font-weight:800; background:linear-gradient(135deg,var(--primary-color),var(--accent-color)); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.stat-strip .stat span { color:#cbd5e1; font-size:.95rem; }
@media(max-width:640px){ .stat-strip .stat-grid { grid-template-columns:repeat(2,1fr); } }