/* nunodadepis.com — Clean Analytical SaaS, Slate & Teal
   Palette: #0E7C7B teal | #0B5563 deep-teal | #14B8A6 bright-teal (dark text)
            #F4F7F8 light-bg (dark text) | #FFFFFF cards | #14202A text-dark | #EAF6F5 text-light
   Fonts: Space Grotesk (headings) + Inter (body)
*/

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #14202A;
  background: #FFFFFF;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; }

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

.section {
  padding: 80px 0;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #0B5563;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #4A6572;
  margin-bottom: 48px;
  max-width: 640px;
}

/* ── Reveal animation ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: #0B5563;
  color: #EAF6F5;
  border-color: #0B5563;
}
.btn-primary:hover {
  background: #083D47;
  border-color: #083D47;
  color: #EAF6F5;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: #0B5563;
  border-color: #0E7C7B;
}
.btn-secondary:hover {
  background: #0E7C7B;
  color: #EAF6F5;
  border-color: #0E7C7B;
  text-decoration: none;
}

/* ── Navigation ──────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #FFFFFF;
  border-bottom: 1px solid #D8E4E8;
  box-shadow: 0 2px 12px rgba(11,85,99,0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-svg {
  width: 160px;
  height: 36px;
}

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

.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #14202A;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-link:hover {
  color: #0E7C7B;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  width: 38px;
  height: 38px;
  cursor: pointer;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #14202A;
  border-radius: 2px;
  transition: transform 0.28s, opacity 0.2s;
}

/* open state */
.nav-open .nav-links {
  display: flex;
}
.nav-open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .hamburger-line:nth-child(2) { opacity: 0; }
.nav-open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: #F4F7F8;
  padding: 96px 0 80px;
  overflow: hidden;
}

.hero-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #0E7C7B22 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0E7C7B;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: #0B5563;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #4A6572;
  line-height: 1.7;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.disclaimer-badge {
  font-size: 0.78rem;
  color: #6B8A94;
  font-style: italic;
  border-left: 2px solid #14B8A6;
  padding-left: 10px;
}

.hero-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(11,85,99,0.18);
  aspect-ratio: 4/3;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,85,99,0.35) 0%, rgba(14,124,123,0.15) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Disclaimer section ──────────────────────────────────────────── */
.disclaimer-section {
  background: #EAF6F5;
  padding: 18px 0;
}

.disclaimer-box {
  font-size: 0.88rem;
  color: #0B5563;
  border-left: 3px solid #0E7C7B;
  padding: 10px 16px;
  background: rgba(14,124,123,0.07);
  border-radius: 0 6px 6px 0;
  line-height: 1.5;
}
.disclaimer-box strong { font-weight: 600; }

/* ── About ───────────────────────────────────────────────────────── */
.about { background: #FFFFFF; }

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

.about-content { display: flex; flex-direction: column; gap: 16px; }

.about-lead {
  font-size: 1.12rem;
  color: #0B5563;
  font-weight: 500;
  line-height: 1.55;
}

.about-text { color: #3A4F5A; line-height: 1.7; }

.about-media {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,85,99,0.12);
  aspect-ratio: 4/3;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Capabilities ────────────────────────────────────────────────── */
.capabilities { }

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}

.cap-card {
  background: #FFFFFF;
  border: 1px solid #CBD5E0;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(11,85,99,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.cap-card:hover {
  box-shadow: 0 6px 28px rgba(11,85,99,0.14);
  transform: translateY(-3px);
}

.cap-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.cap-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.cap-card:hover .cap-img-wrap img { transform: scale(1.04); }

.cap-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.cap-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0E7C7B;
  letter-spacing: 0.08em;
}

.cap-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0B5563;
  line-height: 1.3;
}

.cap-text { font-size: 0.9rem; color: #4A6572; line-height: 1.6; }

/* ── Steps ───────────────────────────────────────────────────────── */
.steps { background: #FFFFFF; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 48px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.step-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #0E7C7B, #14B8A6);
  margin-top: 28px;
  border-radius: 1px;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0B5563;
  color: #EAF6F5;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(11,85,99,0.25);
}

.step-content { display: flex; flex-direction: column; gap: 8px; }

.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0B5563;
}

.step-text { font-size: 0.85rem; color: #4A6572; line-height: 1.55; }

.steps-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,85,99,0.1);
  max-height: 340px;
}

.steps-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Stats ───────────────────────────────────────────────────────── */
.stats {
  padding: 64px 0;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: #14B8A6;
  line-height: 1;
}

.stat-label {
  font-size: 0.88rem;
  color: #EAF6F5;
  text-align: center;
  opacity: 0.85;
}

/* ── Poster block ────────────────────────────────────────────────── */
.poster-section { background: #FFFFFF; }

.poster-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 36px rgba(11,85,99,0.14);
  max-width: 880px;
  margin: 0 auto;
}

.poster-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,85,99,0.55) 0%, rgba(14,124,123,0.35) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.poster-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: #0B5563;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(11,85,99,0.3);
  padding-left: 4px;
}

.poster-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: rgba(11,85,99,0.7);
  color: #EAF6F5;
  font-size: 0.82rem;
  text-align: center;
}

/* ── Notes importante ────────────────────────────────────────────── */
.notes { }

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

.note-card {
  background: #FFFFFF;
  border: 1px solid #CBD5E0;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(11,85,99,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.note-img-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}
.note-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.note-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.note-icon {
  font-size: 1.4rem;
  color: #0E7C7B;
}

.note-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0B5563;
}

.note-text { font-size: 0.88rem; color: #4A6572; line-height: 1.6; }

/* ── Testimonials ────────────────────────────────────────────────── */
.testimonials { background: #FFFFFF; }

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

.testimonial-card {
  background: #F4F7F8;
  border: 1px solid #D8E4E8;
  border-radius: 10px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 2px 12px rgba(11,85,99,0.05);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: #14202A;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #0E7C7B;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0B5563;
}

.testimonial-role { font-size: 0.8rem; color: #6B8A94; }

/* ── Comparison tiers ────────────────────────────────────────────── */
.comparison { }

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.tier-card {
  background: #FFFFFF;
  border: 1px solid #CBD5E0;
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(11,85,99,0.06);
  transition: box-shadow 0.2s;
}
.tier-card:hover { box-shadow: 0 6px 28px rgba(11,85,99,0.12); }

.tier-card.tier-featured {
  border-color: #0E7C7B;
  border-width: 2px;
  box-shadow: 0 4px 28px rgba(14,124,123,0.16);
  position: relative;
}
.tier-card.tier-featured::before {
  content: 'Recomandat';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #0E7C7B;
  color: #EAF6F5;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.tier-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E8EFF2;
}

.tier-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0B5563;
}

.tier-label {
  font-size: 0.82rem;
  color: #6B8A94;
  font-weight: 500;
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #3A4F5A;
  line-height: 1.45;
}
.tier-feature.tier-na { color: #9BB0BA; }

.tier-check {
  color: #0E7C7B;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.tier-cross {
  color: #B0C4CC;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq { background: #FFFFFF; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #D8E4E8;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #D8E4E8;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0B5563;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: #0E7C7B; }

.faq-icon {
  font-size: 1.3rem;
  font-weight: 400;
  color: #0E7C7B;
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding: 0 0 20px;
}
.faq-answer p {
  font-size: 0.92rem;
  color: #4A6572;
  line-height: 1.7;
}

/* ── Contact ─────────────────────────────────────────────────────── */
.contact { background: #F4F7F8; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

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

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #3A4F5A;
}

.contact-detail-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.contact-detail-text { line-height: 1.5; }

.contact-link {
  color: #0E7C7B;
  text-decoration: none;
}
.contact-link:hover { text-decoration: underline; }

.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #D8E4E8;
  box-shadow: 0 2px 12px rgba(11,85,99,0.08);
  margin-top: 8px;
}
.map-wrapper iframe { display: block; width: 100%; }

.contact-form-wrap { display: flex; flex-direction: column; gap: 0; }

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

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

.form-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0B5563;
}

.form-input,
.form-textarea {
  padding: 11px 14px;
  border: 1px solid #CBD5E0;
  border-radius: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #14202A;
  background: #FFFFFF;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #0E7C7B;
  box-shadow: 0 0 0 3px rgba(14,124,123,0.12);
}
.form-textarea { resize: vertical; min-height: 110px; }

.form-error {
  font-size: 0.8rem;
  color: #C0392B;
  min-height: 18px;
}
.form-error:empty { display: none; }

.form-submit { align-self: flex-start; }

.form-note {
  font-size: 0.8rem;
  color: #6B8A94;
  line-height: 1.5;
}
.form-note a { color: #0E7C7B; text-decoration: underline; }

/* ── Footer ──────────────────────────────────────────────────────── */
.footer {
  background: #0B5563;
  color: #EAF6F5;
  padding: 56px 0 0;
}

.footer-inner { }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(234,246,245,0.15);
}

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

.footer-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #EAF6F5;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(234,246,245,0.7);
  line-height: 1.6;
  max-width: 300px;
}

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

.footer-contact address {
  font-size: 0.88rem;
  color: rgba(234,246,245,0.8);
  line-height: 1.8;
}
.footer-contact address a {
  color: #14B8A6;
  text-decoration: none;
}
.footer-contact address a:hover { text-decoration: underline; }

.footer-nav { display: flex; flex-direction: column; gap: 14px; }

.footer-nav-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #EAF6F5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-legal-link {
  font-size: 0.88rem;
  color: rgba(234,246,245,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-link:hover {
  color: #14B8A6;
  text-decoration: none;
}

.footer-bottom {
  padding: 18px 0;
  text-align: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(234,246,245,0.55);
  line-height: 1.6;
}

/* ── Cookie Banner ───────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0B5563;
  color: #EAF6F5;
  box-shadow: 0 -4px 24px rgba(11,85,99,0.35);
  padding: 16px 0;
  transition: transform 0.35s ease;
}
.cookie-banner.hidden {
  transform: translateY(105%);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.cookie-text {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.5;
  min-width: 220px;
  color: rgba(234,246,245,0.9);
}
.cookie-text a {
  color: #14B8A6;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 9px 22px;
  border-radius: 7px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.cookie-accept {
  background: #14B8A6;
  color: #0B5563;
  border-color: #14B8A6;
}
.cookie-accept:hover {
  background: #0E7C7B;
  border-color: #0E7C7B;
  color: #EAF6F5;
}

.cookie-decline {
  background: transparent;
  color: #EAF6F5;
  border-color: rgba(234,246,245,0.5);
}
.cookie-decline:hover {
  background: rgba(234,246,245,0.1);
  border-color: #EAF6F5;
}

/* ── Legal pages ─────────────────────────────────────────────────── */
.legal-hero {
  background: linear-gradient(135deg, #0B5563 0%, #0E7C7B 100%);
  padding: 72px 0 56px;
}

.legal-hero-inner { }

.legal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #EAF6F5;
  line-height: 1.2;
  margin-bottom: 10px;
}

.legal-date {
  font-size: 0.88rem;
  color: rgba(234,246,245,0.7);
}

.legal-body {
  padding: 60px 0 80px;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0B5563;
  padding-bottom: 8px;
  border-bottom: 2px solid #14B8A6;
}

.legal-section p,
.legal-section li {
  font-size: 0.93rem;
  color: #3A4F5A;
  line-height: 1.75;
}

.legal-section ul,
.legal-section ol {
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-section ul li { list-style: disc; }
.legal-section ol li { list-style: decimal; }

/* Cookie table */
.cookie-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid #D8E4E8;
  box-shadow: 0 2px 10px rgba(11,85,99,0.06);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.cookie-table th {
  background: #0B5563;
  color: #EAF6F5;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  padding: 12px 14px;
  text-align: left;
  white-space: nowrap;
}
.cookie-table td {
  padding: 11px 14px;
  border-bottom: 1px solid #E8EFF2;
  color: #3A4F5A;
  vertical-align: top;
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: #F4F7F8; }

/* ── Screen reader only ──────────────────────────────────────────── */
.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;
}

/* ── Responsive ──────────────────────────────────────────────────── */

/* 768px (tablet) */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  .hero-actions { justify-content: center; }
  .disclaimer-badge { text-align: left; }
  .hero-photo { max-width: 480px; margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-media { max-width: 480px; }

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .step-connector {
    width: 2px;
    height: 28px;
    margin: 0 auto;
  }

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

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

  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .comparison-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

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

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

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #FFFFFF;
    border-top: 1px solid #D8E4E8;
    box-shadow: 0 8px 24px rgba(11,85,99,0.12);
    padding: 20px 24px;
    gap: 20px;
    z-index: 800;
  }
  .nav-open .nav-links { display: flex; }
  .nav-toggle { display: flex; }
  .nav { position: sticky; top: 0; }
}

/* 480px (mobile) */
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .capabilities-grid { grid-template-columns: 1fr; }
  .notes-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .hero-title { font-size: 1.75rem; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-buttons { width: 100%; }
  .cookie-btn { flex: 1; }
  .footer-top { gap: 28px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
}

/* 360px (min) */
@media (max-width: 390px) {
  .container { padding: 0 16px; }
  .hero-inner { gap: 24px; }
  .btn { padding: 11px 20px; font-size: 0.88rem; }
}
