/* Elite Medical Distributions — Forest Sage brand
   #DAD7CD Timberwolf | #A3B18A Sage | #5C7650 Reseda | #3A5A40 Hunter | #344E41 Brunswick
*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap");

:root {
  --timberwolf: #dad7cd;
  --sage: #a3b18a;
  --reseda: #5c7650;
  --hunter: #3a5a40;
  --brunswick: #344e41;

  --text: #243029;
  --text-muted: #5c675f;
  --white: #ffffff;
  --off-white: #f3f2ed;
  --surface: #fafaf7;
  --border: #d9d5cb;
  --shadow: 0 4px 6px -1px rgba(52, 78, 65, 0.05), 0 12px 28px -8px rgba(52, 78, 65, 0.12);
  --shadow-lg: 0 20px 50px -12px rgba(52, 78, 65, 0.2);
  --radius: 14px;
  --radius-sm: 10px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --max: 1120px;
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--reseda);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Top bar —— */
.topbar {
  background: var(--brunswick);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  padding: 0.55rem 0;
  letter-spacing: 0.01em;
}

.topbar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 1.5rem;
}

.topbar a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.topbar a:hover {
  color: var(--timberwolf);
}

.topbar-tagline {
  font-weight: 500;
  opacity: 0.95;
}

.topbar-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
}

.topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* —— Header —— */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 213, 203, 0.85);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.5rem 0;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 58px;
  width: auto;
  max-width: min(260px, 48vw);
  object-fit: contain;
  border-radius: 10px;
}

.logo-img--footer {
  height: 68px;
  max-width: 240px;
  background: var(--sage);
  border-radius: 12px;
  padding: 0.4rem 0.65rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  color: var(--brunswick);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  border-radius: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 0.35rem;
}

.nav a:not(.btn) {
  color: var(--brunswick);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
}

.nav a:not(.btn):hover {
  background: var(--teal-light, #e8eee3);
  color: var(--hunter);
}

.nav a.active:not(.btn) {
  background: #e8eee3;
  color: var(--hunter);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.94rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: inherit;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--reseda);
  color: var(--white);
  border-color: var(--reseda);
  box-shadow: 0 4px 14px rgba(92, 118, 80, 0.28);
}

.btn-primary:hover {
  background: var(--hunter);
  border-color: var(--hunter);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(58, 90, 64, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--brunswick);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--brunswick);
  border-color: rgba(52, 78, 65, 0.35);
}

.btn-outline-dark:hover {
  background: var(--brunswick);
  color: var(--white);
  border-color: var(--brunswick);
}

.btn-lg {
  padding: 0.95rem 1.75rem;
  font-size: 1rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.55rem;
}

.nav-actions .btn {
  padding: 0.58rem 1.05rem;
  font-size: 0.88rem;
}

.btn-login {
  background: transparent;
  color: var(--brunswick);
  border-color: rgba(52, 78, 65, 0.3);
}

.btn-login:hover {
  background: var(--brunswick);
  color: var(--white);
  border-color: var(--brunswick);
}

.btn-register {
  background: var(--reseda);
  color: var(--white);
  border-color: var(--reseda);
  box-shadow: 0 3px 12px rgba(92, 118, 80, 0.25);
}

.btn-register:hover {
  background: var(--hunter);
  border-color: var(--hunter);
  color: var(--white);
}

/* —— Hero —— */
.hero {
  position: relative;
  color: var(--white);
  padding: 5.5rem 0 6rem;
  overflow: hidden;
  background: linear-gradient(145deg, #2a3f35 0%, #344e41 38%, #3a5a40 68%, #5c7650 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
}

.hero-bg .blob-1 {
  width: 420px;
  height: 420px;
  background: #a3b18a;
  top: -120px;
  right: -80px;
}

.hero-bg .blob-2 {
  width: 320px;
  height: 320px;
  background: #5c7650;
  bottom: -100px;
  left: 10%;
  opacity: 0.4;
}

.hero-bg .grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 40% 40%, black, transparent);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(218, 215, 205, 0.14);
  border: 1px solid rgba(218, 215, 205, 0.28);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
  color: var(--timberwolf);
}

.hero-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 3px rgba(163, 177, 138, 0.35);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.6vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

.hero-lead {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  opacity: 0.92;
  margin-bottom: 2rem;
  max-width: 32em;
  font-weight: 400;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1.75rem 1.6rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-card h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  margin-bottom: 1.15rem;
}

.hero-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0.95;
}

.hero-card li svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--sage);
}

/* —— Page hero —— */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #2a3f35 0%, #344e41 50%, #5c7650 100%);
  color: var(--white);
  padding: 3.75rem 0 3.9rem;
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(163, 177, 138, 0.2);
  filter: blur(30px);
  top: -120px;
  right: 10%;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.page-hero p {
  opacity: 0.9;
  font-size: 1.12rem;
  max-width: 34em;
  margin-inline: auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  opacity: 0.75;
  margin-bottom: 0.85rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a:hover {
  color: white;
}

/* —— Sections —— */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--off-white);
}

.section-soft {
  background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
}

.section-band {
  background: linear-gradient(135deg, var(--hunter) 0%, var(--reseda) 55%, #6d8a60 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(218, 215, 205, 0.18), transparent 45%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header .eyebrow {
  display: inline-block;
  color: var(--reseda);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  color: var(--brunswick);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
  line-height: 1.2;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.08rem;
}

.section-band .section-header {
  position: relative;
  z-index: 1;
}

.section-band .section-header h2,
.section-band .section-header p,
.section-band .section-header .eyebrow {
  color: var(--white);
}

.section-band .section-header p {
  opacity: 0.92;
}

.section-band .section-header .eyebrow {
  opacity: 0.85;
  letter-spacing: 0.1em;
}

/* —— Feature cards —— */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(217, 213, 203, 0.9);
  border-radius: var(--radius);
  padding: 1.85rem 1.55rem 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--sage), var(--reseda));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(145deg, #e8eee3, #dfe8d8);
  color: var(--hunter);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-size: 1.12rem;
  color: var(--brunswick);
  margin-bottom: 0.7rem;
  font-weight: 700;
  line-height: 1.3;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* —— Stats —— */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  backdrop-filter: blur(6px);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.stat span {
  opacity: 0.9;
  font-size: 0.95rem;
  font-weight: 500;
}

/* —— Trust —— */
.trust-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.75rem;
  align-items: center;
}

.trust-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  color: var(--brunswick);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.trust-grid > div > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.98rem;
}

.check-list li .tick {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e8eee3;
  color: var(--reseda);
  display: grid;
  place-items: center;
  margin-top: 0.05rem;
}

.check-list li .tick svg {
  width: 14px;
  height: 14px;
}

.trust-panel {
  background: linear-gradient(160deg, #2f453a 0%, #344e41 55%, #3a5a40 100%);
  color: var(--white);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.trust-panel::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(163, 177, 138, 0.18);
  top: -50px;
  right: -40px;
}

.trust-panel > * {
  position: relative;
  z-index: 1;
}

.trust-panel h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.trust-panel p {
  opacity: 0.9;
  margin-bottom: 1.4rem;
  font-size: 0.98rem;
}

.trust-panel .phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.trust-panel .phone:hover {
  color: var(--timberwolf);
}

/* —— Why choose us —— */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.65rem 1.45rem 1.55rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.why-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--reseda), var(--hunter));
  color: white;
  font-weight: 750;
  font-size: 0.88rem;
  margin-bottom: 1.05rem;
  letter-spacing: 0.02em;
}

.why-card h3 {
  font-size: 1.08rem;
  color: var(--brunswick);
  margin-bottom: 0.55rem;
  font-weight: 700;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* —— About —— */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  border-radius: 22px;
  min-height: 360px;
  background:
    linear-gradient(155deg, rgba(52, 78, 65, 0.2), rgba(52, 78, 65, 0.55)),
    linear-gradient(145deg, #5c7650, #344e41 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.1rem;
  color: white;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(163, 177, 138, 0.35);
  top: -40px;
  right: -30px;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  pointer-events: none;
}

.about-visual strong {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.4rem;
}

.about-visual span {
  position: relative;
  z-index: 1;
  opacity: 0.92;
  font-size: 0.98rem;
  max-width: 18em;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  color: var(--brunswick);
  font-weight: 700;
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}

.about-copy .sub {
  color: var(--reseda);
  font-weight: 650;
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}

.about-copy p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1.75rem;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
  border-color: var(--sage);
  transform: translateX(3px);
}

.contact-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(145deg, #e8eee3, #dfe8d8);
  color: var(--hunter);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-card .icon svg {
  width: 22px;
  height: 22px;
}

.contact-card h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.contact-card p,
.contact-card a {
  color: var(--brunswick);
  font-weight: 700;
  font-size: 1.02rem;
}

.contact-card a:hover {
  color: var(--reseda);
}

.contact-card .hint {
  font-weight: 400;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.1rem;
  box-shadow: var(--shadow-lg);
}

.form-card h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--brunswick);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.form-card > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 650;
  color: var(--brunswick);
  margin-bottom: 0.4rem;
}

.form-group label .req {
  color: #b24a3c;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.78rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 11px;
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--reseda);
  box-shadow: 0 0 0 4px rgba(92, 118, 80, 0.14);
}

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

.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  display: none;
}

.form-status.success {
  display: block;
  background: #e8f0e6;
  color: #2d4a30;
  border: 1px solid #b8d0b0;
}

.form-status.error {
  display: block;
  background: #fdf0ef;
  border: 1px solid #f0c4c0;
  color: #a33;
}

/* —— CTA band —— */
.cta-band {
  background: var(--brunswick);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(92, 118, 80, 0.25);
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.cta-band p {
  opacity: 0.88;
  margin-bottom: 1.15rem;
  font-size: 1.05rem;
}

.cta-band .phone-lg {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  padding: 0.25rem 0.5rem;
  border-bottom: 2px solid rgba(163, 177, 138, 0.5);
}

.cta-band .phone-lg:hover {
  color: var(--timberwolf);
  border-color: var(--sage);
}

/* —— Footer —— */
.site-footer {
  background: #1e2e27;
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 2.25rem;
  margin-bottom: 2.75rem;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 30em;
  line-height: 1.65;
  margin-top: 1.1rem;
  opacity: 0.88;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
  font-weight: 700;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.86rem;
  opacity: 0.8;
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 420px;
  }

  .features,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .about-intro,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.15rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 0.25rem;
  }

  .nav.open {
    display: flex;
  }

  .nav a:not(.btn) {
    padding: 0.8rem 0.85rem;
  }

  .nav-actions {
    flex-direction: column;
    margin: 0.5rem 0 0;
    width: 100%;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .site-header {
    position: relative;
  }

  .site-header.is-sticky {
    position: sticky;
  }

  .logo-img {
    height: 50px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 3.75rem 0 4rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .form-card {
    padding: 1.4rem;
  }

  .topbar-tagline {
    display: none;
  }

  .container {
    width: min(100% - 1.5rem, var(--max));
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .feature-card,
  .why-card,
  .btn,
  .contact-card {
    transition: none;
  }
}
