*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0B1E3D; --navy-mid: #0F2548; --navy-light: #142D56;
  --blue: #2A6DD9; --blue-light: #7BB3F0; --blue-pale: #E6F1FB;
  --bg: #F4F8FC; --bg-soft: #EBF2FA;
  --border: #CBD8E8; --border-light: #E4EEF7;
  --text: #0B1E3D; --text-mid: #3A5270; --text-muted: #6B84A0; --text-faint: #B5C8DE;
  --white: #ffffff; --pad: 48px;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }

nav {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid #E4EEF7;
  padding: 0 var(--pad); display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 52px; width: auto; display: block; }
.nav-right { display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 12px; letter-spacing: 0.3px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; cursor: pointer; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--navy); font-weight: 500; }
.nav-cta { color: var(--blue) !important; border: 0.5px solid rgba(42,109,217,0.4) !important; padding: 8px 20px; border-radius: 100px; font-weight: 400 !important; }

.hero { background: var(--navy); padding: 88px var(--pad) 72px; position: relative; overflow: hidden; }
.hero-bg-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.12; pointer-events: none; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; animation: fadeUp 0.6s ease 0.1s both; }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.eyebrow-text { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue-light); }
.eyebrow-rule { width: 32px; height: 0.5px; background: rgba(123,179,240,0.35); }
.hero h1 { font-size: clamp(32px, 4vw, 48px); font-weight: 300; line-height: 1.15; color: #fff; letter-spacing: -1px; max-width: 780px; margin-bottom: 22px; animation: fadeUp 0.6s ease 0.22s both; }
.hero h1 em { font-style: normal; color: var(--blue-light); }
.hero-sub { font-size: 14px; color: rgba(255,255,255,0.44); line-height: 1.85; max-width: 400px; margin-bottom: 44px; animation: fadeUp 0.6s ease 0.34s both; }
.hero-actions { display: flex; align-items: center; gap: 20px; animation: fadeUp 0.6s ease 0.44s both; }
.btn-primary { background: var(--blue); color: #fff; font-size: 13px; padding: 13px 30px; border-radius: 100px; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-primary:hover { background: #1f5ab8; }
.btn-ghost { font-size: 13px; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 8px; text-decoration: none; }
.btn-ghost svg { width: 13px; height: 13px; }

.stats-bar { background: var(--navy-mid); border-top: 0.5px solid rgba(255,255,255,0.06); border-bottom: 0.5px solid rgba(255,255,255,0.06); display: flex; align-items: stretch; padding: 0 var(--pad); justify-content: center; }
.stat { padding: 24px 40px; border-right: 0.5px solid rgba(255,255,255,0.07); display: flex; flex-direction: column; align-items: center; gap: 5px; }
.stat:last-child { border-right: none; }
.stat-num { font-size: 26px; font-weight: 300; color: #fff; letter-spacing: -0.5px; line-height: 1; }
.stat-num em { font-style: normal; color: var(--blue-light); font-size: 18px; }
.stat-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); }

section { padding: 72px var(--pad); }
.section-light { background: var(--white); }
.section-soft { background: var(--bg); }
.section-dark { background: var(--navy); }

.section-header { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-bottom: 48px; }
.section-eyebrow { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.section-eyebrow-light { color: var(--blue-light); }
.section-title { font-size: clamp(22px, 2.5vw, 30px); font-weight: 300; color: var(--text); letter-spacing: -0.5px; line-height: 1.25; }
.section-title-light { color: #fff; }
.section-desc { font-size: 13px; color: var(--text-muted); line-height: 1.9; padding-top: 32px; }
.section-desc-light { color: rgba(255,255,255,0.38); }

.services-grid { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: 10px; overflow: hidden; border: 0.5px solid var(--border); }
.svc-card { background: var(--white); display: grid; grid-template-columns: 72px 1fr auto; align-items: center; transition: background 0.15s; }
.svc-card:hover { background: #FAFCFF; }
.svc-body { padding: 52px 48px 52px 28px; }
.svc-num { padding: 52px 0 52px 32px; font-size: 11px; letter-spacing: 2px; color: var(--text-faint); }
.svc-divider { width: 32px; height: 2px; background: var(--blue); margin: 14px 0 16px; border-radius: 2px; }
.svc-featured .svc-divider { background: var(--blue); }
.svc-dark .svc-divider { background: rgba(255,255,255,0.25); }
.svc-title { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 0; }
.svc-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.9; max-width: 860px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag { font-size: 10px; letter-spacing: 0.8px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; border: 0.5px solid var(--border); color: var(--text-muted); background: var(--bg-soft); }
.svc-arrow { padding: 52px 32px 52px 0; }
.svc-arrow-btn { width: 30px; height: 30px; border: 0.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.svc-arrow-btn svg { width: 11px; height: 11px; }
.svc-featured { border-left: 2.5px solid var(--blue); background: #F6FAFF !important; }
.svc-dark { background: var(--navy) !important; }
.svc-dark:hover { background: var(--navy-light) !important; }
.svc-dark .svc-num { color: rgba(255,255,255,0.18); }
.svc-dark .svc-title { color: #fff; }
.svc-dark .svc-desc { color: rgba(255,255,255,0.42); }
.svc-dark .tag { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.38); }
.svc-dark .svc-arrow-btn { border-color: rgba(255,255,255,0.15); }

.timeline { display: flex; flex-direction: column; }
.tl-row { display: grid; grid-template-columns: 72px 24px 1fr; align-items: stretch; }
.tl-year { font-size: 13px; font-weight: 300; color: var(--blue-light); text-align: right; padding-top: 30px; }
.tl-axis { display: flex; flex-direction: column; align-items: center; padding-left: 12px; }
.tl-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); margin-top: 28px; flex-shrink: 0; }
.tl-line { flex: 1; width: 0.5px; background: rgba(255,255,255,0.1); }
.tl-last .tl-line { display: none; }
.tl-content { padding: 24px 0 32px 20px; }
.tl-cat { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 7px; }
.tl-text { font-size: 13px; color: rgba(255,255,255,0.52); line-height: 1.85; }

.projects-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--border); border-radius: 10px; overflow: hidden; border: 0.5px solid var(--border); }
.proj-featured { grid-column: span 3; background: var(--navy); padding: 36px; }
.proj-feat-eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.proj-feat-dot { width: 5px; height: 5px; border-radius: 50%; background: #1D9E75; }
.proj-feat-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.proj-feat-sep { color: rgba(255,255,255,0.15); }
.proj-feat-date { font-size: 10px; color: rgba(255,255,255,0.35); }
.proj-feat-title { font-size: 18px; font-weight: 300; color: #fff; line-height: 1.4; margin-bottom: 12px; max-width: 560px; }
.proj-feat-desc { font-size: 12px; color: rgba(255,255,255,0.42); line-height: 1.85; max-width: 520px; margin-bottom: 22px; }
.proj-feat-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.proj-feat-tag { font-size: 10px; letter-spacing: 1px; padding: 4px 12px; border-radius: 100px; }
.proj-feat-tag-blue { background: rgba(42,109,217,0.2); color: var(--blue-light); }
.proj-feat-tag-ghost { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.38); }
.proj-card { background: var(--white); padding: 28px; display: flex; flex-direction: column; }
.proj-card-alt { background: var(--bg-soft); }
.proj-status { display: flex; align-items: center; gap: 5px; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.proj-live { color: #0F6E56; }
.proj-live-dot { width: 5px; height: 5px; border-radius: 50%; background: #1D9E75; }
.proj-done { color: var(--text-faint); }
.proj-title { font-size: 13px; font-weight: 500; color: var(--text); line-height: 1.5; margin-bottom: 8px; }
.proj-location { font-size: 11px; color: var(--blue); letter-spacing: 0.5px; margin-bottom: 8px; }
.proj-desc { font-size: 12px; color: var(--text-muted); line-height: 1.75; flex: 1; }
.proj-footer { border-top: 0.5px solid var(--border-light); padding-top: 14px; margin-top: 18px; display: flex; justify-content: space-between; align-items: center; }
.proj-client-label { font-size: 10px; color: var(--text-faint); }
.proj-client-name { font-size: 12px; font-weight: 500; color: var(--text); }

.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: rgba(255,255,255,0.09); border-radius: 8px; overflow: hidden; border: 0.5px solid rgba(255,255,255,0.09); }
.step { padding: 26px 22px; background: var(--navy); }
.step-active { background: var(--navy-light); }
.step-num { font-size: 10px; letter-spacing: 2px; color: rgba(255,255,255,0.2); margin-bottom: 14px; }
.step-active .step-num { color: var(--blue-light); }
.step-title { font-size: 13px; font-weight: 500; color: #fff; margin-bottom: 8px; }
.step-desc { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.7; }

.refs-strip { padding: 40px var(--pad); background: var(--bg-soft); border-top: 0.5px solid var(--border); }
.refs-label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 22px; }
.refs-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ref-name { font-size: 13px; font-weight: 500; color: var(--text); }
.ref-sep { color: var(--border); font-size: 16px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-block { display: flex; flex-direction: column; gap: 5px; }
.contact-block-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); }
.contact-block-value { font-size: 15px; color: var(--text); font-weight: 300; }
.contact-block-value a { color: var(--text); text-decoration: none; }
.contact-block-value a:hover { color: var(--blue); }
.contact-divider { height: 0.5px; background: var(--border); }
.contact-form-grid { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-label { font-size: 11px; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 6px; display: block; }
.form-input { width: 100%; background: var(--white); border: 0.5px solid var(--border); border-radius: 8px; padding: 12px 16px; font-size: 13px; color: var(--text); font-family: inherit; outline: none; transition: border-color 0.2s; }
.form-input:focus { border-color: var(--blue); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-submit { background: var(--blue); color: #fff; font-size: 13px; padding: 13px 32px; border-radius: 100px; border: none; cursor: pointer; font-family: inherit; align-self: flex-start; transition: background 0.2s; }
.form-submit:hover { background: #1f5ab8; }

.cta-strip { padding: 40px var(--pad); background: var(--blue); display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-left h3 { font-size: 20px; font-weight: 300; color: #fff; letter-spacing: -0.3px; margin-bottom: 6px; }
.cta-left p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.cta-btn { background: #fff; color: var(--navy); font-size: 13px; font-weight: 500; padding: 13px 30px; border-radius: 100px; text-decoration: none; white-space: nowrap; flex-shrink: 0; cursor: pointer; }

footer { background: #0A1628; border-top: 2px solid var(--blue); }
.footer-top { padding: 48px var(--pad) 36px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; border-bottom: 0.5px solid rgba(255,255,255,0.08); }
.footer-brand-name { font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.footer-brand-sub { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.8; margin-bottom: 20px; }
.footer-brand-line { width: 32px; height: 2px; background: var(--blue); }
.footer-col-title { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-light); margin-bottom: 16px; }
.footer-nav a { font-size: 12px; color: rgba(255,255,255,0.55); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.footer-nav a:hover { color: #fff; }
.footer-contact-items { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-label { font-size: 10px; letter-spacing: 0.5px; color: rgba(255,255,255,0.3); margin-bottom: 3px; }
.footer-contact-value { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-contact-value-blue { font-size: 12px; color: var(--blue-light); }
.footer-bottom { padding: 18px var(--pad); display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-cta { background: linear-gradient(135deg, #1a3a6e 0%, #2A6DD9 100%); padding: 28px var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-cta-text { font-size: 15px; color: #fff; font-weight: 300; }
.footer-cta-text strong { font-weight: 500; }
.footer-cta-btn { background: #fff; color: var(--navy); font-family: inherit; font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; border: none; padding: 12px 28px; cursor: pointer; white-space: nowrap; text-decoration: none; flex-shrink: 0; }
.footer-brand-desc { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.9; margin-top: 16px; max-width: 240px; }

.page-hero { background: var(--navy); padding: 64px var(--pad) 52px; position: relative; overflow: hidden; }
.page-hero-deco { position: absolute; right: var(--pad); top: 0; bottom: 0; display: flex; gap: 18px; opacity: 0.045; pointer-events: none; }
.page-hero-deco-line { width: 0.5px; background: #fff; height: 100%; }
.page-hero h1 { font-size: clamp(26px, 3vw, 38px); font-weight: 300; color: #fff; letter-spacing: -0.6px; line-height: 1.2; max-width: 480px; margin-bottom: 16px; }
.page-hero h1 em { font-style: normal; color: var(--blue-light); }
.page-hero p { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.85; max-width: 380px; }
.page-hero .hero-eyebrow { animation: none; }
.breadcrumb { padding: 14px var(--pad); background: var(--navy-mid); border-bottom: 0.5px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 8px; }
.bc { font-size: 11px; color: rgba(255,255,255,0.28); }
.bc-sep { color: rgba(255,255,255,0.14); font-size: 10px; }
.bc-active { color: var(--blue-light); }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border-radius: 10px; overflow: hidden; border: 0.5px solid var(--border); margin-top: 48px; }
.mv-card { background: var(--white); padding: 32px; }
.mv-card-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.mv-card-title { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 12px; }
.mv-card-text { font-size: 13px; color: var(--text-muted); line-height: 1.85; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-text p { font-size: 14px; color: var(--text-mid); line-height: 1.9; margin-bottom: 20px; }
.about-text p strong { color: var(--text); font-weight: 500; }
.about-meta { display: flex; flex-direction: column; gap: 16px; }
.about-meta-card { background: var(--bg); border: 0.5px solid var(--border); border-radius: 10px; padding: 24px; }
.about-meta-card-title { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.about-meta-card p { font-size: 13px; color: var(--text-muted); line-height: 1.8; }
.about-meta-card strong { color: var(--text); font-weight: 500; }







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

@media (max-width: 768px) {
  :root { --pad: 20px; }

  nav { padding: 0 20px; height: 56px; }
  .logo img { height: 36px; }
  .nav-links { display: none; }

  .hero { padding: 52px 20px 44px; }
  .hero h1 { font-size: 28px; letter-spacing: -0.5px; max-width: 100%; }
  .hero-sub { font-size: 13px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .btn-primary { width: 100%; text-align: center; }
  .hero-grid { display: none; }

  .stats-bar { flex-wrap: wrap; padding: 0 20px; }
  .stat { width: 50%; padding: 18px 0; border-right: none !important; border-bottom: 0.5px solid rgba(255,255,255,0.07); }
  .stat:nth-child(odd) { border-right: 0.5px solid rgba(255,255,255,0.07) !important; }
  .stat-num { font-size: 22px; }

  section { padding: 40px 20px; }

  .section-header { grid-template-columns: 1fr; gap: 16px; }
  .section-desc { padding-top: 0; }

  .services-grid .svc-card { grid-template-columns: 48px 1fr; }
  .svc-num { padding: 24px 0 24px 16px; }
  .svc-body { padding: 24px 16px; }
  .svc-arrow { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .mv-grid { grid-template-columns: 1fr; }

  .timeline .tl-row { grid-template-columns: 56px 20px 1fr; }
  .tl-year { font-size: 12px; padding-top: 26px; }
  .tl-content { padding: 20px 0 24px 14px; }
  .tl-text { font-size: 12px; }

  .projects-grid { grid-template-columns: 1fr !important; }
  .proj-featured { grid-column: span 1 !important; padding: 24px 20px; }
  .proj-card { grid-column: span 1 !important; }
  .proj-feat-title { font-size: 15px; }

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

  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }

  .refs-row { gap: 8px; }
  .ref-name { font-size: 12px; }

  .cta-strip { flex-direction: column; gap: 20px; padding: 32px 20px; }
  .cta-btn { width: 100%; text-align: center; }

  .footer-top { grid-template-columns: 1fr !important; gap: 32px !important; padding: 36px 20px 28px !important; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 16px 20px; }
  .footer-cta { flex-direction: column; gap: 16px; padding: 24px 20px; text-align: center; }

  .page-hero { padding: 44px 20px 36px; }
  .page-hero h1 { font-size: clamp(22px, 6vw, 32px); }
  .page-hero p { font-size: 13px; }
  .page-hero-deco { display: none; }

  .breadcrumb { padding: 12px 20px; }

  .hero-eyebrow { flex-wrap: wrap; }

  .proj-card[style*="grid-column:span 2"],
  .proj-card[style*="grid-column: span 2"],
  .proj-card[style*="grid-column:span 3"],
  .proj-card[style*="grid-column: span 3"] {
    grid-column: span 1 !important;
  }

  [style*="grid-template-columns: 120px 1fr"] {
    grid-template-columns: 90px 1fr !important;
  }

  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  [style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }

  .stats-bar .stat:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .stat { width: 100%; border-right: none !important; }
  .stat:nth-child(odd) { border-right: none !important; }
  .steps-grid { grid-template-columns: 1fr; }
  .about-meta-card p { font-size: 12px; }
  .svc-title { font-size: 14px; }
  .proj-feat-tags { flex-wrap: wrap; }
}

/* Hamburger menü */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
    z-index: 99;
  }
  .nav-mobile-open .nav-links a { font-size: 14px; color: var(--text-muted); }
  .nav-mobile-open .nav-links a.active { color: var(--navy); }
  .nav-mobile-open .nav-cta { color: var(--blue) !important; }
}


/* Reveal: always visible. Animation = progressive enhancement */
.reveal { opacity: 1; transform: none; transition: none; }
.reveal.animated { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.animated.visible { opacity: 1; transform: translateY(0); }
.footer-right { display: flex; gap: 48px; align-items: flex-start; padding-right: 48px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-nav a::before { content: ''; display: block; width: 14px; height: 1px; background: rgba(42,109,217,0.5); flex-shrink: 0; }
.footer-nav a:hover { color: #fff; }


.lang-switch { display: flex; align-items: center; gap: 6px; margin-left: 12px; padding-left: 16px; border-left: 0.5px solid var(--border); }
.lang-btn { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-faint); text-decoration: none; transition: color 0.2s; }
.lang-btn:hover { color: var(--text); }
.lang-btn.lang-active { color: var(--navy); font-weight: 500; }
.lang-sep { font-size: 10px; color: var(--border); }
@media (max-width: 768px) { .lang-switch { border-left: none; padding-left: 0; margin-left: 0; } }


.cf-email::before { content: "info"; }
.cf-email-at::before { content: "@"; }
.cf-email-domain::before { content: "kerimoglultd"; }
.cf-email-dot::before { content: "."; }
.cf-email-tld::before { content: "com"; }
