/* ═══════════════════════════════════════════ */
/* RESET & BASE                                */
/* ═══════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #1B2A4A;
  --navy-dark: #0F1D35;
  --copper: #C4723A;
  --copper-light: #D4935A;
  --copper-dark: #A3592A;
  --white: #FFFFFF;
  --light-grey: #F5F5F5;
  --ivory: #FAF6F0;
  --grey: #8C8C8C;
  --dark-text: #333333;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', 'Poppins', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
  --shadow-copper: 0 8px 32px rgba(196,114,58,0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--copper);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--copper-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════════ */
/* LAYOUT                                      */
/* ═══════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-white { background: var(--white); }
.section-grey { background: var(--light-grey); }
.section-ivory { background: var(--ivory); }
.section-navy { background: var(--navy); }

/* Digital differentiator strip */
.digital-strip {
  background: var(--ivory);
  border-top: 3px solid var(--copper);
  text-align: center;
  padding: 2rem 1rem;
}
.digital-strip-heading {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 0.4rem;
}
.digital-strip-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gold { color: var(--copper); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col-reverse {
  direction: ltr;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* ═══════════════════════════════════════════ */
/* TYPOGRAPHY                                  */
/* ═══════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}

.section-label-gold {
  color: var(--copper-light);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.section-navy .section-heading {
  color: var(--white);
}

.s2-heading {
  font-size: 2.2rem;
}

.section-body {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ═══════════════════════════════════════════ */
/* BUTTONS                                     */
/* ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-lg {
  padding: 1.1rem 2.8rem;
  font-size: 0.9rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-gold {
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  color: var(--white);
  border-color: var(--copper);
  box-shadow: 0 4px 16px rgba(196,114,58,0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--copper-light), var(--copper));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,114,58,0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--copper);
  border-color: var(--copper);
}
.btn-outline-gold:hover {
  background: var(--copper);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  font-weight: 800;
}
.btn-white:hover {
  background: var(--light-grey);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════ */
/* NAVBAR                                      */
/* ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: var(--navy-dark);
  padding: 0.6rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.nav-logo:hover {
  color: var(--copper);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--copper);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.navbar .nav-phone {
  color: rgba(255,255,255,0.75);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.navbar .nav-phone:hover {
  color: var(--copper);
}
.nav-phone svg {
  width: 0.85rem;
  height: 0.85rem;
  vertical-align: -0.1em;
  margin-right: 0.2rem;
}

.nav-links .nav-cta {
  background: var(--copper);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
}
.nav-links .nav-cta:hover {
  background: var(--copper-light);
  color: var(--white);
}

.nav-links .nav-lang {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--white);
  opacity: 0.6;
  padding: 0.3rem 0.5rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  transition: var(--transition);
}
.nav-links .nav-lang:hover {
  opacity: 1;
  border-color: var(--copper);
  color: var(--copper);
}

/* Hamburger Menu Button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}

/* ═══════════════════════════════════════════ */
/* SECTION 1: HERO                             */
/* ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('hero-bg.webp') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,42,74,0.86) 0%,
    rgba(27,42,74,0.71) 50%,
    rgba(15,29,53,0.81) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 960px;
  animation: heroFadeIn 1.2s ease-out;
}

.hero-logo-wrap {
  display: inline-block;
  background: #ffffff;
  border-radius: 20px;
  padding: 1.2rem 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.hero-logo {
  width: clamp(280px, 30vw, 420px);
  display: block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-24h {
  display: block;
  margin-top: 0.8rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--copper), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ═══════════════════════════════════════════ */
/* SECTION 2: PAIN POINTS                      */
/* ═══════════════════════════════════════════ */
.pain-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pain-point {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: var(--light-grey);
  border-radius: 8px;
  border-left: 3px solid var(--copper);
  font-size: 0.95rem;
  transition: var(--transition);
}
.pain-point:hover {
  background: #eee;
  transform: translateX(4px);
}

.pain-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--copper);
}
.pain-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

.col-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

#problema .two-col {
  align-items: stretch;
}

#problema .col-image {
  position: relative;
}

.s2-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.s2-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.s7-img-wrap {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.s7-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════════ */
/* SECTION 3: FEATURES (CE ESTE IC)           */
/* ═══════════════════════════════════════════ */
.s3-section {
  padding-bottom: 0;
  overflow: hidden;
}

.s3-cards {
  position: relative;
  z-index: 2;
  margin-bottom: -160px;
}

.s3-img-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.s3-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.s3-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, var(--light-grey) 0%, transparent 100%);
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196,114,58,0.2);
}

.feature-icon {
  margin-bottom: 1.2rem;
  color: var(--copper);
}
.feature-icon svg {
  width: 3rem;
  height: 3rem;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════ */
/* SECTION 4: PROCESS (CUM FUNCȚIONEAZĂ)       */
/* ═══════════════════════════════════════════ */
.tab-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  background: var(--light-grey);
  border-radius: 50px;
  padding: 4px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  flex: 1;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--grey);
  cursor: pointer;
  border-radius: 50px;
  transition: var(--transition);
}
.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.tab-btn:hover:not(.active) {
  color: var(--navy);
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.process-steps {
  max-width: 600px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(196,114,58,0.3);
}

.step-content {
  padding-bottom: 0.5rem;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.step-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

.step-time {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--copper);
  font-weight: 600;
}
.step-time svg {
  width: 0.85rem;
  height: 0.85rem;
  vertical-align: -0.1em;
  margin-right: 0.15rem;
}

.step-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--copper), rgba(196,114,58,0.2));
  margin-left: 27px;
}

/* ═══════════════════════════════════════════ */
/* SECTION 5: PRICING                          */
/* ═══════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(10, auto);
  gap: 0 2rem;
  align-items: start;
}

.pricing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 10;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.pricing-card:hover {
  border-color: rgba(196,114,58,0.3);
  transform: translateY(-4px);
}

.pricing-card-featured {
  background: rgba(255,255,255,0.1);
  border: 2px solid var(--copper);
  box-shadow: var(--shadow-copper);
  transform: scale(1.04);
  z-index: 2;
}
.pricing-card-featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(196,114,58,0.4);
}

/* Subgrid row classes */
.pc-header {
  text-align: center;
  padding-bottom: 1rem;
}

.pc-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pc-price-dual {
  gap: 1.2rem;
}

.price-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.price-col .price-amount {
  font-size: 1.6rem;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  white-space: nowrap;
}

.price-type {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.price-divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.pc-section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-top: 1.2rem;
  padding-bottom: 0.4rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.pc-cta {
  padding-top: 1.5rem;
  align-self: end;
}

.pricing-tier {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
}

.pricing-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
  font-style: italic;
}

.price-from {
  display: inline;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-right: 0.2rem;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--copper);
}

.price-vat {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-left: 0.2rem;
}

.pricing-inherit {
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.75rem;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem 0;
}
.pricing-list li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  padding: 0.3rem 0;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.4;
}
.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-weight: 700;
  font-size: 0.85rem;
}

.pricing-list-team li::before {
  content: '•';
  color: rgba(255,255,255,0.4);
}

.pricing-fit {
  margin-top: 0;
  padding: 1rem;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border-left: 3px solid var(--copper);
}

.pricing-fit-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.pricing-fit-quote {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  line-height: 1.4;
}

.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.pricing-note strong {
  color: var(--white);
}
.pricing-note a {
  color: var(--copper);
  text-decoration: underline;
}

.report-standards {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: var(--grey);
  font-style: italic;
  line-height: 1.5;
}

/* ——— PRICING EXTRAS (SNAGGING + EXPERT) ——— */
.pricing-extras {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.pricing-extra-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition);
}
.pricing-extra-card:hover {
  border-color: rgba(196,114,58,0.3);
}

.extra-card-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.extra-card-left .pricing-tier {
  font-size: 1.4rem;
}

.extra-card-left .price-row {
  white-space: nowrap;
}

.extra-card-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.extra-card-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

.extra-card-fit {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--copper-light);
  line-height: 1.4;
}

.btn-sm {
  padding: 0.45rem 1.2rem;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ——— COMPARISON MODAL ——— */
#modal-compare .legal-modal-content {
  max-width: 900px;
  width: 95%;
  max-height: 90vh;
  overflow: auto;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

#modal-compare .legal-modal-header {
  padding: 0.8rem 1.5rem;
  flex-shrink: 0;
}

#modal-compare .legal-modal-header h2 {
  font-size: 1.2rem;
}

#modal-compare .legal-modal-body {
  padding: 0;
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

#modal-compare .compare-table-wrap {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.compare-table th,
.compare-table td {
  padding: 0.35rem 0.8rem;
  text-align: center;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.compare-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 0.6rem 1rem;
  white-space: nowrap;
  min-width: 110px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.compare-table th.compare-highlight {
  background: var(--copper);
}

.compare-price {
  font-weight: 400;
  font-size: 0.75rem;
  opacity: 0.8;
  display: block;
  margin-top: 0.2rem;
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--dark-text);
  min-width: 200px;
}

.compare-table tbody tr:hover {
  background: rgba(196,114,58,0.04);
}

.compare-table td.compare-category {
  background: var(--light-grey);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  text-align: left;
  padding: 0.4rem 0.8rem;
}

.compare-check {
  color: #22c55e;
  font-size: 1.1rem;
  font-weight: 700;
}

.compare-dash {
  color: #ccc;
  font-size: 1rem;
}

.compare-fit-row td {
  background: var(--light-grey);
  font-size: 0.72rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.2;
  padding: 0.4rem 0.8rem;
}

/* ═══════════════════════════════════════════ */
/* SECTION 6: INSPECT GRID                     */
/* ═══════════════════════════════════════════ */
.inspect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.inspect-card {
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
  transition: var(--transition);
  position: relative;
}
.inspect-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196,114,58,0.2);
}

.inspect-icon {
  margin-bottom: 0.5rem;
  color: var(--copper);
}
.inspect-icon svg {
  width: 2rem;
  height: 2rem;
}

.inspect-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.inspect-card p {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.4;
}

.inspect-badge {
  display: inline-block;
  margin-top: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--copper);
  background: rgba(196,114,58,0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
}

.inspect-badge-basic {
  color: var(--navy);
  background: rgba(27,42,74,0.1);
}

.s6-banner {
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
}

.s6-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* ═══════════════════════════════════════════ */
/* SECTION 7: RAPORT (CHECK LIST)              */
/* ═══════════════════════════════════════════ */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.6rem 0;
  font-size: 1rem;
  color: #555;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.check-list li:last-child {
  border-bottom: none;
}
.check-list .check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  color: var(--copper);
  margin-top: 0.22rem;
}
.check-list .check svg {
  width: 1.1rem;
  height: 1.1rem;
}
.check-list em {
  color: var(--copper);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  top: 0.16em;
}

/* ═══════════════════════════════════════════ */
/* SECTION 8: ECHIPA                           */
/* ═══════════════════════════════════════════ */

#echipa .section-label {
  display: block;
  text-align: center;
}

#echipa .section-heading {
  text-align: center;
}

/* Cifre cheie */
.social-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 2.5rem 0 3.5rem;
  text-align: center;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
}

.stat-number,
.stat-suffix {
  font-size: 3rem;
  font-weight: 800;
  color: var(--copper);
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Team callout */
.team-callout {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.6;
  box-shadow: 0 2px 16px rgba(27, 42, 74, 0.08);
}

.team-callout strong {
  color: var(--copper);
}

.team-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 16px rgba(27,42,74,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--navy);
  margin-bottom: 0.5rem;
}

.team-name {
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
  margin: 0;
}

.team-role {
  font-size: 0.9rem;
  color: var(--copper);
  font-weight: 500;
}

.team-desc {
  font-size: 0.85rem;
  color: #888;
}


/* ═══════════════════════════════════════════ */
/* SECTION 9: FAQ                              */
/* ═══════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--copper);
}

.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-grey);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--navy);
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  background: var(--copper);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.3rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════ */
/* SECTION 10: CTA FINAL                       */
/* ═══════════════════════════════════════════ */
.section-cta {
  background: linear-gradient(135deg, var(--copper-dark) 0%, var(--copper) 50%, var(--copper-light) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="80" r="60" fill="rgba(255,255,255,0.02)"/></svg>') center/cover;
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
}
.cta-heading span {
  display: block;
}

.cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ═══════════════════════════════════════════ */
/* SECTION 11: CONTACT FORM                    */
/* ═══════════════════════════════════════════ */
.form-message {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}
.form-message p { margin: 0; }
.form-message-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.form-message-error {
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-text);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(196,114,58,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.form-group-full {
  margin-bottom: 1.5rem;
}

.form-group label.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: #666;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--copper);
}

.form-submit {
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════ */
/* SECTION 12: FOOTER                          */
/* ═══════════════════════════════════════════ */
.footer-brand {
  background: var(--navy-dark);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-col-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-col-center {
  text-align: center;
}

.footer-logo-wrap {
  display: inline-block;
  background: var(--white);
  border-radius: 16px;
  padding: 0.8rem 2rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.footer-logo-img {
  width: 200px;
  max-width: 50vw;
  display: block;
}

.footer-powered {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}
.footer-powered strong {
  color: var(--white);
}
.footer-powered a {
  color: var(--copper);
}
.footer-powered a:hover {
  color: var(--copper-light);
}

.footer-sep {
  color: rgba(255,255,255,0.3);
  margin: 0 0.2rem;
}

.footer-desc {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-legal-link {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  transition: var(--transition);
}
.footer-legal-link:hover {
  color: var(--copper);
}

.footer-certs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-certs span {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
}
.footer-anpc {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-top: 2.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-anpc img {
  display: block;
  height: auto;
  width: 250px;
}

/* ═══════════════════════════════════════════ */
/* LEGAL MODALS                                */
/* ═══════════════════════════════════════════ */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.legal-modal.active {
  opacity: 1;
  visibility: visible;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}

.legal-modal-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 90%;
  max-height: 85vh;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.legal-modal.active .legal-modal-content {
  transform: translateY(0);
}

.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  flex-shrink: 0;
}

.legal-modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.legal-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--grey);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  line-height: 1;
  flex-shrink: 0;
}
.legal-modal-close:hover {
  background: var(--light-grey);
  color: var(--navy);
}

.legal-modal-body {
  overflow-y: auto;
  padding: 2rem 3rem 3rem;
  flex: 1;
  margin-right: 4px;
  margin-bottom: 12px;
}

/* Custom scrollbar - thinner, with gap from edge */
.legal-modal-body::-webkit-scrollbar {
  width: 6px;
}
.legal-modal-body::-webkit-scrollbar-track {
  background: transparent;
  margin-bottom: 8px;
}
.legal-modal-body::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15);
  border-radius: 3px;
}
.legal-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.3);
}

.legal-modal-body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-modal-body h3:first-child {
  margin-top: 0;
}

.legal-modal-body p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

/* ═══════════════════════════════════════════ */
/* RAPORT VIEWER MODAL                         */
/* ═══════════════════════════════════════════ */
.raport-modal-content {
  width: 92%;
  max-width: 900px;
  height: 90vh;
  max-height: 90vh;
  border-radius: 0;
}
.raport-modal-header {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
}
.raport-modal-header h2 {
  color: var(--white);
}
.raport-modal-header .legal-modal-close {
  color: var(--white);
}
.raport-modal-header .legal-modal-close:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.raport-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.raport-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 34px;
  height: 34px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.raport-btn:hover {
  background: rgba(255,255,255,0.2);
}
.raport-hint {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-family: var(--font-body);
  margin-right: 0.5rem;
}
.raport-modal-content.fullscreen {
  width: 100%;
  max-width: 100%;
  height: 100vh;
  max-height: 100vh;
  border-radius: 0;
}
.raport-modal-body {
  flex: 1;
  padding: 0;
  overflow: auto;
  min-height: 0;
  position: relative;
}
.raport-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .raport-modal-content {
    width: 100%;
    height: 95vh;
    max-height: 95vh;
    border-radius: 0;
  }
}

/* ═══════════════════════════════════════════ */
/* COOKIE CONSENT BANNER                       */
/* ═══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--navy-dark);
  color: var(--white);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  animation: cookieSlideUp 0.5s ease-out;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.cookie-banner a {
  color: var(--copper);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  color: var(--white);
  border: 2px solid var(--copper);
  padding: 0.6rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-accept:hover {
  background: linear-gradient(135deg, var(--copper-light), var(--copper));
  transform: translateY(-1px);
}

.btn-cookie-reject {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 2px solid rgba(255,255,255,0.3);
  padding: 0.6rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-reject:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* ═══════════════════════════════════════════ */
/* ANIMATIONS (Scroll-triggered via JS)        */
/* ═══════════════════════════════════════════ */
.animate-left,
.animate-right,
.animate-up,
.animate-up-stagger > * {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-left {
  transform: translateX(-40px);
}
.animate-right {
  transform: translateX(40px);
}
.animate-up {
  transform: translateY(30px);
}
.animate-up-stagger > * {
  transform: translateY(30px);
}

.animate-left.visible,
.animate-right.visible,
.animate-up.visible,
.animate-up-stagger.visible > * {
  opacity: 1;
  transform: translate(0);
}

.animate-up-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.animate-up-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.animate-up-stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.animate-up-stagger.visible > *:nth-child(4) { transition-delay: 0.45s; }
.animate-up-stagger.visible > *:nth-child(5) { transition-delay: 0.6s; }
.animate-up-stagger.visible > *:nth-child(6) { transition-delay: 0.75s; }
.animate-up-stagger.visible > *:nth-child(7) { transition-delay: 0.9s; }
.animate-up-stagger.visible > *:nth-child(8) { transition-delay: 1.05s; }
.animate-up-stagger.visible > *:nth-child(9) { transition-delay: 1.2s; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ═══════════════════════════════════════════ */
/* RESPONSIVE                                  */
/* ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    gap: 2rem;
  }
  .pricing-card {
    grid-row: auto;
    grid-template-rows: none;
  }
  .pricing-card-featured {
    transform: scale(1);
  }
  .pricing-card-featured:hover {
    transform: translateY(-4px);
  }
  .pricing-extras {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-extra-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .three-col {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .s3-cards {
    margin-bottom: -60px;
  }
  .inspect-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    gap: 1rem;
  }
  .nav-links a {
    font-size: 0.7rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-callout {
    font-size: 1rem;
    padding: 1rem 1.25rem;
  }
  .social-stats {
    gap: 2rem;
  }
  .stat-number,
  .stat-suffix {
    font-size: 2.2rem;
  }
  .section {
    padding: 4rem 0;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-subtitle br {
    display: none;
  }
  .section-heading {
    font-size: 1.8rem;
  }
  .digital-strip-body {
    display: none;
  }
  .digital-strip {
    padding: 1.5rem 1rem;
  }
  .two-col,
  .two-col-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contact-form {
    padding: 1.5rem;
  }
  .cta-heading {
    font-size: 2rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .col-text > .btn {
    display: flex;
  }
  .inspect-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .inspect-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 0.7rem;
    row-gap: 0;
    text-align: left;
    padding: 0.8rem 1rem;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    background: var(--white);
  }
  .inspect-card:first-child {
    border-top: 1px solid rgba(0,0,0,0.06);
  }
  .inspect-card:hover {
    transform: none;
    box-shadow: none;
  }
  .inspect-icon {
    grid-row: 1;
    grid-column: 1;
    margin-bottom: 0;
    align-self: center;
  }
  .inspect-icon svg {
    width: 1.3rem;
    height: 1.3rem;
  }
  .inspect-card h4 {
    grid-row: 1;
    grid-column: 2;
    align-self: center;
    margin-bottom: 0;
    font-size: 0.9rem;
  }
  .inspect-badge {
    grid-row: 1;
    grid-column: 3;
    align-self: center;
    margin-top: 0;
  }
  .inspect-card p {
    grid-row: 2;
    grid-column: 2 / 4;
    font-size: 0.8rem;
    line-height: 1.4;
    padding-bottom: 0.2rem;
  }
  .s3-cards {
    margin-bottom: -40px;
  }
  .s3-img-wrap {
    height: 300px;
  }
  .s6-banner {
    aspect-ratio: 16/9;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 1rem 2rem;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-md);
    min-width: 200px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 0.6rem 0;
    font-size: 0.85rem;
  }
  .nav-links .nav-cta {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    margin: 0.3rem 0;
  }
  .nav-links .nav-lang {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    margin: 0.3rem 0;
  }
  .nav-container {
    position: relative;
  }
  .nav-logo {
    font-size: 0.95rem;
  }
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
  }
  .legal-modal-content {
    max-height: 90vh;
    width: 95%;
  }
  .legal-modal-header {
    padding: 1.2rem 1.5rem;
  }
  .legal-modal-header h2 {
    font-size: 1.4rem;
  }
  .legal-modal-body {
    padding: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col-left {
    align-items: flex-start;
    order: 2;
  }
  .footer-col-center {
    order: 1;
  }
  .footer-col-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 3;
  }
  .footer-legal {
    align-items: flex-start;
  }
  .footer-certs {
    align-items: flex-start;
  }
  #modal-compare .compare-table-wrap {
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .container {
    padding: 0 1.2rem;
  }
  .s3-cards {
    margin-bottom: 0;
  }
  .s3-img-wrap {
    height: 250px;
  }
}

/* ═══════════════════════════════════════════
   SKIP TO CONTENT (accessibility)
   ═══════════════════════════════════════════ */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-to-content:focus {
  top: 0;
}
