/* ═══ PUTZPROFI GASTEIN – STYLE ═══ */

/* ── Reset & Base ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors */
  --blue: #1B6B9A;
  --blue-dark: #144F73;
  --blue-light: #E8F4FA;
  --green: #2A9D5C;
  --green-light: #E6F7ED;
  --orange: #E8762A;
  --orange-hover: #D0651E;
  --bg: #FAF9F7;
  --bg-alt: #F0EFEC;
  --text: #1A1A1A;
  --text-light: #5A5A5A;
  --text-lighter: #8A8A8A;
  --white: #FFFFFF;
  --border: #E0DFDB;

  /* Typography */
  --font-display: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --h1: clamp(2.2rem, 5vw, 3.5rem);
  --h2: clamp(1.6rem, 3.5vw, 2.5rem);
  --h3: clamp(1.2rem, 2.5vw, 1.5rem);
  --body: 1rem;
  --small: 0.875rem;
  --lh-heading: 1.1;
  --lh-body: 1.6;

  /* Spacing */
  --section-pad: clamp(64px, 10vw, 128px);
  --container-pad: clamp(1.25rem, 4vw, 3rem);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-size: var(--body);
  line-height: var(--lh-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: var(--lh-heading);
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); font-family: var(--font-body); font-weight: 700; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 16px 32px;
  font-size: 1.05rem;
  box-shadow: 0 4px 16px rgba(232, 118, 42, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--blue);
  padding: 14px 28px;
  border: 2px solid var(--blue);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.5);
}

@media (hover: hover) {
  .btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 118, 42, 0.4);
  }
  .btn-secondary:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
  }
  .btn-ghost:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
  }
}

/* ── Label ───────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: var(--small);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 560px;
  margin-top: 12px;
  line-height: 1.6;
}

/* ── Header / Nav ────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--blue);
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: contain;
}

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

.nav-links a {
  font-size: var(--small);
  font-weight: 600;
  color: var(--text-light);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover { color: var(--blue); }

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

.nav-phone {
  font-weight: 700;
  color: var(--blue);
  font-size: var(--small);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-phone svg { width: 16px; height: 16px; }

.nav-cta .btn-primary { padding: 10px 20px; font-size: var(--small); }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  padding: 32px var(--container-pad);
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mobile-nav .btn-primary {
  margin-top: 24px;
  text-align: center;
  justify-content: center;
  width: 100%;
}

@media (max-width: 767px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (min-width: 768px) {
  .mobile-nav { display: none !important; }
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  padding: calc(72px + 64px) 0 80px;
  background: var(--blue-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/img/hero-1920.webp') center/cover no-repeat;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(20, 79, 115, 0.82) 0%, rgba(10, 40, 60, 0.88) 100%);
  z-index: 1;
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: var(--small);
  opacity: 0.85;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust svg { width: 18px; height: 18px; flex-shrink: 0; }

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

.hero-badge {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 28px 32px;
  text-align: center;
  max-width: 280px;
}

.hero-badge-number {
  font-family: var(--font-display);
  font-size: 3rem;
  display: block;
  margin-bottom: 4px;
}

.hero-badge-label {
  font-size: var(--small);
  opacity: 0.8;
}

@media (max-width: 767px) {
  .hero { padding: calc(72px + 40px) 0 60px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}

/* ── Counter Section ─────────────────────────────── */
.counters {
  padding: 56px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.counter-item {
  padding: 8px 0;
}

.counter-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--blue);
  display: block;
  margin-bottom: 4px;
}

.counter-label {
  font-size: var(--small);
  color: var(--text-light);
  font-weight: 500;
}

@media (max-width: 767px) {
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ── Leistungen ──────────────────────────────────── */
.leistungen {
  padding: var(--section-pad) 0;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.leistung-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) {
  .leistung-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  }
}

.leistung-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.leistung-icon svg { width: 24px; height: 24px; color: var(--blue); }

.leistung-card h3 { margin-bottom: 10px; }

.leistung-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ── Warum Section ───────────────────────────────── */
.warum {
  padding: var(--section-pad) 0;
  background: var(--blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.warum::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.warum h2 { color: var(--white); }
.warum .label { color: rgba(255,255,255,0.6); }
.warum .section-sub { color: rgba(255,255,255,0.75); }

.warum-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 48px;
  align-items: start;
}

.warum-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.warum-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.warum-item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.warum-item-icon svg { width: 20px; height: 20px; }

.warum-item h3 {
  color: var(--white);
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.warum-item p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.55;
}

.warum-highlight {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 36px 32px;
  text-align: center;
}

.warum-highlight-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
}

.warum-highlight p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .warum-grid { grid-template-columns: 1fr; }
  .warum-highlight { margin-top: 16px; }
}

/* ── Testimonials ────────────────────────────────── */
.testimonials {
  padding: var(--section-pad) 0 calc(var(--section-pad) * 0.8);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
}

.testimonial-card:first-child {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.testimonial-card:first-child .testimonial-text { color: var(--white); font-size: 1.1rem; }
.testimonial-card:first-child .testimonial-author { color: rgba(255,255,255,0.8); }
.testimonial-card:first-child .testimonial-role { color: rgba(255,255,255,0.6); }

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--blue);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.3;
}

.testimonial-card:first-child .testimonial-quote { color: var(--white); opacity: 0.3; }

.testimonial-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--small);
  color: var(--blue);
  flex-shrink: 0;
}

.testimonial-card:first-child .testimonial-avatar {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.testimonial-author { font-weight: 700; font-size: 0.95rem; }
.testimonial-role { font-size: var(--small); color: var(--text-light); }

@media (max-width: 767px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card:first-child { grid-row: span 1; }
}

/* ── Einzugsgebiet ───────────────────────────────── */
.region {
  padding: calc(var(--section-pad) * 0.8) 0 var(--section-pad);
  background: var(--bg-alt);
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.region-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.region-card h3 {
  margin-bottom: 10px;
  color: var(--blue);
}

.region-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.region-link {
  font-weight: 700;
  color: var(--orange);
  font-size: var(--small);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.region-link:hover { gap: 8px; }
.region-link svg { width: 16px; height: 16px; }

@media (hover: hover) {
  .region-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  }
}

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

/* ── FAQ ─────────────────────────────────────────── */
.faq {
  padding: var(--section-pad) 0;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 8px;
}

.faq-left { padding-top: 8px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.faq-question:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-light);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 0 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .faq-inner { grid-template-columns: 1fr; }
}

/* ── Kontakt Section ─────────────────────────────── */
.kontakt {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 48px;
  align-items: start;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: var(--small);
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27, 107, 154, 0.1);
}

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

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

.form-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--blue);
}

.form-checkbox label {
  font-size: var(--small);
  color: var(--text-light);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox label a {
  color: var(--blue);
  text-decoration: underline;
}

.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 1.1rem;
}

.form-trust {
  text-align: center;
  margin-top: 12px;
  font-size: var(--small);
  color: var(--text-lighter);
}

/* Honeypot */
.ohnehonig { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* Contact sidebar */
.kontakt-sidebar {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.kontakt-sidebar h3 {
  margin-bottom: 24px;
  font-size: 1.2rem;
}

.kontakt-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.kontakt-info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kontakt-info-icon svg { width: 20px; height: 20px; color: var(--blue); }

.kontakt-info-label {
  font-size: var(--small);
  color: var(--text-light);
  margin-bottom: 2px;
}

.kontakt-info-value {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.kontakt-info-value a {
  color: var(--blue);
  text-decoration: none;
}

.kontakt-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  border-radius: 6px;
  margin-top: 8px;
  transition: background 0.2s;
}

.kontakt-whatsapp:hover { background: #1EBB57; }
.kontakt-whatsapp svg { width: 20px; height: 20px; }

.kontakt-trust-box {
  margin-top: 24px;
  padding: 20px;
  background: var(--green-light);
  border-radius: 8px;
  font-size: var(--small);
  color: var(--green);
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .kontakt-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .kontakt-sidebar { margin-top: 16px; }
}

/* ── Footer ──────────────────────────────────────── */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .logo { color: var(--white); margin-bottom: 12px; }
.footer-tagline { font-size: var(--small); margin-bottom: 16px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  font-size: var(--small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: var(--small);
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: var(--small);
}

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

.footer-legal a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* Mountain silhouette */
.footer-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  opacity: 0.04;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='white' d='M0,80 L0,60 L120,30 L240,50 L360,15 L480,45 L600,10 L720,40 L840,5 L960,35 L1080,20 L1200,50 L1320,25 L1440,55 L1440,80 Z'/%3E%3C/svg%3E") repeat-x bottom center;
  background-size: 1440px 80px;
  pointer-events: none;
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: span 2; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Floating Buttons ────────────────────────────── */
.floating-phone {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(232, 118, 42, 0.4);
  z-index: 900;
  transition: transform 0.2s;
}

.floating-phone svg { width: 24px; height: 24px; }
.floating-phone:hover { transform: scale(1.1); }

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: transform 0.2s;
}

.floating-whatsapp svg { width: 26px; height: 26px; }
.floating-whatsapp:hover { transform: scale(1.1); }

@media (max-width: 767px) {
  .floating-phone, .floating-whatsapp { display: flex; }
  .floating-phone { bottom: calc(24px + env(safe-area-inset-bottom)); }
  .floating-whatsapp { bottom: calc(24px + env(safe-area-inset-bottom)); }
}

/* ── Exit Intent Overlay ─────────────────────────── */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.exit-overlay.show { display: flex; }

.exit-box {
  background: var(--white);
  border-radius: 12px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
}

.exit-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.exit-close svg { width: 20px; height: 20px; }

.exit-box h3 {
  font-family: var(--font-display);
  font-size: var(--h3);
  margin-bottom: 12px;
}

.exit-box p {
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ── Reveal Animation ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── Landingpage hero variant ────────────────────── */
.hero-landing { background: #1E7A44; }
.hero-landing::after {
  background: linear-gradient(165deg, rgba(30, 122, 68, 0.82) 0%, rgba(15, 60, 35, 0.88) 100%);
}

/* ── Jobs Page ───────────────────────────────────── */
.hero-jobs { background: #0D3B2A; }
.hero-jobs::before { background: none; }
.hero-jobs::after {
  background: linear-gradient(165deg, rgba(13, 59, 42, 0.95) 0%, rgba(8, 35, 25, 0.98) 100%);
}

.hero-tag {
  display: inline-block;
  font-size: var(--small);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.nav-active { color: var(--blue) !important; }

/* Benefits */
.jobs-benefits {
  padding: var(--section-pad) 0;
}

.jobs-benefits-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.jobs-benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jobs-benefit-featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.jobs-benefit-featured h3 { color: var(--white); }
.jobs-benefit-featured p { color: rgba(255,255,255,0.85); }
.jobs-benefit-featured .jobs-benefit-number { color: rgba(255,255,255,0.3); }

@media (hover: hover) {
  .jobs-benefit-card:not(.jobs-benefit-featured):hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  }
}

.jobs-benefit-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--border);
  margin-bottom: 12px;
  line-height: 1;
}

.jobs-benefit-card h3 { margin-bottom: 8px; }
.jobs-benefit-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .jobs-benefits-grid { grid-template-columns: 1fr 1fr; }
  .jobs-benefit-featured { grid-row: span 1; grid-column: span 2; }
}

@media (max-width: 639px) {
  .jobs-benefits-grid { grid-template-columns: 1fr; }
  .jobs-benefit-featured { grid-column: span 1; }
}

/* Who / Positions */
.jobs-who {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.jobs-who-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.jobs-who-cta {
  margin-top: 40px;
  padding: 24px;
  background: var(--blue-light);
  border-radius: 10px;
}

.jobs-who-cta p {
  font-size: var(--small);
  color: var(--text-light);
  margin-bottom: 8px;
}

.jobs-who-phone {
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
}

.jobs-who-phone svg { width: 18px; height: 18px; }

.jobs-position {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  margin-bottom: 20px;
}

.jobs-position:last-child { margin-bottom: 0; }

.jobs-position-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.jobs-position-header h3 { margin-bottom: 4px; }

.jobs-position-meta {
  font-size: var(--small);
  color: var(--text-light);
}

.jobs-position-tag {
  background: var(--green-light);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.jobs-position-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.jobs-position-col h4 {
  font-size: var(--small);
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.jobs-position-col ul {
  list-style: none;
  padding: 0;
}

.jobs-position-col li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 6px;
}

.jobs-position-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

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

@media (max-width: 767px) {
  .jobs-who-grid { grid-template-columns: 1fr; }
  .jobs-position-body { grid-template-columns: 1fr; gap: 16px; }
  .jobs-position-header { flex-direction: column; }
}

/* Process */
.jobs-process {
  padding: var(--section-pad) 0;
  background: var(--blue);
  color: var(--white);
}

.jobs-process h2 { color: var(--white); }
.jobs-process .label { color: rgba(255,255,255,0.6); }

.jobs-process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
}

.jobs-process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.jobs-process-number {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.jobs-process-step h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.jobs-process-step p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.55;
}

.jobs-process-line {
  width: 60px;
  min-width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin-top: 28px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .jobs-process-steps { flex-direction: column; gap: 32px; }
  .jobs-process-step { text-align: left; padding: 0; display: flex; gap: 20px; align-items: flex-start; }
  .jobs-process-number { margin-bottom: 0; min-width: 56px; }
  .jobs-process-line { display: none; }
}

/* Voices / Testimonials */
.jobs-voices {
  padding: var(--section-pad) 0 calc(var(--section-pad) * 0.8);
}

.jobs-voices-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.jobs-voice-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
}

.jobs-voice-featured {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.jobs-voice-featured .testimonial-text { color: var(--white); }
.jobs-voice-featured .testimonial-quote { color: var(--white); opacity: 0.2; }
.jobs-voice-featured .testimonial-author { color: rgba(255,255,255,0.8); }
.jobs-voice-featured .testimonial-role { color: rgba(255,255,255,0.5); }
.jobs-voice-featured .testimonial-avatar {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

@media (max-width: 767px) {
  .jobs-voices-grid { grid-template-columns: 1fr; }
}

/* Apply Form */
.jobs-apply {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.jobs-apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.jobs-apply-sidebar {
  margin-top: 40px;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.jobs-apply-sidebar h3 {
  margin-bottom: 24px;
  font-size: 1.2rem;
}

.jobs-apply-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 32px;
}

@media (max-width: 767px) {
  .jobs-apply-grid { grid-template-columns: 1fr; }
  .jobs-apply-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── 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;
}

/* Form validation */
.form-group input:invalid:not(:placeholder-shown) {
  border-color: #E53E3E;
}

.form-group input:valid:not(:placeholder-shown) {
  border-color: var(--green);
}

.form-error {
  color: #E53E3E;
  font-size: var(--small);
  margin-top: 4px;
  display: none;
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--blue);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 6px 6px;
  z-index: 9999;
  font-weight: 700;
}

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