/* =========================================================
   Edumart Global Horizon — Global Stylesheet
   ========================================================= */

:root {
  --color-primary: #556b2f;
  --color-primary-dark: #38481f;
  --color-primary-light: #eef0e1;
  --color-accent: #16a34a;
  --color-accent-dark: #0f7d38;
  --color-gold: #f59e0b;
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-text: #1e293b;
  --color-muted: #64748b;
  --color-border: #e2e8f0;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.14);

  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  --container-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1, h2, h3, h4 {
  line-height: 1.2;
  margin: 0 0 0.6em 0;
  font-weight: 700;
  color: var(--color-primary-dark);
}

p {
  margin: 0 0 1em 0;
  color: var(--color-muted);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 56px 0;
}

.section--alt {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  background: rgba(22, 163, 74, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

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

.section-head h2 {
  font-size: clamp(28px, 3.5vw, 38px);
}

.section-head p {
  font-size: 17px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

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

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-gold {
  background: var(--color-gold);
  color: #1e293b;
  box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
  background: #d98c07;
  color: #fff;
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--color-primary-dark);
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.brand-text .brand-sub {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--color-accent-dark);
  border-color: var(--color-accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.flag-icon {
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-primary-dark);
  border-radius: 2px;
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.35), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #fff;
  font-size: clamp(32px, 4.5vw, 50px);
  letter-spacing: -0.01em;
}

.hero p.lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-size: 28px;
  color: #fff;
}

.hero-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.hero-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px;
  color: var(--color-text);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.hero-card-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.hero-mini-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 14px;
}

.hero-mini-row:last-child {
  border-bottom: none;
}

.pill {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.pill--green {
  background: rgba(22, 163, 74, 0.12);
  color: var(--color-accent-dark);
}

.pill--gold {
  background: rgba(245, 158, 11, 0.15);
  color: #92610a;
}

/* Breadcrumb / page header for inner pages */

.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto;
  font-size: 17px;
}

.breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #fff;
  font-weight: 600;
}

/* ---------- Logos strip ---------- */

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
  opacity: 0.85;
}

.logo-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: var(--color-muted);
  background: var(--color-surface);
}

/* ---------- Cards / grids ---------- */

.grid {
  display: grid;
  gap: 28px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--color-primary);
}

.icon-badge svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.card p {
  font-size: 15px;
  margin-bottom: 0;
}

/* Feature list with check icons */

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--color-text);
}

.check-list svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  margin-top: 2px;
}

/* ---------- Split sections ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-reverse .split-media {
  order: 2;
}

.split-media {
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* ---------- Stats band ---------- */

.stats-band {
  background: var(--color-primary-dark);
  color: #fff;
  padding: 56px 0;
}

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

.stats-grid strong {
  display: block;
  font-size: 34px;
  color: var(--color-gold);
}

.stats-grid span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Pricing ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.price-card--featured {
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(1.02);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.price-card .price-tagline {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 20px;
}

.price-amount {
  font-size: 34px;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
}

.price-amount span {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-muted);
}

.price-term {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 20px;
}

.price-card .check-list {
  margin: 24px 0;
  flex-grow: 1;
}

.price-limits {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
  margin-bottom: 20px;
}

.price-limits div {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 4px 0;
}

.price-limits span:first-child {
  color: var(--color-muted);
}

.price-limits span:last-child {
  font-weight: 700;
  color: var(--color-primary-dark);
}

.price-card--enterprise h3 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-card--enterprise h3 svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
}

/* ---------- Testimonials ---------- */

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.testimonial-card p.quote {
  font-size: 15.5px;
  color: var(--color-text);
  font-style: italic;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.testimonial-person strong {
  display: block;
  font-size: 14px;
  color: var(--color-primary-dark);
}

.testimonial-person span {
  font-size: 13px;
  color: var(--color-muted);
}

/* ---------- FAQ ---------- */

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-primary-dark);
  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: 22px;
  color: var(--color-accent);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  margin-top: 12px;
  font-size: 15px;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(120deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 56px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 28px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* ---------- Timeline (About) ---------- */

.timeline {
  position: relative;
  padding-left: 32px;
  border-left: 3px solid var(--color-border);
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -41px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--color-accent);
}

.timeline-item h4 {
  margin-bottom: 4px;
  font-size: 16px;
}

.timeline-item span.year {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent-dark);
}

/* ---------- Values grid ---------- */

.value-card {
  text-align: center;
  padding: 24px;
}

/* ---------- Team ---------- */

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

.team-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 16px auto;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 24px;
}

.team-card h3 {
  margin-bottom: 2px;
  font-size: 16px;
}

.team-card span {
  font-size: 13px;
  color: var(--color-accent-dark);
  font-weight: 700;
}

/* ---------- Dashboard mockup ---------- */

.dash-mock {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.dash-mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: 12px;
}

.dash-mock-topbar strong {
  font-size: 18px;
  color: var(--color-primary-dark);
}

.dash-mock-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-mock-search {
  display: none;
  font-size: 13px;
  color: var(--color-muted);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 8px 16px;
}

.dash-mock-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
}

.dash-mock-icon svg {
  width: 16px;
  height: 16px;
}

.dash-mock-user {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.dash-mock-user .avatar {
  width: 34px;
  height: 34px;
  font-size: 13px;
}

.dash-mock-user span.role {
  display: block;
  font-size: 11px;
  color: var(--color-muted);
  font-weight: 400;
}

.dash-mock-stats {
  padding: 24px;
  gap: 20px;
}

.dash-mock-stat {
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.dash-mock-stat:nth-child(2) { border-top-color: var(--color-gold); }
.dash-mock-stat:nth-child(3) { border-top-color: var(--color-gold); }
.dash-mock-stat:nth-child(4) { border-top-color: #dc2626; }

.dash-mock-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.dash-mock-stat:nth-child(2) .dash-mock-stat-icon,
.dash-mock-stat:nth-child(3) .dash-mock-stat-icon {
  background: rgba(245, 158, 11, 0.14);
  color: #92610a;
}

.dash-mock-stat:nth-child(4) .dash-mock-stat-icon {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.dash-mock-stat-icon svg {
  width: 18px;
  height: 18px;
}

.dash-mock-stat-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.dash-mock-stat strong {
  font-size: 26px;
  color: var(--color-primary-dark);
}

.dash-mock-panels {
  padding: 0 24px 24px;
  gap: 20px;
}

.dash-mock-panel {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.dash-mock-panel h4 {
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--color-primary-dark);
}

.dash-ring {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-ring::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dash-ring-color, var(--color-accent));
  border: 2px solid #fff;
}

.dash-ring-inner {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dash-ring-inner strong {
  font-size: 20px;
  color: var(--color-primary-dark);
}

.dash-ring-inner span {
  font-size: 11px;
  color: var(--color-muted);
}

.dash-mock-bar-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 8px 0;
  border-top: 1px solid var(--color-border);
}

.dash-mock-quick .btn {
  width: 100%;
  margin-bottom: 10px;
  justify-content: flex-start;
  padding-left: 18px;
}

.dash-mock-overview {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.dash-mock-overview-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.dash-mock-progress-row {
  margin-bottom: 12px;
}

.dash-mock-progress-row .row-top {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
}

.dash-mock-progress-track {
  height: 6px;
  background: var(--color-border);
  border-radius: 999px;
  overflow: hidden;
}

.dash-mock-progress-fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: 999px;
}

@media (min-width: 561px) {
  .dash-mock-search {
    display: block;
  }
}

/* ---------- School directory ---------- */

.filter-bar {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--color-text);
  background: #fff;
}

.filter-bar input:focus,
.filter-bar select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.schools-count {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-muted);
  margin-bottom: 20px;
}

.school-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.school-meta {
  font-size: 13.5px;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.schools-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--color-muted);
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-item .icon-badge {
  margin-bottom: 0;
}

.contact-info-item h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  margin-bottom: 0;
}

.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

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

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--color-text);
  background: #fff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.form-note {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 8px;
}

.form-success {
  display: none;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.3);
  color: var(--color-accent-dark);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.form-success.show {
  display: block;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-top: 24px;
  height: 220px;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding: 20px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .brand {
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  max-width: 320px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.social-row a:hover {
  background: var(--color-accent);
}

.social-row svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a:hover {
  color: #fff;
}

/* ---------- Utilities ---------- */

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

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-reverse .split-media {
    order: 0;
  }

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

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

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

  .price-card--featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .nav-links,
  .nav-cta .btn-outline {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }

  .grid-3,
  .grid-4,
  .grid-2,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }

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

  .filter-bar {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 64px 0 80px;
  }
}
