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

:root {
  --green-dark:   #152e18;
  --green-mid:    #1e5c27;
  --green-bright: #2d7a38;
  --green-light:  #e6f4e8;
  --green-accent: #3d9e47;
  --sky:          #7ec8e3;
  --sky-dark:     #3a9abf;
  --gold:         #c8f040;
  --white:        #ffffff;
  --off-white:    #f3f8f3;
  --text-dark:    #0d1f10;
  --text-mid:     #244728;
  --text-muted:   #4a7050;
  --border:       rgba(30,92,39,0.14);
  --shadow:       0 4px 28px rgba(21,46,24,0.14);
}

html { scroll-behavior: smooth; }
body { font-family: 'Source Sans 3', sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.6; font-size: 16px; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 5px 13px; border-radius: 100px; background: var(--green-light); color: var(--green-mid); border: 1px solid rgba(45,122,56,0.28); }

.btn { display: inline-block; font-family: 'Source Sans 3', sans-serif; font-size: 15px; font-weight: 600; padding: 13px 28px; border-radius: 8px; border: none; cursor: pointer; text-decoration: none; transition: all .2s ease; }
.btn-primary { background: var(--green-mid); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--green-dark); }
.btn-white:hover { background: var(--green-light); }
.btn-outline-white { background: transparent; color: rgba(255,255,255,.92); border: 2px solid rgba(255,255,255,.45); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--green-dark);
  border-bottom: 2px solid rgba(126,200,227,.2);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 24px; max-width: 1100px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  border: 2.5px solid rgba(255,255,255,.3);
  box-shadow: 0 0 14px rgba(126,200,227,.3);
}
.nav-logo-text { font-family: 'Oswald', sans-serif; font-size: 21px; font-weight: 700; color: var(--white); letter-spacing: .05em; }
.nav-logo-sub { font-size: 10px; color: var(--sky); letter-spacing: .1em; text-transform: uppercase; margin-top: -1px; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.72); text-decoration: none; padding: 7px 13px; border-radius: 6px; transition: all .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav-links a.active { color: var(--sky); }
.nav-cta {
  background: linear-gradient(135deg, var(--green-bright), var(--green-mid));
  color: var(--white); font-size: 14px; font-weight: 600; padding: 9px 22px;
  border-radius: 7px; border: none; cursor: pointer; text-decoration: none;
  transition: all .2s; font-family: 'Source Sans 3', sans-serif;
  box-shadow: 0 2px 10px rgba(45,122,56,.4);
}
.nav-cta:hover { background: linear-gradient(135deg, #3a9e47, #1e5c27); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(45,122,56,.5); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
.mobile-menu { display: none; flex-direction: column; gap: 2px; padding: 12px 24px 16px; border-top: 1px solid rgba(255,255,255,.08); background: var(--green-dark); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,.82); text-decoration: none; font-size: 15px; padding: 11px 10px; border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-menu a:last-child { border-bottom: none; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a3d20 60%, #1e4a25 100%);
  padding: 64px 0 54px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 95% 50%, rgba(126,200,227,.07) 0%, transparent 65%),
    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='%23ffffff' fill-opacity='0.018'%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/svg%3E");
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--sky), var(--green-accent), transparent);
  opacity: .5;
}
.page-hero-inner { position: relative; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.page-hero .tag { background: rgba(126,200,227,.12); color: var(--sky); border-color: rgba(126,200,227,.3); margin-bottom: 18px; }
.page-hero h1 { font-family: 'Oswald', sans-serif; font-size: clamp(36px, 4.5vw, 58px); font-weight: 700; color: var(--white); line-height: 1.04; margin-bottom: 16px; }
.page-hero h1 em { font-style: normal; color: var(--sky); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.68); max-width: 560px; line-height: 1.72; }

/* ── SECTIONS ── */
section { padding: 80px 0; }
.section-label { margin-bottom: 14px; }
.section-title { font-family: 'Oswald', sans-serif; font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; color: var(--text-dark); line-height: 1.08; margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--text-muted); max-width: 520px; line-height: 1.72; }
.section-head { margin-bottom: 48px; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 15px 24px; }
.trust-bar-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); font-weight: 500; }
.trust-check { width: 18px; height: 18px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-check svg { width: 10px; height: 10px; }

/* ── CARDS ── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 32px 28px; }

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  border-top: 2px solid rgba(126,200,227,.15);
  color: rgba(255,255,255,.75); padding: 56px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { width: 72px; height: 72px; border-radius: 50%; margin-bottom: 16px; border: 2.5px solid rgba(255,255,255,.2); box-shadow: 0 0 14px rgba(126,200,227,.2); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; margin-top: 10px; max-width: 240px; }
.footer-col h4 { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; color: var(--sky); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.52); text-decoration: none; font-size: 14px; transition: color .15s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li span { color: rgba(255,255,255,.52); font-size: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.3); }
.mc-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.mc-chip { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 6px; padding: 5px 12px; font-size: 12px; color: rgba(255,255,255,.4); }

/* ── FORM ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; letter-spacing: .02em; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 11px 14px; border: 1.5px solid #cce3ce; border-radius: 8px; font-family: 'Source Sans 3', sans-serif; font-size: 15px; color: var(--text-dark); background: var(--white); transition: border-color .2s; outline: none; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(30,92,39,.1); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; background: linear-gradient(135deg, var(--green-bright), var(--green-mid)); color: var(--white); font-family: 'Source Sans 3', sans-serif; font-size: 16px; font-weight: 600; padding: 14px 24px; border-radius: 8px; border: none; cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 3px 12px rgba(30,92,39,.3); }
.form-submit:hover { background: linear-gradient(135deg, #3aac48, #1a5022); transform: translateY(-1px); box-shadow: 0 5px 18px rgba(30,92,39,.4); }
.form-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 14px; }
.success-msg { display: none; background: var(--green-light); border: 1px solid var(--green-accent); color: var(--green-dark); padding: 14px 18px; border-radius: 8px; font-size: 14px; margin-top: 16px; font-weight: 500; }

/* ── MC BADGE ── */
.mc-badge-large { display: inline-flex; align-items: center; gap: 8px; background: var(--green-mid); color: var(--white); font-size: 13px; font-weight: 600; padding: 8px 18px; border-radius: 8px; margin-top: 16px; box-shadow: 0 2px 10px rgba(30,92,39,.3); }

/* ── CARRIER BANNER ── */
.carrier-banner {
  background: linear-gradient(135deg, #1a4d20, var(--green-dark));
  border-top: 1px solid rgba(126,200,227,.15);
  border-bottom: 1px solid rgba(126,200,227,.15);
  padding: 60px 0;
}
.carrier-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.carrier-inner h2 { font-family: 'Oswald', sans-serif; font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.carrier-inner p { font-size: 16px; color: rgba(255,255,255,.7); max-width: 480px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .carrier-inner { text-align: center; }
  .carrier-inner a { margin: 0 auto; }
}
