/* Self-hosted fonts */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/inter-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/playfair-display-700-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/playfair-display-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy: #1B2A4A;
  --navy-light: #2D4066;
  --blue: #3B6B9E;
  --accent: #D97706;
  --accent-light: #F59E0B;
  --accent-bg: #FEF3C7;
  --warm-white: #FAFAF8;
  --cream: #F5F3EF;
  --card-bg: #FFFFFF;
  --text: #2D3748;
  --text-light: #64748B;
  --text-lighter: #6B7280;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --success: #059669;
  --radius: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
@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; }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ====== NAV ====== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 0 2rem;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-links a.nav-cta {
  padding: 0.55rem 1.3rem;
  background: var(--navy);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s;
}

.nav-links a.nav-cta:hover { background: var(--navy-light); }

.nav-links a.nav-wa {
  padding: 0.55rem 1.3rem;
  background: #1B7A3E;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s;
}

.nav-links a.nav-wa:hover { background: #156832; }

/* Language picker */
.lang-picker { position: relative; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}

.lang-btn:hover { border-color: var(--navy); }

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-width: 120px;
  z-index: 200;
}

.lang-dropdown.open { display: block; }

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s;
}

.lang-dropdown a:hover { background: var(--cream); }
.nav-links .lang-dropdown a.active { font-weight: 700; color: var(--navy); }

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.8125rem;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

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

/* ====== HERO ====== */
.hero {
  padding: 10rem 2rem 6rem;
  background: linear-gradient(165deg, var(--warm-white) 0%, var(--cream) 50%, #EDE9E0 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,119,6,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: var(--accent-bg);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  border: 1px solid rgba(217,119,6,0.15);
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.3rem;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 2.2rem;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  background: var(--navy);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  box-shadow: 0 2px 12px rgba(27,42,74,0.2);
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(27,42,74,0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  background: transparent;
  color: var(--navy);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: var(--navy);
  background: rgba(27,42,74,0.03);
}

/* Hero visual - mockup browser */
.hero-visual { position: relative; z-index: 1; }

.browser-mockup {
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.browser-bar {
  padding: 0.8rem 1rem;
  background: var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E2E8F0;
}

.browser-dot:nth-child(1) { background: #FCA5A5; }
.browser-dot:nth-child(2) { background: #FCD34D; }
.browser-dot:nth-child(3) { background: #86EFAC; }

.browser-url {
  flex: 1;
  margin-left: 0.5rem;
  padding: 0.35rem 0.8rem;
  background: white;
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-lighter);
  border: 1px solid var(--border);
}

.browser-content {
  padding: 2rem;
  min-height: 280px;
  background: linear-gradient(135deg, #FAFAF8 0%, #F0F0EC 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.mock-line {
  height: 10px;
  background: var(--border);
  border-radius: 5px;
}

.mock-line.w80 { width: 80%; }
.mock-line.w60 { width: 60%; }
.mock-line.w40 { width: 40%; }

.mock-block {
  width: 90%;
  height: 50px;
  background: var(--navy);
  border-radius: 8px;
  opacity: 0.08;
}

.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.6rem;
  width: 90%;
}

.mock-card {
  height: 50px;
  background: white;
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* Floating badges around mockup */
.float-badge {
  position: absolute;
  background: white;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border-light);
  animation: floatBadge 4s ease-in-out infinite;
  z-index: 2;
}

.float-badge.top-left {
  top: -12px;
  left: -16px;
  color: var(--success);
  animation-delay: -1s;
}

.float-badge.bottom-right {
  bottom: 20px;
  right: -16px;
  color: var(--accent);
  animation-delay: -2.5s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ====== SECTIONS COMMON ====== */
section { padding: 5.5rem 2rem; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.section-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ====== TRUST BAR ====== */
.trust-bar {
  padding: 2.5rem 2rem;
  background: white;
  border-bottom: 1px solid var(--border-light);
}

.trust-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ====== ABOUT ====== */
.about { background: white; }

.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 4rem;
  align-items: center;
}

.about-photo { position: relative; }

.about-photo-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cream), #E8E4DD);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-photo-initials {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.15;
}

.about-photo-overlay {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  background: white;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.about-photo-overlay .icon-circle {
  width: 38px;
  height: 38px;
  background: var(--accent-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.about-photo-overlay .info {
  font-size: 0.82rem;
  line-height: 1.4;
}

.about-photo-overlay .info strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
}

.about-photo-overlay .info span { color: var(--text-lighter); }

.about-text .section-label { text-align: left; }
.about-text .section-title { text-align: left; }

.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.about-text strong { color: var(--navy); font-weight: 600; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-item .stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.stat-item span {
  font-size: 0.82rem;
  color: var(--text-lighter);
  font-weight: 500;
}

/* ====== WERKWIJZE ====== */
.process { background: var(--cream); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.2s;
  position: relative;
}

.process-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: white;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

.process-card h3 {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

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

/* ====== PRICING ====== */
.pricing { background: white; }

.pricing-table-wrap {
  max-width: 100%;
  width: 720px;
  margin: 0 auto 2.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  text-align: center;
}

.pricing-table th,
.pricing-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
}

.pricing-table thead th {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  padding-bottom: 0.9rem;
}

.pricing-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text);
}

.pricing-table tbody td {
  color: var(--text-light);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-lighter);
  margin-top: 0.6rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: all 0.25s;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card.featured {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.card-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--navy);
}

.pricing-card.featured h3 { color: white; }

.pricing-card .price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--navy);
  margin: 0.8rem 0;
  line-height: 1;
}

.pricing-card.featured .price { color: white; }

.pricing-card .price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-lighter);
}

.pricing-card.featured .price span { color: rgba(255,255,255,0.6); }

.pricing-card .desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pricing-card.featured .desc {
  color: rgba(255,255,255,0.65);
  border-bottom-color: rgba(255,255,255,0.15);
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-card li {
  padding: 0.45rem 0;
  color: var(--text);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-card.featured li { color: rgba(255,255,255,0.85); }

.pricing-card li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--success);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.btn-card {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.2s;
}

.btn-card.outline {
  border: 1.5px solid var(--border);
  color: var(--navy);
  background: white;
}

.btn-card.outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}

.btn-card.filled {
  background: var(--accent);
  color: white;
  border: 1.5px solid var(--accent);
}

.btn-card.filled:hover {
  background: #B45309;
  border-color: #B45309;
}

/* ====== FAQ ====== */
.faq { background: white; }

.faq-grid {
  max-width: 700px;
  margin: 0 auto;
}

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

.faq-question h3 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  display: inline;
}

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

.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-light);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--navy);
  color: white;
}

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

.faq-item.active .faq-answer {
  max-height: 600px;
  padding-bottom: 1.3rem;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ====== CONTACT ====== */
.contact { background: var(--cream); }

.contact-wrapper {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-info > p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.contact-detail span { font-size: 0.92rem; color: var(--text); }

.contact-detail a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}

.contact-detail a:hover { color: var(--accent); }


.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem;
  box-shadow: var(--shadow);
}

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

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,0.08);
  background: white;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-lighter);
}

.btn-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 12px rgba(27,42,74,0.15);
}

.btn-submit:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(27,42,74,0.2);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}

.form-success.show { display: block; }

.success-icon {
  width: 56px;
  height: 56px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ====== FOOTER ====== */
footer {
  padding: 3rem 2rem;
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: white;
}

.footer-logo span { color: var(--accent-light); }

footer p { font-size: 0.82rem; }

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

/* ====== MOBILE ====== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0.8rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }
  .nav-cta { text-align: center; }
  .menu-toggle { display: block; }

  .hero { padding: 8rem 1.5rem 4rem; }

  .about-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo { order: -1; }
  .about-text .section-label,
  .about-text .section-title { text-align: center; }
  .about-text p { text-align: center; }

  .process-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

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

  section { padding: 4rem 1.5rem; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1.2rem;
  }

  .float-badge.bottom-right { right: 0; }

}

/* ====== SCROLL REVEAL ====== */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ====== WHATSAPP FLOAT ====== */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #1B7A3E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(27,122,62,0.35);
  z-index: 99;
  transition: transform 0.2s, box-shadow 0.2s, bottom 0.3s;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(27,122,62,0.45);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ====== COOKIE BANNER ====== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: #fff;
  padding: 1rem 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  z-index: 10000;
  font-size: 0.88rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; max-width: 600px; }
.cookie-banner a { color: var(--accent-light); }
.cookie-btns { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cookie-btn {
  padding: 0.75rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.cookie-accept { background: var(--accent); color: #fff; }
.cookie-accept:hover { background: var(--accent-light); }
.cookie-decline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.cookie-decline:hover { border-color: #fff; }

/* ====== SKIP TO CONTENT ====== */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--navy);
  color: white;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  z-index: 200;
  transition: top 0.2s;
}

.skip-to-content:focus {
  top: 0;
}

/* ====== FOCUS VISIBLE ====== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none;
}

/* ====== iOS AUTO-ZOOM FIX ====== */
@media (max-width: 768px) {
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 1rem;
  }
}

/* ====== COOKIE SETTINGS ====== */
.cookie-settings-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.cookie-settings-btn:hover { color: white; }
