/*
Theme Name: Sara Holding Theme
Author: Salah
Version: 1.0
*/

:root {
  --bg: #fffdfa;
  --bg-soft: #f8f5ed;
  --card: #ffffff;
  --text: #263238;
  --muted: #5f6f7a;
  --line: #e7e1d4;
  --gold: #c7a54b;
  --gold-dark: #a9872e;
  --teal: #2d8c8c;
  --teal-soft: #ecf7f7;
  --shadow: 0 10px 30px rgba(39, 52, 67, 0.08);
  --radius: 22px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffdf8 0%, #fff 45%, #f9fafb 100%);
}

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

a {
  color: inherit;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* =========================
   HEADER / NAVIGATION
========================= */

.site-header {
  background: #f7f5ef;
  border-bottom: 1px solid #e7e2d7;
  position: relative;
  z-index: 99999;
}

.site-header .nav-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header .brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.site-header .brand-text {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  line-height: 1;
}

.site-header .site-nav {
  margin-left: auto;
  display: block;
}

.site-header .main-menu,
.site-header .main-menu ul,
.site-header .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header .main-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-header .main-menu > li {
  position: relative;
  display: block;
}

.site-header .main-menu > li > a,
.site-header .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 0;
  text-decoration: none;
  color: #111827;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  padding: 10px 0;
  cursor: pointer;
  box-shadow: none;
  font-family: inherit;
}

.site-header .main-menu > li > a:hover,
.site-header .dropdown-toggle:hover {
  color: #2f5d95;
}

.site-header .dropdown-toggle::after {
  content: "▾";
  font-size: 11px;
  margin-left: 6px;
}

.site-header .has-dropdown {
  position: relative;
}

.site-header .has-dropdown .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.10);
  display: none;
  overflow: hidden;
  z-index: 99999;
}
.has-dropdown:hover > .sub-menu {
  display: none;
}

.has-dropdown.open > .sub-menu {
  display: block;
}

.site-header .sub-menu li {
  display: block;
  width: 100%;
}

.site-header .sub-menu li a {
  display: block;
  width: 100%;
  padding: 14px 18px;
  text-decoration: none;
  color: #111827;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  background: #ffffff;
}

.site-header .sub-menu li a:hover {
  background: #f8fafc;
  color: #0b5e8e;
}

.site-header .sub-menu li a:hover {
  background: #f8fafc;
  color: #2f5d95;
}

.site-header .menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid #d8dee7;
  background: #ffffff;
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.site-header .menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111827;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  padding: 40px 0 70px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0d5c8d;
  margin-bottom: 16px;
  padding: 10px 16px;
  background: #eef5f7;
  border: 1px solid #d8e4ea;
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.02;
  margin: 0 0 20px;
  color: #0f1720;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s ease;
}

.btn-primary {
  background: #0d5c8d;
  color: #fff;
}

.btn-primary:hover {
  background: #09486d;
}

.btn-secondary {
  background: #25D366;
  color: #fff;
}

.btn-secondary:hover {
  background: #1fb85a;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-point {
  background: #fff;
  border: 1px solid #e7edf3;
  border-radius: 14px;
  padding: 16px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  box-shadow: 0 10px 24px rgba(15, 23, 32, 0.04);
}

/* ===== TRUST ===== */
.trust-bar {
  padding: 26px 0;
  background: #f3f7fa;
  border-top: 1px solid #e4ebf1;
  border-bottom: 1px solid #e4ebf1;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-item {
  background: #fff;
  padding: 20px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 32, 0.05);
}

.trust-item strong {
  display: block;
  font-size: 16px;
  color: #0f1720;
  margin-bottom: 8px;
}

.trust-item span {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
}

/* ===== SECTIONS ===== */
.core-solutions,
.how-we-work,
.final-cta {
  padding: 84px 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 0 0 16px;
  color: #0f1720;
}

.section-head p {
  font-size: 17px;
  line-height: 1.75;
  color: #5b6b7c;
}

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

.solution-card {
  background: #fff;
  border: 1px solid #e7edf3;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(15, 23, 32, 0.05);
}

.solution-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: #0f1720;
}

.solution-card p {
  margin: 0 0 18px;
  color: #5b6b7c;
  line-height: 1.75;
}

.text-link {
  color: #0d5c8d;
  font-weight: 700;
  text-decoration: none;
}

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

.step-card {
  background: #fff;
  border: 1px solid #e7edf3;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 12px 30px rgba(15, 23, 32, 0.04);
}

.step-no {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #0d5c8d;
  margin-bottom: 14px;
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: #0f1720;
}

.step-card p {
  margin: 0;
  line-height: 1.75;
  color: #5b6b7c;
}

.final-cta-box {
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0f1720 0%, #163047 100%);
  color: #fff;
  border-radius: 28px;
  padding: 56px 36px;
  text-align: center;
  box-shadow: 0 26px 60px rgba(15, 23, 32, 0.18);
}

.final-cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 0 0 16px;
  color: #fff;
}

.final-cta-box p {
  max-width: 760px;
  margin: 0 auto 26px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,.84);
}

.center-buttons {
  justify-content: center;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0f1720;
  color: #fff;
  padding-top: 50px;
}

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

.site-footer a {
  color: #dbeafe;
  text-decoration: none;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 30px;
  padding: 18px 0;
  text-align: center;
}

/* ===== MOBILE ACTION BAR ===== */
.mobile-action-bar {
  display: none;
}

/* =========================
   ACTIVATED CARBON PAGE
========================= */

.ac-hero {
  padding: 90px 0 70px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef5ef 100%);
}

.ac-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.ac-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f6b45;
  margin-bottom: 14px;
}

.ac-kicker-light {
  color: #bcdcc4;
}

.ac-hero-copy h1 {
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  line-height: 1.02;
  margin: 0 0 18px;
  color: #0f172a;
}

.ac-lead {
  font-size: 18px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 28px;
  max-width: 760px;
}

.ac-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.ac-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.25s ease;
}

.ac-btn-primary {
  background: #2f6b45;
  color: #ffffff;
}

.ac-btn-primary:hover {
  background: #244f34;
  transform: translateY(-2px);
}

.ac-btn-secondary {
  background: #ffffff;
  color: #16324f;
  border: 1px solid #d6dde7;
}

.ac-btn-secondary:hover {
  border-color: #16324f;
  transform: translateY(-2px);
}

.ac-hero-image img {
  width: 100%;
  max-width: 560px;
  display: block;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.ac-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.ac-mini-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.ac-mini-box strong {
  display: block;
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 6px;
}

.ac-mini-box span {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #64748b;
}

.ac-section {
  padding: 80px 0;
}

.ac-section-head {
  max-width: 840px;
  margin: 0 auto 40px;
  text-align: center;
}

.ac-section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 16px;
  color: #0f172a;
}

.ac-section-head p {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
}

.ac-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ac-feature-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
}

.ac-feature-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: #0f172a;
}

.ac-feature-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.8;
  font-size: 16px;
}

.ac-gallery-wrap {
  background: #f8fafc;
}

.ac-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ac-gallery-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

.ac-gallery-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
}

.ac-dark-band {
  background: #0f172a;
  color: #ffffff;
}

.ac-dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: start;
}

.ac-dark-band h2 {
  color: #ffffff;
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.ac-dark-band p {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
}

.ac-app-list {
  display: grid;
  gap: 14px;
}

.ac-app-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 18px 20px;
  border-radius: 16px;
  color: #f8fafc;
  font-weight: 600;
}

.ac-brand-box {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 35px;
  align-items: center;
  background: linear-gradient(135deg, #f8fafc 0%, #eef5ef 100%);
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  padding: 36px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
}

.ac-brand-logo {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e5e7eb;
}

.ac-brand-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.ac-brand-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  color: #0f172a;
}

.ac-brand-copy p {
  margin: 0 0 22px;
  color: #64748b;
  font-size: 17px;
  line-height: 1.8;
}

/* =========================
   CRUSHERS
========================= */

.crusher-image {
  text-align: center;
  margin: 40px 0;
}

.crusher-image img {
  max-width: 700px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.crusher-title {
  text-align: center;
  margin: 50px 0 20px;
  font-size: 28px;
  font-weight: 600;
  color: #263238;
}

.crusher-video {
  text-align: center;
  margin-bottom: 50px;
}

.crusher-video video {
  width: 100%;
  max-width: 850px;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.crusher-hero {
  padding: 72px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.crusher-hero-grid,
.crusher-info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.crusher-hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04;
  margin: 0 0 18px;
}

.crusher-hero-image img,
.crusher-side-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  background: #fff;
}

.crusher-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.crusher-stats .stat {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
}

.crusher-stats .stat strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  color: #0f172a;
}

.crusher-stats .stat span {
  display: block;
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.section-alt {
  background: #f8fafc;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 24px;
}

.crusher-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.crusher-table th,
.crusher-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  font-size: 15px;
}

.crusher-table th {
  background: #0f172a;
  color: #fff;
  font-weight: 600;
}

.crusher-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.crusher-gallery-card {
  border-radius: 14px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
}

.crusher-gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.crusher-gallery-card-wide {
  grid-column: 1 / -1;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {
  .ac-hero-grid,
  .ac-features,
  .ac-dark-grid,
  .ac-brand-box {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  .site-header .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-header .nav-wrap {
    flex-wrap: wrap;
    gap: 18px;
    padding: 14px 16px;
  }

  .site-header .brand img {
    width: 52px;
    height: 52px;
  }

  .site-header .brand-text {
    font-size: 18px;
  }

  .site-header .site-nav {
    width: 100%;
    display: none;
    margin-left: 0;
  }

  .site-header .site-nav.active {
    display: block;
  }

  .site-header .main-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin-top: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
  }

  .site-header .main-menu > li {
    width: 100%;
  }

  .site-header .main-menu > li > a,
  .site-header .dropdown-toggle {
    display: block;
    width: 100%;
    text-align: left;
    padding: 15px 18px;
  }

  .site-header .has-dropdown .sub-menu {
    position: static;
    min-width: 100%;
    border: 0;
    border-top: 1px solid #eef2f7;
    border-radius: 0;
    box-shadow: none;
    display: none;
  }

  .site-header .has-dropdown.open .sub-menu {
    display: block;
  }

  .site-header .sub-menu li a {
    padding: 12px 28px;
    background: #f9fafb;
  }

  .hero {
    padding: 0 0 28px;
    background: #ffffff;
  }

  .hero-grid,
  .ac-hero-grid,
  .ac-mini-grid,
  .ac-features,
  .ac-gallery-grid,
  .ac-dark-grid,
  .ac-brand-box,
  .crusher-hero-grid,
  .crusher-info-grid,
  .crusher-gallery,
  .crusher-stats,
  .trust-grid,
  .solutions-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .hero-image {
    order: 1;
    padding-top: 0;
    width: 100%;
    background: #fff;
  }

  .hero-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    display: block;
  }

  .hero-copy {
    order: 2;
    text-align: left;
    padding: 0 14px;
    max-width: 100%;
  }

  .eyebrow {
    font-size: 11px;
    padding: 6px 10px;
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.05;
    margin: 0 0 14px;
  }

  .hero-lead {
    font-size: 17px;
    line-height: 1.65;
    margin: 0 0 18px;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
    padding: 0 12px;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-point {
    font-size: 14px;
    padding: 10px 12px;
  }

  .core-solutions,
  .how-we-work,
  .final-cta,
  .ac-hero,
  .ac-section,
  .crusher-hero {
    padding: 48px 0;
  }

  .final-cta-box {
    border-radius: 20px;
    padding: 34px 18px;
  }

  .ac-gallery-card img {
    height: 240px;
  }

  .crusher-gallery-card img {
    height: auto;
  }

  .crusher-hero-copy h1 {
    font-size: 2.2rem;
  }

  .mobile-action-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    box-shadow: 0 -6px 16px rgba(0,0,0,0.12);
  }

  .mobile-action {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
  }

  .email-action {
    background: #2563eb;
  }

  .quote-action {
    background: #b91c1c;
  }

  .whatsapp-action {
    background: #16a34a;
  }

  body {
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}
.page-content {
  padding: 80px 0;
  background: #ffffff;
}

.default-page {
  max-width: 900px;
  margin: 0 auto;
}

.page-header {
  margin-bottom: 28px;
}

.page-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin: 0;
  color: #0f172a;
}

.page-body {
  font-size: 18px;
  line-height: 1.9;
  color: #475569;
}

.page-body h2,
.page-body h3 {
  color: #0f172a;
  margin-top: 32px;
}

.page-body p {
  margin-bottom: 20px;
}

.page-body ul,
.page-body ol {
  margin-bottom: 20px;
  padding-left: 22px;
}
.trust-link {
  display: block;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border-color: #d8e2ea;
}

.trust-link strong,
.trust-link span {
  text-decoration: none;
}
.trust-link {
  display: block;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.trust-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border-color: #d8e2ea;
}

.trust-link strong,
.trust-link span {
  text-decoration: none;
}
/* =========================
   HEADER / NAVIGATION
========================= */
.site-header {
  background: #f3f1ec;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

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

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.brand-text {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu li {
  list-style: none;
  position: relative;
}

.main-menu a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 600;
  font-size: 15px;
  transition: 0.2s ease;
}

.main-menu a:hover {
  color: #0b5e8e;
}

/* desktop dropdown */
.main-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 10px 0;
  margin: 12px 0 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  z-index: 999;
}

.main-menu li:hover > .sub-menu {
  display: block;
}

.main-menu .sub-menu li {
  margin: 0;
}

.main-menu .sub-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
}

/* hamburger button */
.menu-toggle {
  display: none;
  width: 56px;
  height: 56px;
  border: 1px solid #d7d7d7;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: #0f172a;
  border-radius: 3px;
  transition: 0.25s ease;
}

/* mobile */
@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
    padding: 14px;
  }

  .site-nav.is-open {
    display: block;
  }

  .main-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-menu li {
    width: 100%;
    border-bottom: 1px solid #ececec;
  }

  .main-menu li:last-child {
    border-bottom: none;
  }

  .main-menu a {
    display: block;
    padding: 14px 10px;
    width: 100%;
    font-size: 16px;
  }

  .main-menu .sub-menu {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    margin: 0;
    padding: 0 0 8px 14px;
    background: transparent;
    border-radius: 0;
  }

  .main-menu .sub-menu a {
    font-size: 14px;
    padding: 10px 10px;
  }
}
