/* ===== Variables ===== */
:root {
  --color-bg: #f8f9fc;
  --color-bg-alt: #fff;
  --color-primary: #0d4f5c;
  --color-primary-dark: #093840;
  --color-accent: #c9a227;
  --color-accent-hover: #b8921f;
  --color-text: #1a2b33;
  --color-text-muted: #5a6b73;
  --color-border: #e2e8ed;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --shadow-sm: 0 2px 8px rgba(13, 79, 92, 0.06);
  --shadow-md: 0 4px 20px rgba(13, 79, 92, 0.08);
  --shadow-lg: 0 8px 40px rgba(13, 79, 92, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --container: min(1200px, 92vw);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; margin: 0 0 0.5em; }

.container { width: var(--container); margin-inline: auto; padding-inline: 1rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}
.btn-lg { padding: 0.85rem 1.75rem; font-size: 1rem; }

/* ===== Top bar ===== */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
}
.top-bar a { color: inherit; }
.top-bar a:hover { color: var(--color-accent); }
.top-bar-social { display: flex; gap: 1rem; }
@media (max-width: 768px) { .top-bar { display: none; } }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  gap: 1rem;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-primary);
}
.logo:hover { color: var(--color-primary-dark); }

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav > a {
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius);
}
.nav > a:hover { background: var(--color-bg); color: var(--color-primary); }

.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text);
  background: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-dropdown-trigger:hover { background: var(--color-bg); color: var(--color-primary); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 0.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 10;
}
.nav-dropdown-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--color-text);
  border-radius: 6px;
}
.nav-dropdown-menu a:hover { background: var(--color-bg); color: var(--color-primary); }

.mobile-menu-btn {
  display: none;
  padding: 0.5rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
}
@media (max-width: 1024px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem;
    box-shadow: var(--shadow-md);
  }
  .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; display: none; margin-top: 0.25rem; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .mobile-menu-btn { display: block; }
  .header .btn-primary { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, #0a2d35 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-inner { position: relative; z-index: 1; color: #fff; text-align: center; max-width: 720px; margin-inline: auto; }
.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  color: rgba(255,255,255,0.95);
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.75rem;
  line-height: 1.65;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
.hero-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,0.7); }
.hero-cta .btn-outline:hover { background: #fff; color: var(--color-primary); border-color: #fff; }
.hero-stats { font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.hero-stat strong { color: var(--color-accent); }

/* ===== Hero media (homepage) ===== */
.hero-media {
  margin: 1.25rem auto 0;
  width: min(560px, 92vw);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-media img { width: 100%; height: auto; display: block; }

/* ===== Sections ===== */
.section { padding: 4rem 0; }
.section-alt { background: var(--color-bg-alt); }
.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.section-desc { color: var(--color-text-muted); margin-bottom: 2rem; max-width: 600px; }

/* ===== Benefits ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.benefit-card {
  padding: 1.75rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.benefit-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.benefit-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; color: var(--color-primary); }
.benefit-card p { font-size: 0.95rem; color: var(--color-text-muted); margin: 0; }

/* ===== Plans grid ===== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.plan-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  color: var(--color-text);
}
.plan-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}
.plan-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.plan-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.plan-link { font-size: 0.9rem; font-weight: 600; color: var(--color-primary); }

/* ===== Quote section ===== */
.quote-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  text-align: center;
}
.hero-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  margin: 0 0 0.5rem;
  max-width: 640px;
  margin-inline: auto;
}
.quote-section cite { font-size: 0.95rem; opacity: 0.9; }

/* ===== About ===== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-content .section-title { margin-bottom: 1rem; }
.about-content p { color: var(--color-text-muted); margin-bottom: 1rem; }
.about-visual { position: relative; min-height: 280px; }
.about-visual {
  position: relative;
  min-height: 280px;
  height: 280px; /* Ensure percentage heights inside can resolve */
  overflow: hidden; /* Prevent decorative cards bleeding into adjacent sections */
}
.about-card-stack { position: relative; height: 100%; }
.about-card {
  position: absolute;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--color-primary), var(--color-primary-dark));
  box-shadow: var(--shadow-lg);
}
.about-card:first-child { width: 70%; height: 200px; top: 0; left: 0; opacity: 0.9; }
.about-card:last-child { width: 55%; height: 160px; bottom: 0; right: 0; opacity: 0.7; }
@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { min-height: 200px; height: 200px; }
}

/* ===== How we work / Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.step:hover { border-color: var(--color-primary); box-shadow: var(--shadow-sm); }
.step-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.step p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

.cta-banner {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}
.cta-banner p { margin: 0 0 1rem; font-size: 1.1rem; }
.cta-banner .btn-primary { background: #fff; color: var(--color-primary); border-color: #fff; }
.cta-banner .btn-primary:hover { background: var(--color-bg); color: var(--color-primary); border-color: #fff; }

/* ===== Why choose us ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.why-item {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.why-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.why-item h3 { font-size: 1rem; color: var(--color-text); }
@media (max-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }

.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0;
}
.stat-box {
  text-align: center;
  padding: 1.5rem 2rem;
  min-width: 160px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}
.stat-label { font-size: 0.9rem; color: var(--color-text-muted); }
.section-cta { text-align: center; }

/* ===== Smart plans ===== */
.smart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.smart-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.smart-card:hover { border-color: var(--color-primary); box-shadow: var(--shadow-sm); }
.smart-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.smart-card h3 { font-size: 1rem; text-align: center; }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin-top: 1.5rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--color-primary); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 1.25rem 1rem;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
  margin-top: 0;
}

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial-card {
  padding: 1.75rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.testimonial-text { font-style: italic; color: var(--color-text); margin-bottom: 1rem; line-height: 1.6; }
.testimonial-author { font-size: 0.9rem; font-weight: 600; color: var(--color-primary); }

/* ===== Quote form ===== */
.quote-form { background: linear-gradient(180deg, var(--color-bg) 0%, #fff 100%); }
.quote-form-inner {
  max-width: 520px;
  margin-top: 1.5rem;
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}
.form-row select {
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-text);
}
.form-row select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 79, 92, 0.15);
}
.form-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.quote-form-inner .btn { width: 100%; }

/* ===== Footer ===== */
.footer { background: var(--color-primary-dark); color: rgba(255,255,255,0.9); padding: 3rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-brand .logo { color: #fff; font-size: 1.5rem; display: inline-block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 1rem; opacity: 0.9; max-width: 320px; }
.footer-social { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-social a { color: inherit; }
.footer-social a:hover { color: var(--color-accent); }
.footer-links h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links a {
  display: block;
  padding: 0.25rem 0;
  color: inherit;
  opacity: 0.9;
}
.footer-links a:hover { color: var(--color-accent); opacity: 1; }
.footer-bottom {
  padding: 1rem 0;
  font-size: 0.9rem;
  opacity: 0.85;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: inherit; }
.footer-legal a:hover { color: var(--color-accent); }
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* ===== Internal pages: Page hero ===== */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,79,92,0.85) 0%, rgba(9,56,64,0.9) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 3rem 1rem;
}
.page-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
  color: #fff;
}
.page-hero-desc {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== Content page ===== */
.content-page { max-width: 900px; }
.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.content-text h2 { margin-bottom: 1rem; }
.content-text p { color: var(--color-text-muted); margin-bottom: 1rem; }
.content-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.content-image-wrap img { width: 100%; height: auto; display: block; }
@media (max-width: 768px) {
  .content-with-image { grid-template-columns: 1fr; }
  .content-image-wrap { order: -1; }
}

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-info h2 { margin-bottom: 0.5rem; }
.contact-info > p { color: var(--color-text-muted); margin-bottom: 1.5rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.contact-card-icon { font-size: 1.5rem; display: block; margin-bottom: 0.5rem; }
.contact-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.contact-card p { margin: 0; font-size: 0.95rem; color: var(--color-text-muted); }
.contact-card a { color: var(--color-primary); }
.contact-card a:hover { text-decoration: underline; }
.contact-note { margin-top: 1.5rem; font-size: 0.9rem; color: var(--color-text-muted); }
.contact-form-wrap h2 { margin-bottom: 1rem; }
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 79, 92, 0.15);
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ===== Product page content ===== */
.product-intro { margin-bottom: 2rem; }
.product-intro p { color: var(--color-text-muted); margin-bottom: 0.75rem; }
.product-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.product-feature {
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.product-feature h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--color-primary); }
.product-feature p { margin: 0; font-size: 0.95rem; color: var(--color-text-muted); }
.product-cta { margin-top: 2rem; }
.legal-page .container { max-width: 720px; padding: 2rem 1rem; }
.legal-page h2 { margin-top: 2rem; margin-bottom: 0.75rem; }
.legal-page p, .legal-page ul { color: var(--color-text-muted); margin-bottom: 1rem; }
.legal-page ul { padding-left: 1.5rem; list-style: disc; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow-md); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-content { padding: 1.25rem; }
.blog-card-content h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.blog-card-content h3 a { color: var(--color-text); }
.blog-card-content h3 a:hover { color: var(--color-primary); }
.blog-card-content p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }
.blog-card-meta { font-size: 0.8rem; color: var(--color-primary); margin-top: 0.5rem; }
