/* ==========================================================================
   HZL CAR SERVICE — Ana Stil Dosyası
   ========================================================================== */

:root {
  --color-bg: #0b0d12;
  --color-bg-alt: #11141c;
  --color-surface: #161a24;
  --color-surface-2: #1c2130;
  --color-border: #2a3040;
  --color-orange: #ff7a1a;
  --color-orange-light: #ff9a4d;
  --color-blue: #1b4fd6;
  --color-blue-light: #3b6bf5;
  --color-text: #eef1f6;
  --color-text-muted: #a7adba;
  --color-silver: #c9ced8;
  --font-heading: "Segoe UI", "Poppins", Arial, sans-serif;
  --font-body: "Segoe UI", Arial, sans-serif;
  --radius: 10px;
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.45);
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.3px;
}

.section-eyebrow {
  display: inline-block;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.section-desc {
  color: var(--color-text-muted);
  max-width: 720px;
  margin-bottom: 40px;
}

.section-desc.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.text-center {
  text-align: center;
}

section {
  padding: 90px 0;
}

.bg-alt {
  background: var(--color-bg-alt);
}

/* Buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-orange) 0%, #ff5a1a 100%);
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 122, 26, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 14px 32px rgba(255, 122, 26, 0.5);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn-outline:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Logo ------------------------------------------------------------------ */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text .hzl {
  font-size: 1.35rem;
  font-weight: 900;
}

.logo-text .hzl span {
  color: var(--color-orange);
}

.logo-text .sub {
  font-size: 0.55rem;
  letter-spacing: 3px;
  color: var(--color-silver);
  font-weight: 600;
}

/* Header / Nav ------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 13, 18, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.topbar {
  background: var(--color-blue);
  background: linear-gradient(90deg, #10254f, #0b0d12 120%);
  font-size: 0.82rem;
  border-bottom: 1px solid var(--color-border);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-silver);
  transition: color var(--transition);
}

.topbar-links a:hover {
  color: var(--color-orange-light);
}

.topbar-slogan {
  color: var(--color-text-muted);
  font-style: italic;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--color-orange);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-orange-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Hero ----------------------------------------------------------------- */

.hero {
  position: relative;
  padding: 200px 0 120px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 122, 26, 0.12), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(27, 79, 214, 0.18), transparent 50%),
    linear-gradient(180deg, #0b0d12 0%, #0e1119 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--color-orange-light);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--color-orange);
}

.hero p {
  color: var(--color-text-muted);
  font-size: 1.08rem;
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-stats .stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-orange);
}

.hero-stats .stat-label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-img {
  width: 100%;
  max-width: 420px;
  object-fit: cover;
}

/* Trust strip ------------------------------------------------------- */

.trust-strip {
  padding: 26px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}

.trust-strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
}

.trust-strip li {
  color: var(--color-text-muted);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-strip li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-orange);
}

/* Cards grid ----------------------------------------------------------- */

.grid {
  display: grid;
  gap: 26px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 26, 0.5);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.18), rgba(27, 79, 214, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--color-orange);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--color-orange-light);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Goals list (used on home teaser + hedeflerimiz) ---------------------- */

.goal-item {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--color-border);
}

.goal-item:last-child {
  border-bottom: none;
}

.goal-num {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--color-orange);
  font-size: 1.1rem;
}

.goal-body h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.goal-body p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* About / split section -------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-media {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--color-text-muted);
}

.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 122, 26, 0.15);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.8rem;
}

/* Service network map --------------------------------------------------- */

.map-panel {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: start;
}

.map-panel-map {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
}

.map-panel-map svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-panel-map .turkey path {
  fill: var(--color-surface-2);
  stroke: var(--color-bg-alt);
  stroke-width: 0.75;
  cursor: pointer;
  transition: fill 0.2s ease;
}

.map-panel-map .turkey g:hover path {
  fill: var(--color-blue-light);
}

.map-panel-map .turkey g.has-service path {
  fill: rgba(255, 122, 26, 0.55);
}

.map-panel-map .turkey g.has-service:hover path {
  fill: var(--color-orange);
}

.map-panel-map .turkey g.active path {
  fill: var(--color-orange);
  stroke: #fff;
}

.map-legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.map-legend .dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
}

.map-legend .dot.available {
  background: var(--color-orange);
}

.map-legend .dot.soon {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
}

.map-panel-info {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 30px;
  min-height: 320px;
}

.map-info-default {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  text-align: center;
  color: var(--color-text-muted);
}

.map-info-default i {
  font-size: 2rem;
  color: var(--color-orange);
  margin-bottom: 14px;
}

.map-info-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  text-align: center;
}

.map-info-empty i {
  font-size: 1.8rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.map-info-empty h3 {
  margin-bottom: 10px;
}

.map-info-empty p {
  color: var(--color-text-muted);
  margin-bottom: 18px;
  font-size: 0.92rem;
}

.map-info-result h3 {
  margin-bottom: 16px;
}

.map-branch {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 12px;
}

.map-branch:last-child {
  margin-bottom: 0;
}

.map-branch h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.map-branch p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.map-branch-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.map-branch-actions a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-orange-light);
}

@media (max-width: 980px) {
  .map-panel {
    grid-template-columns: 1fr;
  }
}

/* Vision banner ------------------------------------------------------- */

.vision-banner {
  background: linear-gradient(120deg, #10254f 0%, #0b0d12 60%, #2a1608 130%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.vision-banner .section-eyebrow {
  color: var(--color-blue-light);
}

.vision-banner p {
  max-width: 780px;
  margin: 0 auto 30px;
  color: var(--color-silver);
  font-size: 1.05rem;
}

.vision-banner .slogan {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 900;
  color: #fff;
}

.vision-banner .slogan span {
  color: var(--color-orange);
}

/* CTA banner ------------------------------------------------------------ */

.cta-banner {
  background: linear-gradient(135deg, #ff7a1a, #ff5a1a);
  border-radius: 20px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: #14100a;
}

.cta-banner h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-bottom: 8px;
  color: #14100a;
}

.cta-banner p {
  color: rgba(20, 16, 10, 0.8);
}

.cta-banner .btn-primary {
  background: #14100a;
  box-shadow: none;
}

.cta-banner .btn-primary:hover {
  background: #000;
}

/* Team / CEO card ------------------------------------------------------- */

.team-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue), var(--color-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.team-info .role {
  color: var(--color-orange);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.team-info h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.team-info p {
  color: var(--color-text-muted);
}

/* Contact page ----------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 34px;
}

.contact-info-card h3 {
  margin-bottom: 22px;
  font-size: 1.2rem;
}

.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-row .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
  color: var(--color-orange);
}

.contact-row .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: 3px;
}

.contact-row a,
.contact-row span.value {
  font-weight: 600;
}

.contact-form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 34px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

input,
textarea,
select {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--color-text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-orange);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 122, 26, 0.12);
  border: 1px solid rgba(255, 122, 26, 0.4);
  color: var(--color-orange-light);
  font-size: 0.9rem;
}

.form-status.visible {
  display: block;
}

.map-frame {
  margin-top: 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* Page header banner (inner pages) --------------------------------------- */

.page-banner {
  padding: 170px 0 60px;
  background:
    radial-gradient(circle at 15% 30%, rgba(255, 122, 26, 0.14), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(27, 79, 214, 0.18), transparent 50%),
    linear-gradient(180deg, #0b0d12 0%, #0e1119 100%);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-top: 14px;
}

.breadcrumbs a {
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.breadcrumbs a:hover {
  color: var(--color-orange-light);
}

.breadcrumbs .sep {
  color: var(--color-border);
}

.breadcrumbs .current {
  color: var(--color-orange-light);
}

/* Ecosystem / pillars grid (hedeflerimiz page intro) -------------------- */

.pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 10px;
}

.pillar-chip {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-silver);
}

.pillar-chip:nth-child(odd) {
  color: var(--color-orange-light);
}

/* Footer ----------------------------------------------------------------- */

.site-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-about p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin: 18px 0 20px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 18px;
  color: var(--color-text);
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--color-orange-light);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
  background: var(--color-orange);
  color: #14100a;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* Back to top ------------------------------------------------------------- */

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-orange);
  color: #14100a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Responsive ------------------------------------------------------------- */

@media (max-width: 980px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

@media (max-width: 720px) {
  .logo {
    margin-left: 10px;
  }

  .topbar-slogan {
    display: none;
  }

  .nav-links,
  .nav-cta .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  body.nav-open .nav-links {
    display: flex;
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
  }

  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }

  .team-card {
    flex-direction: column;
    text-align: center;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    padding: 160px 0 80px;
  }
}