@import url('https://fonts.googleapis.com/css2?family=Lora:wght@600;700&family=Work+Sans:wght@400;500;600&display=swap');

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --navy: #1F2A44;
  --deep-navy: #16203A;
  --burgundy: #8C2F39;
  --burgundy-dark: #6d2229;
  --gold: #C9A24B;
  --paper: #FAF7F1;
  --text-dark: #1B2433;
  --text-light: #F4F1EA;
  --text-muted: #5a6478;
  --border-light: #e8e2d9;
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Work Sans', system-ui, sans-serif;
  --radius: 6px;
  --transition: 0.3s ease;
  --shadow: 0 2px 12px rgba(31,42,68,0.10);
  --shadow-lg: 0 6px 32px rgba(31,42,68,0.16);
}

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

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

body {
  background: var(--paper);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--burgundy);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ============================================================
   Container
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--deep-navy);
  border-bottom: 2px solid var(--burgundy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.28);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo:hover {
  text-decoration: none;
}

.brand-logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.brand-logo-text span {
  color: var(--gold);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  display: flex;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.03em;
}

.nav-link:hover,
.nav-link:focus {
  background: rgba(201,162,75,0.15);
  color: var(--gold);
  text-decoration: none;
}

.nav-link-cta {
  background: var(--burgundy);
  color: var(--text-light);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 2px;
  margin-left: 8px;
}

.nav-link-cta:hover,
.nav-link-cta:focus {
  background: var(--burgundy-dark);
  color: var(--text-light);
  text-decoration: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 2px;
}

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

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

.nav-open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* ============================================================
   Buttons
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--burgundy);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 2px;
  border: 2px solid var(--burgundy);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  text-decoration: none;
  color: var(--text-light);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 2px;
  border: 2px solid rgba(244,241,234,0.5);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(244,241,234,0.1);
  border-color: rgba(244,241,234,0.8);
  color: var(--text-light);
  text-decoration: none;
}

.btn-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 2px;
  border: 2px solid var(--gold);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.btn-cta:hover,
.btn-cta:focus {
  background: #b38b3a;
  border-color: #b38b3a;
  text-decoration: none;
  color: var(--text-dark);
}

/* ============================================================
   Section Base
   ============================================================ */
.section {
  padding: 88px 0;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.72;
}

.section-header {
  margin-bottom: 52px;
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section-dark {
  background: var(--deep-navy);
  color: var(--text-light);
}

.section-dark .section-title {
  color: var(--text-light);
}

.section-dark .section-subtitle {
  color: rgba(244,241,234,0.72);
}

.section-dark .section-tag {
  color: var(--gold);
}

.section-navy {
  background: var(--navy);
  color: var(--text-light);
}

.section-navy .section-title {
  color: var(--text-light);
}

.section-navy .section-subtitle {
  color: rgba(244,241,234,0.72);
}

.section-navy .section-tag {
  color: var(--gold);
}

/* ============================================================
   Divider
   ============================================================ */
.divider {
  width: 56px;
  height: 3px;
  background: var(--burgundy);
  margin: 14px 0 22px;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

.divider-gold {
  background: var(--gold);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep-navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/8085945/pexels-photo-8085945.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
  opacity: 0.18;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(22,32,58,0.98) 0%, rgba(31,42,68,0.90) 50%, rgba(140,47,57,0.12) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 88px 0;
  width: 100%;
}

.hero-content {
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(201,162,75,0.35);
  border-radius: 2px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.18;
  margin-bottom: 22px;
}

.hero-title em {
  color: var(--gold);
  font-style: normal;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: rgba(244,241,234,0.78);
  margin-bottom: 38px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
}

.hero-disclaimer {
  font-size: 0.76rem;
  color: rgba(244,241,234,0.45);
  line-height: 1.55;
  border-left: 2px solid rgba(201,162,75,0.28);
  padding-left: 12px;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 72px rgba(0,0,0,0.45);
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(22,32,58,0.65) 100%);
  z-index: 1;
  border-radius: var(--radius);
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.hero-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px 24px 24px;
}

.hero-img-caption-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(244,241,234,0.82);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============================================================
   About Section
   ============================================================ */
.about-section {
  background: var(--paper);
}

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

.about-text .section-title {
  margin-bottom: 18px;
}

.about-p {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.78;
}

.about-list {
  margin: 22px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 0.96rem;
  color: var(--text-dark);
}

.about-list-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--burgundy);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  margin-top: 2px;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 0;
}

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

/* ============================================================
   Cards Grid (#servicii)
   ============================================================ */
.cards-section {
  background: #f5f1eb;
  border-top: 1px solid var(--border-light);
}

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

.card {
  background: #fff;
  border-radius: var(--radius);
  border-top: 3px solid var(--navy);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.card-img-wrap {
  overflow: hidden;
  height: 198px;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.card:hover .card-img {
  transform: scale(1.05);
}

.card-body {
  padding: 24px;
}

.card-num {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.32;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   Steps Section
   ============================================================ */
.steps-section {
  background: var(--navy);
  color: var(--text-light);
}

.steps-section .section-title {
  color: var(--text-light);
}

.steps-section .section-subtitle {
  color: rgba(244,241,234,0.72);
}

.steps-section .section-tag {
  color: var(--gold);
}

.steps-section .divider {
  background: var(--gold);
}

.steps-header-img-wrap {
  width: 100%;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 52px;
  position: relative;
}

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

.steps-header-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22,32,58,0.75) 0%, transparent 55%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.step {
  position: relative;
  padding: 32px 28px 32px 20px;
  border-left: 2px solid rgba(201,162,75,0.22);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 14px;
}

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

.step-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-text {
  font-size: 0.88rem;
  color: rgba(244,241,234,0.68);
  line-height: 1.65;
}

/* ============================================================
   Stats Section
   ============================================================ */
.stats-section {
  background: var(--deep-navy);
  color: var(--text-light);
  padding: 72px 0;
}

.stats-section .section-tag {
  color: var(--gold);
}

.stats-section .section-title {
  color: var(--text-light);
}

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

.stat-item {
  padding: 36px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,75,0.14);
  transition: border-color var(--transition);
}

.stat-item:hover {
  border-color: rgba(201,162,75,0.35);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-suffix {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(244,241,234,0.65);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* ============================================================
   Poster Block
   ============================================================ */
.poster-section {
  background: var(--paper);
  padding: 80px 0;
}

.poster-section .section-tag {
  color: var(--burgundy);
}

.poster-intro {
  text-align: center;
  margin-bottom: 36px;
}

.poster-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,32,58,0.58) 0%, rgba(140,47,57,0.28) 100%);
  pointer-events: none;
}

.poster-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  background: rgba(250,247,241,0.12);
  border: 2px solid rgba(250,247,241,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  color: var(--text-light);
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.poster-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 32px;
  background: linear-gradient(0deg, rgba(22,32,58,0.92) 0%, transparent 100%);
  pointer-events: none;
}

.poster-label-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}

.poster-label-sub {
  font-size: 0.84rem;
  color: rgba(244,241,234,0.7);
}

/* ============================================================
   Notes Section
   ============================================================ */
.notes-section {
  background: var(--paper);
  border-top: 1px solid var(--border-light);
}

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

.note-card {
  background: #fff;
  border-radius: var(--radius);
  border-top: 3px solid var(--burgundy);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.note-card:hover {
  box-shadow: var(--shadow-lg);
}

.note-img-wrap {
  overflow: hidden;
  height: 178px;
}

.note-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.note-card:hover .note-img {
  transform: scale(1.04);
}

.note-body {
  padding: 24px;
}

.note-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  display: block;
}

.note-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.34;
}

.note-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   Testimonials Section
   ============================================================ */
.testimonials-section {
  background: var(--navy);
  color: var(--text-light);
}

.testimonials-section .section-title {
  color: var(--text-light);
}

.testimonials-section .section-subtitle {
  color: rgba(244,241,234,0.72);
}

.testimonials-section .section-tag {
  color: var(--gold);
}

.testimonials-section .divider {
  background: var(--gold);
}

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

.testimonial {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,75,0.18);
  border-radius: var(--radius);
  padding: 34px 28px 28px;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: 6px;
  left: 18px;
  line-height: 1;
}

.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  margin-bottom: 16px;
  display: block;
}

.testimonial-quote {
  font-size: 0.96rem;
  color: rgba(244,241,234,0.86);
  line-height: 1.72;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  padding-top: 16px;
  border-top: 1px solid rgba(201,162,75,0.18);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 0.78rem;
  color: rgba(244,241,234,0.5);
  display: block;
}

/* ============================================================
   Comparison Section
   ============================================================ */
.comparison-section {
  background: var(--paper);
}

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

.tier-card {
  background: #fff;
  border-radius: var(--radius);
  border-top: 4px solid var(--navy);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}

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

.tier-card-featured {
  border-top-color: var(--burgundy);
  background: var(--navy);
  color: var(--text-light);
}

.tier-card-featured .tier-title {
  color: var(--text-light);
}

.tier-card-featured .tier-desc {
  color: rgba(244,241,234,0.68);
}

.tier-card-featured .tier-item {
  color: rgba(244,241,234,0.88);
}

.tier-card-featured .tier-item::before {
  color: var(--gold);
}

.tier-card-featured .tier-divider {
  background: rgba(201,162,75,0.28);
}

.tier-card-featured .tier-tag {
  color: var(--gold);
}

.tier-featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--burgundy);
  color: var(--text-light);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tier-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  display: block;
}

.tier-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.22;
}

.tier-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.62;
}

.tier-divider {
  width: 100%;
  height: 1px;
  background: var(--border-light);
  margin-bottom: 22px;
}

.tier-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.tier-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.tier-item::before {
  content: '✓';
  color: var(--burgundy);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   FAQ Section
   ============================================================ */
.faq-section {
  background: #f5f1eb;
  border-top: 1px solid var(--border-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: background var(--transition), color var(--transition);
  gap: 16px;
  line-height: 1.4;
}

.faq-question:hover {
  background: rgba(31,42,68,0.04);
}

.faq-question[aria-expanded="true"] {
  color: var(--burgundy);
  background: rgba(140,47,57,0.04);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--navy);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--burgundy);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
  padding: 0 24px;
}

.faq-answer.faq-open {
  max-height: 600px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ============================================================
   Contact Section
   ============================================================ */
.contact-section {
  background: var(--deep-navy);
  color: var(--text-light);
}

.contact-section .section-title {
  color: var(--text-light);
}

.contact-section .section-subtitle {
  color: rgba(244,241,234,0.72);
}

.contact-section .section-tag {
  color: var(--gold);
}

.contact-section .divider {
  background: var(--gold);
}

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

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 0.94rem;
  color: rgba(244,241,234,0.82);
  line-height: 1.6;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--burgundy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-top: 1px;
}

.contact-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid rgba(201,162,75,0.18);
}

.contact-map {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

.contact-form-wrap {
  /* right column */
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
}

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

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

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(244,241,234,0.82);
  letter-spacing: 0.04em;
}

.form-input,
.form-textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(244,241,234,0.18);
  border-radius: 2px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--text-light);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(244,241,234,0.3);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

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

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

.form-error {
  display: none;
  color: #ff9090;
  font-size: 0.78rem;
  margin-top: 3px;
}

.form-error.visible {
  display: block;
}

.form-success {
  display: none;
  background: rgba(201,162,75,0.14);
  border: 1px solid rgba(201,162,75,0.38);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--gold);
  font-size: 0.94rem;
  line-height: 1.55;
}

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

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--deep-navy);
  border-top: 2px solid var(--burgundy);
  color: var(--text-light);
  padding: 52px 0 24px;
}

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

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
}

.footer-logo:hover {
  text-decoration: none;
  color: var(--gold);
}

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

.footer-tagline {
  font-size: 0.86rem;
  color: rgba(244,241,234,0.55);
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 300px;
}

.footer-links-group {
  /* links column */
}

.footer-links-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

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

.footer-link {
  font-size: 0.86rem;
  color: rgba(244,241,234,0.65);
  text-decoration: none;
  transition: color var(--transition);
  line-height: 1.5;
}

.footer-link:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(244,241,234,0.65);
  margin-bottom: 11px;
  line-height: 1.5;
}

.footer-contact-item a {
  color: rgba(244,241,234,0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(244,241,234,0.4);
}

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

.footer-legal-link {
  font-size: 0.8rem;
  color: rgba(244,241,234,0.52);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal-link:hover {
  color: var(--gold);
  text-decoration: none;
}

/* ============================================================
   Cookie Banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--deep-navy);
  border-top: 2px solid var(--burgundy);
  padding: 18px 0;
  box-shadow: 0 -4px 28px rgba(0,0,0,0.32);
}

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

.cookie-text {
  font-size: 0.86rem;
  color: rgba(244,241,234,0.82);
  line-height: 1.55;
  flex: 1;
  min-width: 220px;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: #b38b3a;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 9px 22px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.cookie-btn-accept {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--text-light);
}

.cookie-btn-accept:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  color: var(--text-light);
}

.cookie-btn-decline {
  background: transparent;
  border-color: rgba(244,241,234,0.32);
  color: rgba(244,241,234,0.72);
}

.cookie-btn-decline:hover {
  background: rgba(244,241,234,0.08);
  color: var(--text-light);
  border-color: rgba(244,241,234,0.55);
}

/* ============================================================
   Reveal Animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

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

/* ============================================================
   Legal Pages
   ============================================================ */
.page-hero {
  background: var(--deep-navy);
  padding: 72px 0 52px;
  border-bottom: 2px solid var(--burgundy);
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.22;
}

.page-hero-subtitle {
  font-size: 0.98rem;
  color: rgba(244,241,234,0.6);
  line-height: 1.6;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 68px 24px 88px;
}

.legal-section {
  margin-bottom: 52px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-h2 {
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  line-height: 1.3;
}

.legal-p {
  font-size: 0.96rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-ul {
  padding-left: 18px;
  margin-bottom: 14px;
}

.legal-li {
  font-size: 0.96rem;
  color: var(--text-dark);
  line-height: 1.76;
  margin-bottom: 8px;
  list-style: disc;
}

/* Cookies table */
.cookies-table-wrap {
  overflow-x: auto;
  margin: 28px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  background: #fff;
  min-width: 600px;
}

.cookies-table th {
  background: var(--navy);
  color: var(--text-light);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 13px 16px;
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.cookies-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-dark);
  vertical-align: top;
  line-height: 1.52;
}

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

.cookies-table tr:nth-child(even) td {
  background: rgba(250,247,241,0.55);
}

/* ============================================================
   Responsive — Breakpoints
   ============================================================ */

/* Tablet / 1024px */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 0;
  }

  .hero-img-wrap {
    max-width: 560px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-wrap::after {
    display: none;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile / 768px */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--deep-navy);
    flex-direction: column;
    padding: 12px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.07);
    z-index: 800;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

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

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.98rem;
    border-radius: 2px;
  }

  .nav-link-cta {
    margin-left: 0;
  }

  .section {
    padding: 60px 0;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .step {
    border-left: none;
    border-top: 2px solid rgba(201,162,75,0.22);
    padding: 24px 0 24px 0;
  }

  .step:first-child {
    border-top: none;
  }
}

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

  .hero-inner {
    padding: 48px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .hero-img {
    height: 280px;
  }

  .about-img {
    height: 280px;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .legal-content {
    padding: 44px 16px 64px;
  }
}
