
:root {
  --blue: #12325b;
  --yellow: #f4c400;
  --cream: #fff8dc;
  --cta: #e64a19;
  --text: #334155;
  --white: #ffffff;
  --muted: #64748b;
  --shadow: 0 12px 30px rgba(18, 50, 91, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
}
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--yellow);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.brand img {
  height: 260px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.brand-copy h1 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--blue);
}
.brand-copy p {
  margin: 4px 0 0;
  font-size: .82rem;
  color: var(--muted);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
nav a {
  text-decoration: none;
  color: var(--blue);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 12px;
}
nav a:hover, nav a.active {
  background: var(--cream);
}
.cta {
  display: inline-block;
  background: var(--cta);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: 0;
  cursor: pointer;
}
.secondary {
  display: inline-block;
  border: 1px solid var(--yellow);
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 16px;
  background: var(--white);
}
.hero {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 36px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: var(--cream);
  color: var(--cta);
  border: 1px solid var(--yellow);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h2, .page-hero h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.05;
  color: var(--blue);
}
.hero p, .page-hero p {
  font-size: 1.15rem;
  margin: 22px 0 0;
  max-width: 760px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.card {
  border: 1px solid var(--yellow);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.hero-panel { padding: 24px; }
.hero-panel-inner {
  background: var(--cream);
  border-radius: 22px;
  padding: 24px;
}
.hero-panel h3 {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.list-grid { display: grid; gap: 12px; }
.chip {
  background: var(--white);
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(18,50,91,.08);
}
.features, .about, .process, .faq, .contact, .page-section {
  padding: 70px 0;
}
.features { background: var(--cream); }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}
.section-head span {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  font-size: .82rem;
  margin-bottom: 10px;
}
.section-head h2, .section-head h3 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.12;
}
.section-head p {
  margin: 14px 0 0;
  font-size: 1.05rem;
}
.info-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--yellow);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.info-card h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.1rem;
}
.info-card p { margin: 14px 0 0; }
.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  border: 1px solid var(--yellow);
  border-radius: 34px;
  padding: 30px;
  box-shadow: var(--shadow);
  background: var(--white);
}
form {
  background: var(--cream);
  border-radius: 24px;
  padding: 22px;
}
label {
  display: block;
  font-weight: 700;
  color: var(--blue);
  margin: 6px 0 8px;
}
input, textarea {
  width: 100%;
  border: 1px solid var(--yellow);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 1rem;
  margin-bottom: 14px;
  font-family: inherit;
}
textarea { min-height: 130px; resize: vertical; }
.helper {
  font-size: .9rem;
  color: var(--muted);
  margin-top: 10px;
}
footer {
  background: var(--blue);
  color: rgba(255,255,255,.88);
  border-top: 1px solid var(--yellow);
  padding: 46px 0;
  margin-top: 10px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 24px;
}
.footer-logo {
  height: 184px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  background: transparent;
}
.footer-col h4 {
  margin: 0 0 14px;
  color: white;
}
.footer-col a, .footer-col div {
  display: block;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  margin-bottom: 10px;
}
.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
}
.sticky-cta a {
  display: inline-block;
  text-decoration: none;
  background: var(--cta);
  color: white;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(230,74,25,.35);
}
.page-hero {
  padding: 56px 0 24px;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.schema-note {
  font-size: .85rem;
  color: var(--muted);
}
@media (max-width: 960px) {
  .hero-grid, .two-col, .contact-wrap, .footer-grid {
    grid-template-columns: 1fr;
  }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
  nav ul { justify-content: flex-start; }
  .brand img { height: 180px; }
  .footer-logo { height: 132px; }
}
@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
  .brand { align-items: flex-start; }
  .brand img { height: 140px; }
  .footer-logo { height: 110px; }
  .brand-copy p { display: none; }
  .sticky-cta { left: 12px; right: 12px; bottom: 12px; }
  .sticky-cta a { display: block; text-align: center; }
}
