/* ============================================
   ValenciaMove — Global Stylesheet v3
   Layout: Sales page pattern (hero+stats+features+accordion+pricing+testimonials+CTA+FAQ+footer)
   Palette: Mediterranean Warmth (terracotta, navy, cream, gold, green, brown)
   Fonts: DM Serif Display + Plus Jakarta Sans
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --terra: #E8683A;
  --terra-light: #f0845e;
  --terra-dark: #c8522a;
  --navy: #1B2A4A;
  --navy-light: #2a3d63;
  --gold: #F5A623;
  --cream: #FAF6F1;
  --cream-dark: #F0EBE3;
  --green: #2C7A5B;
  --brown: #8B6F4E;
  --white: #ffffff;
  --border: rgba(139,111,78,0.12);
  --shadow-sm: 0 1px 3px rgba(27,42,74,0.06);
  --shadow-md: 0 4px 16px rgba(27,42,74,0.08);
  --shadow-lg: 0 12px 40px rgba(27,42,74,0.12);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--navy);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.45rem; color: var(--navy); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.logo-icon { color: var(--terra); font-size: 1.3rem; }
.logo em { font-style: normal; color: var(--terra); }

.nav-links {
  display: flex; gap: 4px; align-items: center; list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > button.nav-trigger {
  color: var(--navy); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  padding: 10px 16px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; line-height: 1;
}
.nav-links > li > a:hover,
.nav-links > li > button.nav-trigger:hover,
.nav-links > li:hover > a,
.nav-links > li:hover > button.nav-trigger {
  color: var(--terra);
  background: rgba(232,104,58,0.05);
}
.nav-links > li > a.active { color: var(--terra); font-weight: 700; }
.nav-links .arrow { font-size: 0.5rem; opacity: 0.4; transition: transform 0.3s; }
.nav-links > li:hover .arrow { transform: rotate(180deg); opacity: 0.8; }

.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 10px 10px;
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}
.nav-dropdown::before {
  content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block; padding: 9px 14px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--navy); text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: var(--cream); color: var(--terra); }
.nav-dropdown .dd-label {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--brown); opacity: 0.6;
  padding: 8px 14px 4px;
}

.nav-cta {
  background: var(--terra) !important; color: var(--white) !important;
  padding: 10px 24px !important; border-radius: 10px !important;
  font-weight: 700 !important; font-size: 0.88rem !important;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
  box-shadow: 0 2px 8px rgba(232,104,58,0.2);
  margin-left: 8px !important;
}
.nav-cta:hover {
  background: var(--terra-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,104,58,0.3);
}

.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px; background: var(--navy);
  position: absolute; left: 5px; transition: 0.3s;
}
.menu-toggle span:nth-child(1) { top: 9px; }
.menu-toggle span:nth-child(2) { top: 15px; }
.menu-toggle span:nth-child(3) { top: 21px; }

/* ===== HERO (Full-width with bg image + overlay) ===== */
.hero-full {
  position: relative; width: 100%;
  min-height: 520px;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
  padding: 80px 24px;
}
.hero-full::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(27,42,74,0.55), rgba(27,42,74,0.75));
}
.hero-full > .container { position: relative; z-index: 2; text-align: center; }
.hero-full h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white); line-height: 1.12;
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.hero-full .hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem; line-height: 1.7;
  max-width: 600px; margin: 0 auto 32px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--terra); color: var(--white);
  padding: 14px 32px; border-radius: 10px;
  font-size: 0.95rem; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(232,104,58,0.3);
}
.btn-primary:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,104,58,0.4); }
.btn-ghost {
  background: rgba(255,255,255,0.1); color: var(--white);
  padding: 14px 32px; border-radius: 10px;
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  transition: all 0.25s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }

/* Hero for homepage (split layout) */
.hero-split {
  background: var(--navy); padding: 0; min-height: 600px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  overflow: hidden;
}
.hero-split-text {
  padding: 80px 48px 80px 0; padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
}
.hero-split-text .tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold); margin-bottom: 20px;
}
.hero-split-text h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--white); line-height: 1.08;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero-split-text h1 em { font-style: italic; color: var(--gold); }
.hero-split-text .sub {
  color: rgba(255,255,255,0.7); font-size: 1.05rem;
  line-height: 1.7; margin-bottom: 32px; max-width: 480px;
}
.hero-split-img {
  height: 100%; min-height: 500px;
  background-size: cover; background-position: center;
  border-radius: 24px 0 0 24px;
  position: relative;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stats-grid {
  display: flex; justify-content: center; gap: 64px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem; color: var(--terra);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem; font-weight: 600;
  color: var(--brown); margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* ===== SECTION SHARED ===== */
.section { padding: 80px 0; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: var(--white); }

.section-head { text-align: center; margin-bottom: 48px; }
.section-head .tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--terra); background: rgba(232,104,58,0.08);
  padding: 5px 16px; border-radius: 100px; margin-bottom: 16px;
}
.section-head h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy); line-height: 1.15;
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.section-navy .section-head h2 { color: var(--white); }
.section-head p {
  font-size: 1rem; color: var(--brown);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}
.section-navy .section-head p { color: rgba(255,255,255,0.65); }

/* Left-aligned section head */
.section-head-left { margin-bottom: 40px; }
.section-head-left .tag {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--terra); margin-bottom: 8px;
}
.section-head-left h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--navy); line-height: 1.15; margin-bottom: 12px;
}
.section-head-left p {
  font-size: 1rem; color: var(--brown); max-width: 560px; line-height: 1.7;
}

/* ===== FEATURE CARDS (3-col grid with icon) ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px;
  transition: all 0.3s;
}
.section-white .feature-card { background: var(--cream); }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  background: rgba(232,104,58,0.08); color: var(--terra);
}
.feature-icon .material-symbols-outlined { font-size: 1.6rem; }
.feature-card h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.88rem; color: var(--brown); line-height: 1.65;
}

/* ===== SPLIT SECTION (image + content) ===== */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-img {
  border-radius: var(--radius-xl);
  overflow: hidden; height: 400px;
  background-size: cover; background-position: center;
}
.split-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem; color: var(--navy);
  margin-bottom: 16px; line-height: 1.2;
}
.split-content p {
  font-size: 0.95rem; color: var(--brown);
  line-height: 1.75; margin-bottom: 20px;
}
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.92rem; color: var(--navy);
}
.check-list li .material-symbols-outlined {
  color: var(--green); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px;
}
.check-list li strong { font-weight: 700; }

/* ===== ACCORDION ===== */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.2s;
}
.accordion details[open] { box-shadow: var(--shadow-sm); }
.accordion summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 0.95rem; color: var(--navy);
  gap: 12px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary .acc-icon {
  color: var(--terra); font-size: 1.2rem; flex-shrink: 0;
}
.accordion summary .acc-arrow {
  color: var(--brown); opacity: 0.4; font-size: 1.2rem;
  transition: transform 0.25s; flex-shrink: 0;
}
details[open] .acc-arrow { transform: rotate(180deg); }
.accordion .acc-body {
  padding: 0 20px 18px 52px;
  font-size: 0.9rem; color: var(--brown); line-height: 1.7;
}

/* ===== PRICING CARDS ===== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1000px; margin: 0 auto;
  align-items: start;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  display: flex; flex-direction: column;
  transition: all 0.3s;
  position: relative;
}
.price-card:hover { box-shadow: var(--shadow-md); }
.price-card.featured {
  border: 2px solid var(--terra);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
  z-index: 2;
}
.price-badge {
  position: absolute; top: 0; right: 0;
  background: var(--terra); color: var(--white);
  font-size: 0.68rem; font-weight: 700;
  padding: 5px 14px; border-radius: 0 18px 0 12px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.price-card h3 {
  font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 4px;
}
.price-card .price-sub {
  font-size: 0.82rem; color: var(--brown); margin-bottom: 20px;
}
.price-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem; color: var(--navy); margin-bottom: 24px;
}
.price-amount span { font-size: 0.9rem; color: var(--brown); font-family: 'Plus Jakarta Sans', sans-serif; }
.price-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 14px; flex: 1; margin-bottom: 28px;
}
.price-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--navy);
}
.price-features li .material-symbols-outlined {
  color: var(--green); font-size: 1.2rem; flex-shrink: 0;
}
.price-cta {
  display: block; text-align: center; width: 100%;
  padding: 14px; border-radius: 10px;
  font-size: 0.92rem; font-weight: 700;
  text-decoration: none; transition: all 0.25s; cursor: pointer;
  border: 2px solid var(--terra); color: var(--terra);
  background: transparent;
}
.price-cta:hover { background: var(--terra); color: var(--white); }
.price-cta-fill {
  background: var(--terra); color: var(--white); border-color: var(--terra);
  box-shadow: 0 4px 16px rgba(232,104,58,0.25);
}
.price-cta-fill:hover { background: var(--terra-dark); border-color: var(--terra-dark); }

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.section-cream .testimonial-card { background: var(--white); }
.testimonial-stars {
  display: flex; gap: 2px; margin-bottom: 14px;
  color: var(--gold);
}
.testimonial-stars .material-symbols-outlined { font-size: 1.1rem; }
.testimonial-text {
  font-size: 0.92rem; line-height: 1.7;
  color: var(--navy); font-style: italic;
  margin-bottom: 18px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; color: var(--white);
  overflow: hidden;
}
.testimonial-name { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.testimonial-from { font-size: 0.75rem; color: var(--brown); }

/* ===== CTA BANNER (full-width) ===== */
.cta-banner {
  background: var(--terra); padding: 80px 24px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(245,166,35,0.15), transparent);
}
.cta-banner > .container { position: relative; z-index: 2; }
.cta-banner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white); margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255,255,255,0.85); font-size: 1.05rem;
  margin-bottom: 32px; max-width: 520px;
  margin-left: auto; margin-right: auto; line-height: 1.7;
}
.btn-white {
  background: var(--white); color: var(--terra);
  padding: 14px 32px; border-radius: 10px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 6px;
}
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }
.btn-ghost-white {
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: all 0.25s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.section-white .faq-item { background: var(--cream); }
.faq-item h3 {
  font-size: 0.95rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.faq-item p {
  font-size: 0.88rem; color: var(--brown); line-height: 1.7;
}

/* ===== TEAM ===== */
.team-photo {
  max-width: 900px; margin: 0 auto 48px;
  border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.team-photo img { width: 100%; height: auto; object-fit: cover; }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 900px; margin: 0 auto;
}
.team-card {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 28px 24px; border: 1px solid rgba(139,111,78,0.06);
  position: relative; overflow: hidden;
  transition: all 0.3s;
}
.section-cream .team-card { background: var(--white); }
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.team-card-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.team-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem; color: var(--navy); margin-bottom: 4px;
}
.team-role {
  font-size: 0.82rem; font-weight: 600; color: var(--terra);
  margin-bottom: 12px;
}
.team-desc {
  font-size: 0.88rem; line-height: 1.65; color: var(--brown);
}
.team-langs { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.team-lang {
  font-size: 0.68rem; font-weight: 600;
  padding: 3px 10px; border-radius: 100px;
  background: rgba(27,42,74,0.06); color: var(--navy);
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid rgba(139,111,78,0.06);
  transition: all 0.35s; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card-img {
  height: 180px; display: flex; align-items: flex-end; padding: 16px;
}
.blog-card-tag {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(8px);
  color: #fff; padding: 5px 12px; border-radius: 100px;
}
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-date { font-size: 0.75rem; font-weight: 500; color: var(--brown); margin-bottom: 8px; }
.blog-card-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; line-height: 1.3; color: var(--navy); margin-bottom: 10px;
}
.blog-card-body h3 a { text-decoration: none; color: inherit; transition: color 0.2s; }
.blog-card-body h3 a:hover { color: var(--terra); }
.blog-card-body p { font-size: 0.85rem; line-height: 1.65; color: var(--brown); flex: 1; margin-bottom: 14px; }
.blog-read { font-size: 0.85rem; font-weight: 600; color: var(--terra); text-decoration: none; }
.blog-read:hover { color: var(--terra-dark); }

/* ===== PARTNER BADGE ===== */
.partner-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 10px;
  font-size: 0.85rem; font-weight: 600; margin: 16px 0;
}
.partner-badge a { text-decoration: underline; }
.badge-legal { background: rgba(44,122,91,0.08); border: 1px solid rgba(44,122,91,0.15); color: var(--green); }
.badge-translation { background: rgba(232,104,58,0.06); border: 1px solid rgba(232,104,58,0.12); color: var(--terra); }

/* ===== INTERNAL LINKS ===== */
.related-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.related-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.82rem; font-weight: 600; color: var(--terra);
  text-decoration: none; padding: 7px 16px;
  background: rgba(232,104,58,0.06); border-radius: 100px;
  transition: all 0.2s;
}
.related-link:hover { background: rgba(232,104,58,0.12); }

/* ===== FOOTER ===== */
.footer {
  background: var(--white); border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: var(--brown); line-height: 1.6; max-width: 260px; }
.footer h4 {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--navy); margin-bottom: 16px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-size: 0.88rem; color: var(--brown); text-decoration: none;
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--terra); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.78rem; color: var(--brown); opacity: 0.6; }
.footer-partners { display: flex; gap: 16px; align-items: center; }
.footer-partners a {
  font-size: 0.78rem; color: var(--brown); text-decoration: none;
  transition: color 0.2s;
}
.footer-partners a:hover { color: var(--terra); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }

/* ===== PAGE CONTENT ===== */
.page-body { padding: 64px 0 80px; }
.page-body h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; color: var(--navy); margin-bottom: 14px;
}
.page-body p {
  font-size: 0.95rem; color: var(--brown); line-height: 1.8;
  margin-bottom: 14px;
}
.content-block { margin-bottom: 48px; }

/* Price box inline */
.price-box-inline {
  background: var(--white); border: 2px solid var(--terra);
  border-radius: var(--radius-lg); padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; margin: 24px 0; flex-wrap: wrap;
}
.price-box-inline h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem; color: var(--navy);
}
.price-box-inline p { font-size: 0.88rem; color: var(--brown); margin-bottom: 0; }

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .split-section { grid-template-columns: 1fr; }
  .split-section.reverse { direction: ltr; }
  .split-img { height: 300px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .blog-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-text { padding: 60px 24px; }
  .hero-split-img { min-height: 300px; border-radius: 0; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white); padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); gap: 4px;
  }
  .nav-links.open .nav-dropdown {
    position: static; transform: none;
    opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: none; padding: 4px 0 4px 16px; min-width: auto;
    background: transparent;
  }
  .nav-links.open .nav-dropdown::before { display: none; }
  .nav-links.open .nav-cta { margin-left: 0 !important; margin-top: 8px; }
  .stats-grid { gap: 32px; }
  .hero-full { min-height: 400px; padding: 60px 20px; }
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .price-box-inline { flex-direction: column; align-items: flex-start; }
}
