@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1e3a5f;
  --primary-light: #2d5f8a;
  --secondary: #d4a24e;
  --accent: #6b9e7a;
  --bg: #f9f7f3;
  --bg-white: #ffffff;
  --text: #2b2b2b;
  --text-light: #6b6b6b;
  --border: #e5e2dc;
  --font-heading: 'Lora', serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--secondary);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary);
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 0.8rem;
  color: var(--text-light);
  font-size: 0.93rem;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.section {
  padding: 3.5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.2rem;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--secondary);
  color: var(--bg-white);
}

.btn-primary:hover {
  background: #c4922e;
  color: var(--bg-white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--bg-white);
}

.btn-white {
  background: var(--bg-white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--bg);
  color: var(--primary);
  transform: translateY(-1px);
}

.site-header {
  position: fixed;
  top: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 1.6rem);
  max-width: 1100px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 50px;
  padding: 0.5rem 1.4rem;
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-hidden {
  transform: translateX(-50%) translateY(calc(-100% - 1.5rem));
}

.header-scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.logo span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.2rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary);
}

.header-cta {
  font-size: 0.78rem;
  padding: 0.45rem 1.1rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

.nav-toggle.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
  background-color: black;
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
  background-color: black;
}

.nav-toggle.active span {
  background: var(--bg-white);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 58, 95, 0.97);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay a {
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}

.nav-overlay.active a {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active a:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active a:nth-child(2) { transition-delay: 0.15s; }
.nav-overlay.active a:nth-child(3) { transition-delay: 0.2s; }
.nav-overlay.active a:nth-child(4) { transition-delay: 0.25s; }
.nav-overlay.active a:nth-child(5) { transition-delay: 0.3s; }

.nav-overlay a:hover {
  color: var(--secondary);
}

.hero {
  padding: 7rem 0 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, #3a7cb8 100%);
  color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 162, 78, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107, 158, 122, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--bg-white);
  font-size: 2.6rem;
  margin-bottom: 0.8rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.hero .btn {
  margin-top: 0.5rem;
}

.subpage-hero {
  padding: 6.5rem 0 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.subpage-hero.dark-theme {
  background: linear-gradient(135deg, #0f1f35 0%, var(--primary) 100%);
  color: var(--bg-white);
}

.subpage-hero.dark-theme h1 {
  color: var(--bg-white);
}

.subpage-hero.dark-theme p {
  color: rgba(255, 255, 255, 0.75);
}

.subpage-hero.warm-theme {
  background: linear-gradient(135deg, #c4922e 0%, var(--secondary) 50%, #e8be6a 100%);
  color: var(--bg-white);
}

.subpage-hero.warm-theme h1 {
  color: var(--bg-white);
}

.subpage-hero.warm-theme p {
  color: rgba(255, 255, 255, 0.85);
}

.subpage-hero.sage-theme {
  background: linear-gradient(135deg, #4a7a5a 0%, var(--accent) 100%);
  color: var(--bg-white);
}

.subpage-hero.sage-theme h1 {
  color: var(--bg-white);
}

.subpage-hero.sage-theme p {
  color: rgba(255, 255, 255, 0.8);
}

.subpage-hero .container {
  position: relative;
  z-index: 1;
}

.subpage-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.subpage-hero p {
  font-size: 0.9rem;
  max-width: 480px;
  margin: 0 auto;
}

.stars-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.stars-decoration i {
  position: absolute;
  color: rgba(255, 255, 255, 0.12);
  font-size: 0.5rem;
}

.stars-decoration i:nth-child(1) { top: 20%; left: 10%; }
.stars-decoration i:nth-child(2) { top: 40%; left: 85%; font-size: 0.35rem; }
.stars-decoration i:nth-child(3) { top: 60%; left: 25%; font-size: 0.4rem; }
.stars-decoration i:nth-child(4) { top: 15%; left: 70%; }
.stars-decoration i:nth-child(5) { top: 75%; left: 60%; font-size: 0.3rem; }
.stars-decoration i:nth-child(6) { top: 35%; left: 45%; font-size: 0.45rem; }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-content h2 {
  margin-bottom: 0.8rem;
}

.split-content p {
  margin-bottom: 0.6rem;
}

.split-content .accent-line {
  width: 50px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
  margin-bottom: 1rem;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.1rem;
}

.card-icon.primary-bg {
  background: rgba(30, 58, 95, 0.08);
  color: var(--primary);
}

.card-icon.secondary-bg {
  background: rgba(212, 162, 78, 0.12);
  color: var(--secondary);
}

.card-icon.accent-bg {
  background: rgba(107, 158, 122, 0.1);
  color: var(--accent);
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.card p {
  font-size: 0.83rem;
  margin-bottom: 0;
}

.stats-section {
  background: var(--primary);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item h3 {
  color: var(--secondary);
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  margin-bottom: 0;
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.preview-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.preview-card:hover {
  transform: translateY(-3px);
}

.preview-card-body {
  padding: 1.2rem;
}

.preview-card-icon {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.preview-card-icon.bg-warm {
  background: linear-gradient(135deg, rgba(212, 162, 78, 0.1), rgba(212, 162, 78, 0.2));
  color: var(--secondary);
}

.preview-card-icon.bg-sage {
  background: linear-gradient(135deg, rgba(107, 158, 122, 0.1), rgba(107, 158, 122, 0.2));
  color: var(--accent);
}

.preview-card-icon.bg-navy {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.08), rgba(30, 58, 95, 0.15));
  color: var(--primary);
}

.preview-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.preview-card p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.preview-card .price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-top: 0.5rem;
  display: block;
}

.preview-card .btn {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  padding: 0.4rem 1rem;
}

.cta-section {
  background: linear-gradient(135deg, rgba(212, 162, 78, 0.08), rgba(107, 158, 122, 0.08));
  text-align: center;
  padding: 3rem 0;
}

.cta-section h2 {
  margin-bottom: 0.6rem;
}

.cta-section p {
  max-width: 480px;
  margin: 0 auto 1.2rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.45rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.65rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondary);
  border: 2px solid var(--bg);
}

.timeline-item h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.timeline-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 0.8rem;
  display: block;
}

.feature-item h4 {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.feature-item p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.quote-block {
  background: var(--primary);
  padding: 2.5rem 0;
  text-align: center;
}

.quote-block blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--bg-white);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.quote-block cite {
  display: block;
  margin-top: 0.8rem;
  color: var(--secondary);
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.82rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.value-card:hover {
  border-color: var(--secondary);
}

.value-card i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  display: block;
}

.value-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
}

.contact-details {
  padding: 1rem 0;
}

.contact-details h3 {
  margin-bottom: 1.2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.contact-info-item i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(30, 58, 95, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact-info-item div p {
  font-size: 0.83rem;
  margin-bottom: 0;
}

.contact-info-item div strong {
  font-size: 0.85rem;
  color: var(--text);
  display: block;
  margin-bottom: 0.15rem;
}

.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 1.5rem 0;
  font-size: 0.75rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

.copyright span {
  color: var(--secondary);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--bg-white);
  padding: 1rem 1.5rem;
  z-index: 2000;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-popup.visible {
  display: block;
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  margin-bottom: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-inner p a {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-accept {
  background: var(--secondary);
  color: var(--bg-white);
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.cookie-accept:hover {
  background: #c4922e;
}

.fullpage-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.fullpage-wrapper main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4.5rem;
}

.fullpage-content {
  text-align: center;
  padding: 2rem 1.2rem;
  max-width: 500px;
}

.fullpage-content i {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  display: block;
}

.fullpage-content h1 {
  margin-bottom: 0.6rem;
}

.fullpage-content p {
  margin-bottom: 1.2rem;
}

.policy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 1.2rem 3rem;
}

.policy-content h2 {
  font-size: 1.3rem;
  margin: 2rem 0 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.policy-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.policy-content h3 {
  font-size: 1.05rem;
  margin: 1.2rem 0 0.4rem;
}

.policy-content p {
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
  line-height: 1.65;
}

.policy-content ul {
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
}

.policy-content ul li {
  font-size: 0.86rem;
  color: var(--text-light);
  margin-bottom: 0.35rem;
  position: relative;
  padding-left: 0.8rem;
}

.policy-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--secondary);
}

.body-lock {
  overflow: hidden;
}

.contact-themed-hero {
  padding: 6.5rem 0 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, #2a5478 50%, var(--accent) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-themed-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.contact-themed-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.contact-themed-hero .container {
  position: relative;
  z-index: 1;
}

.contact-themed-hero h1 {
  color: var(--bg-white);
  font-size: 2.2rem;
  margin-bottom: 0.4rem;
}

.contact-themed-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  max-width: 440px;
  margin: 0 auto;
}

.contact-themed-hero i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 0.8rem;
  display: block;
}

.page-last-updated {
  text-align: center;
  padding: 0.6rem 0 0;
  font-size: 0.75rem;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .nav-links,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .split-section.reverse {
    direction: ltr;
  }

  .cards-grid,
  .preview-cards,
  .values-grid,
  .features-row {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
}

@media (max-width: 600px) {
  html {
    font-size: 14px;
  }

  .site-header {
    top: 0.5rem;
    width: calc(100% - 1rem);
    padding: 0.45rem 1rem;
    border-radius: 40px;
  }

  .hero {
    padding: 6rem 0 3rem;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .subpage-hero {
    padding: 5.5rem 0 2rem;
  }

  .subpage-hero h1 {
    font-size: 1.6rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .cards-grid,
  .preview-cards,
  .values-grid,
  .features-row {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item h3 {
    font-size: 1.4rem;
  }

  .contact-form {
    padding: 1.4rem;
  }

  .nav-overlay a {
    font-size: 1.25rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 380px) {
  html {
    font-size: 13px;
  }

  .site-header {
    padding: 0.4rem 0.8rem;
  }

  .logo {
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 0.8rem;
  }
}
