:root {
  --primary: #ff5a2c;
  --primary-dark: #e14a20;
  --secondary: #4caf50;
  --footer: #6bbf59;
  --bg-light: #eaf7e6;
  --bg-cream: #fdf6ed;
  --bg-soft: #f7f7f5;
  --text-dark: #2c2c2c;
  --text-mid: #667085;
  --border: #e8e8e8;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.muted { color: var(--text-mid); }
.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.page-hero {
  background: linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
  padding: 72px 0 56px;
}
.page-hero h1,
.hero-copy h1,
h1,h2,h3,h4 { line-height: 1.1; margin: 0 0 16px; }
h1 { font-size: clamp(2.4rem, 4vw, 4rem); }
h2 { font-size: clamp(2rem, 3.3vw, 3.3rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 16px; }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}
.brand-mark {
  width: 85px;
  height: 85px;
  /* border-radius: 50%; */
  overflow: hidden;
  flex-shrink: 0;
  margin-right: -12px;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-text { min-width: 0; }
.brand-title {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1;
  font-family: 'Lobster', cursive;
}
.brand-title .c { color: var(--primary); }
.brand-title .group { color: var(--footer); letter-spacing: .1em; font-size: 2.7rem; }
.brand-sub {
  /* text-transform: uppercase; */
  letter-spacing: .16em;
  font-size: .75rem;
  color: var(--secondary);
  white-space: nowrap;
  font-family: 'Lobster', cursive;
}
.brand-sub-amp {
  /* text-transform: uppercase; */
  letter-spacing: .16em;
  font-size: .75rem;
  color: var(--primary);
  white-space: nowrap;
  font-family: 'Lobster', cursive;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-weight: 600;
  font-size: .98rem;
  color: var(--text-dark);
  position: relative;
}
.nav-links a.active,
.nav-links a:hover { color: var(--primary); }
.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: .25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 90, 44, .24);
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary {
  border-color: var(--secondary);
  color: var(--secondary);
  background: transparent;
}
.btn-secondary:hover {
  background: var(--secondary);
  color: #fff;
}
.btn-light {
  background: #fff;
  color: var(--primary);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  border-radius: 10px;
}
.mobile-menu {
  display: none;
  padding: 0 0 18px;
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  border-top: 1px solid rgba(0,0,0,.06);
}

.hero {
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff4ef;
  color: var(--primary);
  font-size: .9rem;
  font-weight: 700;
}
.hero-copy h1 { max-width: 720px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 20px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f7f7f7;
  color: var(--text-mid);
  font-size: .92rem;
  font-weight: 600;
}
.hero-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  background: #ececec;
}
.hero-card .name {
  margin-top: 16px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}
.hero-card .role { color: var(--text-mid); }

.bg-light { background: var(--bg-light); }
.bg-cream { background: var(--bg-cream); }
.bg-soft { background: var(--bg-soft); }
.text-center { text-align: center; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0,1fr)); }
.card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.card:hover { transform: translateY(-4px); transition: .22s ease; }
.icon-badge {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #e8f5e1;
  color: var(--secondary);
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.link-arrow {
  font-weight: 700;
  color: var(--secondary);
}
.link-arrow:hover { color: var(--primary); }
.check-list,
.bullet-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li,
.bullet-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-weight: 700;
}
.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--primary);
  font-size: 1.2rem;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.highlight-box {
  background: #fff;
  border-left: 5px solid var(--primary);
  padding: 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.cta-band {
  background: var(--bg-light);
  text-align: center;
}
.cta-panel {
  max-width: 850px;
  margin: 0 auto;
}
.small-note {
  font-size: .92rem;
  color: var(--text-mid);
}
.callout-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px;
}
.callout-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.circle-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  flex: 0 0 56px;
}
.circle-icon.primary { background: var(--primary); }
.circle-icon.secondary { background: var(--secondary); }
.circle-icon.accent { background: var(--primary-dark); }

.faq details {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 14px;
  padding: 18px 20px;
}
.faq details + details { margin-top: 14px; }
.faq summary {
  cursor: pointer;
  font-weight: 700;
}
.faq p { margin-top: 12px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 36px;
}
.contact-card,
.form-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.form-grid {
  display: grid;
  gap: 16px;
}
label {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 8px;
}
input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
.note-box {
  padding: 18px 20px;
  background: #f8f8f8;
  border-radius: 14px;
  color: var(--text-mid);
}

.footer {
  background: var(--footer);
  color: #f3fff1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr .9fr;
  gap: 32px;
}
.footer .brand-sub,
.footer .muted,
.footer a { color: #fff; }
.footer .brand-title .group,
.footer .brand-sub {
  color: #fff;
}
.footer .brand-sub-amp {
  color: var(--primary);
}
.footer h4 {
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 18px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 16px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.2);
  margin-top: 36px;
  padding-top: 18px;
  text-align: center;
  font-size: .86rem;
}

.socials {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.222);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #e14a20; /* your primary color */
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill:  rgba(255, 255, 255, 0);;
  stroke: white;
}
.hero, .section, .section-sm, .page-hero { scroll-margin-top: 90px; }

@media (max-width: 1100px) {
  .nav-links, .nav-actions .btn-primary { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .mobile-menu.open { display: block; }
  .hero-grid,
  .split,
  .contact-grid,
  .footer-grid,
  .callout-grid,
  .grid-5,
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .hero,
  .section,
  .section-sm,
  .page-hero { padding: 56px 0; }
  .navbar { min-height: 72px; }
  .brand-title { font-size: 1.4rem; }
  .brand-title .group { font-size: 1.3rem; }
  .brand-sub { white-space: normal; }
  .hero-grid,
  .split,
  .contact-grid,
  .footer-grid,
  .callout-grid,
  .grid-5,
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .container { width: min(var(--container), calc(100% - 1.25rem)); }
}
