/* ============================================================
   Aqua Sport Serwis – style.css
   Odtworzony 1:1 ze screenshotów
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Satoshi', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ---- CSS Variables – Default: Dark Mode ---- */
:root {
  --primary:       #1a6fc4;
  --primary-dark:  #1459a0;
  --accent:        #4fb3c0;
  /* Domyślnie dark – jak w oryginalnym projekcie */
  --bg:            #0d1f2d;
  --bg-2:          #112233;
  --bg-dark:       #0d1f2d;
  --bg-dark-2:     #112233;
  --text:          #e8f0f5;
  --text-muted:    #7aa0b5;
  --text-inv:      #ffffff;
  --border:        #1e3a50;
  --divider:       rgba(255,255,255,0.07);
  --shadow-sm:     0 1px 4px rgba(0,0,0,0.25);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.4);
  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-lg:     16px;
  --radius-full:   999px;
  --nav-bg:        rgba(13,31,45,0.96);
  --nav-text:      rgba(255,255,255,0.78);
  --nav-text-hover:#ffffff;
  --content-max:   1200px;
  --content-mid:   900px;
  --content-narrow:680px;
}

/* ---- Light Mode (przełącznik) ---- */
[data-theme="light"] {
  --bg:         #ffffff;
  --bg-2:       #f4f8fb;
  --text:       #0d1f2d;
  --text-muted: #5a7a8a;
  --border:     #d0dde8;
  --divider:    rgba(0,0,0,0.08);
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.12);
}

/* ---- Fonts ---- */
@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@700,800,900&f[]=satoshi@400,500,700&display=swap');

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.container--narrow {
  max-width: var(--content-narrow);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.75rem;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-svg {
  width: 160px;
  height: 36px;
}
.logo-svg--sm {
  width: 120px;
  height: 28px;
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--nav-text);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--nav-text-hover);
  background: rgba(255,255,255,0.07);
}
/* Kontakt – CTA button */
.nav-link--cta {
  background: var(--primary);
  color: #fff !important;
  border-radius: var(--radius-full);
  padding: 0.45rem 1.15rem;
  font-weight: 600;
  margin-left: 0.5rem;
  transition: background 0.2s;
}
.nav-link--cta:hover {
  background: var(--primary-dark);
}

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.theme-toggle:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #fff;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0d1f2d;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-md);
  }
  .nav-menu.is-open { display: flex; }
  .header { position: relative; }
  .nav { position: relative; }
  .nav-link { width: 100%; padding: 0.6rem 0.75rem; }
  .nav-link--cta { margin-left: 0; margin-top: 0.5rem; text-align: center; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.78) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .hero-content { padding-top: 5rem; padding-bottom: 4rem; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
  color: #ffe082;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4em 1em;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 16ch;
}
.br-desktop { display: none; }
@media (min-width: 769px) { .br-desktop { display: block; } }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 54ch;
  margin-bottom: 1.5rem;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.hero-tags span {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.3em 0.9em;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll a { color: inherit; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.btn--full { width: 100%; justify-content: center; }

/* Niebieski wypełniony */
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(26,111,196,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}
/* Ghost (szklany biały) */
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
}
/* Outline biały */
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.10);
  color: #fff;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--primary);
  padding-block: 1.5rem;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}
.stat-number {
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.25);
}
@media (max-width: 600px) {
  .stat-divider { display: none; }
  .stats-grid { gap: 1.5rem; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: var(--bg);
}
.section--alt {
  background: var(--bg-2);
}
.section--dark {
  background: var(--bg-dark);
  color: var(--text-inv);
}
/* light mode sekcje */
[data-theme="light"] .section { background: #ffffff; }
[data-theme="light"] .section--alt { background: #f4f8fb; }
[data-theme="light"] .section-label { color: #1a6fc4; }
[data-theme="light"] .section-title { color: #0d1f2d; }
[data-theme="light"] .section-desc { color: #5a7a8a; }
[data-theme="light"] .section-note { color: #5a7a8a; }
[data-theme="light"] .card { background: #f4f8fb; border-color: #d0dde8; }
[data-theme="light"] .card-title { color: #0d1f2d; }
[data-theme="light"] .card-text { color: #5a7a8a; }
[data-theme="light"] .card-icon--blue { background: rgba(26,111,196,0.1); color: #1a6fc4; }
[data-theme="light"] .service-card { background: #f4f8fb; border-color: #d0dde8; }
[data-theme="light"] .service-card .card-title { color: #0d1f2d; }
[data-theme="light"] .service-card .card-text { color: #5a7a8a; }
[data-theme="light"] .advisory-card { background: #f4f8fb; border-color: #d0dde8; }
[data-theme="light"] .advisory-card .card-title { color: #0d1f2d; }
[data-theme="light"] .advisory-card .card-text { color: #5a7a8a; }
[data-theme="light"] .advisory-number { color: rgba(13,31,45,0.12); }
[data-theme="light"] .section-split__content { background: #1a3a5c; }
[data-theme="light"] .faq-item { background: #f4f8fb; border-color: #d0dde8; }
[data-theme="light"] .faq-question { color: #0d1f2d; }
[data-theme="light"] .faq-answer { color: #5a7a8a; }
[data-theme="light"] .contact-info__title { color: #0d1f2d; }
[data-theme="light"] .contact-detail__value { color: #0d1f2d; }
[data-theme="light"] .contact-form__title { color: #0d1f2d; }
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea { background: #fff; border-color: #d0dde8; color: #0d1f2d; }
[data-theme="light"] .pull-quote { color: #fff; }
[data-theme="light"] .check-list li { color: #0d1f2d; }
[data-theme="light"] .trust-card .card-title { color: #0d1f2d; }
[data-theme="light"] .trust-card .card-text { color: #5a7a8a; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header--light .section-label,
.section-header--light .section-title,
.section-header--light .section-desc {
  color: #fff;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.section-label--light { color: var(--accent); }
.section-title {
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.section--dark .section-title { color: #fff; }
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.65;
}
.section--dark .section-desc { color: rgba(255,255,255,0.7); }
.section-note {
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 2.5rem;
  font-size: 0.95rem;
}
.section--dark .section-note { color: rgba(255,255,255,0.55); }

/* ============================================================
   CARDS GRID
   ============================================================ */
.cards-grid {
  display: grid;
  gap: 1.25rem;
}
.cards-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .cards-grid--3 { grid-template-columns: 1fr; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

/* Card base */
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.section--dark .card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card--featured {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.card--icon {}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.card-icon--blue {
  background: rgba(26,111,196,0.12);
  color: var(--primary);
}
.card-icon--white {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.card--featured .card-icon { background: rgba(255,255,255,0.15); color: #fff; }
.card-title {
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.card--featured .card-title { color: #fff; }
.section--dark .card-title { color: #fff; }
.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.card--featured .card-text { color: rgba(255,255,255,0.85); }
.section--dark .card-text { color: rgba(255,255,255,0.65); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: background 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  background: rgba(255,255,255,0.07);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.service-card--featured {
  border-color: var(--accent);
  background: rgba(79,179,192,0.08);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(26,111,196,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}
.service-card--featured .service-icon {
  background: rgba(79,179,192,0.2);
}

/* ============================================================
   FULL BLEED IMAGE (warsztat)
   ============================================================ */
.full-bleed-img {
  position: relative;
  height: clamp(300px, 45vw, 520px);
  overflow: hidden;
}
.full-bleed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.full-bleed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem 2.5rem;
}
.pull-quote {
  max-width: 480px;
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
  line-height: 1.4;
}

/* ============================================================
   SECTION SPLIT (serwis mobilny, elektronika)
   ============================================================ */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}
.section-split--reverse { direction: rtl; }
.section-split--reverse > * { direction: ltr; }
.section-split__img {
  overflow: hidden;
  position: relative;
  min-height: 360px;
}
.section-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
}
.section-split__content {
  background: var(--bg-dark-2);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .section-split { grid-template-columns: 1fr; direction: ltr; }
  .section-split__img { min-height: 260px; position: relative; }
  .section-split--reverse { direction: ltr; }
}

/* ============================================================
   ADVISORY (doradztwo 01/02/03)
   ============================================================ */
.advisory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .advisory-grid { grid-template-columns: 1fr; }
}
.advisory-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.advisory-number {
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ============================================================
   TRUST CARDS (dlaczego my)
   ============================================================ */
.trust-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item--large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25em 0.7em;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

/* ============================================================
   VIDEO
   ============================================================ */
.video-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.video-wrapper video,
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
[data-theme="dark"] .faq-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.07);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
}
[data-theme="dark"] .faq-question { color: #fff; }
.faq-arrow {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.25s;
}
.faq-item[open] .faq-arrow,
.faq-item.is-open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
[data-theme="dark"] .faq-answer { color: rgba(255,255,255,0.65); }

/* ============================================================
   CHECK LIST
   ============================================================ */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.check-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
}
.contact-info__title {
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
}
[data-theme="dark"] .contact-info__title { color: #fff; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--divider);
}
.contact-detail__icon {
  width: 36px;
  height: 36px;
  background: rgba(26,111,196,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-detail__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}
.contact-detail__value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
[data-theme="dark"] .contact-detail__value { color: rgba(255,255,255,0.85); }
.contact-detail__value a {
  color: var(--primary);
}
.contact-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact form */
.contact-form__title {
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--text);
}
[data-theme="dark"] .contact-form__title { color: #fff; }
.contact-form__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,111,196,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; gap: 1rem; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { .form-row--2 { grid-template-columns: 1fr; } }
.form-success {
  text-align: center;
  padding: 2rem;
  color: #2ecc71;
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #071520;
  color: rgba(255,255,255,0.6);
  padding-block: 3rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-top: 0.75rem;
}
.footer-nip {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.5rem;
}
.footer-nav h4,
.footer-contact h4 {
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-contact a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
