/* ==========================================================================
   ARKETİP — İŞ GÜVENLİĞİ KURUMSAL TASARIM SİSTEMİ (v4.0)
   Renk Kimliği: Arketip Logo Paleti: Mor (#3a2b7a) + Mavi (#315f96) + Cyan (#2c78a8)
   ========================================================================== */

/* ── 1. DEĞİŞKENLER & TEMEL AYARLAR ───────────────────────── */
:root {
  /* Arketip Kurumsal Renk Paleti */
  --blue:         #3a2b7a;
  --blue-hover:   #2c225f;
  --blue-dark:    #2c225f;
  --navy:         #241a52;
  --navy-light:   #2c225f;
  
  /* Destekleyici & Vurgu Renkleri */
  --orange:       #2c78a8;
  --orange-light: #eef7fb;
  --green:        #16a34a;
  --green-light:  #dcfce7;
  --red:          #dc2626;

  /* Genel & Geriye Dönük Uyumluluk */
  --purple:       #3a2b7a;
  --purple-2:     #2c225f;
  --purple-3:     #241a52;
  --purple-x:     #315f96;
  --purple-light: #f1eef8;
  --purple-glow:  rgba(69, 44, 114, 0.25);
  --teal:         #2c78a8;
  --teal-2:       #315f96;
  --teal-light:   #eef7fb;
  --teal-glow:    rgba(46, 130, 172, 0.25);

  /* Nötr & Yüzey Tonları */
  --ink:          #0f172a;
  --ink-2:        #1e293b;
  --paper:        #f8fafc;
  --paper-2:      #f1f5f9;
  --white:        #ffffff;
  --muted:        #64748b;
  --muted-2:      #94a3b8;
  --line:         #e2e8f0;
  --line-dark:    rgba(255, 255, 255, 0.15);

  /* Gölgeler */
  --sh-xs:        0 1px 3px rgba(52, 32, 82, 0.06);
  --sh-sm:        0 4px 12px rgba(52, 32, 82, 0.08);
  --sh:           0 12px 32px rgba(52, 32, 82, 0.10);
  --sh-lg:        0 20px 50px rgba(52, 32, 82, 0.14);
  --sh-color:     0 10px 28px rgba(69, 44, 114, 0.35);

  /* Köşe Yuvarlama */
  --r-xs:         6px;
  --r-sm:         10px;
  --r:            16px;
  --r-lg:         22px;
  --r-pill:       999px;

  /* Boyutlar & Animasyon */
  --container:    1220px;
  --section-gap:  90px;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);

  font-family: 'Livvic', Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased }
body { background: var(--white); color: var(--ink); line-height: 1.65; font-size: 16px; overflow-x: hidden }
img { max-width: 100%; height: auto; display: block }
a { text-decoration: none; color: inherit; transition: color .2s var(--ease) }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit }
input, textarea, select { font: inherit }
ul, ol { list-style: none }
h1, h2, h3, h4, h5, h6 { line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); font-weight: 800 }

/* ── 2. SCROLL REVEAL & ANİMASYON ──────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease) }
.reveal.visible { opacity: 1; transform: translateY(0) }
.reveal-delay-1 { transition-delay: .08s }
.reveal-delay-2 { transition-delay: .16s }
.reveal-delay-3 { transition-delay: .24s }
.reveal-delay-4 { transition-delay: .32s }

/* ── 3. DÜZEN & TİPOGRAFİ BİLEŞENLERİ ──────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px }
.section { padding: var(--section-gap) 0 }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; flex-wrap: wrap }
.section-head h2 { font-size: clamp(1.85rem, 3.2vw, 2.5rem); color: var(--navy) }
.section-lead { font-size: 1.05rem; color: var(--muted); max-width: 600px; line-height: 1.7 }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; color: var(--blue)
}
.eyebrow::before { content: ''; width: 16px; height: 3px; border-radius: 2px; background: var(--orange) }
.eyebrow.light { color: #69c8e3 }
.eyebrow.light::before { background: var(--orange) }

.text-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .875rem; font-weight: 800; color: var(--blue); transition: gap .25s var(--ease), color .2s
}
.text-link:hover { gap: 10px; color: var(--orange) }

.skip-link {
  position: absolute; top: -100px; left: 24px; padding: 10px 20px;
  background: var(--blue-dark); color: #fff; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 800; font-size: .875rem; transition: top .2s; z-index: 9999
}
.skip-link:focus { top: 0 }

/* ── 4. BUTONLAR ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 24px; border-radius: var(--r-sm);
  font-weight: 800; font-size: .875rem; border: 1.5px solid transparent;
  transition: transform .25s var(--ease-bounce), box-shadow .3s, background .2s, border-color .2s;
  position: relative; overflow: hidden; white-space: nowrap
}
.btn:hover { transform: translateY(-2px) }
.btn:active { transform: translateY(0) }

.btn.primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff; box-shadow: var(--sh-color)
}
.btn.primary:hover {
  background: linear-gradient(135deg, #54378a 0%, var(--blue) 100%);
  box-shadow: 0 14px 34px rgba(69, 44, 114, 0.45)
}
.btn.ghost {
  background: rgba(69, 44, 114, 0.08); color: var(--blue-dark);
  border-color: rgba(69, 44, 114, 0.2)
}
.btn.ghost:hover { background: rgba(69, 44, 114, 0.15); border-color: var(--blue) }
.btn.light {
  background: #fff; color: var(--blue-dark); border-color: rgba(255,255,255,.4);
  box-shadow: 0 4px 16px rgba(0,0,0,.12)
}
.btn.light:hover { background: #f8fafc; box-shadow: 0 8px 24px rgba(0,0,0,.18) }
.btn.outline-light { border-color: rgba(255,255,255,.4); color: #fff }
.btn.outline-light:hover { background: rgba(255,255,255,.15); border-color: #fff }

/* ── 5. BİLGİ ŞERİDİ (UTILITY BAR) ─────────────────────────── */
.utility-bar {
  background: linear-gradient(90deg, #2c225f 0%, #315f96 100%);
  color: rgba(255,255,255,.95); font-size: .75rem; font-weight: 600
}
.utility-inner { display: flex; justify-content: space-between; align-items: center; height: 38px; gap: 20px }
.utility-proof { display: flex; align-items: center; gap: 10px }
.utility-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.25); animation: utilPulse 2.5s infinite
}
@keyframes utilPulse { 0%,100% { box-shadow: 0 0 0 4px rgba(34,197,94,.25) } 50% { box-shadow: 0 0 0 8px rgba(34,197,94,.08) } }
.utility-proof strong { color: #fff; font-weight: 800 }
.utility-links { display: flex; gap: 20px }
.utility-links a { color: rgba(255,255,255,.9); transition: color .2s }
.utility-links a:hover { color: #fff }
.utility-links a span { display: none }
@media(min-width:640px) { .utility-links a span { display: inline; margin-right: 4px; opacity: .75 } }

/* ── 6. HEADER & MENÜ SİSTEMİ ──────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(52, 32, 82, 0.04);
  transition: box-shadow .3s var(--ease)
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(52, 32, 82, 0.09);
}
.nav-shell { display: flex; align-items: center; gap: 12px; height: 74px }
.brand { flex-shrink: 0; display: flex; align-items: center }
.brand img { height: 42px; width: auto }
.main-nav { display: flex; align-items: center; gap: 2px; margin: 0 auto }
.main-nav>a {
  padding: 10px 14px; border-radius: var(--r-sm);
  font-size: .875rem; font-weight: 700; color: var(--navy);
  transition: background .2s, color .2s
}
.main-nav>a:hover { background: var(--paper-2); color: var(--blue) }

/* ── Mega Menü Dropdownları ───────────────────────────────── */
.nav-drop { position: relative }
.nav-drop>button {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: var(--r-sm);
  font-size: .875rem; font-weight: 700; color: var(--navy);
  transition: background .2s, color .2s
}
.nav-drop>button:hover,
.nav-drop:hover>button,
.nav-drop.is-active>button {
  background: var(--paper-2); color: var(--blue)
}
.chev { font-size: .75rem; opacity: .6; transition: transform .25s var(--ease) }
.nav-drop:hover .chev,
.nav-drop.is-active .chev { transform: rotate(180deg) }

/* Açılan Menü Paneli */
.mega-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 260px; background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r); padding: 24px;
  box-shadow: 0 20px 50px rgba(52, 32, 82, 0.14), 0 4px 16px rgba(0,0,0,0.04);
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  z-index: 250
}
/* Hover Köprüsü — Fare butondan menüye inerken kapanmayı engeller */
.mega-menu::before {
  content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px; background: transparent
}

/* Hover ve Active Durumunda Menüyü Göster */
.nav-drop:hover .mega-menu,
.nav-drop.is-active .mega-menu {
  opacity: 1; pointer-events: auto; visibility: visible;
  transform: translateX(-50%) translateY(0)
}

.mega-intro small { display: block; font-size: .6875rem; letter-spacing: .12em; color: var(--orange); font-weight: 900; text-transform: uppercase; margin-bottom: 6px }
.mega-intro strong { display: block; font-size: 1rem; line-height: 1.35; color: var(--navy); margin-bottom: 6px }
.mega-intro p { font-size: .8125rem; color: var(--muted); line-height: 1.55; margin-bottom: 12px }
.mega-intro a { font-size: .8125rem; font-weight: 800; color: var(--blue) }
.mega-intro a:hover { color: var(--orange) }

.mega-compact { min-width: 520px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px }
.mega-links { display: grid; gap: 2px }
.mega-links a {
  padding: 8px 12px; border-radius: var(--r-xs); font-size: .84rem; font-weight: 600;
  color: var(--ink-2); transition: background .15s, color .15s, padding-left .2s var(--ease)
}
.mega-links a:hover { background: var(--paper-2); color: var(--blue); padding-left: 16px }
.mega-label { display: block; font-size: .6875rem; letter-spacing: .12em; color: var(--muted-2); font-weight: 900; text-transform: uppercase; padding: 6px 12px 4px }
.mega-more { color: var(--blue) !important; font-weight: 800 !important; margin-top: 6px }

.mega-services { min-width: 740px }
.service-intro { grid-column: 1/-1; border-bottom: 1px solid var(--line); padding-bottom: 16px; margin-bottom: 8px; display: flex; align-items: flex-end; justify-content: space-between }
.mega-cta { font-size: .8125rem; font-weight: 800; color: var(--blue); white-space: nowrap }
.mega-cta:hover { color: var(--orange) }
.mega-service-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 8px }
.mega-group { display: grid; gap: 2px }
.mega-group>span { font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); font-weight: 900; padding: 6px 8px 2px }
.mega-group a {
  padding: 6px 10px; border-radius: var(--r-xs); font-size: .8125rem; font-weight: 600;
  color: var(--ink-2); transition: background .15s, color .15s, padding-left .2s var(--ease)
}
.mega-group a:hover { background: var(--paper-2); color: var(--blue); padding-left: 14px }

.mega-solutions { min-width: 480px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px }
.mega-tools { min-width: 600px; display: grid; grid-template-columns: repeat(3,1fr) 1.1fr; gap: 12px }
.tool-nav-card {
  display: grid; gap: 6px; padding: 16px; border-radius: var(--r-sm);
  background: var(--paper); border: 1px solid var(--line);
  transition: border-color .25s, background .25s, transform .25s var(--ease)
}
.tool-nav-card:hover {
  background: #eef7fb; border-color: rgba(69,44,114,.3); transform: translateY(-2px)
}
.tool-nav-card i { font-style: normal; font-size: .6875rem; font-weight: 900; color: var(--blue) }
.tool-nav-card strong { font-size: .875rem; color: var(--navy); line-height: 1.25 }
.tool-nav-card span { font-size: .75rem; color: var(--muted); line-height: 1.4 }
.tool-links { grid-column: 4; border-left: 1px solid var(--line); padding-left: 16px }

/* Header Sağ Butonlar */
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0 }
.search-trigger {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  display: grid; place-items: center; background: var(--paper);
  color: var(--navy); border: 1px solid var(--line);
  transition: background .2s, color .2s
}
.search-trigger:hover { background: var(--paper-2); color: var(--blue) }
.search-trigger svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 20px; border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff; font-weight: 800; font-size: .8125rem;
  box-shadow: 0 4px 14px rgba(69, 44, 114, 0.3);
  transition: transform .25s, box-shadow .3s, background .2s
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(69, 44, 114, 0.45) }
.nav-toggle {
  display: none; width: 42px; height: 42px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border-radius: var(--r-sm); background: var(--paper); border: 1px solid var(--line)
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: .25s }

/* ── 7. ARAMA EKRANI (SEARCH OVERLAY) ──────────────────────── */
.search-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(52, 32, 82, 0.95);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: grid; place-items: center; opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease)
}
.search-overlay[aria-hidden="false"],
.search-overlay.open { opacity: 1; pointer-events: auto }
.search-overlay-close {
  position: absolute; top: 28px; right: 28px; width: 44px; height: 44px;
  border-radius: 50%; background: rgba(255,255,255,.15); color: #fff;
  font-size: 1.5rem; display: grid; place-items: center
}
.search-overlay-inner { text-align: center; width: min(640px,90vw) }
.search-overlay-inner>span { display: block; font-size: .6875rem; letter-spacing: .2em; font-weight: 900; color: #69c8e3; text-transform: uppercase; margin-bottom: 14px }
.search-overlay-inner h2 { font-size: clamp(2rem,5vw,3.2rem); color: #fff; margin-bottom: 32px }
.search-overlay-inner form {
  display: flex; gap: 8px; background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3); border-radius: var(--r); padding: 8px
}
.search-overlay-inner input { flex: 1; background: none; border: none; outline: none; color: #fff; font-size: 1.05rem; padding: 8px 16px }
.search-overlay-inner input::placeholder { color: rgba(255,255,255,.6) }
.search-shortcuts { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 24px }
.search-shortcuts a {
  padding: 6px 14px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.12); color: #fff; font-size: .8125rem; font-weight: 600
}

/* ── 8. HERO (GİRİŞ BÖLÜMÜ) ────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(60px, 8vw, 100px) 0 clamp(60px, 8vw, 110px);
  background: radial-gradient(circle at 85% 20%, rgba(69, 44, 114, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(46, 130, 172, 0.05) 0%, transparent 40%),
              linear-gradient(180deg, #eef7fb 0%, #ffffff 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(69,44,114,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(69,44,114,.03) 1px, transparent 1px);
  background-size: 48px 48px
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; position: relative }
.hero-copy { display: grid; gap: 20px }
.hero-note {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 16px; border-radius: var(--r-pill);
  background: #ffffff; border: 1px solid rgba(69,44,114,.2);
  box-shadow: var(--sh-xs); font-size: .8125rem; font-weight: 700; color: var(--navy); width: fit-content
}
.hero-note span { width: 8px; height: 8px; border-radius: 50%; background: var(--orange) }
.hero-copy h1 { font-size: clamp(2.2rem, 4.4vw, 3.3rem); line-height: 1.12; color: var(--navy) }
.hero-copy h1 em { font-style: normal; color: var(--blue) }
.hero-copy p { font-size: clamp(1rem, 1.3vw, 1.15rem); color: var(--muted); line-height: 1.7; max-width: 540px }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center }
.trust-line {
  display: flex; gap: 36px; padding-top: 24px;
  border-top: 1px solid var(--line); margin-top: 12px
}
.trust-line span { display: grid; gap: 2px }
.trust-line b { font-size: 1.6rem; color: var(--navy); font-weight: 900; line-height: 1 }
.trust-line small { font-size: .75rem; color: var(--muted); text-transform: uppercase; font-weight: 700 }

.hero-visual { position: relative }
.hero-main-img {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-lg); border: 1px solid var(--line);
  position: relative; aspect-ratio: 4/3; background: var(--paper-2)
}
.hero-main-img img { width: 100%; height: 100%; object-fit: cover }
.visual-tag {
  position: absolute; bottom: 16px; left: 16px;
  padding: 8px 16px; border-radius: var(--r-pill);
  background: rgba(6, 19, 64, 0.88); backdrop-filter: blur(12px);
  color: #fff; font-size: .75rem; font-weight: 800;
  display: flex; align-items: center; gap: 8px
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: utilPulse 2s infinite }
.hero-side-img {
  position: absolute; width: 48%; aspect-ratio: 1; border-radius: var(--r);
  overflow: hidden; box-shadow: var(--sh-lg);
  border: 4px solid #fff; bottom: -24px; right: -20px; z-index: 2
}
.hero-side-img img { width: 100%; height: 100%; object-fit: cover }
.hero-badge {
  position: absolute; top: -16px; right: 20px; z-index: 3;
  background: #ffffff; padding: 14px 18px; border-radius: var(--r-sm);
  box-shadow: var(--sh); border: 1px solid rgba(69,44,114,.2);
  display: grid; gap: 2px; text-align: center
}
.hero-badge small { font-size: .625rem; font-weight: 900; color: var(--orange); text-transform: uppercase }
.hero-badge strong { font-size: 1.5rem; color: var(--navy); font-weight: 900; line-height: 1 }
.hero-badge span { font-size: .6875rem; color: var(--muted); line-height: 1.2 }
.hero-float-card {
  position: absolute; bottom: 20px; right: 20px; z-index: 4;
  background: #ffffff; padding: 14px 18px; border-radius: var(--r-sm);
  box-shadow: var(--sh); border: 1px solid rgba(69,44,114,.2);
  display: flex; align-items: center; gap: 14px; transition: transform .25s var(--ease)
}
.hero-float-card:hover { transform: translateY(-3px) }
.hero-float-card small { font-size: .625rem; font-weight: 900; color: var(--blue); text-transform: uppercase }
.hero-float-card strong { font-size: .8125rem; color: var(--navy); display: block }
.hero-float-card span { font-size: 1.1rem; color: var(--blue); font-weight: 800 }

/* ── 9. ŞERİT BİLEŞENİ (SIGNAL STRIP) ──────────────────────── */
.signal-strip {
  background: linear-gradient(90deg, #2c225f 0%, #3a2b7a 100%);
  color: #fff; padding: 18px 0
}
.signal-grid { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap }
.signal-grid span { display: flex; align-items: center; gap: 8px; font-size: .875rem; font-weight: 800 }
.signal-grid span b {
  font-size: .6875rem; font-weight: 900; padding: 3px 7px;
  border-radius: 4px; background: rgba(255,255,255,.2); color: #fff
}

/* ── 10. HİZMETLER BÖLÜMÜ ──────────────────────────────────── */
.intro-section { background: var(--white) }
.split-intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center }
.split-intro h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-top: 10px }
.split-intro p { font-size: 1.05rem; color: var(--muted); line-height: 1.8; margin-bottom: 18px }

.services-section { background: var(--paper) }
.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px }
.service-card {
  background: #ffffff; border-radius: var(--r); padding: 32px 28px;
  border: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--sh-xs); position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s
}
.service-card:hover {
  transform: translateY(-4px); box-shadow: var(--sh); border-color: rgba(69,44,114,.35)
}
.service-top { display: flex; justify-content: space-between; align-items: center }
.service-index { font-size: .75rem; font-weight: 900; color: var(--muted-2) }
.service-cat {
  font-size: .6875rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); padding: 4px 10px; border-radius: var(--r-pill); background: #f1eef8
}
.service-card h3 { font-size: 1.25rem; color: var(--navy); line-height: 1.3 }
.service-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; flex: 1 }
.card-arrow {
  align-self: flex-end; width: 34px; height: 34px; border-radius: 50%;
  background: var(--paper); color: var(--blue); display: grid; place-items: center;
  font-size: 1rem; font-weight: 900; transition: background .2s, color .2s
}
.service-card:hover .card-arrow { background: var(--blue); color: #fff }

/* ── 11. KOYU ÖZELLİK ALANI (DİJİTAL ARAÇLAR) ──────────────── */
.dark-section {
  background: linear-gradient(135deg, #2c225f 0%, #241a52 100%);
  color: #fff; position: relative
}
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center }
.feature-copy { display: grid; gap: 20px }
.feature-copy h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); color: #fff }
.feature-copy p { font-size: 1.05rem; color: rgba(255,255,255,.8); line-height: 1.75 }
.tool-preview {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-lg); padding: 36px; display: grid; gap: 20px
}
.tool-kicker { font-size: .6875rem; font-weight: 900; letter-spacing: .18em; color: #69c8e3; text-transform: uppercase }
.tool-stat { display: flex; align-items: baseline; gap: 14px }
.tool-stat strong { font-size: 3.2rem; font-weight: 900; color: #fff; line-height: 1 }
.tool-stat span { font-size: 1rem; color: rgba(255,255,255,.85) }
.tool-preview-card {
  background: rgba(255,255,255,.12); border-radius: var(--r-sm); padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.2); display: grid; gap: 4px
}
.tool-preview-card span { font-size: .6875rem; font-weight: 900; color: #69c8e3 }
.tool-preview-card strong { font-size: 1.1rem; color: #fff }
.tool-preview-card small { font-size: .8125rem; color: rgba(255,255,255,.7) }
.tool-lines { display: flex; gap: 6px }
.tool-lines span { height: 4px; border-radius: 2px; background: rgba(255,255,255,.25); flex: 1 }
.tool-lines span:first-child { background: var(--orange); flex: 2 }

/* ── 12. ÇÖZÜMLER & SEKTÖRLER ──────────────────────────────── */
.solutions-section { background: var(--white) }
.landing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px }
.landing-card {
  background: var(--paper); border-radius: var(--r); padding: 32px 28px;
  border: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s
}
.landing-card:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: rgba(69,44,114,.35); background: #fff }
.landing-card h2 { font-size: 1.25rem; color: var(--navy) }
.landing-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; flex: 1 }
.landing-card b { font-size: .8125rem; color: var(--blue); font-weight: 800 }
.location-rail {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  padding: 24px 0; border-top: 1px solid var(--line); margin-top: 48px
}
.location-rail span { font-size: .6875rem; font-weight: 900; color: var(--muted); text-transform: uppercase }
.location-rail a {
  padding: 8px 16px; border-radius: var(--r-pill); background: var(--paper);
  border: 1px solid var(--line); font-size: .8125rem; font-weight: 700; color: var(--navy);
  transition: background .2s, color .2s
}
.location-rail a:hover { background: #f1eef8; color: var(--blue); border-color: rgba(69,44,114,.3) }

/* ── 13. REFERANSLAR & GALERİ ──────────────────────────────── */
.field-section { background: var(--paper) }
.gallery-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px }
.gallery-grid figure {
  border-radius: var(--r); overflow: hidden; position: relative;
  box-shadow: var(--sh-sm); border: 1px solid var(--line); aspect-ratio: 16/10
}
.gallery-grid figure img { width: 100%; height: 100%; object-fit: cover }
.gallery-grid figcaption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(6,19,64,.85) 100%);
  color: #fff; font-size: .875rem; font-weight: 700; display: flex; align-items: center; gap: 10px
}

.references-section { background: var(--white) }
.logo-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; align-items: center }
.logo-card {
  padding: 20px; border-radius: var(--r-sm); background: var(--paper);
  border: 1px solid var(--line); display: grid; place-items: center;
  transition: background .2s, transform .2s, border-color .2s; aspect-ratio: 3/2
}
.logo-card:hover { background: #fff; transform: translateY(-2px); border-color: rgba(69,44,114,.3); box-shadow: var(--sh-xs) }
.logo-card img { max-height: 48px; max-width: 120px; object-fit: contain; filter: grayscale(100%); opacity: .75; transition: filter .25s, opacity .25s }
.logo-card:hover img { filter: grayscale(0%); opacity: 1 }

/* ── 14. TEKLİF & İLETİŞİM FORMU ───────────────────────────── */
.lead-band { background: var(--paper) }
.lead-band-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: flex-start }
.lead-band-grid h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin: 12px 0 16px }
.lead-band-grid p { font-size: 1.05rem; color: var(--muted); line-height: 1.7; margin-bottom: 24px }
.mini-proof { display: grid; gap: 10px }
.mini-proof span { display: flex; align-items: center; gap: 10px; font-size: .875rem; font-weight: 700; color: var(--navy) }
.mini-proof span::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-light); color: var(--green); display: grid; place-items: center; font-size: .75rem; font-weight: 900
}
.form-shell { background: #ffffff; border-radius: var(--r-lg); padding: 36px; box-shadow: var(--sh); border: 1px solid var(--line) }
.lead-form { display: grid; gap: 18px }
.form-section-title {
  display: flex; gap: 14px; align-items: center; padding-bottom: 12px;
  border-bottom: 1px solid var(--line); margin-top: 10px
}
.form-section-title span {
  width: 28px; height: 28px; border-radius: 50%; background: var(--blue);
  color: #fff; font-size: .75rem; font-weight: 900; display: grid; place-items: center
}
.form-section-title strong { font-size: .95rem; color: var(--navy); display: block }
.form-section-title small { font-size: .75rem; color: var(--muted); display: block }
.lead-form label { display: grid; gap: 6px; font-size: .8125rem; font-weight: 700; color: var(--navy) }
.lead-form label small { font-size: .75rem; font-weight: normal; color: var(--muted) }
.lead-form input, .lead-form textarea, .lead-form select {
  width: 100%; padding: 12px 14px; border-radius: var(--r-xs);
  border: 1px solid var(--line); background: var(--paper);
  font-size: .875rem; color: var(--ink); outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s
}
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus {
  border-color: var(--blue); background: #ffffff; box-shadow: 0 0 0 3px rgba(69,44,114,.15)
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
.consent { display: flex !important; flex-direction: row; align-items: flex-start; gap: 10px; font-size: .75rem !important; color: var(--muted) }
.consent input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0 }
.hp { display: none !important }

/* ── 15. FOOTER & HIZLI İLETİŞİM ───────────────────────────── */
.footer-cta {
  background: linear-gradient(135deg, #2c225f 0%, #3a2b7a 100%);
  color: #fff; padding: 72px 0
}
.footer-cta-grid { display: flex; justify-content: space-between; align-items: center; gap: 36px; flex-wrap: wrap }
.footer-cta h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); color: #fff; max-width: 600px; margin-top: 8px }
.footer-cta-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap }
.footer-phone { display: grid; gap: 2px; color: #fff }
.footer-phone small { font-size: .6875rem; text-transform: uppercase; opacity: .8 }
.footer-phone strong { font-size: 1.3rem; font-weight: 900 }

.site-footer { background: #241a52; color: rgba(255,255,255,.75); padding: 80px 0 36px; font-size: .875rem }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 56px }
.footer-brand { display: grid; gap: 18px }
.footer-brand img { height: 42px; width: auto; filter: brightness(0) invert(1) }
.footer-brand p { font-size: .8125rem; line-height: 1.7; color: rgba(255,255,255,.65); max-width: 320px }
.footer-proof { display: flex; gap: 8px; flex-wrap: wrap }
.footer-proof span { padding: 4px 10px; border-radius: var(--r-pill); background: rgba(255,255,255,.08); color: #fff; font-size: .6875rem; font-weight: 700 }
.footer-grid h3 { font-size: .95rem; color: #fff; font-weight: 800; margin-bottom: 18px }
.footer-grid a { display: block; padding: 5px 0; color: rgba(255,255,255,.7); transition: color .2s }
.footer-grid a:hover { color: #fff }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .75rem; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 16px
}
.footer-bottom a { color: rgba(255,255,255,.6) }
.footer-bottom a:hover { color: #fff }

/* Mobil Hızlı İletişim Butonları */
.mobile-actions {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 190;
  background: #ffffff; border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(0,0,0,.08); padding: 8px 16px;
  grid-template-columns: repeat(3, 1fr); gap: 8px
}
.mobile-action {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 6px 0; border-radius: var(--r-xs); font-size: .6875rem; font-weight: 800; color: var(--navy)
}
.mobile-action svg { width: 20px; height: 20px; fill: currentColor }
.mobile-action-call svg { color: var(--blue) }
.mobile-action-whatsapp svg { color: #22c55e }
.mobile-action-offer svg { color: var(--orange) }

/* ── 16. RESPONSIVE KIRILMA NOKTALARI (MOBİL & TABLET) ──────── */
@media(max-width:1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px }
  .hero-visual { max-width: 540px }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px }
}

@media(max-width:960px) {
  .utility-bar { display: none }
  .nav-toggle { display: flex }
  .header-actions .header-cta { display: none }
  
  /* Mobil Menü Konumu */
  .main-nav {
    display: none; position: fixed; top: 74px; left: 0; right: 0; bottom: 0;
    background: #ffffff; padding: 20px 24px 100px;
    flex-direction: column; align-items: stretch; overflow-y: auto;
    -webkit-overflow-scrolling: touch; z-index: 205;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15)
  }
  body.nav-open .main-nav { display: flex !important }
  body.nav-open { overflow: hidden }
  
  .nav-drop { width: 100%; border-bottom: 1px solid var(--line); padding-bottom: 4px }
  .nav-drop>button { width: 100%; justify-content: space-between; padding: 14px 8px; font-size: .95rem }
  .main-nav>a { padding: 14px 8px; border-bottom: 1px solid var(--line); font-size: .95rem }
  
  /* Mobilde Mega Menü İçeriği */
  .mega-menu {
    position: static !important; transform: none !important; min-width: 100% !important;
    width: 100% !important; opacity: 1 !important; visibility: visible !important;
    pointer-events: auto !important; box-shadow: none !important; border: none !important;
    padding: 8px 12px 16px !important; background: var(--paper) !important;
    border-radius: var(--r-sm) !important; display: none !important
  }
  .nav-drop.is-active .mega-menu { display: block !important }
  .mega-compact, .mega-services, .mega-solutions, .mega-tools {
    display: grid !important; grid-template-columns: 1fr !important; gap: 12px !important
  }
  .mega-service-columns { grid-template-columns: 1fr !important }
  .mega-intro { display: none !important }
  
  .split-intro, .feature-grid, .lead-band-grid, .gallery-grid { grid-template-columns: 1fr; gap: 36px }
  .mobile-actions { display: grid }
  body { padding-bottom: 60px }
}

@media(max-width:640px) {
  .field-row { grid-template-columns: 1fr }
  .footer-grid { grid-template-columns: 1fr; gap: 32px }
  .service-grid, .landing-grid { grid-template-columns: 1fr }
  .hero-side-img { display: none }
}

/* ── 17. BASKI AYARLARI ────────────────────────────────────── */
@media print {
  .utility-bar, .mobile-actions, .search-overlay, .footer-cta, .signal-strip { display: none }
  .site-header { position: static; box-shadow: none; border-bottom: 1px solid #ccc }
  body { font-size: 12pt; color: #000 }
}

/* ==========================================================================
   ARKETİP v4.0 — MARKA UYUMU / RESPONSIVE NAV / MOBİL HIZLI İŞLEMLER
   Logo paleti: #3A2B7A · #315F96 · #2C78A8
   ========================================================================== */
:root{
  --brand-purple:#3a2b7a;--brand-purple-dark:#2c225f;--brand-deep:#241a52;
  --brand-blue:#315f96;--brand-cyan:#2c78a8;--brand-cyan-soft:#eaf5f9;
  --blue:#3a2b7a;--blue-hover:#2c225f;--blue-dark:#2c225f;--navy:#241a52;--navy-light:#2c225f;
  --orange:#2c78a8;--orange-light:#eaf5f9;--teal:#2c78a8;--teal-2:#315f96;--teal-light:#eaf5f9;
  --purple:#3a2b7a;--purple-2:#2c225f;--purple-3:#241a52;--purple-x:#315f96;--purple-light:#f1eef8;
  --sh-color:0 12px 30px rgba(69,44,114,.26);
}
body{background:#fff;color:#1c2330}
h1,h2,h3,h4,h5,h6{color:var(--brand-deep)}
.eyebrow{color:var(--brand-purple)}.eyebrow::before{background:var(--brand-cyan)}
.text-link{color:var(--brand-purple)}.text-link:hover{color:var(--brand-cyan)}
.btn.primary{background:linear-gradient(135deg,var(--brand-purple),var(--brand-purple-dark));color:#fff;border-color:transparent;box-shadow:0 12px 30px rgba(69,44,114,.25)}
.btn.primary:hover{background:linear-gradient(135deg,#54378a,var(--brand-purple));box-shadow:0 16px 38px rgba(69,44,114,.32)}
.btn.ghost{background:#f4f0f8;color:var(--brand-purple-dark);border-color:rgba(69,44,114,.18)}
.btn.ghost:hover{background:#ebe4f2;border-color:rgba(69,44,114,.35)}
.btn.light{background:var(--brand-cyan);color:#fff;border-color:var(--brand-cyan);box-shadow:0 10px 24px rgba(46,130,172,.2)}
.btn.light:hover{background:#256f96;color:#fff;border-color:#256f96}
.btn.outline-light{border-color:rgba(255,255,255,.48);color:#fff}.btn.outline-light:hover{background:rgba(255,255,255,.12)}

.utility-bar{background:var(--brand-deep)}
.utility-dot{background:#65c9e5;box-shadow:0 0 0 4px rgba(101,201,229,.18)}
.site-header{background:rgba(255,255,255,.98);border-bottom:1px solid rgba(69,44,114,.10);box-shadow:0 2px 14px rgba(36,23,49,.04)}
.site-header.scrolled{box-shadow:0 8px 28px rgba(36,23,49,.09)}
.nav-shell{height:76px;gap:16px}.brand img{height:44px}
.main-nav{gap:1px}.main-nav>a,.nav-drop>button{color:#252132;font-weight:750;font-size:.84rem;padding:11px 10px}
.main-nav>a:hover,.nav-drop>button:hover,.nav-drop.is-active>button,.nav-drop.is-pinned>button{background:#f1eef8;color:var(--brand-purple)}
.chev{font-size:.72rem}
.header-actions{display:flex;align-items:center;gap:10px}.search-trigger{width:42px;height:42px;border:1px solid rgba(69,44,114,.14);border-radius:12px;display:grid;place-items:center;color:var(--brand-purple);background:#fff}.search-trigger svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2}.search-trigger:hover{background:#f1eef8}
.header-cta{display:flex;align-items:center;gap:10px;background:var(--brand-purple);color:#fff;padding:11px 16px;border-radius:12px;font-size:.82rem;font-weight:850;white-space:nowrap}.header-cta:hover{background:var(--brand-purple-dark)}

/* Desktop mega-menu: stable click/hover target with no pointer gap. */
.mega-menu{top:calc(100% + 8px);border:1px solid rgba(69,44,114,.12);box-shadow:0 24px 70px rgba(36,23,49,.16);background:#fff;transform:translateX(-50%) translateY(6px);z-index:260}
.mega-menu::before{height:18px;top:-18px}
.nav-drop:hover .mega-menu,.nav-drop.is-active .mega-menu,.nav-drop.is-pinned .mega-menu{transform:translateX(-50%) translateY(0)}
.mega-intro small{color:var(--brand-cyan)}.mega-intro strong{color:var(--brand-deep)}.mega-intro a{color:var(--brand-purple)}
.mega-company,.mega-online{min-width:600px;display:grid;grid-template-columns:1.05fr 1fr;gap:24px}
.mega-services{width:min(980px,calc(100vw - 48px));display:grid;grid-template-columns:250px minmax(0,1fr);gap:24px;padding:28px}
.mega-services .service-intro{grid-column:auto;display:block;border:0;padding:20px;margin:0;border-radius:14px;background:linear-gradient(145deg,#f5f1f8,#eef6fa)}
.mega-service-columns{margin-top:0;align-content:start;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px 22px}
.mega-group span,.mega-label{color:var(--brand-cyan)}
.mega-links a,.mega-group a{border-radius:8px}.mega-links a:hover,.mega-group a:hover{background:#f5f1f8;color:var(--brand-purple)}
.mobile-nav-actions{display:none}

/* Brand-aligned hero. */
.hero{background:linear-gradient(135deg,#f7f4fa 0%,#fff 52%,#eef7fb 100%)}
.hero::before{background:radial-gradient(circle,rgba(69,44,114,.13),transparent 68%)}
.hero-grid-lines{background-image:linear-gradient(rgba(69,44,114,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(69,44,114,.035) 1px,transparent 1px)}
.hero-note{color:var(--brand-purple)}.hero-note span{background:var(--brand-cyan)}
.hero-copy h1{color:var(--brand-deep)}.hero-copy h1 em{color:var(--brand-purple)}
.hero-badge{background:var(--brand-purple);color:#fff}.hero-float-card{border-color:rgba(69,44,114,.14)}
.visual-tag{background:rgba(36,23,49,.88)}
.signal-strip{background:var(--brand-deep)}.signal-grid span b{color:#69c8e3}

.service-card:hover{border-color:rgba(69,44,114,.30);box-shadow:0 18px 45px rgba(36,23,49,.10)}
.service-index,.service-cat,.card-arrow{color:var(--brand-purple)}
.principles-section{background:#f8f6fa}.principles-grid{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:12px}.principle-card{min-height:132px;padding:22px 16px;border:1px solid rgba(69,44,114,.10);border-radius:16px;background:#fff;display:flex;flex-direction:column;justify-content:space-between;gap:18px}.principle-card span{color:var(--brand-cyan);font-size:.72rem;font-weight:900}.principle-card strong{font-size:.94rem;color:var(--brand-deep);line-height:1.35}
.online-section{background:var(--brand-deep);color:#fff}.online-section h2,.online-section .section-lead{color:#fff}.online-section .eyebrow{color:#77d0e7}.online-section .text-link{color:#fff}.online-tools-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.online-tool-card{min-height:230px;padding:26px;border-radius:18px;background:rgba(255,255,255,.065);border:1px solid rgba(255,255,255,.12);display:flex;flex-direction:column;transition:.22s}.online-tool-card:hover{transform:translateY(-4px);background:rgba(255,255,255,.10);border-color:rgba(105,200,227,.5)}.online-tool-card>span{font-size:.7rem;color:#77d0e7;font-weight:900;letter-spacing:.1em}.online-tool-card strong{font-size:1.15rem;margin:24px 0 10px;color:#fff}.online-tool-card p{color:rgba(255,255,255,.68);font-size:.88rem;line-height:1.65;flex:1}.online-tool-card b{color:#8ed9ec;font-size:.82rem;margin-top:18px}
.logo-card:hover{border-color:rgba(69,44,114,.28)}
.lead-band{background:#f6f3f8}.form-section-title span{background:var(--brand-purple)}
.lead-form input:focus,.lead-form textarea:focus,.lead-form select:focus{border-color:var(--brand-purple);box-shadow:0 0 0 3px rgba(69,44,114,.10)}
.footer-cta{background:linear-gradient(135deg,var(--brand-purple-dark),var(--brand-purple))}.site-footer{background:var(--brand-deep)}

/* Search panel. */
.search-overlay{background:rgba(36,23,49,.96)}.search-overlay-inner>span{color:#7bcde3}.search-overlay input:focus{border-color:#7bcde3}

/* Mobile quick actions: never white, safe-area aware, no horizontal overflow. */
.mobile-actions{display:none;position:fixed;left:0;right:0;bottom:0;width:100%;z-index:300;background:var(--brand-deep);border:0;box-shadow:0 -10px 30px rgba(36,23,49,.22);padding:7px max(8px,env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(8px,env(safe-area-inset-left));grid-template-columns:repeat(3,minmax(0,1fr));gap:7px}
.mobile-action{min-width:0;min-height:54px;padding:7px 4px;border-radius:12px;display:flex;flex-direction:row;align-items:center;justify-content:center;gap:7px;color:#fff!important;font-size:.73rem;font-weight:850;overflow:hidden;white-space:nowrap}
.mobile-action-icon{flex:0 0 auto;width:18px!important;height:18px!important;fill:currentColor!important;color:inherit!important}.mobile-action-label{min-width:0;overflow:hidden;text-overflow:ellipsis}
.mobile-action-call{background:var(--brand-purple)}.mobile-action-whatsapp{background:#25884c}.mobile-action-offer{background:var(--brand-cyan)}
.mobile-action:hover{color:#fff;filter:brightness(1.05)}

/* Reveal uses no counter animation. */
.section,.service-card,.landing-card,.online-tool-card,.principle-card{transition:opacity .45s ease,transform .45s ease}.js .section,.js .service-card,.js .landing-card,.js .online-tool-card,.js .principle-card{opacity:.01;transform:translateY(10px)}.js .is-revealed{opacity:1!important;transform:none!important}

@media(min-width:1181px){
  .nav-toggle{display:none!important}.main-nav{display:flex!important}.mobile-actions{display:none!important}
  .nav-drop{position:relative}.mega-menu{pointer-events:none;opacity:0;visibility:hidden}.nav-drop:hover>.mega-menu,.nav-drop.is-active>.mega-menu,.nav-drop.is-pinned>.mega-menu{pointer-events:auto;opacity:1;visibility:visible}
}

@media(max-width:1180px){
  .utility-bar{display:none}.nav-shell{height:70px}.nav-toggle{display:flex;margin-left:auto;position:relative;z-index:312}.header-actions{margin-left:0}.header-actions .header-cta{display:none}.search-trigger{width:40px;height:40px}
  .main-nav{position:fixed!important;inset:70px 0 0 0!important;width:100%!important;height:calc(100dvh - 70px)!important;max-height:none!important;display:flex!important;transform:translateX(105%);opacity:0;pointer-events:none;background:#fff;padding:18px 18px calc(110px + env(safe-area-inset-bottom));flex-direction:column;align-items:stretch;overflow-y:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch;z-index:310;box-shadow:none;transition:transform .28s ease,opacity .2s ease}
  body.nav-open .main-nav{transform:translateX(0);opacity:1;pointer-events:auto}body.nav-open{overflow:hidden}
  .main-nav>a,.nav-drop>button{width:100%;min-height:52px;padding:14px 8px;border-radius:0;border-bottom:1px solid rgba(69,44,114,.10);font-size:1rem;color:var(--brand-deep);justify-content:space-between;text-align:left}
  .nav-drop{width:100%;border:0;padding:0}.nav-drop>button{display:flex}.chev{font-size:1rem}.nav-drop.is-active .chev{transform:rotate(180deg)}
  .mega-menu,.mega-company,.mega-online,.mega-services{position:static!important;top:auto!important;left:auto!important;transform:none!important;width:100%!important;min-width:0!important;max-width:none!important;display:none!important;grid-template-columns:1fr!important;opacity:1!important;visibility:visible!important;pointer-events:auto!important;box-shadow:none!important;border:0!important;background:#f6f3f8!important;border-radius:14px!important;padding:8px!important;margin:6px 0 10px!important}
  .nav-drop.is-active>.mega-menu{display:grid!important}.mega-menu::before,.mega-intro{display:none!important}.mega-service-columns{display:grid!important;grid-template-columns:1fr!important;gap:5px!important}.mega-group{display:grid;gap:3px}.mega-group>span{padding:11px 12px 5px;color:var(--brand-cyan);font-size:.68rem;font-weight:900;letter-spacing:.1em}.mega-links{gap:3px}.mega-links a,.mega-group a{display:block;min-height:44px;padding:12px;border-radius:9px;background:#f1eef8;color:#332840;font-size:.86rem;font-weight:700;border:1px solid rgba(69,44,114,.10)}
  .mobile-nav-actions{display:grid;gap:10px;margin-top:18px;padding-top:18px;border-top:1px solid rgba(69,44,114,.12)}.mobile-nav-primary{display:flex;align-items:center;justify-content:space-between;padding:15px 16px;border-radius:12px;background:var(--brand-purple);color:#fff;font-weight:850}.mobile-nav-phone{display:grid;padding:14px 16px;border-radius:12px;background:#edf6f9;color:var(--brand-deep)}.mobile-nav-phone small{font-size:.67rem;color:#60727b;text-transform:uppercase}.mobile-nav-phone strong{font-size:1rem}
  .mobile-actions{display:grid!important}body{padding-bottom:calc(75px + env(safe-area-inset-bottom))}
  .principles-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.online-tools-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:720px){
  .container{padding-left:18px;padding-right:18px}.section{padding:64px 0}.hero{padding-top:42px}.hero-copy h1{font-size:clamp(2rem,11vw,3.25rem)}.hero-actions{align-items:stretch}.hero-actions .btn{width:100%}.trust-line{grid-template-columns:repeat(3,minmax(0,1fr));gap:4px}.trust-line b{font-size:1.35rem}.trust-line small{font-size:.62rem}.online-tools-grid{grid-template-columns:1fr}.principles-grid{grid-template-columns:1fr 1fr}.principle-card{min-height:105px}.footer-cta-actions{width:100%;align-items:stretch}.footer-cta-actions .btn{width:100%}
}
@media(max-width:370px){
  .mobile-actions{gap:5px;padding-left:6px;padding-right:6px}.mobile-action{min-height:57px;flex-direction:column;gap:2px;font-size:.64rem;padding:5px 2px}.mobile-action-icon{width:17px!important;height:17px!important}.principles-grid{grid-template-columns:1fr}
}
