:root{
  /* Brand colors (from guideline) */
  --teal: #005555;
  --orange: #f26522;
  --white: #ffffff;
  --gray-700: #808080;
  --gray-500: #b4b4b4;

  /* UI neutrals */
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #5b6472;
  --border: rgba(15, 23, 42, .10);

  --radius: 18px;
  --shadow: 0 12px 30px rgba(0,0,0,.10);
  --shadow-soft: 0 10px 24px rgba(0,0,0,.08);

  --container: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

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

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

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 8px;
  padding: 10px 12px;
  background: var(--teal);
  color: var(--white);
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 12px; }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand__logo{
  height: 34px;
  width: auto;
}

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

.nav a{
  font-weight: 600;
  color: rgba(15, 23, 42, .85);
}
.nav a:hover{ color: var(--teal); }

.nav-toggle{
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle__bar{
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(15,23,42,.75);
  margin: 4px 0;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(242,101,34,.22);
}
.btn--primary:hover{
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(242,101,34,.26);
}

.btn--ghost{
  background: transparent;
  color: var(--teal);
  border-color: rgba(0,85,85,.25);
}
.btn--ghost:hover{
  text-decoration: none;
  border-color: rgba(0,85,85,.45);
}

/* Hero */
.hero{
  position: relative;
  padding: 64px 0 24px;
  overflow: hidden;
}
.hero__grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}

.eyebrow{
  display: inline-block;
  font-weight: 700;
  letter-spacing: .10em;
  font-size: 12px;
  color: var(--teal);
  background: rgba(0,85,85,.08);
  padding: 8px 10px;
  border-radius: 999px;
}

.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.12;
}
.lead{
  margin: 0 0 18px;
  color: rgba(15,23,42,.75);
  font-size: 16px;
  max-width: 58ch;
}

.hero__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero__badges{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badge{
  font-weight: 700;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: rgba(15,23,42,.72);
  background: rgba(255,255,255,.8);
}

/* Right panel */
.hero__panel{
  display: flex;
  justify-content: center;
}
.panel-card{
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  overflow: hidden;
}
.panel-card__top{
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(0,85,85,.07), rgba(242,101,34,.06));
}
.dot{
  width: 10px; height: 10px; border-radius: 999px;
}
.dot--teal{ background: var(--teal); }
.dot--orange{ background: var(--orange); }
.dot--gray{ background: var(--gray-500); }

.panel-card__body{ padding: 18px 18px 20px; }
.kpi{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  align-items: baseline;
  margin: 8px 0;
}
.kpi__label{
  margin: 0;
  font-weight: 700;
  color: rgba(15,23,42,.70);
}
.kpi__value{
  margin: 0;
  font-weight: 700;
  color: rgba(0,85,85,.95);
}

.divider{
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}

.muted{ color: var(--muted); }

/* Sections */
.section{
  padding: 56px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(0,85,85,.04), rgba(242,101,34,.03));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section__header{
  margin-bottom: 22px;
}
.section__header--left{
  margin-bottom: 14px;
}
.section h2{
  margin: 0 0 6px;
  font-size: 28px;
}
.section__subtitle{
  margin: 0;
  color: rgba(15,23,42,.70);
  max-width: 72ch;
}

/* Grids and cards */
.grid{
  display: grid;
  gap: 16px;
}
.grid--3{ grid-template-columns: repeat(3, 1fr); }
.grid--2{ grid-template-columns: repeat(2, 1fr); }

.card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 20px rgba(0,0,0,.05);
  padding: 18px 18px 16px;
}
.card h3{ margin: 0 0 8px; }
.card p{ margin: 0 0 12px; }

.card--flat{
  box-shadow: none;
  background: rgba(255,255,255,.70);
}

.list{
  margin: 0;
  padding-left: 18px;
  color: rgba(15,23,42,.72);
}
.list li{ margin: 6px 0; }

.pill-row{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.pill{
  font-size: 12px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,85,85,.18);
  color: rgba(0,85,85,.95);
  background: rgba(0,85,85,.06);
}

/* Steps */
.steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
}
.step__num{
  display: inline-block;
  font-weight: 800;
  color: var(--white);
  background: var(--teal);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}
.step h3{ margin: 10px 0 6px; }
.step p{ margin: 0; color: rgba(15,23,42,.72); }

/* About */
.about{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}
.checklist{
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
}
.checklist li{
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
  color: rgba(15,23,42,.78);
  font-weight: 600;
}
.checklist li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(242,101,34,.12);
  color: var(--orange);
  font-weight: 900;
}

.quote{
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  padding: 18px;
  box-shadow: 0 10px 20px rgba(0,0,0,.05);
}
.quote p{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(15,23,42,.85);
}
.quote__by{
  font-weight: 700;
  color: rgba(0,85,85,.95);
  font-size: 13px;
}

.mini-card{
  margin-top: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.70);
  padding: 16px;
}

/* Contact */
.contact__grid{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 16px;
  align-items: start;
}

.form label{
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 700;
}
input, textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 12px 12px;
  font: inherit;
  outline: none;
  background: #fff;
}
input:focus, textarea:focus{
  border-color: rgba(0,85,85,.35);
  box-shadow: 0 0 0 4px rgba(0,85,85,.10);
}

.form__hint{
  margin: 10px 0 0;
  font-size: 13px;
}

/* Footer */
.footer{
  padding: 26px 0;
  border-top: 1px solid var(--border);
  background: #fff;
}
.footer__inner{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  align-items: center;
}
.footer__logo{
  height: 26px;
  width: auto;
}
.footer__links{
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__links a{
  color: rgba(15,23,42,.78);
  font-weight: 600;
}
.footer__links a:hover{ color: var(--teal); }
.footer__meta{
  text-align: right;
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .about{ grid-template-columns: 1fr; }
  .contact__grid{ grid-template-columns: 1fr; }
  .footer__inner{ grid-template-columns: 1fr; text-align: left; }
  .footer__meta{ text-align: left; }
  .footer__links{ justify-content: flex-start; }
}

@media (max-width: 820px){
  .nav-toggle{ display: inline-flex; }
  .nav{
    position: absolute;
    right: 20px;
    top: 64px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
    min-width: 220px;
    box-shadow: var(--shadow-soft);
    display: none;
  }
  .nav.is-open{ display: flex; }
  .nav a{ padding: 10px 10px; border-radius: 12px; }
  .nav a:hover{ background: rgba(0,85,85,.06); text-decoration: none; }
}

/* Small hero fade */
.hero__fade{
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 100px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,1));
  pointer-events: none;
}

.contact__info-card{
  max-width: 520px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.contact__item{
  margin-bottom: 18px;
}

.contact__item h3{
  margin: 0 0 6px;
  font-size: 18px;
}

.contact__link{
  font-weight: 700;
  font-size: 16px;
  color: var(--teal);
}

.contact__link:hover{
  color: var(--orange);
  text-decoration: none;
}