/* =========================================================
   OTURK — Apple-inspired design system
   Brand color (corporate): #134286
   ========================================================= */

:root {
  /* Brand */
  --brand: #134286;
  --brand-strong: #0e3370;
  --brand-light: #1e57a8;
  --brand-50: #eaf0f9;

  /* Apple-style neutrals */
  --bg: #ffffff;
  --bg-alt: #f5f5f7;        /* Apple signature gray */
  --bg-dark: #0c1a33;        /* deep navy for dark sections */
  --ink: #1d1d1f;            /* Apple near-black */
  --ink-2: #424245;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --line-soft: #e8e8ed;

  /* Effects */
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 8px 30px rgba(0,0,0,.06);

  /* Layout */
  --maxw: 980px;
  --maxw-wide: 1240px;

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', system-ui, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Sticky header is 48px tall — extra 24px breathing room above section title */
  scroll-padding-top: 72px;
}
section[id],
[id] { scroll-margin-top: 72px; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01';
  letter-spacing: -0.003em;
}
img { display: block; max-width: 100%; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-strong); }
button { font: inherit; cursor: pointer; border: 0; background: none; }

/* ============== GLOBAL NAV (Apple-style) ============== */
.globalnav {
  position: sticky;
  top: 0;
  z-index: 60;
  height: 48px;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: 14px;
  color: var(--ink);
  transition: background .2s;
}
.globalnav.is-scrolled { background: rgba(255,255,255,.86); }

.globalnav-inner {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
}
.globalnav-logo {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 6px 0;
}
.globalnav-logo img {
  height: 26px;
  width: auto;
  display: block;
}

.globalnav-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  gap: 28px;
  align-items: center;
}
.globalnav-list a {
  color: var(--ink);
  opacity: 0.85;
  font-weight: 400;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  transition: opacity .2s;
}
.globalnav-list a:hover { opacity: 1; }

.globalnav-cta {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ink);
  transition: background .2s;
}
.globalnav-cta:hover { background: rgba(0,0,0,.06); }
.globalnav-cta svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.globalnav-menu {
  display: none;
  width: 32px; height: 32px;
  position: relative;
  margin-left: auto;
}
.globalnav-menu span {
  position: absolute;
  left: 8px; right: 8px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .2s, top .2s, opacity .2s;
}
.globalnav-menu span:nth-child(1) { top: 12px; }
.globalnav-menu span:nth-child(2) { top: 18px; }
.globalnav-menu[aria-expanded="true"] span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.globalnav-menu[aria-expanded="true"] span:nth-child(2) { top: 15px; transform: rotate(-45deg); }

@media (max-width: 880px) {
  .globalnav-list {
    position: fixed;
    top: 48px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(255,255,255,.96);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--line-soft);
    padding: 12px 0;
    gap: 0;
    margin: 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  .globalnav-list.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .globalnav-list li { width: 100%; }
  .globalnav-list a {
    display: block;
    padding: 14px 22px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 16px;
    font-weight: 500;
  }
  .globalnav-list li:last-child a { border-bottom: 0; }
  .globalnav-cta { display: none; }
  .globalnav-menu { display: block; }
}

/* ============== PROMO STRIP ============== */
.promo {
  background: var(--bg-alt);
  padding: 14px 22px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line-soft);
}
.promo strong { color: var(--ink); font-weight: 600; }
.promo a { color: var(--brand); }
.promo a i { font-style: normal; transition: transform .2s; display: inline-block; margin-left: 2px; }
.promo a:hover i { transform: translateX(2px); }

/* ============== HERO ============== */
.hero {
  text-align: center;
  padding: 28px 22px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-eyebrow {
  margin: 0;
  color: var(--brand);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.hero-headline {
  margin: 6px 0 0;
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--ink);
}
.hero-headline sup {
  font-size: 0.32em;
  font-weight: 500;
  vertical-align: top;
  position: relative;
  top: 0.6em;
  color: var(--muted);
}
.hero-sub {
  margin: 6px 0 0;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-tagline {
  margin: 28px auto 0;
  max-width: 620px;
  font-size: clamp(19px, 2.4vw, 28px);
  font-weight: 400;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.hero-links {
  margin-top: 22px;
  display: inline-flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 19px;
}
.hero-links a {
  color: var(--brand);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.hero-links a i { font-style: normal; display: inline-block; margin-left: 2px; transition: transform .2s; }
.hero-links a:hover i { transform: translateX(2px); }

/* Clean hero — minimal tagline above cinematic image */
.hero--clean {
  padding: 36px 8px 0;
  text-align: center;
}
.hero--clean .hero-text {
  max-width: 720px;
  margin: 0 auto 36px;
}
.hero--clean .hero-headline {
  font-size: clamp(44px, 6.4vw, 80px);
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 0 0 12px;
}
.hero--clean .hero-tagline {
  margin: 0 auto 22px;
  color: var(--ink-2);
}
.hero--clean .hero-links { margin-top: 0; }

.hero-stage {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 40px 80px -30px rgba(12,31,36,.28);
}
.hero-stage-img {
  display: block;
  width: 100%;
  height: clamp(440px, 64vh, 680px);
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
/* Subtle top + bottom gradients for soft edges (no overlay text) */
.hero-stage--clean::before,
.hero-stage--clean::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 28%;
  pointer-events: none;
  z-index: 1;
}
.hero-stage--clean::before {
  top: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 100%);
}
.hero-stage--clean::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 100%);
}

@media (max-width: 880px) {
  .hero-stage {
    margin: 0 auto;
    border-radius: 22px;
  }
  .hero-stage-img { height: clamp(320px, 52vh, 480px); }
}
@media (max-width: 720px) {
  .hero { padding-top: 36px; }
  .hero-tagline { margin-top: 18px; }
  .hero-art { margin-top: 24px; }
}

/* ============== STATEMENT (giant centered text) ============== */
.statement {
  background: var(--bg);
  padding: 100px 22px;
  text-align: center;
}
.statement-text {
  margin: 0 auto;
  max-width: 1080px;
  font-size: clamp(34px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--ink);
}
.statement-text span {
  color: var(--muted);
  font-weight: 600;
}

/* ============== TILES (Apple "Get the highlights") ============== */
.tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
  background: var(--bg);
}
.tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 0 0;
  isolation: isolate;
  min-height: 540px;
}
.tile .tile-copy { padding: 0 22px; }

.tile--featured {
  grid-column: 1 / -1;
  padding-top: 72px;
  min-height: 580px;
}

.tile--light {
  background: var(--bg-alt);
  color: var(--ink);
  min-height: 540px;
}
.tile-copy { position: relative; z-index: 1; max-width: 560px; }
.tile-eyebrow {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
}
.tile-headline {
  margin: 8px 0 12px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--ink);
}
.tile-headline span { color: var(--muted); font-weight: 700; }
.tile--dark .tile-headline span { color: rgba(255,255,255,.6); }
.tile-meta {
  margin: 0 0 18px;
  font-size: 17px;
  color: var(--ink-2);
}
.tile-link {
  font-size: 17px;
  color: var(--brand);
}
.tile-link i { font-style: normal; display: inline-block; margin-left: 2px; transition: transform .2s; }
.tile-link:hover i { transform: translateX(2px); }

.tile-image {
  margin-top: auto;
  width: 100%;
  display: grid;
  place-items: end center;
  padding-top: 28px;
  pointer-events: none;
}
.tile-image img {
  max-height: 300px;
  height: auto;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.18));
}
.tile--dark .tile-image img { max-height: 360px; }

/* Catalog image variant — full horizontal product shot, edge-to-edge */
.tile-image--catalog {
  width: 100%;
  max-width: none;
  margin-top: auto;
  padding: 28px 0 0;
  display: block;
  align-self: stretch;
  transition: transform .5s ease;
}
.tile-image--catalog img {
  width: 100%;
  max-height: none;
  height: auto;
  display: block;
  object-fit: contain;
}
.tile:hover .tile-image--catalog { transform: translateY(-3px); }

@media (max-width: 880px) {
  .tiles { grid-template-columns: 1fr; }
  .tile, .tile--light, .tile--dark { padding: 56px 22px 28px; min-height: 520px; }
  .tile-image img { max-height: 240px; }
  .tile--dark .tile-image img { max-height: 280px; }
}

/* ============== FEATURE (alternating product showcases) ============== */
.feature {
  background: var(--bg);
  padding: 110px 22px;
  text-align: center;
}
.feature--invert { background: var(--bg-alt); }
.feature-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.feature-eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.feature-headline {
  margin: 0 0 20px;
  font-size: clamp(38px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--ink);
}
.feature-headline .accent {
  color: var(--muted);
  font-weight: 700;
}
.feature-lede {
  margin: 0 auto;
  max-width: 660px;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.35;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  font-weight: 400;
}

.feature-image {
  margin: 56px auto 40px;
  max-width: 880px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(19,66,134,.06), rgba(19,66,134,.02));
  padding: 30px;
}
.feature--invert .feature-image {
  background: linear-gradient(180deg, #fff, #fafafb);
  box-shadow: 0 20px 60px -20px rgba(19,66,134,.18);
}
.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.feature-points {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  display: flex;
  justify-content: center;
  gap: 56px;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
  text-align: left;
}
.feature--invert .feature-points { border-top-color: rgba(0,0,0,.08); }
.feature-points b {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.feature-points span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 720px) {
  .feature { padding: 80px 22px; }
  .feature-image { margin: 36px auto 28px; padding: 18px; }
  .feature-points { gap: 28px; }
}

/* ============== TECHNOLOGY ============== */
.technology {
  background: var(--bg-dark);
  color: #fff;
  padding: 130px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.technology::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 460px at 100% 0%, rgba(30,87,168,.45), transparent 60%),
    radial-gradient(800px 460px at 0% 100%, rgba(19,66,134,.55), transparent 60%);
  pointer-events: none;
}
.technology-inner { position: relative; max-width: var(--maxw); margin: 0 auto; }
.tech-eyebrow {
  margin: 0 0 14px;
  color: #6cb2ff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tech-headline {
  margin: 0 0 20px;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.tech-headline span { color: rgba(255,255,255,.6); font-weight: 700; }
.tech-lede {
  margin: 0 auto 56px;
  max-width: 620px;
  font-size: 21px;
  color: rgba(255,255,255,.78);
  letter-spacing: -0.01em;
  font-weight: 400;
}
.technology-art {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  margin: 0 auto 56px;
  max-width: 760px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.technology-art img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}
.technology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}
.technology-grid article {
  padding: 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  transition: border-color .25s, background .25s;
}
.technology-grid article:hover {
  border-color: rgba(108,178,255,.4);
  background: rgba(255,255,255,.06);
}
.t-num {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #6cb2ff;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.technology-grid h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.technology-grid p {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
}

@media (max-width: 880px) {
  .technology-grid { grid-template-columns: 1fr; }
  .technology { padding: 90px 22px; }
}

/* ============== WHY (compact strip) ============== */
.why {
  background: var(--bg);
  padding: 110px 22px;
}
.why-inner { max-width: var(--maxw-wide); margin: 0 auto; }
.why header { text-align: center; margin-bottom: 56px; }
.why h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  max-width: 920px;
  margin-inline: auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.why-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform .25s ease;
}
.why-card:hover { transform: translateY(-4px); }
.why-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.why-card p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ============== COMPARE (Apple specs grid) ============== */
.compare {
  background: var(--bg-alt);
  padding: 130px 22px;
}
.compare-inner { max-width: var(--maxw-wide); margin: 0 auto; text-align: center; }
.compare h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--ink);
}
.compare-lede {
  margin: 14px auto 56px;
  font-size: 21px;
  color: var(--muted);
  max-width: 600px;
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: left;
}
.compare-col {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 26px 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.compare-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(19,66,134,.25);
}
.compare-col--featured {
  border-color: var(--brand);
  box-shadow: 0 20px 60px -20px rgba(19,66,134,.35);
}
.compare-flag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.compare-image {
  background: #fff;
  border-radius: var(--radius);
  aspect-ratio: 3 / 2;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.compare-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.compare-col h3 {
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.compare-desc {
  margin: 0 0 20px;
  font-size: 16px;
  color: var(--muted);
}
.compare-specs {
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
}
.compare-specs dt,
.compare-specs dd {
  padding: 12px 0;
  margin: 0;
  border-bottom: 1px solid var(--line-soft);
}
.compare-specs dt { color: var(--muted); }
.compare-specs dd { color: var(--ink); font-weight: 500; text-align: right; }

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

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background .2s, color .2s, transform .15s, opacity .2s;
  white-space: nowrap;
  align-self: flex-start;
  cursor: pointer;
}
.btn--blue {
  background: var(--brand);
  color: #fff;
}
.btn--blue:hover { background: var(--brand-strong); color: #fff; }
.btn--blue:active { transform: scale(.98); }
.btn--ghost {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: var(--bg-alt); }

/* ============== ABOUT ============== */
.about {
  background: var(--bg);
  padding: 130px 22px;
  text-align: center;
}
.about-inner { max-width: var(--maxw); margin: 0 auto; }
.about-headline {
  margin: 0 0 22px;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.about-headline .accent { color: var(--muted); font-weight: 700; }
.about-lede {
  margin: 0 auto 56px;
  max-width: 700px;
  font-size: 21px;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.about-stats div {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 28px 18px;
}
.about-stats b {
  display: block;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--brand);
}
.about-stats span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
}
@media (max-width: 720px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* ============== CONTACT ============== */
.contact {
  background: var(--bg-alt);
  padding: 130px 22px;
  text-align: center;
}
.contact-inner { max-width: var(--maxw-wide); margin: 0 auto; }
.contact-headline {
  margin: 0 0 56px;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.contact-headline .accent { color: var(--muted); font-weight: 700; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: left;
  margin-bottom: 32px;
}
.ccard {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s, box-shadow .25s;
  color: var(--ink);
  min-height: 200px;
}
a.ccard:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(19,66,134,.25);
}
.ccard-label {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ccard-value {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.ccard-meta {
  margin: auto 0 0;
  font-size: 14px;
  color: var(--brand);
  font-weight: 500;
}
.ccard-meta i,
.social-link i { font-style: normal; transition: transform .2s; display: inline-block; margin-left: 2px; }
a.ccard:hover .ccard-meta i,
.social-link:hover i { transform: translateX(2px); }
.ccard--social { gap: 8px; }
.social-link {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-top: 1px solid var(--line-soft);
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
}
.social-link:first-of-type { border-top: 0; padding-top: 0; }
.social-link span { color: var(--muted); font-weight: 400; font-size: 13px; flex: 1; padding-left: 8px; }
.social-link:hover { color: var(--brand); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  background: #fff;
  border: 1px solid var(--line-soft);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .contact-grid { grid-template-columns: 1fr; } .map-wrap { height: 320px; } }

/* ============== FOOTER (Apple-style, dark navy) ============== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.6);
  padding: 56px 22px 36px;
  font-size: 12px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 380px at 100% 0%, rgba(30,87,168,.28), transparent 60%),
    radial-gradient(800px 380px at 0% 100%, rgba(19,66,134,.35), transparent 60%);
  pointer-events: none;
}
.footer-inner { position: relative; max-width: var(--maxw-wide); margin: 0 auto; }
.footer-mark {
  display: flex;
  justify-content: center;
  padding: 8px 0 36px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-mark img {
  height: 44px;
  width: auto;
  opacity: 0.95;
}
.footer-disclaimer {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  text-align: center;
}
.footer-disclaimer p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  max-width: 880px;
  margin-inline: auto;
  color: rgba(255,255,255,.55);
}
.footer-cols {
  padding: 32px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-col h4 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.005em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.6); font-size: 13px; }
.footer-col a:hover { color: #6cb2ff; }
.footer-col li { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.6); }

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
}

@media (max-width: 880px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 560px) { .footer-cols { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  html { scroll-behavior: auto; }
}
