/* ================================================
   CORE STYLES - MEVCUT SİTE YAPISINA UYUMLU
   ================================================ */
:root {
  --orange:       #ff6200;
  --orange-dim:   rgba(255,98,0,0.10);
  --orange-glow:  rgba(255,98,0,0.25);
  --orange-hover: #e6580a;
  --bg-void:      #ffffff;
  --bg-surface:   #fbf7f3;
  --bg-card:      #ffffff;
  --bg-card-hover:#fff3ea;
  --border:       rgba(20,20,25,0.08);
  --border-warm:  rgba(255,98,0,0.25);
  --text-hi:      #191a1f;
  --text-mid:     #6b6b78;
  --text-lo:      #a3a3b0;
  --green:        #00b377;
  --green-dim:    rgba(0,179,119,0.10);
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --shadow-card: 0 8px 32px rgba(20,20,30,0.08);
  --shadow-glow: 0 16px 48px rgba(255,98,0,0.18);
  --trans: all 0.3s ease;
}

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

html { 
    scroll-behavior: smooth; 
}

body { 
    font-family: 'Inter', sans-serif; 
    color: var(--text-hi); 
    background: var(--bg-void); 
    overflow-x: visible !important; /* ZOOM'DA KESİLMEYİ ENGELLER */
    overflow-y: auto;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased; 
    min-height: 100vh;
    width: 100%;
}

/* ================================================
   MESH BACKGROUND - ZOOM GÜVENLİ
   ================================================ */
.mesh { 
    position: fixed; 
    inset: 0; 
    z-index: -1; 
    pointer-events: none; 
    overflow: hidden; 
}

.mesh-orb { 
    position: absolute; 
    border-radius: 50%; 
    filter: blur(90px); 
    opacity: .6; 
}

.mesh-orb-1 { 
    width: min(55vw, 600px); 
    height: min(55vw, 600px); 
    top: -10%; 
    left: -10%; 
    background: radial-gradient(circle, rgba(255,98,0,.2) 0%, transparent 65%); 
    animation: drift1 18s ease-in-out infinite alternate; 
}

.mesh-orb-2 { 
    width: min(40vw, 450px); 
    height: min(40vw, 450px); 
    bottom: -10%; 
    right: -10%; 
    background: radial-gradient(circle, rgba(255,50,0,.1) 0%, transparent 65%); 
    animation: drift2 22s ease-in-out infinite alternate; 
}

@keyframes drift1 {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(5%, 8%) scale(1.1); }
}

@keyframes drift2 {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(-6%, -5%) scale(.95); }
}

.mesh::after { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background-image: 
        linear-gradient(rgba(20,20,30,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20,20,30,.025) 1px, transparent 1px); 
    background-size: 60px 60px; 
}

/* ================================================
   CONTAINER & SECTIONS
   ================================================ */
.container { 
    width: 100% !important; 
    max-width: 1300px !important; 
    margin: 0 auto; 
    padding: 0 24px !important; 
    box-sizing: border-box !important; 
    overflow: visible !important; 
}

section { 
    padding: 100px 0; 
    position: relative; 
    width: 100%;
    overflow: visible !important;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */
.eyebrow { 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    padding: 6px 16px; 
    background: var(--orange-dim); 
    border: 1px solid var(--border-warm); 
    border-radius: 100px; 
    color: var(--orange); 
    font-size: 11px; 
    font-weight: 800; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    margin-bottom: 24px; 
}

.section-title { 
    font-family: 'Space Grotesk', sans-serif; 
    font-size: clamp(28px, 4vw, 48px); 
    font-weight: 700; 
    line-height: 1.2; 
    letter-spacing: -1px; 
    margin-bottom: 20px; 
}

.section-title .accent { 
    color: var(--orange); 
}

.section-title .dim { 
    color: var(--text-mid); 
}

.section-desc { 
    font-size: clamp(14px, 2vw, 17px); 
    color: var(--text-mid); 
    line-height: 1.7; 
    max-width: 640px; 
    margin: 0 auto; 
}

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

/* ================================================
   BUTTONS
   ================================================ */
.btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    padding: 15px 28px; 
    border-radius: 12px; 
    font-size: 14px; 
    font-weight: 700; 
    text-decoration: none; 
    transition: var(--trans); 
    border: none; 
    cursor: pointer; 
    font-family: 'Inter', sans-serif; 
}

.btn-primary { 
    background: var(--orange); 
    color: #fff; 
    box-shadow: 0 6px 20px rgba(255, 98, 0, .25); 
}

.btn-primary:not(:disabled):hover { 
    background: var(--orange-hover); 
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(255, 98, 0, .4); 
}

.btn-primary:disabled { 
    opacity: 0.7; 
    cursor: not-allowed; 
}

.btn-outline { 
    background: rgba(20, 20, 30, 0.02); 
    color: var(--text-hi); 
    border: 1px solid var(--border); 
}

.btn-outline:hover { 
    border-color: var(--orange); 
    color: var(--orange); 
    transform: translateY(-2px); 
}

.btn-back { 
    background: transparent; 
    border: 1px solid var(--border); 
    color: var(--text-mid); 
    padding: 15px 28px; 
    border-radius: var(--r-sm); 
    font-size: 14px; 
    font-weight: 700; 
    cursor: pointer; 
    transition: var(--trans); 
    font-family: 'Inter', sans-serif; 
}

.btn-back:hover { 
    border-color: var(--text-mid); 
    color: var(--text-hi); 
}

.btn-green { 
    background: var(--green); 
    color: #000; 
    box-shadow: 0 8px 24px rgba(0, 214, 143, .3); 
}

.btn-green:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 12px 32px rgba(0, 214, 143, .45); 
}

/* ================================================
   NAVBAR
   ================================================ */
nav { 
    position: fixed; 
    top: 0; 
    left: 0;
    right: 0;
    width: 100% !important; 
    z-index: 900; 
    padding: 16px 0; 
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(16px); 
    border-bottom: 1px solid var(--border); 
    transition: var(--trans); 
}

nav.scrolled { 
    padding: 14px 0; 
    background: rgba(255, 255, 255, 0.95); 
    box-shadow: 0 4px 24px rgba(20,20,30,.06); 
}

.nav-inner { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 20px; 
    width: 100%;
}

.logo { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    text-decoration: none; 
    color: var(--text-hi); 
    font-family: 'Space Grotesk', sans-serif; 
    font-size: clamp(18px, 2.5vw, 22px); 
    font-weight: 700; 
    flex-shrink: 0; 
}

.logo-mark { 
    width: 36px; 
    height: 36px; 
    background: var(--orange); 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 16px; 
    color: #fff; 
    flex-shrink: 0; 
}

.logo-img { 
    height: 36px; 
    width: auto; 
    max-width: 180px; 
    object-fit: contain; 
}

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

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

@media (max-width: 900px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--bg-void);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 16px 32px rgba(20,20,30,.10);
        padding: 12px 24px 20px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.3s ease, opacity 0.2s ease;
    }
    .nav-links.open {
        max-height: 420px;
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        font-size: 14px;
    }
    .nav-links a:last-of-type {
        border-bottom: none;
    }
    .nav-cta-mobile {
        display: inline-flex;
        margin-top: 10px;
        width: 100%;
    }
    .nav-cta {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}

.nav-links a { 
    color: var(--text-mid); 
    text-decoration: none; 
    font-size: 13px; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
    transition: color .2s; 
    position: relative; 
}

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

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

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

.hamburger { 
    display: none; 
    flex-direction: column; 
    gap: 5px; 
    cursor: pointer; 
    background: none; 
    border: none; 
    padding: 5px; 
}

.hamburger span { 
    display: block; 
    width: 24px; 
    height: 2px; 
    background: var(--text-hi); 
    transition: var(--trans); 
}

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

/* ================================================
   HERO - ZOOM GÜVENLİ
   ================================================ */
.hero { 
    min-height: 100vh; 
    height: auto; 
    display: flex; 
    align-items: center; 
    padding-top: 140px; 
    padding-bottom: 80px; 
    border-bottom: 1px solid var(--border); 
    overflow: visible !important;
}

.hero-grid { 
    display: grid; 
    grid-template-columns: 1fr 0.8fr; 
    gap: 40px; 
    align-items: center; 
    width: 100%; 
    overflow: visible !important;
}

.hero-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    padding: 6px 16px; 
    background: var(--orange-dim); 
    border: 1px solid var(--border-warm); 
    border-radius: 100px; 
    font-size: 12px; 
    font-weight: 700; 
    color: var(--orange); 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    margin-bottom: 24px; 
}

.badge-dot { 
    width: 6px; 
    height: 6px; 
    background: var(--orange); 
    border-radius: 50%; 
    animation: pulse-dot 1.5s ease infinite; 
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 98, 0, .5); }
    50% { box-shadow: 0 0 0 5px rgba(255, 98, 0, 0); }
}

.hero h1 { 
    font-family: 'Space Grotesk', sans-serif; 
    font-size: clamp(36px, 5vw, 64px); 
    font-weight: 700; 
    line-height: 1.1; 
    letter-spacing: -1.5px; 
    margin-bottom: 24px; 
}

.hero h1 .line-orange { 
    color: var(--orange); 
}

.hero h1 .line-dim { 
    color: var(--text-mid); 
}

.hero-sub { 
    font-size: clamp(15px, 2vw, 18px); 
    color: var(--text-mid); 
    line-height: 1.6; 
    margin-bottom: 32px; 
    max-width: 520px; 
    font-weight: 400; 
}

.hero-cta { 
    display: flex; 
    gap: 16px; 
    flex-wrap: wrap; 
    margin-bottom: 40px; 
}

.hero-stats { 
    display: flex; 
    gap: 30px; 
    flex-wrap: wrap; 
    border-top: 1px solid var(--border); 
    padding-top: 30px; 
}

.h-stat-val { 
    font-family: 'Space Grotesk', sans-serif; 
    font-size: clamp(28px, 4vw, 36px); 
    font-weight: 700; 
    color: var(--text-hi); 
    line-height: 1; 
    margin-bottom: 4px; 
}

.h-stat-val b { 
    color: var(--orange); 
}

.h-stat-lbl { 
    font-size: 11px; 
    font-weight: 700; 
    color: var(--text-lo); 
    text-transform: uppercase; 
}

/* ================================================
   HERO VISUALS - ZOOM GÜVENLİ
   ================================================ */
.hero-visual { 
    position: relative; 
    width: 100%; 
    max-width: 500px; 
    margin: 0 auto; 
}

.hero-phone-frame { 
    border-radius: var(--r-xl); 
    overflow: hidden; 
    border: 1px solid var(--border); 
    box-shadow: var(--shadow-card); 
    aspect-ratio: 3/4; 
    position: relative; 
    max-width: 100% !important; 
    max-height: 70vh !important;
}

.hero-phone-frame::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    z-index: 2; 
    background: linear-gradient(to top, var(--bg-void) 0%, transparent 40%); 
    pointer-events: none; 
}

.hero-swiper { 
    width: 100%; 
    height: 100%; 
}

.hero-swiper .swiper-slide { 
    background-size: cover; 
    background-position: center; 
}

.hero-float { 
    position: absolute; 
    background: rgba(255, 255, 255, .96); 
    border: 1px solid var(--border); 
    border-radius: var(--r-md); 
    padding: 12px 16px; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    z-index: 3; 
    box-shadow: var(--shadow-card); 
    animation: float-card 4s ease-in-out infinite alternate; 
}

@keyframes float-card {
    from { transform: translateY(0); }
    to { transform: translateY(-8px); }
}

.hero-float-1 { 
    bottom: 20px; 
    left: 10px; 
    right: auto !important; 
}

.hero-float-2 { 
    top: 30px; 
    right: 10px; 
    left: auto !important; 
    animation-delay: 1.5s; 
}

.hf-icon { 
    width: 36px; 
    height: 36px; 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 16px; 
    flex-shrink: 0; 
}

.hf-icon.orange { 
    background: var(--orange-dim); 
    color: var(--orange); 
}

.hf-icon.green { 
    background: var(--green-dim); 
    color: var(--green); 
}

.hf-text .hf-top { 
    font-size: 12px; 
    font-weight: 700; 
    color: var(--text-hi); 
}

.hf-text .hf-bot { 
    font-size: 11px; 
    color: var(--text-mid); 
}

/* ================================================
   TRUST BAR
   ================================================ */
.trust-bar { 
    background: var(--bg-surface); 
    border-bottom: 1px solid var(--border); 
    padding: 24px 0; 
}

.trust-inner { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 32px; 
    flex-wrap: wrap; 
}

.trust-item { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 13px; 
    font-weight: 600; 
    color: var(--text-mid); 
}

.trust-item i { 
    color: var(--orange); 
    font-size: 15px; 
}

/* ================================================
   TECH LAB
   ================================================ */
.tech-lab { 
    background: var(--bg-surface); 
    border-bottom: 1px solid var(--border); 
}

.lab-layout { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
}

.lab-img-wrap { 
    position: relative; 
    border-radius: var(--r-xl); 
    overflow: hidden; 
    border: 1px solid var(--border); 
}

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

.lab-features { 
    display: flex; 
    flex-direction: column; 
    gap: 24px; 
    margin-top: 30px; 
}

.lab-feature { 
    display: flex; 
    gap: 16px; 
}

.lf-num { 
    font-family: 'Space Grotesk', sans-serif; 
    font-size: 11px; 
    font-weight: 700; 
    color: var(--orange); 
    padding: 4px 8px; 
    background: var(--orange-dim); 
    border-radius: 6px; 
    flex-shrink: 0; 
    height: fit-content; 
    margin-top: 4px; 
}

.lf-body h4 { 
    font-size: 16px; 
    font-weight: 700; 
    color: var(--text-hi); 
    margin-bottom: 6px; 
}

.lf-body p { 
    font-size: 14px; 
    color: var(--text-mid); 
    line-height: 1.6; 
}

/* ================================================
   PROCESS
   ================================================ */
.process { 
    border-bottom: 1px solid var(--border); 
}

.process-steps { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 1px; 
    background: var(--border); 
    border: 1px solid var(--border); 
    border-radius: var(--r-lg); 
    overflow: hidden; 
}

.process-step { 
    background: var(--bg-card); 
    padding: 32px 24px; 
    text-align: center; 
}

.ps-icon { 
    font-size: 32px; 
    color: var(--orange); 
    margin-bottom: 16px; 
}

.ps-title { 
    font-size: 16px; 
    font-weight: 700; 
    color: var(--text-hi); 
    margin-bottom: 10px; 
}

.ps-desc { 
    font-size: 13px; 
    color: var(--text-mid); 
    line-height: 1.5; 
}

/* ================================================
   SERVICES
   ================================================ */
.services-grid { 
    display: grid !important; 
    grid-template-columns: repeat(4, 1fr) !important; 
    gap: 20px !important; 
}

.service-card { 
    background: var(--bg-card); 
    border: 1px solid var(--border); 
    border-radius: var(--r-lg); 
    padding: 32px; 
    transition: var(--trans); 
}

.service-card:hover { 
    border-color: var(--orange); 
    transform: translateY(-4px); 
    box-shadow: var(--shadow-card); 
}

.sc-icon { 
    width: 56px; 
    height: 56px; 
    border-radius: 14px; 
    background: var(--bg-void); 
    border: 1px solid var(--border); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 24px; 
    color: var(--orange); 
    margin-bottom: 20px; 
}

.sc-title { 
    font-size: 18px; 
    font-weight: 700; 
    margin-bottom: 10px; 
}

.sc-desc { 
    font-size: 14px; 
    color: var(--text-mid); 
    line-height: 1.6; 
    margin-bottom: 20px; 
}

.sc-link { 
    font-size: 13px; 
    font-weight: 700; 
    color: var(--orange); 
    text-decoration: none; 
    display: inline-flex; 
    align-items: center; 
    gap: 6px; 
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials { 
    background: var(--bg-surface); 
    border-top: 1px solid var(--border); 
    border-bottom: 1px solid var(--border); 
}

.reviews-swiper { 
    padding-bottom: 50px !important; 
    overflow: visible !important;
}

.review-card { 
    background: var(--bg-card); 
    border: 1px solid var(--border); 
    border-radius: var(--r-md); 
    padding: 32px; 
    height: 100%; 
    display: flex; 
    flex-direction: column; 
}

.review-stars { 
    color: #f59e0b; 
    font-size: 14px; 
    margin-bottom: 16px; 
    display: flex; 
    gap: 4px; 
}

.review-text { 
    font-size: 14px; 
    color: var(--text-hi); 
    line-height: 1.7; 
    flex-grow: 1; 
    font-style: italic; 
}

.review-author { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-top: 24px; 
    padding-top: 16px; 
    border-top: 1px solid var(--border); 
}

.ra-avatar { 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    background: var(--orange-dim); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 15px; 
    font-weight: 700; 
    color: var(--orange); 
    flex-shrink: 0; 
}

.ra-name { 
    font-size: 14px; 
    font-weight: 700; 
    color: var(--text-hi); 
}

.ra-device { 
    font-size: 12px; 
    color: var(--text-lo); 
    margin-top: 4px; 
}

.swiper-pagination-bullet { 
    background: var(--text-mid) !important; 
}

.swiper-pagination-bullet-active { 
    background: var(--orange) !important; 
    width: 20px !important; 
    border-radius: 4px !important; 
}

/* ================================================
   FORM
   ================================================ */
.form-shell { 
    background: var(--bg-surface); 
    border: 1px solid var(--border); 
    border-radius: var(--r-xl); 
    padding: 40px; 
    max-width: 800px; 
    margin: 0 auto; 
}

.prog-track { 
    display: flex; 
    align-items: center; 
    margin-bottom: 40px; 
}

.prog-node { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 8px; 
    flex: 1; 
    position: relative; 
    z-index: 2; 
}

.prog-circle { 
    width: 36px; 
    height: 36px; 
    border-radius: 50%; 
    border: 2px solid var(--border); 
    background: var(--bg-card); 
    color: var(--text-mid); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 13px; 
    font-weight: 700; 
}

.prog-node.active .prog-circle { 
    border-color: var(--orange); 
    background: var(--orange); 
    color: #fff; 
}

.prog-node.done .prog-circle { 
    border-color: var(--green); 
    background: var(--green); 
    color: #000; 
}

.prog-node.done .prog-circle::before { 
    content: '\f00c'; 
    font-family: 'Font Awesome 6 Free'; 
    font-weight: 900; 
    font-size: 12px; 
}

.prog-node.done .prog-circle span { 
    display: none; 
}

.prog-label { 
    font-size: 11px; 
    font-weight: 700; 
    color: var(--text-mid); 
    text-transform: uppercase; 
}

.prog-node.active .prog-label { 
    color: var(--orange); 
}

.prog-node.done .prog-label { 
    color: var(--green); 
}

.prog-line { 
    flex: 1; 
    height: 2px; 
    background: var(--border); 
    margin: 0 -10px; 
    margin-bottom: 20px; 
    position: relative; 
    z-index: 1; 
}

.prog-fill { 
    height: 100%; 
    background: var(--orange); 
    width: 0%; 
    transition: width .4s ease; 
}

.form-step { 
    display: none; 
}

.form-step.active { 
    display: block; 
    animation: fadeIn .4s ease; 
}

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

.fg { 
    margin-bottom: 20px; 
}

.fg label { 
    display: block; 
    font-size: 12px; 
    font-weight: 600; 
    color: var(--text-mid); 
    text-transform: uppercase; 
    margin-bottom: 8px; 
}

.fg input, 
.fg textarea, 
.fg select { 
    width: 100%; 
    background: rgba(20, 20, 30, .025); 
    border: 1px solid var(--border); 
    border-radius: var(--r-sm); 
    padding: 14px 16px; 
    font-size: 14px; 
    color: var(--text-hi); 
    font-family: 'Inter', sans-serif; 
    outline: none; 
    transition: var(--trans); 
}

.fg input:focus, 
.fg textarea:focus, 
.fg select:focus { 
    border-color: var(--orange); 
}

/* Hata Durumları */
.fg.has-error label { 
    color: #ff4b4b; 
}

.fg.has-error input, 
.fg.has-error select, 
.fg.has-error textarea { 
    border-color: #ff4b4b; 
    background: rgba(255, 0, 0, .03); 
}

.error-msg { 
    display: none; 
    color: #ff4b4b; 
    font-size: 12px; 
    margin-top: 6px; 
}

.fg.has-error .error-msg { 
    display: block; 
}

.kvkk-row.has-error label { 
    color: #ff4b4b; 
    font-weight: 600; 
}

.fg select option { 
    background: var(--bg-card); 
    color: var(--text-hi); 
}

.input-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
}

.summary-panel { 
    background: rgba(255, 98, 0, .03); 
    border: 1px solid var(--border-warm); 
    border-radius: var(--r-sm); 
    padding: 24px; 
    margin-bottom: 20px; 
}

.sum-row { 
    display: flex; 
    justify-content: space-between; 
    padding: 10px 0; 
    border-bottom: 1px solid rgba(20, 20, 30, .07); 
    font-size: 14px; 
}

.sum-row:last-child { 
    border: none; 
    padding-bottom: 0; 
}

.sum-key { 
    color: var(--text-mid); 
}

.sum-val { 
    color: var(--text-hi); 
    font-weight: 600; 
    text-align: right; 
}

.kvkk-row { 
    display: flex; 
    gap: 12px; 
    margin-top: 20px; 
    align-items: flex-start; 
}

.kvkk-row input { 
    width: 18px; 
    height: 18px; 
    margin-top: 2px; 
    accent-color: var(--orange); 
}

.kvkk-row label { 
    font-size: 13px; 
    color: var(--text-mid); 
    line-height: 1.5; 
    cursor: pointer; 
}

.form-nav { 
    display: flex; 
    gap: 12px; 
    margin-top: 30px; 
}

/* ================================================
   SUCCESS MODAL
   ================================================ */
.modal-overlay { 
    position: fixed; 
    inset: 0; 
    z-index: 9999; 
    background: rgba(0, 0, 0, .85); 
    backdrop-filter: blur(5px); 
    display: none; 
    align-items: center; 
    justify-content: center; 
    padding: 20px; 
}

.modal-overlay.show { 
    display: flex; 
}

.modal-box { 
    background: var(--bg-card); 
    border: 1px solid var(--border); 
    padding: 40px; 
    border-radius: var(--r-lg); 
    text-align: center; 
    max-width: 400px; 
    width: 100%; 
    box-shadow: var(--shadow-glow); 
}

.m-icon { 
    width: 60px; 
    height: 60px; 
    background: var(--green-dim); 
    color: var(--green); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 28px; 
    margin: 0 auto 20px; 
}

.m-title { 
    font-size: 22px; 
    font-weight: 700; 
    color: var(--text-hi); 
    margin-bottom: 10px; 
}

.m-ticket { 
    font-size: 24px; 
    font-weight: 800; 
    color: var(--orange); 
    letter-spacing: 1px; 
    margin: 15px 0 25px; 
}

/* ================================================
   BRANCHES
   ================================================ */
.branches-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 30px; 
}

.branch-card { 
    background: var(--bg-card); 
    border: 1px solid var(--border); 
    border-radius: var(--r-lg); 
    overflow: hidden; 
}

.branch-map { 
    height: 250px; 
    background: var(--bg-surface); 
}

.branch-map iframe { 
    width: 100%; 
    height: 100%; 
    border: none; 
    filter: invert(.9) hue-rotate(180deg) brightness(.8); 
}

.branch-info { 
    padding: 24px; 
}

.bi-name { 
    font-size: 16px; 
    font-weight: 700; 
    color: var(--text-hi); 
    margin-bottom: 10px; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}

.bi-badge { 
    font-size: 10px; 
    background: var(--orange-dim); 
    color: var(--orange); 
    padding: 2px 8px; 
    border-radius: 4px; 
}

.bi-addr { 
    font-size: 14px; 
    color: var(--text-mid); 
    margin-bottom: 20px; 
    line-height: 1.5; 
}

.bi-actions { 
    display: flex; 
    gap: 10px; 
}

.bi-act-p { 
    background: var(--orange); 
    color: #fff; 
    padding: 10px 16px; 
    border-radius: 8px; 
    text-decoration: none; 
    font-size: 13px; 
    font-weight: 600; 
}

.bi-act-s { 
    border: 1px solid var(--border); 
    color: var(--text-hi); 
    padding: 10px 16px; 
    border-radius: 8px; 
    text-decoration: none; 
    font-size: 13px; 
    font-weight: 600; 
}


/* ================================================
   KONUM + İLETİŞİM KARTLARI
   ================================================ */
.contact-location-grid {
    align-items: stretch;
}

.map-contact-card,
.contact-detail-card {
    min-height: 500px;
}

.map-contact-card {
    display: flex;
    flex-direction: column;
}

.contact-map {
    flex: 1;
    height: auto;
    min-height: 360px;
}

.contact-map iframe {
    filter: none !important;
}

.contact-detail-card {
    display: flex;
}

.contact-detail-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.contact-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-dim);
    color: var(--orange);
    font-size: 20px;
}

.contact-title {
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.contact-intro {
    color: var(--text-mid);
    font-size: 13px;
    line-height: 1.6;
}

.contact-list {
    display: flex;
    flex-direction: column;
    margin-top: 8px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-hi);
    text-decoration: none;
}

.contact-row-link {
    transition: var(--trans);
}

.contact-row-link:hover {
    color: var(--orange);
}

.contact-row-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-dim);
    color: var(--orange);
    font-size: 16px;
}

.contact-row-icon.whatsapp-icon {
    background: rgba(0, 179, 119, 0.10);
    color: var(--green);
}

.contact-row-body {
    min-width: 0;
    flex: 1;
}

.contact-label {
    display: block;
    color: var(--text-lo);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    color: var(--text-hi);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.contact-row-link:hover .contact-value {
    color: var(--orange);
}

.contact-arrow {
    color: var(--text-lo);
    font-size: 11px;
}

.contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: auto;
    padding-top: 22px;
}

.contact-action-btn {
    width: 100%;
}

.contact-whatsapp-btn {
    background: var(--green);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 179, 119, .22);
}

.contact-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 179, 119, .35);
}

@media (max-width: 768px) {
    .contact-location-grid {
        grid-template-columns: 1fr !important;
    }

    .map-contact-card,
    .contact-detail-card {
        min-height: auto;
    }

    .contact-map {
        min-height: 320px;
    }

    .contact-detail-inner {
        padding: 24px;
    }

    .contact-actions {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }
}


/* ================================================
   ÖNCESİ / SONRASI
   ================================================ */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ba-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 16px;
    box-shadow: var(--shadow-card);
}

.ba-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.ba-img {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--r-sm);
    overflow: hidden;
}

.ba-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

.ba-tag.ba-before {
    background: #4a4a55;
}

.ba-tag.ba-after {
    background: var(--orange);
}

.ba-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.ba-card p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
}

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

/* ================================================
   SSS (FAQ)
   ================================================ */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    overflow: hidden;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
}

.faq-q i {
    color: var(--orange);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-q i {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    padding: 0 22px;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 22px 20px;
}

.faq-a p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ================================================
   FOOTER - SİTE YAPISINA TAM UYUMLU
   ================================================ */
.site-footer {
    background: #17130f;
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    margin-top: 0;
    color: var(--text-mid);
    --text-hi: #ffffff;
    --text-mid: #b7b3ae;
    --text-lo: #837e78;
    --border: rgba(255,255,255,0.10);
}

/* FOOTER TOP GRID */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* 1. SÜTUN: MARKA */
.footer-brand .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-hi);
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-brand .footer-logo .logo-img {
    height: 34px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-brand .footer-logo .logo-mark {
    width: 36px;
    height: 36px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

.footer-brand .footer-logo .logo-text {
    font-family: 'Space Grotesk', sans-serif;
}

.fi-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 340px;
    margin-bottom: 20px;
}

/* SOSYAL MEDYA */
.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    font-size: 16px;
    text-decoration: none;
    transition: var(--trans);
}

.socials a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-2px);
}

/* 2. SÜTUN: LİNKLER */
.fl-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-hi);
    margin-bottom: 20px;
}

.fl-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links .fl-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}

.fl-list a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fl-list a:hover {
    color: var(--text-hi);
}

.fl-list a i {
    color: var(--orange);
    width: 18px;
    font-size: 13px;
    flex-shrink: 0;
}

/* 3. SÜTUN: İLETİŞİM */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-mid);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    transition: color 0.3s;
}

.footer-contact-item:hover {
    color: var(--orange);
}

.footer-contact-item i {
    color: var(--orange);
    width: 20px;
    flex-shrink: 0;
    font-size: 15px;
}

/* ÇALIŞMA SAATLERİ KUTUSU */
.working-hours-box {
    margin-top: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
}

.wh-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-lo);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wh-title i {
    color: var(--orange);
}

.wh-text {
    font-size: 14px;
    color: var(--text-mid);
}

/* FOOTER BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 13px;
    color: var(--text-lo);
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-links a {
    color: var(--text-lo);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 12px;
}

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

.copyright {
    color: var(--text-lo);
    font-size: 13px;
}

/* ================================================
   MOBİL SABİT ARA / WHATSAPP BARI
   ================================================ */
.mobile-sticky-bar {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 64px;
    }
    .mobile-sticky-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 950;
        background: var(--bg-void);
        border-top: 1px solid var(--border);
        box-shadow: 0 -8px 24px rgba(20,20,30,.08);
    }
    .msb-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 10px;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
    }
    .msb-call {
        background: var(--orange);
        color: #fff;
    }
    .msb-wa {
        background: #1fae5a;
        color: #fff;
    }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .hero-visual { 
        display: none; 
    }
    .hero-grid { 
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .services-grid { 
        grid-template-columns: repeat(2, 1fr) !important; 
    }
}

@media (max-width: 768px) {
    section { 
        padding: 60px 0; 
    }
    .form-shell { 
        padding: 24px; 
    }
    .input-row { 
        grid-template-columns: 1fr; 
    }
    .hero { 
        padding-top: 100px; 
        padding-bottom: 40px; 
    }
    .hero h1 { 
        font-size: 36px; 
    }
    .hero-stats { 
        flex-direction: column; 
        gap: 20px; 
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .legal-links {
        justify-content: center;
        gap: 12px;
    }
    
    .legal-links a {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .services-grid { 
        grid-template-columns: 1fr !important; 
    }
    
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 12px;
    }
}

/* ================================================
   ZOOM KORUMASI - ÇOK BÜYÜK EKRANLAR
   ================================================ */
@media screen and (min-width: 1800px) {
    .hero-visual { 
        max-width: 450px; 
        margin: 0 auto; 
    }
    .container { 
        max-width: 1600px !important; 
    }
}

@media screen and (min-width: 2500px) {
    html { 
        font-size: 18px; 
    }
    .container { 
        max-width: 1800px !important; 
    }
    .hero-visual { 
        max-width: 400px; 
    }
}

/* ================================================
   ANİMASYON AZALTMA
   ================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    .mesh-orb,
    .hero-float {
        animation: none !important;
        transition: none !important;
    }
}

/* ================================================
   FOOTER - KOMPAKT / YATAY SON DÜZEN
   ================================================ */
.site-footer {
    padding: 34px 0 18px;
}

.footer-top {
    grid-template-columns: 1fr 2.2fr 1.4fr;
    gap: 30px;
    padding-bottom: 22px;
    align-items: start;
}

.footer-brand .footer-logo {
    margin-bottom: 10px;
}

.footer-brand .footer-logo .logo-img {
    height: 30px;
    max-width: 160px;
}

.fi-desc {
    max-width: 290px;
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.55;
}

.socials {
    gap: 7px;
}

.socials a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 13px;
}

.fl-title {
    margin-bottom: 11px;
    font-size: 14px;
}

.fl-list {
    gap: 7px;
}

.footer-links .fl-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px 14px;
}

.footer-contact > .fl-list:first-of-type {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 12px;
}

.footer-contact .contact-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.fl-list a {
    gap: 6px;
    font-size: 12px;
    line-height: 1.35;
    white-space: nowrap;
}

.fl-list a i {
    width: 15px;
    font-size: 11px;
}

.working-hours-box {
    margin-top: 10px;
    padding: 10px 13px;
}

.wh-title {
    margin-bottom: 3px;
    font-size: 9px;
}

.wh-text {
    font-size: 12px;
}

.footer-bottom {
    padding-top: 14px;
    gap: 10px 18px;
    font-size: 11px;
}

.copyright,
.legal-links a {
    font-size: 11px;
}

.trademark-note {
    display: inline;
    margin-left: 5px;
    color: var(--text-lo);
}

.legal-links {
    gap: 8px 12px;
}

@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: 1fr 2fr;
        gap: 24px;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-contact > .fl-list:first-of-type {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 28px 0 16px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-bottom: 18px;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-links .fl-list,
    .footer-contact > .fl-list:first-of-type {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fl-list a {
        white-space: normal;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .trademark-note {
        display: block;
        margin: 3px 0 0;
    }
}

@media (max-width: 480px) {
    .footer-links .fl-list,
    .footer-contact > .fl-list:first-of-type {
        grid-template-columns: 1fr 1fr;
        gap: 7px 10px;
    }

    .fl-list a {
        font-size: 11px;
    }
}

/* ================= PANEL ENTEGRE DİNAMİK SEO SAYFALARI ================= */
.seo-page-hero{padding:140px 0 70px;border-bottom:1px solid var(--border);background:radial-gradient(circle at 8% 22%,rgba(255,98,0,.11),transparent 31%),var(--bg-void)}
.seo-breadcrumbs{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin-bottom:24px;color:var(--text-lo);font-size:12px}.seo-breadcrumbs a{color:var(--text-mid);text-decoration:none}.seo-breadcrumbs a:hover{color:var(--orange)}
.seo-page-grid{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);gap:42px;align-items:center}.seo-page-hero h1{font-family:'Space Grotesk',sans-serif;font-size:clamp(36px,5vw,62px);line-height:1.08;letter-spacing:-1.5px;margin-bottom:20px}.seo-page-lead{color:var(--text-mid);font-size:clamp(15px,2vw,18px);line-height:1.7;max-width:800px;margin-bottom:28px}.seo-hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.seo-quick-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--r-lg);padding:28px;box-shadow:var(--shadow-card)}.seo-quick-card h3{font-family:'Space Grotesk',sans-serif;font-size:19px;margin-bottom:15px}.seo-checks{list-style:none;display:grid;gap:11px}.seo-checks li{display:flex;gap:9px;color:var(--text-mid);font-size:13px;line-height:1.5}.seo-checks i{color:var(--orange);margin-top:3px}
.seo-content{max-width:920px;margin:0 auto}.seo-content h2{font-family:'Space Grotesk',sans-serif;font-size:clamp(28px,3.5vw,44px);line-height:1.18;margin-bottom:18px}.seo-content h3{font-family:'Space Grotesk',sans-serif;font-size:22px;margin:28px 0 10px}.seo-content p,.seo-content li{color:var(--text-mid);font-size:15px;line-height:1.8}.seo-content p{margin-bottom:16px}.seo-content ul,.seo-content ol{padding-left:22px;margin-bottom:18px}
.seo-process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.seo-process-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--r-md);padding:24px}.seo-process-no{display:inline-flex;padding:4px 9px;border-radius:7px;background:var(--orange-dim);color:var(--orange);font-size:11px;font-weight:800;margin-bottom:14px}.seo-process-card h3{font-size:16px;margin-bottom:8px}.seo-process-card p{color:var(--text-mid);font-size:13px;line-height:1.65}
.seo-related{display:flex;justify-content:center;flex-wrap:wrap;gap:9px}.seo-related a{display:inline-flex;align-items:center;gap:7px;padding:9px 13px;border:1px solid var(--border);border-radius:100px;background:var(--bg-card);color:var(--text-mid);text-decoration:none;font-size:12px;font-weight:700}.seo-related a:hover{color:var(--orange);border-color:var(--orange)}
.seo-cta-box{display:flex;align-items:center;justify-content:space-between;gap:28px;padding:36px;border-radius:var(--r-xl);background:#17130f;color:#fff}.seo-cta-box h2{font-family:'Space Grotesk',sans-serif;font-size:clamp(26px,3vw,38px);margin-bottom:8px}.seo-cta-box p{color:#b7b3ae;max-width:700px}.seo-cta-actions{display:flex;gap:10px;flex-wrap:wrap;flex-shrink:0}
.seo-contact-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:24px}.seo-contact-map{min-height:470px;overflow:hidden;border:1px solid var(--border);border-radius:var(--r-lg);background:var(--bg-surface)}.seo-contact-map iframe{width:100%;height:100%;min-height:470px;border:0}.seo-contact-panel{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--r-lg);padding:28px}.seo-contact-panel h2{font-family:'Space Grotesk',sans-serif;margin-bottom:8px}.seo-contact-panel>p{color:var(--text-mid);font-size:13px;margin-bottom:12px}.seo-contact-item{display:flex;gap:13px;align-items:center;padding:15px 0;border-bottom:1px solid var(--border);color:var(--text-hi);text-decoration:none}.seo-contact-item:last-child{border-bottom:0}.seo-contact-icon{width:42px;height:42px;min-width:42px;border-radius:11px;display:flex;align-items:center;justify-content:center;color:var(--orange);background:var(--orange-dim)}.seo-contact-item small{display:block;color:var(--text-lo);font-size:10px;font-weight:800;text-transform:uppercase}.seo-contact-item strong{display:block;font-size:13px;overflow-wrap:anywhere}
@media(max-width:1024px){.seo-page-grid,.seo-contact-grid{grid-template-columns:1fr}.seo-process-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:768px){.seo-page-hero{padding:105px 0 50px}.seo-process-grid{grid-template-columns:1fr}.seo-cta-box{display:block;padding:28px}.seo-cta-actions{margin-top:20px}}
