/*
 * IPAR-INVEST KFT. — Global Stylesheet
 * Design: Mérnöki Bizalom (Engineering Trust)
 * Colors: Navy #0F2044 | Steel Blue #1E5FA8 | CTA Orange #E8500A | Graphite #3D4554
 * Fonts: Sora (headings) | Source Sans 3 (body) | JetBrains Mono (labels)
 */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #22293A;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0F2044;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ── Typography Scale ── */
.h1 { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 800; }
.h2 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); font-weight: 700; }
.h3 { font-size: 1.125rem; font-weight: 700; }

/* ── Engineering Labels (JetBrains Mono) ── */
.eng-label {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1E5FA8;
}

.eng-label--orange { color: #E8500A; }
.eng-label--muted  { color: rgba(255,255,255,0.4); }
.eng-label--white  { color: rgba(255,255,255,0.5); }

/* ── Section Number ── */
.section-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1E5FA8;
  margin-bottom: 0.75rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: #E8500A;
  color: #ffffff;
}
.btn-primary:hover { background: #c94008; }

.btn-outline-dark {
  background: transparent;
  color: #0F2044;
  border: 2px solid #0F2044;
}
.btn-outline-dark:hover { background: #0F2044; color: #ffffff; }

.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); color: #ffffff; }

.btn-sm { font-size: 0.8125rem; padding: 0.5rem 1.25rem; }
.btn-lg { font-size: 1rem; padding: 0.875rem 2rem; }
.btn-full { width: 100%; }

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 4rem 0; }
.section--sm { padding: 2.5rem 0; }
.section--lg { padding: 5rem 0; }

.bg-white    { background: #ffffff; }
.bg-offwhite { background: #F8F9FB; }
.bg-light    { background: #EEF1F7; }
.bg-navy     { background: #0F2044; }

.text-navy   { color: #0F2044; }
.text-steel  { color: #1E5FA8; }
.text-graphite { color: #3D4554; }
.text-muted  { color: #5A6275; }
.text-white  { color: #ffffff; }

/* ── Grid helpers ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-auto { grid-template-columns: 1fr; }
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: 0.625rem; }
.gap-md { gap: 1rem; }
.gap-lg { gap: 1.5rem; }

/* ── Divider ── */
.rule { border: none; border-top: 1px solid #E2E6EF; margin: 0; }

/* ── Engineering grid overlay (hero bg) ── */
.eng-grid-bg {
  background-image:
    linear-gradient(rgba(30,95,168,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,95,168,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ── Image Placeholder ── */
.img-placeholder {
  background: #EEF1F7;
  border: 1px dashed #A8B4C8;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: #7A8BA0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  line-height: 1.6;
  min-height: 220px;
}
.img-placeholder .ph-icon { font-size: 2rem; margin-bottom: 0.75rem; opacity: 0.4; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0F2044;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.2s ease;
}
.site-header.scrolled { border-bottom-color: rgba(30,95,168,0.35); }

.header-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-name {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.0625rem;
  color: #ffffff;
  letter-spacing: 0.06em;
}
.logo-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.5625rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  flex: 1;
}

.nav-link {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 0.375rem 0.75rem;
  border-radius: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-link:hover { color: #ffffff; }
.nav-link.active { color: #ffffff; font-weight: 600; border-bottom-color: #E8500A; }

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.15s ease;
}
.header-phone:hover { color: #ffffff; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  color: #ffffff;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.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); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #0F2044;
  border-bottom: 1px solid rgba(30,95,168,0.3);
  padding: 1rem 0;
  z-index: 99;
}
.mobile-nav.open { display: block; }
.mobile-nav .nav-link {
  display: block;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-radius: 0;
}
.mobile-nav-btns {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.5rem 0;
}

/* ── Mobile Sticky Bottom Bar ── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0F2044;
  border-top: 1px solid rgba(30,95,168,0.4);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  z-index: 98;
}
.mobile-sticky a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem;
  border-radius: 3px;
  text-decoration: none;
}
.mobile-sticky .sticky-call {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
}
.mobile-sticky .sticky-quote {
  flex: 2;
  background: #E8500A;
  color: #ffffff;
  border: none;
}

/* ── Footer ── */
.site-footer {
  background: #0F2044;
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.0625rem;
  color: #ffffff;
  letter-spacing: 0.06em;
}
.footer-brand-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.5625rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-top: 0.875rem;
  max-width: 260px;
}
.footer-col-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-nav a:hover { color: #ffffff; }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-contact-item:hover { color: #ffffff; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: #E8500A; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}
.footer-taxnum {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.5625rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
}

/* ── Page Header (inner pages) ── */
.page-header {
  background: #0F2044;
  padding: 3rem 0 2.5rem;
}
.page-header-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E8500A;
  margin-bottom: 0.875rem;
}
.page-header h1 {
  color: #ffffff;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.875rem;
}
.page-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
}

/* ── Hero ── */
.hero {
  background: #0F2044;
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 3rem;
  align-items: center;
}
.hero-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E8500A;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: #ffffff;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-btns { display: flex; gap: 0.875rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-micro {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}
.hero-img-col { display: block; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img-col { display: none; }
}

/* ── Trust Band ── */
.trust-band { background: #EEF1F7; padding: 2.5rem 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.trust-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.trust-icon { color: #E8500A; font-size: 0.875rem; margin-top: 2px; flex-shrink: 0; }
.trust-text {
  font-size: 0.9375rem;
  color: #1A2744;
  font-weight: 500;
  line-height: 1.5;
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: #E2E6EF;
}
.service-card {
  background: #ffffff;
  padding: 1.5rem;
  border-left: 3px solid transparent;
  transition: border-left-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  border-left-color: #1E5FA8;
  background: #F5F7FB;
  box-shadow: 0 2px 12px rgba(30,95,168,0.08);
}
.service-card-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1E5FA8;
  margin-bottom: 0.625rem;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0F2044;
  margin-bottom: 0.625rem;
}
.service-card p {
  font-size: 0.9rem;
  color: #3D4554;
  line-height: 1.6;
}

/* ── Differentiation ── */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) { .diff-grid { grid-template-columns: 1fr; } }

.diff-check-list { display: flex; flex-direction: column; gap: 0.875rem; }
.diff-check-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.diff-check-item svg { color: #1E5FA8; flex-shrink: 0; margin-top: 2px; }
.diff-check-item span {
  font-size: 0.9375rem;
  color: #1A2744;
  font-weight: 500;
  line-height: 1.5;
}

/* ── Reference Chips ── */
.ref-chips { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.ref-chip {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border: 1px solid #BEC8D8;
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #3D4554;
  background: #ffffff;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.ref-chip:hover { border-color: #1E5FA8; background: #F0F4FA; }

/* ── Process Timeline ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-step {
  padding: 0 1.5rem 0 0;
  border-left: 1px solid #E2E6EF;
  padding-left: 1.5rem;
}
.process-step:first-child { border-left: none; padding-left: 0; }
.process-step-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.875rem; }
.process-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #0F2044;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.process-step h3 { font-size: 0.9375rem; font-weight: 700; color: #0F2044; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.875rem; color: #3D4554; line-height: 1.6; }

@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-left: none; padding-left: 0; border-top: 1px solid #E2E6EF; padding-top: 1.5rem; }
  .process-step:first-child { border-top: none; padding-top: 0; }
}

/* ── FAQ Accordion ── */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid #E2E6EF; }
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}
.faq-question {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #0F2044;
  line-height: 1.4;
}
.faq-chevron {
  color: #1E5FA8;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  width: 18px;
  height: 18px;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: #3D4554;
  line-height: 1.65;
}
.faq-item.open .faq-answer { display: block; }

/* ── CTA Strip ── */
.cta-strip {
  background: #0F2044;
  padding: 4rem 0;
  text-align: center;
}
.cta-strip .eng-label { margin-bottom: 1rem; opacity: 0.8; }
.cta-strip h2 {
  color: #ffffff;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  margin-bottom: 1rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CTA Banner (inner pages) ── */
.cta-banner {
  background: #EEF1F7;
  padding: 3rem 0;
}
.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.cta-banner h3 { font-size: 1.125rem; color: #0F2044; margin-bottom: 0.375rem; }
.cta-banner p { font-size: 0.9375rem; color: #3D4554; }

.cta-banner--dark { background: #0F2044; }
.cta-banner--dark h3 { color: #ffffff; }
.cta-banner--dark p { color: rgba(255,255,255,0.6); }

/* ── Services Page ── */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #E2E6EF;
}
@media (max-width: 768px) { .svc-row { grid-template-columns: 1fr; } }

.svc-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1E5FA8;
  margin-bottom: 0.5rem;
}
.svc-row h2 { font-size: 1.25rem; font-weight: 700; color: #0F2044; margin-bottom: 0.75rem; }
.svc-row .svc-main { font-size: 1rem; color: #3D4554; line-height: 1.65; font-weight: 500; }
.svc-row .svc-detail { font-size: 0.9375rem; color: #5A6275; line-height: 1.7; }
.svc-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  color: #8A9BB0;
  margin-top: 0.75rem;
  padding: 0.625rem 0.875rem;
  border-left: 2px solid #BEC8D8;
  line-height: 1.5;
}

/* ── References Page ── */
.ref-grid-full { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.ref-card {
  display: inline-flex;
  flex-direction: column;
  padding: 0.625rem 1rem;
  border: 1px solid #BEC8D8;
  border-radius: 2px;
  background: #ffffff;
}
.ref-card-name { font-weight: 600; font-size: 0.875rem; color: #0F2044; }
.ref-card-loc {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.5625rem;
  color: #1E5FA8;
  letter-spacing: 0.08em;
  margin-top: 0.125rem;
}

.ref-sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.ref-sector-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #0F2044;
  margin-bottom: 0.875rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid #E8500A;
  display: inline-block;
}
.ref-sector-list { display: flex; flex-direction: column; gap: 0.375rem; }
.ref-sector-list span { font-size: 0.875rem; color: #3D4554; line-height: 1.5; }

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

/* ── Company Page ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.quote-block {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid #E8500A;
  background: #F8F9FB;
}
.quote-block p {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #0F2044;
  font-style: italic;
  line-height: 1.5;
}

.data-table { border: 1px solid #E2E6EF; border-radius: 2px; overflow: hidden; }
.data-table-header {
  background: #0F2044;
  padding: 1rem 1.25rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: 0.04em;
}
.data-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  border-bottom: 1px solid #EEF1F7;
}
.data-row:last-child { border-bottom: none; }
.data-label {
  padding: 0.875rem 1.25rem;
  background: #F8F9FB;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.5625rem;
  letter-spacing: 0.06em;
  color: #5A6275;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.data-value {
  padding: 0.875rem 1.25rem;
  font-size: 0.9rem;
  color: #1A2744;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.data-value a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: #1E5FA8;
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
}
.data-value a:hover { text-decoration: underline; }
.data-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  color: #8A9BB0;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.activity-card {
  background: #ffffff;
  padding: 1.25rem;
  border: 1px solid #E2E6EF;
  border-radius: 2px;
}
.activity-icon { font-size: 1.25rem; margin-bottom: 0.625rem; }
.activity-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.5625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1E5FA8;
  margin-bottom: 0.375rem;
}
.activity-card p { font-size: 0.875rem; color: #3D4554; line-height: 1.5; }

/* ── Contact Form Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form-card {
  background: #ffffff;
  border: 1px solid #E2E6EF;
  border-radius: 2px;
  padding: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.5625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5A6275;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #D6DCE8;
  border-radius: 2px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9375rem;
  color: #1A2744;
  background: #ffffff;
  outline: none;
  transition: border-color 0.15s ease;
  box-sizing: border-box;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: #1E5FA8; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; }
.form-micro {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.5625rem;
  color: #8A9BB0;
  margin-top: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.contact-card {
  background: #0F2044;
  padding: 2rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.contact-card-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.125rem;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item svg { color: #E8500A; flex-shrink: 0; margin-top: 2px; }
.contact-item-text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.contact-item-text a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9375rem;
}
.contact-item-text a:hover { color: #ffffff; }

.phone-cta-card {
  background: #ffffff;
  border: 1px solid #E2E6EF;
  border-radius: 2px;
  padding: 1.5rem;
}
.phone-cta-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0F2044;
  margin-bottom: 0.875rem;
}

.success-msg {
  background: #ffffff;
  border: 1px solid #E2E6EF;
  border-left: 4px solid #1E5FA8;
  padding: 2rem;
  border-radius: 2px;
  display: none;
}
.success-msg h3 { font-size: 1.125rem; color: #0F2044; margin-bottom: 0.75rem; }
.success-msg p { font-size: 0.9375rem; color: #3D4554; line-height: 1.65; margin-bottom: 1rem; }

/* ── Link with arrow ── */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #1E5FA8;
  text-decoration: none;
  margin-top: 2rem;
  transition: gap 0.15s ease;
}
.link-arrow:hover { gap: 0.625rem; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .section { padding: 3rem 0; }
  .hamburger { display: flex; }
  .main-nav, .header-right { display: none; }
  .mobile-sticky { display: flex; }
  body { padding-bottom: 4.5rem; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
}

/* ── Scroll fade-in ── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
