@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --primary: #B85C38;
  --accent: #6B705C;
  --bg: #F5F1EB;
  --surface: #EBE5DB;
  --text: #3A312A;
  --muted: #8C7F73;

  --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.06);
  --radius: 0;
  --font-family: 'Outfit', sans-serif;

  --header-height: 72px;
  --section-padding: 4rem 1.25rem;
  --container-max: 1200px;
  --transition-speed: 0.3s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--accent);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  max-width: 72ch;
}

p:last-child {
  margin-bottom: 0;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: var(--section-padding);
}

.section--alt {
  background-color: var(--surface);
}

.section--primary {
  background-color: var(--primary);
  color: var(--bg);
}

.section--primary h2,
.section--primary h3,
.section--primary h4 {
  color: var(--bg);
}

.section--accent {
  background-color: var(--accent);
  color: var(--bg);
}

.section--accent h2,
.section--accent h3,
.section--accent h4 {
  color: var(--bg);
}

.section--dark {
  background-color: var(--text);
  color: var(--bg);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--bg);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0.75rem auto 0;
  max-width: 60ch;
}

.section--primary .section-header p,
.section--accent .section-header p,
.section--dark .section-header p {
  color: rgba(245, 241, 235, 0.8);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg);
  box-shadow: var(--shadow-subtle);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background-color var(--transition-speed) ease,
              box-shadow var(--transition-speed) ease;
}

.header.scrolled {
  background-color: rgba(245, 241, 235, 0.97);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--transition-speed) ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-speed) ease;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text);
  flex-shrink: 0;
}

.mobile-menu-toggle svg,
.mobile-menu-toggle .hamburger-icon {
  width: 28px;
  height: 28px;
  display: block;
}

.hamburger-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text);
  margin: 5px 0;
  transition: transform var(--transition-speed) ease,
              opacity var(--transition-speed) ease;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: inline-block;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1rem;
    border-top: 1px solid var(--muted);
    box-shadow: var(--shadow-subtle);
  }

  .nav-menu.open a {
    padding: 0.75rem 0;
    font-size: 1.05rem;
  }
}

/* ============================================
   PHOTO BACKGROUND OVERLAY
   ============================================ */
.has-photo-bg {
  position: relative;
  isolation: isolate;
}

.has-photo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85));
  z-index: 0;
}

.has-photo-bg > * {
  position: relative;
  z-index: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 1.25rem;
}

.hero-section h1 {
  color: var(--bg);
  margin-bottom: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-section p {
  color: rgba(245, 241, 235, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary,
.btn-secondary,
.cta-button,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color var(--transition-speed) ease,
              color var(--transition-speed) ease,
              border-color var(--transition-speed) ease,
              transform var(--transition-speed) ease;
  text-align: center;
  line-height: 1.4;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: #9E4D2E;
  border-color: #9E4D2E;
  color: var(--bg);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--bg);
  border-color: var(--bg);
}

.btn-secondary:hover {
  background-color: var(--bg);
  color: var(--text);
  transform: translateY(-1px);
}

.cta-button {
  background-color: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.cta-button:hover {
  background-color: #9E4D2E;
  border-color: #9E4D2E;
  color: var(--bg);
  transform: translateY(-1px);
}

.form-submit {
  background-color: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background-color: #9E4D2E;
  border-color: #9E4D2E;
  color: var(--bg);
  transform: translateY(-1px);
}

.btn-primary:active,
.btn-secondary:active,
.cta-button:active,
.form-submit:active {
  transform: translateY(0);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-card {
  background-color: var(--bg);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-speed) ease;
}

.section--alt .feature-card {
  background-color: var(--bg);
}

.feature-card:hover {
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--bg);
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  border-radius: var(--radius);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background-color: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-speed) ease;
}

.section--alt .service-card {
  background-color: var(--bg);
}

.service-card:hover {
  transform: translateY(-3px);
}

.service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 1.75rem;
}

.service-card-body h3 {
  margin-bottom: 0.75rem;
}

.service-card-body p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.service-card-body a {
  font-weight: 600;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-content h2 {
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-content .btn-primary {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-image {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    gap: 4rem;
  }

  .about-image {
    height: 480px;
  }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem 1rem;
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--bg);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(245, 241, 235, 0.8);
  font-weight: 500;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-subtle);
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: 5rem 1.25rem;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(245, 241, 235, 0.85);
  font-size: 1.15rem;
  max-width: 55ch;
  margin: 0 auto 2rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-row .contact-icon {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 0.15rem;
}

.contact-row p {
  margin-bottom: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-row a {
  color: var(--text);
}

.contact-row a:hover {
  color: var(--primary);
}

.contact-form {
  background-color: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-subtle);
}

.section--alt .contact-form {
  background-color: var(--bg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  width: 100%;
}

.form-group label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--muted);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  transition: border-color var(--transition-speed) ease;
}

.section--alt .form-input,
.section--alt .form-textarea {
  background: var(--bg);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   POLICY PAGES (Privacy, Terms, etc.)
   ============================================ */
.policy-page {
  padding: 4rem 1.25rem;
}

.policy-page .container {
  max-width: 800px;
}

.policy-page h1 {
  margin-bottom: 0.5rem;
}

.policy-page .policy-updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.policy-page h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--surface);
}

.policy-page h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.policy-page p {
  color: var(--text);
  line-height: 1.8;
  font-size: 1rem;
}

.policy-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: disc;
}

.policy-page ul li {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0.35rem;
}

.policy-page a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--text);
  color: rgba(245, 241, 235, 0.8);
  padding: 4rem 1.25rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--bg);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245, 241, 235, 0.65);
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: rgba(245, 241, 235, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition-speed) ease;
}

.footer-col ul li a:hover {
  color: var(--bg);
}

.footer-brand .logo {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(245, 241, 235, 0.1);
  color: rgba(245, 241, 235, 0.8);
  border-radius: var(--radius);
  transition: background-color var(--transition-speed) ease,
              color var(--transition-speed) ease;
}

.footer-social a:hover {
  background-color: var(--primary);
  color: var(--bg);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 241, 235, 0.15);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(245, 241, 235, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(245, 241, 235, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--bg);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ============================================
   COOKIE POPUP
   ============================================ */
.cookie-popup {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  max-width: 420px;
  background-color: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: opacity var(--transition-speed) ease,
              transform var(--transition-speed) ease;
}

.cookie-popup.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.cookie-popup p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0;
}

.cookie-popup-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-popup-actions .btn-primary {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.cookie-popup-actions .btn-text {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 500;
  transition: color var(--transition-speed) ease;
}

.cookie-popup-actions .btn-text:hover {
  color: var(--text);
}

@media (min-width: 768px) {
  .cookie-popup {
    left: auto;
  }
}

/* ============================================
   PAGE HEADER (Inner pages)
   ============================================ */
.page-header {
  background-color: var(--text);
  padding: 4rem 1.25rem;
  text-align: center;
}

.page-header h1 {
  color: var(--bg);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: rgba(245, 241, 235, 0.75);
  font-size: 1.1rem;
  max-width: 55ch;
  margin: 0 auto;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--muted);
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs span {
  margin: 0 0.5rem;
}

/* ============================================
   TEAM GRID
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.team-card {
  text-align: center;
}

.team-card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.team-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.team-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background-color: var(--bg);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-subtle);
  text-align: center;
  border: 2px solid transparent;
  transition: transform var(--transition-speed) ease,
              border-color var(--transition-speed) ease;
}

.section--alt .pricing-card {
  background-color: var(--bg);
}

.pricing-card:hover {
  transform: translateY(-3px);
}

.pricing-card.featured {
  border-color: var(--primary);
}

.pricing-card.featured .pricing-badge {
  display: inline-block;
  background-color: var(--primary);
  color: var(--bg);
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  border-radius: var(--radius);
}

.pricing-badge {
  display: none;
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}

.pricing-description {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--surface);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--surface);
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-family);
  padding: 0;
  gap: 1rem;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition-speed) ease;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-speed) ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================
   BLOG / ARTICLES GRID
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog-card {
  background-color: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-speed) ease;
}

.section--alt .blog-card {
  background-color: var(--bg);
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.75rem;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.blog-card-body h3 a {
  color: var(--text);
}

.blog-card-body h3 a:hover {
  color: var(--primary);
}

.blog-card-body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .form-input {
  text-align: center;
}

@media (min-width: 768px) {
  .newsletter-form {
    flex-direction: row;
  }

  .newsletter-form .form-input {
    text-align: left;
  }

  .newsletter-form .btn-primary {
    white-space: nowrap;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }

.bg-primary { background-color: var(--primary); }
.bg-surface { background-color: var(--surface); }
.bg-accent { background-color: var(--accent); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.hidden { display: none !important; }

/* ============================================
   RESPONSIVE SECTION PADDING
   ============================================ */
@media (min-width: 768px) {
  :root {
    --section-padding: 5rem 2rem;
  }

  .hero-section {
    padding: 5rem 2rem;
  }

  .cta-section {
    padding: 6rem 2rem;
  }

  .page-header {
    padding: 5rem 2rem;
  }

  .policy-page {
    padding: 5rem 2rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --section-padding: 6rem 2rem;
  }

  .hero-section {
    min-height: 90vh;
    padding: 6rem 2rem;
  }

  .cta-section {
    padding: 7rem 2rem;
  }

  .page-header {
    padding: 6rem 2rem;
  }

  .policy-page {
    padding: 6rem 2rem;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .header,
  .footer,
  .cookie-popup,
  .mobile-menu-toggle,
  .cta-section {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding: 2rem 0;
  }
}