﻿@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ═══════════════════════════════════════════════════════════════
   EVESA MÜHENDİSLİK — Corporate Electrical Engineering Theme
   Manrope (body) · Lexend (headings) · Cyan accent on ink
   ═══════════════════════════════════════════════════════════════ */

:root {
  --ink: #051021;
  --ink-soft: #0f2847;
  --cyan: #00B4D8;
  --cyan-dark: #0096C7;
  --surface: #F4F7FB;
  --white: #fff;
  --muted: #5A6B7D;
  --border: #D8E2EC;
  --wa-green: #22c55e;
  --wa-green-dark: #16a34a;
  --cyan-soft: rgba(0, 180, 216, 0.12);
  --shadow: 0 4px 24px rgba(5, 16, 33, 0.07);
  --shadow-md: 0 12px 40px rgba(5, 16, 33, 0.1);
  --shadow-lg: 0 20px 56px rgba(5, 16, 33, 0.14);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --font: 'Manrope', system-ui, sans-serif;
  --font-display: 'Lexend', system-ui, sans-serif;
  --topbar-h: 38px;
  --header-h: 72px;
  --header-offset: 110px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--ink-soft);
  background: var(--surface);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--header-offset);
}

img { max-width: 100%; display: block; height: auto; }

a {
  color: var(--cyan-dark);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover { color: var(--cyan); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.25;
}

/* ── TOPBAR ── */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  height: var(--topbar-h);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 500;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.topbar-inner > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.topbar-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  white-space: nowrap;
}

.topbar-links a:hover { color: var(--cyan); }

/* ── HEADER (white corporate) ── */
.header-shell {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}

.header-shell.is-scrolled {
  box-shadow: var(--shadow-md);
}

.site-header { background: transparent; }

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: var(--header-h);
}

.logo { flex-shrink: 0; }

.logo img {
  height: 42px;
  width: auto;
  max-width: min(210px, 48vw);
}

.main-nav { flex: 1; display: flex; justify-content: center; }

.main-nav > ul {
  display: flex;
  list-style: none;
  gap: 4px;
}

.main-nav a {
  padding: 9px 14px;
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--muted);
  border-radius: var(--radius-pill);
  transition: all 0.2s var(--ease);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--ink);
  background: var(--cyan-soft);
}

.nav-item { position: relative; }

.sub-menu { list-style: none; margin: 0; padding: 0; }

@media (hover: hover) and (min-width: 769px) {
  .nav-item .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 270px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s var(--ease);
    box-shadow: var(--shadow-lg);
    z-index: 100;
  }

  .nav-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

.sub-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 8px;
}

.sub-menu a:hover {
  background: var(--surface);
  color: var(--cyan-dark);
}

.header-actions,
.header-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-cta { display: flex; align-items: center; }

.header-phone {
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--ink);
  white-space: nowrap;
}

.header-phone:hover { color: var(--cyan-dark); }

/* Hamburger — 3 spans */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.88rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  font-family: var(--font);
  text-decoration: none;
  line-height: 1.2;
}

.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(0, 180, 216, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--cyan-dark) 0%, #0077b6 100%);
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.4);
}

.btn-secondary {
  background: var(--ink);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--ink-soft);
  color: var(--white);
}

.btn-wa {
  background: var(--wa-green) !important;
  color: var(--white) !important;
  border-color: #15803d !important;
  box-shadow: 0 4px 18px rgba(34, 197, 94, 0.4) !important;
}

.btn-wa:hover {
  background: var(--wa-green-dark) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.45) !important;
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan-dark);
  background: var(--cyan-soft);
}

.btn-ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.btn-light:hover {
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--ink-soft);
  color: var(--ink);
}

.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn-call-lg {
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
}

/* ── CORP HERO (asymmetric 2-col) ── */
.corp-hero {
  background: var(--surface);
  padding: 56px 0 0;
  overflow: hidden;
}

.corp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - var(--header-offset) - 80px);
}

.corp-hero__copy {
  padding: 24px 0 48px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 20px;
  padding: 7px 16px;
  background: var(--cyan-soft);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 180, 216, 0.25);
}

.corp-hero__copy h1 {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--ink);
}

.corp-hero__copy .lead,
.lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 540px;
}

.corp-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.corp-hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 420px;
}

.corp-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
  box-shadow: var(--shadow-lg);
}

.corp-hero__badge {
  position: absolute;
  bottom: 32px;
  left: -20px;
  background: var(--ink);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--cyan);
}

.corp-hero__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1.1;
}

.corp-hero__badge span {
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.85;
}

/* ── CORP METRICS (4 stats row) ── */
.corp-metrics {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: relative;
  z-index: 2;
}

.corp-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid var(--border);
}

.metric:last-child { border-right: none; }

.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--cyan-dark);
  line-height: 1.15;
  margin-bottom: 6px;
}

.metric span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

/* ── SECTIONS ── */
.section { padding: 80px 0; }

.section--white,
.section-alt { background: var(--white); }

.section--soft,
.section-warm { background: var(--surface); }

.section-head,
.section-header {
  margin-bottom: 44px;
  max-width: 680px;
}

.section-head--center,
.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
  flex-wrap: wrap;
}

.eyebrow,
.section-head .eyebrow,
.label {
  display: inline-block;
  color: var(--cyan-dark);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 3px solid var(--cyan);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.75);
  border-left-color: var(--cyan);
}

.section-head h2,
.section-header h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  margin-bottom: 14px;
  font-weight: 700;
}

.section-lead,
.section-head p,
.section-header p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section-head--center .eyebrow,
.section-header.center .label {
  border-left: none;
  padding-left: 0;
}

.section-cta { margin-top: 36px; }

.section-cta--center { text-align: center; }

/* ── VALUE GRID (3 col, cyan left border) ── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--cyan);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card__icon {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--cyan);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 1.02rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── SVC BENTO GRID (3 col, image top) ── */
.svc-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── SERVICE TILES (homepage, no images) ── */
.svc-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-tile {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
  color: inherit;
  position: relative;
  overflow: hidden;
}

.svc-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.svc-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 180, 216, 0.35);
  color: inherit;
}

.svc-tile:hover::before { transform: scaleX(1); }

.svc-tile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.svc-tile__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: var(--cyan-soft);
  border-radius: 12px;
}

.svc-tile__num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.svc-tile h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.svc-tile p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.svc-tile__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--cyan-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.svc-tile:hover .svc-tile__link { color: var(--cyan); }

/* ── SERVICE MENU (hizmetler page, no images) ── */
.svc-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.svc-menu-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all 0.25s var(--ease);
  color: inherit;
}

.svc-menu-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  color: inherit;
}

.svc-menu-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: linear-gradient(145deg, var(--ink-soft), var(--ink));
  border-radius: 14px;
  color: var(--white);
}

.svc-menu-card__body { flex: 1; min-width: 0; }

.svc-menu-card__body h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.svc-menu-card__body p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.svc-menu-card__arrow {
  flex-shrink: 0;
  color: var(--cyan-dark);
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
}

.svc-menu-card:hover .svc-menu-card__arrow {
  opacity: 1;
  transform: translateX(3px);
}

.ui-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.ui-icon--sm { width: 16px; height: 16px; }

.svc-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc-bento {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  color: inherit;
  text-decoration: none;
}

.svc-bento:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan);
  color: inherit;
}

.svc-bento__img {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--ink-soft);
}

.svc-bento__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.svc-bento:hover .svc-bento__img img { transform: scale(1.06); }

.svc-bento__body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-bento__tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cyan-dark);
  margin-bottom: 10px;
}

.svc-bento__body h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.svc-bento__body p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}

.svc-bento__link {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--cyan-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── TIMELINE (vertical, cyan line) ── */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 8px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  border-radius: 2px;
}

.timeline__item {
  display: flex;
  gap: 24px;
  padding-bottom: 36px;
  position: relative;
}

.timeline__item:last-child { padding-bottom: 0; }

.timeline__num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cyan-dark);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.timeline__content {
  flex: 1;
  padding-top: 10px;
}

.timeline__content h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.timeline__content p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── SVC CATALOG GRID (2 col horizontal) ── */
.svc-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.svc-catalog {
  display: grid;
  grid-template-columns: 40% 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  color: inherit;
  text-decoration: none;
}

.svc-catalog:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan);
  color: inherit;
}

.svc-catalog__fig {
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
}

.svc-catalog__fig img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.svc-catalog:hover .svc-catalog__fig img { transform: scale(1.05); }

.svc-catalog__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svc-catalog__icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  line-height: 1;
}

.svc-catalog__body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.svc-catalog__body p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 12px;
}

.svc-catalog__link {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--cyan-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  padding: 72px 0 56px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(0, 180, 216, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 60% at 85% 30%, rgba(0, 150, 199, 0.12), transparent 50%);
  pointer-events: none;
}

.page-hero--corp {
  background: linear-gradient(145deg, var(--ink) 0%, #0a1f3d 45%, var(--ink-soft) 100%);
  text-align: left;
  padding: 80px 0 64px;
}

.page-hero--corp .container { position: relative; z-index: 1; }

.page-hero--corp h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 14px;
  font-weight: 800;
  max-width: 720px;
}

.page-hero--corp p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.75;
}

.page-hero--compact { padding: 64px 0 48px; }

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
  font-weight: 700;
  color: var(--white);
}

.page-hero p {
  opacity: 0.82;
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.85);
}

.page-hero--compact .breadcrumb {
  background: transparent;
  border: none;
  padding: 0 0 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
}

.page-hero--compact .breadcrumb a { color: rgba(255, 255, 255, 0.7); }

.page-hero--compact .breadcrumb a:hover { color: var(--cyan); }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.84rem;
  color: var(--muted);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.breadcrumb a { color: var(--muted); }

.breadcrumb a:hover { color: var(--cyan-dark); }

/* ── CORP CTA band ── */
.corp-cta {
  background: linear-gradient(120deg, var(--cyan-dark) 0%, var(--ink-soft) 55%, var(--ink) 100%);
  padding: 64px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.corp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.corp-cta--compact { padding: 48px 0; }

.corp-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.corp-cta__inner h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--white);
}

.corp-cta__inner p {
  opacity: 0.88;
  font-size: 0.98rem;
  max-width: 480px;
}

.corp-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Legacy CTA */
.cta {
  background: linear-gradient(120deg, var(--ink) 0%, var(--ink-soft) 55%, var(--cyan-dark) 100%);
  padding: 72px 0;
  text-align: center;
  color: var(--white);
}

.cta h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--white);
}

.cta p {
  opacity: 0.88;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── REF GRID ── */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ref-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.ref-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ref-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.ref-card-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ref-card-body h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.35;
}

.ref-card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 12px;
}

.ref-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cyan-dark);
  background: var(--cyan-soft);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

/* ── FAQ ── */
.faq-list { max-width: 860px; margin: 0 auto; }

.faq-item {
  margin-bottom: 12px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
}

.faq-q,
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 22px;
  background: none;
  border: none;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
}

.faq-q::after,
.faq-question span:last-child {
  content: '+';
  font-size: 1.3rem;
  color: var(--cyan-dark);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan-soft);
  border-radius: 50%;
  font-weight: 400;
}

.faq-item.open .faq-q::after { content: '\2212'; }

.faq-item.open .faq-question span:last-child { content: '\2212'; }

.faq-a,
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-a-inner,
.faq-answer-inner {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.faq-item.open .faq-a,
.faq-item.open .faq-answer { max-height: 600px; }

.faq-item.open .faq-q,
.faq-item.open .faq-question { background: var(--cyan-soft); }

/* ── REGION TAGS ── */
.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.region-tag {
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all 0.2s var(--ease);
}

.region-tag:hover {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
}

/* ── BLOG GRID ── */
.blog-intro { max-width: 820px; margin-bottom: 40px; }

.blog-intro p {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}

.blog-card-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.blog-card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.blog-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-date {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 600;
}

.blog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.35;
  font-weight: 700;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.blog-card-link {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--cyan-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card:hover .blog-card-link { color: var(--cyan); }

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.blog-tag-pill {
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.blog-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan-dark);
  background: var(--cyan-soft);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-right: 12px;
}

.blog-cta-box {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.blog-cta-box h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.blog-cta-box p {
  opacity: 0.85;
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.blog-cta-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ── PROSE / CONTENT ── */
.prose { max-width: 720px; }

.prose h2 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 32px 0 14px;
  font-size: 1.5rem;
}

.prose h3 {
  color: var(--ink-soft);
  margin: 24px 0 10px;
  font-size: 1.15rem;
}

.prose p { color: var(--muted); margin-bottom: 14px; }

.prose ul, .prose ol {
  margin: 12px 0 20px 24px;
  color: var(--muted);
}

.prose li { margin-bottom: 6px; }

.content-block { max-width: 820px; margin: 0 auto; }

.content-block h2 {
  font-family: var(--font-display);
  color: var(--ink);
  margin-bottom: 14px;
  font-size: 1.6rem;
}

.content-block h3 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 24px 0 10px;
  font-size: 1.15rem;
}

.content-block p { color: var(--muted); margin-bottom: 14px; }

.seo-rich h3:first-of-type { margin-top: 8px; }

/* ── CHECK LIST ── */
.check-list { list-style: none; margin: 22px 0 28px; }

.check-list li {
  padding: 10px 0 10px 36px;
  position: relative;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--border);
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 20px;
  height: 20px;
  background: var(--cyan);
  border-radius: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── SPLIT LAYOUT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-img img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.split-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.split-content .tag {
  color: var(--cyan-dark);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.split-content p { color: var(--muted); margin-bottom: 14px; }

/* ── KURUMSAL PAGE ── */
.corp-stats {
  background: var(--white);
  padding: 0;
  margin-top: -36px;
  position: relative;
  z-index: 5;
}

.corp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.corp-stat {
  text-align: center;
  padding: 12px;
  border-right: 1px solid var(--border);
}

.corp-stat:last-child { border-right: none; }

.corp-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan-dark);
  line-height: 1.1;
}

.corp-stat span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.corp-about { padding-top: 64px; }

.corp-about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.corp-about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.corp-about-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.corp-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--cyan-dark);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
}

.corp-about-content .label { margin-bottom: 12px; }

.corp-about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 18px;
  font-weight: 800;
}

.corp-about-content p {
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.75;
}

.feature-list {
  list-style: none;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  padding: 12px 16px 12px 44px;
  position: relative;
  background: var(--cyan-soft);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  border-left: 3px solid var(--cyan);
}

.feature-list li::before {
  content: '\2713';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cyan-dark);
  font-weight: 800;
}

.corp-values { padding: 80px 0; background: var(--surface); }

.corp-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.corp-value-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--cyan);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease);
}

.corp-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.corp-value-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}

.corp-value-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.corp-value-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.corp-strip {
  background: linear-gradient(120deg, var(--ink) 0%, var(--ink-soft) 100%);
  padding: 56px 0;
  text-align: center;
  color: var(--white);
}

.corp-strip blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 600;
  opacity: 0.95;
}

.bg-light { background: var(--surface); }

.section-label {
  display: inline-block;
  color: var(--cyan-dark);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 800;
}

.section-desc {
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.75;
}

/* ── SERVICES LIST (legacy svc-list-card) ── */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-list-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  color: inherit;
  text-decoration: none;
}

.svc-list-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan);
  color: inherit;
}

.svc-list-card__media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--ink-soft);
}

.svc-list-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.svc-list-card:hover .svc-list-card__media img { transform: scale(1.06); }

.svc-list-card__icon {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow);
}

.svc-list-card__body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-list-card__body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.svc-list-card__body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}

.svc-list-card__link {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--cyan-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.service-card:hover img { transform: scale(1.08); }

.service-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 16, 33, 0.92) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.service-card span {
  font-size: 0.8rem;
  color: var(--cyan);
  margin-top: 6px;
  font-weight: 600;
}

.service-card--icon {
  aspect-ratio: auto;
  min-height: 220px;
  background: linear-gradient(145deg, var(--ink) 0%, var(--ink-soft) 100%);
}

.service-card--icon .service-card-inner {
  position: relative;
  inset: auto;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
}

.service-card--icon .service-icon { font-size: 2.2rem; margin-bottom: 12px; }

.service-card--icon:hover { transform: translateY(-6px); transition: transform 0.3s var(--ease); }

/* ── SERVICE DETAIL ── */
.service-detail-hero { padding: 0 0 56px; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.service-sidebar {
  position: sticky;
  top: calc(var(--header-offset) + 20px);
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-sidebar__nav {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}

.service-sidebar h4,
.service-sidebar__nav h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 700;
}

.service-sidebar ul,
.service-sidebar__nav ul {
  list-style: none;
}

.service-sidebar li,
.service-sidebar__nav li { margin-bottom: 2px; }

.service-sidebar a,
.service-sidebar__nav a {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-soft);
  display: block;
  padding: 7px 10px;
  border-radius: 8px;
  line-height: 1.4;
}

.service-sidebar a:hover,
.service-sidebar a.active,
.service-sidebar__nav a:hover,
.service-sidebar__nav a.active {
  background: var(--cyan-soft);
  color: var(--cyan-dark);
}

.service-cta-box {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}

.service-contact-panel {
  padding: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #f8fbfe 0%, var(--white) 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-contact-panel__head {
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.service-contact-panel__eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan-dark);
  margin-bottom: 6px;
}

.service-contact-panel__head p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.service-contact-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
}

.service-contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.service-contact-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.service-contact-btn__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.service-contact-btn__icon .ui-icon {
  width: 18px;
  height: 18px;
}

.service-contact-btn__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.service-contact-btn__text small {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.service-contact-btn__text strong {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.service-contact-btn--phone:hover {
  border-color: var(--cyan);
}

.service-contact-btn--phone:hover .service-contact-btn__icon {
  background: var(--cyan-soft);
  border-color: rgba(0, 180, 216, 0.25);
  color: var(--cyan-dark);
}

.service-contact-btn--wa {
  border-color: rgba(34, 197, 94, 0.28);
  background: rgba(34, 197, 94, 0.06);
}

.service-contact-btn--wa .service-contact-btn__icon {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.22);
  color: var(--wa-green-dark);
}

.service-contact-btn--wa:hover {
  border-color: var(--wa-green);
  background: rgba(34, 197, 94, 0.1);
}

.service-cta-box__lead {
  font-size: 0.82rem !important;
  color: var(--muted) !important;
  margin-bottom: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 8px;
  border: 1px solid transparent;
  transition: all 0.2s var(--ease);
}

.btn-sidebar:last-child { margin-bottom: 0; }

.btn-sidebar .ui-icon { width: 16px; height: 16px; }

.btn-sidebar--call {
  background: var(--white);
  color: var(--ink);
  border-color: var(--border);
}

.btn-sidebar--call:hover {
  border-color: var(--cyan);
  color: var(--cyan-dark);
}

.btn-sidebar--wa {
  background: var(--wa-green);
  color: var(--white);
}

.btn-sidebar--wa:hover {
  background: var(--wa-green-dark);
  color: var(--white);
}

.related-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.related-card {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.related-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
}

.related-card .icon { font-size: 1.5rem; margin-bottom: 8px; }

.related-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
}

/* ── CONTACT PAGE ── */
.contact-page { padding: 0 0 88px; }

.contact-hero-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  padding-bottom: 56px;
}

.contact-quick-card {
  background: var(--white);
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s var(--ease);
}

.contact-quick-card:hover { transform: translateY(-6px); }

.contact-quick-card .icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: var(--cyan-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.contact-quick-card h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-quick-card p,
.contact-quick-card a {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.92rem;
  word-break: break-word;
}

.contact-quick-card a:hover { color: var(--cyan-dark); }

.contact-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  max-width: 640px;
  margin: 0 auto;
}

.contact-info-panel {
  background: var(--ink);
  color: var(--white);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.15);
}

.contact-info-panel h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 12px;
  position: relative;
  color: var(--white);
}

.contact-info-panel > p {
  opacity: 0.8;
  margin-bottom: 28px;
  font-size: 0.95rem;
  position: relative;
}

.contact-info-list { list-style: none; position: relative; }

.contact-info-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-list li:last-child { border-bottom: none; }

.contact-info-list .ci-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-info-list strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.65;
  margin-bottom: 4px;
}

.contact-info-list span,
.contact-info-list a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-info-list a:hover { color: var(--cyan); }

.contact-info-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  position: relative;
}

.contact-wrap { display: none; }

.info-card, .form-card { display: none; }

/* ── CONTACT MAP ── */
.contact-map-section {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.contact-map-header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.contact-map-pin {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--cyan-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.contact-map-header strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-map-header span {
  font-size: 0.84rem;
  color: var(--muted);
}

.contact-map-header a.btn {
  margin-left: auto;
  font-size: 0.82rem;
  padding: 10px 18px;
}

.contact-map-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--white);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.gallery-item:hover img { transform: scale(1.06); }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.photo-item {
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.photo-item:hover img { transform: scale(1.06); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 16, 33, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 52px;
  height: 52px;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0, 180, 216, 0.45);
  transform: scale(1.05);
}

.lightbox-close { top: 20px; right: 20px; font-size: 1.3rem; }

.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-prev:hover,
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

/* ── FOOTER ── */
.site-footer {
  background: #071222;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 0;
}

.footer-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--cyan) 0%, #48cae4 50%, var(--cyan-dark) 100%);
}

.footer-main {
  background: linear-gradient(180deg, #0c1e36 0%, #071222 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bar {
  background: #050d18;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 0 44px;
}

.footer-brand img { height: 42px; margin-bottom: 18px; filter: brightness(1.05); }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-contact-chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75) !important;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  width: fit-content;
  transition: all 0.2s;
}

.footer-chip:hover {
  background: rgba(0, 180, 216, 0.15);
  border-color: rgba(0, 180, 216, 0.35);
  color: var(--white) !important;
}

.footer-chip .ui-icon { width: 15px; height: 15px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.footer-col a:hover { color: var(--cyan); }

.footer-address li { font-size: 0.86rem; line-height: 1.65; }

.footer-bottom {
  padding: 18px 0;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.42);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom a { color: rgba(255, 255, 255, 0.55); }

.footer-bottom a:hover { color: var(--cyan); }

.footer-cta-band {
  background: var(--cyan-dark);
  padding: 48px 0;
  color: var(--white);
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-cta-inner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.footer-cta-inner p {
  opacity: 0.9;
  font-size: 0.95rem;
  margin-top: 6px;
}

/* ── FAB GROUP ── */
.fab-group,
.fab-dock {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(5, 16, 33, 0.22);
  transition: all 0.25s var(--ease);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.fab-btn .ui-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.fab-btn:hover {
  transform: translateY(-3px);
  color: var(--white);
}

.fab-btn--wa,
.fab-wa { background: var(--wa-green); }

.fab-btn--phone,
.fab-call { background: var(--cyan-dark); }

.back-top {
  position: fixed;
  bottom: 24px;
  left: 20px;
  width: 46px;
  height: 46px;
  background: var(--ink);
  color: var(--white);
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.back-top.show { opacity: 1; visibility: visible; }

.back-top:hover { background: var(--cyan-dark); }

/* ── NAV OVERLAY / MOBILE ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1098;
  background: rgba(5, 16, 33, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
}

.nav-overlay.open { opacity: 1; visibility: visible; }

html.menu-open,
body.menu-open { overflow: hidden; touch-action: none; }

body.lightbox-open { overflow: hidden; }

/* ── MISC ── */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.equip-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.equip-card:hover { border-color: var(--cyan); }

.equip-icon { font-size: 1.6rem; flex-shrink: 0; }

.equip-card h3 {
  font-size: 0.94rem;
  margin-bottom: 4px;
  font-weight: 700;
}

.equip-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.product img { width: 100%; height: 220px; object-fit: cover; }

.product-body { padding: 18px; flex: 1; }

.product-body h3 {
  font-size: 0.92rem;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .corp-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
  }

  .corp-hero__visual {
    order: -1;
    min-height: 320px;
  }

  .corp-hero__visual img {
    min-height: 320px;
    border-radius: var(--radius-lg);
    clip-path: none;
  }

  .corp-hero__badge {
    left: 16px;
    bottom: 16px;
  }

  .corp-hero__copy { padding-bottom: 32px; }

  .value-grid,
  .svc-bento-grid,
  .svc-tile-grid,
  .svc-menu-grid,
  .corp-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-catalog-grid { grid-template-columns: 1fr; }

  .ref-grid,
  .blog-grid,
  .services {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .corp-about-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .contact-hero-cards { grid-template-columns: repeat(2, 1fr); }

  .service-detail-grid { grid-template-columns: 1fr; }

  .service-sidebar { position: static; }

  .related-services { grid-template-columns: 1fr; }

  .split { grid-template-columns: 1fr; gap: 32px; }

  .corp-metrics__grid { grid-template-columns: repeat(2, 1fr); }

  .metric:nth-child(2) { border-right: none; }

  .metric:nth-child(1),
  .metric:nth-child(2) { border-bottom: 1px solid var(--border); }

  .equip-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --topbar-h: 0px;
    --header-offset: 72px;
  }

  .topbar { display: none; }

  .header-shell { top: 0; }

  .header-inner {
    height: 72px;
    gap: 12px;
  }

  .header-actions,
  .header-contact,
  .header-cta { display: none; }

  .menu-toggle { display: flex; }

  .nav-overlay { display: block; }

  .main-nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(320px, 90vw);
    height: 100dvh;
    background: var(--white);
    padding: calc(var(--header-offset) + 16px) 20px 48px;
    transform: translateX(105%);
    opacity: 1;
    visibility: visible;
    transition: transform 0.35s var(--ease);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: -12px 0 40px rgba(5, 16, 33, 0.15);
    border-left: 3px solid var(--cyan);
    justify-content: flex-start;
    z-index: 1101;
  }

  .main-nav.open { transform: translateX(0); }

  .main-nav > ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .main-nav a {
    display: flex;
    padding: 15px 12px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    color: var(--ink-soft);
  }

  .main-nav a:hover,
  .main-nav a.active { background: var(--cyan-soft); }

  .main-nav > ul > .nav-item {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .nav-item.has-children > a {
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav-item .sub-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    box-shadow: none;
    border: none;
    background: var(--surface);
    padding: 0;
    margin: 0;
    border-radius: 0;
    min-width: 0;
    left: auto;
    width: 100%;
    max-width: 100%;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.35s var(--ease), visibility 0.2s;
  }

  .nav-item.open .sub-menu {
    max-height: min(48vh, 360px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 8px;
    border-bottom: 1px solid var(--border);
    visibility: visible;
  }

  .nav-item:not(.open):hover .sub-menu,
  .nav-item:not(.open) .sub-menu {
    max-height: 0 !important;
    visibility: hidden !important;
    transform: none !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .nav-item.has-children > a::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--cyan-dark);
    margin-left: 12px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
  }

  .nav-item.has-children.open > a::after { content: '\2212'; }

  .nav-item.has-children.open > a { background: var(--cyan-soft); }

  .nav-item.has-children:not(.open) > a:hover { background: transparent; }

  .sub-menu a {
    color: var(--muted);
    padding: 11px 16px 11px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 0.88rem;
    display: block;
    width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-break: break-word;
  }

  .sub-menu li:last-child a { border-bottom: none; }

  .corp-hero { padding-top: 32px; }

  .corp-hero__copy h1 { font-size: 1.85rem; }

  .corp-hero__copy .lead { font-size: 0.95rem; }

  .corp-hero__actions .btn { flex: 1; min-width: 140px; }

  .corp-metrics__grid,
  .corp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric,
  .corp-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .metric:nth-child(odd),
  .corp-stat:nth-child(odd) { border-right: 1px solid var(--border); }

  .metric:nth-last-child(-n+2),
  .corp-stat:nth-last-child(-n+2) { border-bottom: none; }

  .value-grid,
  .svc-bento-grid,
  .svc-tile-grid,
  .svc-menu-grid,
  .ref-grid,
  .blog-grid,
  .services,
  .corp-values-grid,
  .gallery-grid,
  .footer-grid,
  .equip-grid,
  .products {
    grid-template-columns: 1fr;
  }

  .metric:nth-child(odd) { border-right: none; }

  .section-head--row {
    flex-direction: column;
    align-items: flex-start;
  }

  .svc-catalog {
    grid-template-columns: 1fr;
  }

  .svc-catalog__fig img { min-height: 180px; }

  .section { padding: 56px 0; }

  .page-hero { padding: 64px 0 48px; }

  .page-hero--corp { padding: 64px 0 48px; }

  .corp-cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .corp-cta__actions { justify-content: center; width: 100%; }

  .corp-cta__actions .btn { flex: 1; min-width: 140px; }

  .contact-hero-cards {
    grid-template-columns: 1fr;
    margin-top: -30px;
  }

  .contact-info-panel { padding: 28px 22px; }

  .photo-grid { grid-template-columns: repeat(2, 1fr); }

  .fab-btn span { display: none; }

  .fab-btn {
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .fab-btn .ui-icon {
    width: 24px;
    height: 24px;
  }

  .cta-actions .btn,
  .corp-cta__actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .timeline::before { left: 23px; }

  .timeline__num {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
}
