/* ============================================================
   HLWebdesign — style.css
   Production-ready stylesheet
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #FFFFFF;
  color: #111111;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}

/* ===== CSS VARIABLES ===== */
:root {
  --black:  #0A0A0A;
  --dark:   #1E1E1E;
  --red:    #E03030;
  --red-h:  #b82020;
  --white:  #FFFFFF;
  --light:  #F5F5F5;
  --text:   #111111;
  --muted:  #555555;
  --border: rgba(0, 0, 0, 0.1);
  --nav-height: 68px;
  --transition-fast: 0.2s ease;
  --transition-med: 0.3s ease;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title-white {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.red-line {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--red);
  margin-bottom: 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-fast), transform 0.15s ease, box-shadow var(--transition-fast);
  border: none;
  text-align: center;
}

.btn:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(224, 48, 48, 0.3);
}

.btn-red:hover {
  background: var(--red-h);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(0, 0, 0, 0.25);
}

.btn-outline-dark:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--black);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.2);
}

.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar {
  background: var(--black);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.announce-bar span {
  color: var(--red);
  font-weight: 700;
}

/* ===== NAVIGATION ===== */
nav#main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow var(--transition-fast);
}

nav#main-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.nav-logo-text span {
  color: var(--red);
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

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

.nav-links a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-cta {
  background: var(--red);
  color: #fff;
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition-fast);
}

.nav-cta:hover {
  background: var(--red-h);
}

.nav-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  transition: opacity var(--transition-fast);
}

.hamburger:hover {
  opacity: 0.8;
}

.hamburger:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  transition: transform var(--transition-med), opacity var(--transition-fast);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE NAV ===== */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1099;
  opacity: 0;
  transition: opacity var(--transition-med);
}

.mobile-nav-overlay.visible {
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--black);
  z-index: 1100;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: right var(--transition-med);
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-close {
  align-self: flex-end;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px;
  transition: color var(--transition-fast);
}

.mobile-nav-close:hover {
  color: #fff;
}

.mobile-nav-close:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav ul li a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--transition-fast);
}

.mobile-nav ul li a:hover {
  color: #fff;
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.mobile-nav-cta .btn {
  width: 100%;
  text-align: center;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #1a1a2e;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(224, 48, 48, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(30, 30, 60, 0.8) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #0d0d1a 100%);
  background-size: cover;
  background-position: center;
  filter: brightness(1);
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.4) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 20px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.4s forwards;
}

.hero h1 span {
  color: var(--red);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 38px;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.6s forwards;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.8s forwards;
}

/* ===== WIE WIJ ZIJN ===== */
.team {
  padding: 64px 0;
  background: #fff;
}

.team-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}

.team-header .red-line {
  margin: 0 auto 24px;
}

.team-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}

.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 0 0 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition-med), transform var(--transition-med);
}

.team-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.team-card-photo {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.team-card:hover .team-card-photo img {
  transform: scale(1.03);
}

.team-card-photo--placeholder {
  background: var(--light);
}

.team-placeholder-icon {
  color: #ccc;
  width: 64px;
  height: 64px;
}

.team-placeholder-icon svg {
  width: 100%;
  height: 100%;
}

.team-card-body {
  padding: 22px 24px 0;
}

.team-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.team-card-body p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== ZO WERKEN WIJ ===== */
.process {
  padding: 96px 0;
  background: var(--light);
}

.process-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.process-header .red-line {
  margin: 0 auto 24px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.process-step {
  background: #fff;
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow var(--transition-med);
}

.process-step:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.step-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.process-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== VERGELIJKINGSTABEL ===== */
.compare {
  padding: 64px 0;
  background: #fff;
}

.compare-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.compare-header .red-line {
  margin: 0 auto 24px;
}

.compare-header p {
  color: var(--muted);
  font-size: 1rem;
  font-style: italic;
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 560px;
}

.compare-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compare-table thead th:first-child {
  background: var(--light);
  color: var(--muted);
  width: 16%;
}

.compare-table thead th:nth-child(2) {
  background: var(--light);
  color: var(--muted);
}

.compare-table thead th:nth-child(3) {
  background: #fff3f3;
  color: #c00;
}

.compare-table thead th:nth-child(4) {
  background: #f0fff4;
  color: #1a7a3a;
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition-fast);
}

.compare-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.02);
}

.compare-table tbody td,
.compare-table tbody th {
  padding: 16px 20px;
  vertical-align: top;
}

.compare-table tbody th:first-child {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--light);
  text-align: left;
}

.compare-table tbody td.pijnpunt {
  font-family: 'Space Grotesk', sans-serif;
  font-style: italic;
  font-weight: 600;
  color: var(--red);
}

.compare-table tbody td:nth-child(3) {
  color: #888;
}

.compare-table tbody td:nth-child(4) {
  color: var(--text);
  font-weight: 500;
}

.compare-table tbody td:nth-child(4)::before {
  content: '✓ ';
  color: #1a7a3a;
  font-weight: 700;
}

/* ===== PAKKETTEN ===== */
.packages {
  padding: 96px 0;
  background: var(--light);
}

.packages-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.packages-header .red-line {
  margin: 0 auto 24px;
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}

.pkg-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--black);
  padding: 32px;
  position: relative;
  transition: box-shadow var(--transition-med), transform var(--transition-med);
}

.pkg-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.pkg-card.featured {
  border-top-color: var(--red);
  box-shadow: 0 8px 32px rgba(224, 48, 48, 0.12);
}

.pkg-card.featured:hover {
  box-shadow: 0 16px 48px rgba(224, 48, 48, 0.18);
}

.pkg-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
}

.pkg-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.pkg-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.pkg-features li {
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.pkg-features li.yes::before {
  content: '✓';
  color: #1a7a3a;
  font-weight: 700;
  min-width: 16px;
  flex-shrink: 0;
}

.pkg-features li.no {
  color: #bbb;
}

.pkg-features li.no::before {
  content: '✗';
  color: #bbb;
  font-weight: 700;
  min-width: 16px;
  flex-shrink: 0;
}

.pkg-price {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.pkg-price .price-setup {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.pkg-price .price-setup-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

.pkg-price .price-monthly {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 2px;
}

.pkg-delivery {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 16px;
}

/* Onderhoud */
.subsection-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  margin-top: 0;
  color: var(--text);
}

.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.maint-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 24px;
  border-left: 3px solid var(--black);
  transition: box-shadow var(--transition-med);
}

.maint-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.maint-card.featured {
  border-left-color: var(--red);
}

.maint-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.maint-price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

.maint-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.maint-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== CONTACT / CTA ===== */
.contact-cta {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-color: #0a0a1a;
  background-image:
    radial-gradient(ellipse at 30% 60%, rgba(224, 48, 48, 0.2) 0%, transparent 55%),
    linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.9);
  transform: scale(1.03);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.cta-content .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.cta-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group label span {
  color: var(--red);
}

.form-group input,
.form-group textarea {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224, 48, 48, 0.12);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--red);
}

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

.form-error {
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 500;
  min-height: 18px;
}

.btn-submit {
  align-self: flex-start;
  min-width: 180px;
  position: relative;
}

.form-success {
  background: #f0fff4;
  border: 1px solid #1a7a3a;
  border-left: 3px solid #1a7a3a;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #1a5c2e;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.55);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-logo-img {
  height: 32px;
  width: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.footer-logo-text span {
  color: var(--red);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li {
  font-size: 0.875rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--red);
}

.footer-col ul li a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.footer-availability {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--red);
}

/* ===== STICKY FLOAT BUTTONS ===== */
.float-buttons {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}

.float-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.float-btn-wa {
  background: #25D366;
  color: #fff;
}

.float-btn-red {
  background: var(--red);
  color: #fff;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== SKIP LINK (accessibility) ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--red);
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ===== RESPONSIVE ===== */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Tablet: 768px */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .compare-table {
    font-size: 0.8rem;
  }

  .float-buttons {
    bottom: 16px;
    right: 16px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

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

/* Mobile: 480px */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn,
  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .team-grid {
    max-width: 100%;
  }

  .packages-grid {
    max-width: 100%;
  }

  .float-btn span:not(.btn-text) {
    display: none;
  }

  .float-btn {
    padding: 12px 16px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-eyebrow,
  .hero h1,
  .hero-sub,
  .hero-buttons {
    opacity: 1;
    animation: none;
  }
}
