:root {
  --navy: #1d3442;
  --blue: #2f7d74;
  --sky: #edf6f3;
  --teal: #6aa79f;
  --gold: #c9a86a;
  --text: #23313b;
  --muted: #5f6d75;
  --white: #ffffff;
  --border: #d9e4e3;
  --shadow: 0 18px 40px rgba(29, 52, 66, 0.10);
  --radius: 22px;
  --heading-size: clamp(2rem, 4vw, 3rem);
  --card-title-size: 1.35rem;
  --body-size: 1rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #f6faf8;
  line-height: 1.65;
  font-size: var(--body-size);
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(29, 52, 66, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem 0;
}

.brand img {
  height: 72px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-weight: 600;
}

.site-nav a { color: var(--navy); }

.menu-toggle {
  display: none;
  border: 0;
  background: var(--navy);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.25rem;
  cursor: pointer;
}

.hero-banner {
  padding: 1.4rem 0 0.75rem;
  background: linear-gradient(180deg, #f6faf8, #edf6f3);
}

.banner-frame {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(29, 52, 66, 0.10);
  box-shadow: var(--shadow);
  background: white;
}

.banner-image {
  width: 100%;
  display: block;
}

.hero-summary {
  background: linear-gradient(180deg, #edf6f3 0%, #f6faf8 45%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.25rem 0 4.5rem;
}

.hero-content h1 {
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  max-width: 900px;
}

.hero-tag,
.section-kicker {
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.hero-text {
  font-size: 1.05rem;
  max-width: 860px;
  color: #324554;
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  font-size: 0.98rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
  transition: transform 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  border: 0;
}

.btn-secondary {
  background: white;
  color: var(--navy);
  border: 1px solid rgba(29, 52, 66, 0.15);
}

.btn-block { width: 100%; }

.section { padding: 4.8rem 0; }

.about-section,
.values-section { background: white; }

.services-section { background: #f6faf8; }

.process-section {
  background: linear-gradient(135deg, var(--navy), #295265 65%, var(--blue));
  color: white;
}

.proof-section { background: #fbfdfc; }

.contact-section {
  background: linear-gradient(180deg, #f6faf8, #ffffff);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 2rem;
}

.section-heading h2,
.two-col h2,
.contact-copy h2,
.proof-wrap h2 {
  color: var(--navy);
  font-size: var(--heading-size);
  line-height: 1.15;
  margin: 0.25rem 0 0.8rem;
}

.process-section .section-heading h2,
.process-card h3,
.process-card p,
.process-card strong,
.process-section .section-kicker {
  color: white;
}

.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 8px 24px rgba(29, 52, 66, 0.06);
}

.service-card h3 {
  margin: 0.55rem 0 0.6rem;
  color: var(--navy);
  font-size: var(--card-title-size);
  line-height: 1.35;
}

.service-card p {
  margin: 0;
  color: #50606c;
}

.service-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue);
  font-weight: 800;
}

.values-heading { max-width: 860px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.value-card {
  background: linear-gradient(180deg, #ffffff, #f8fcfa);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 8px 24px rgba(29, 52, 66, 0.06);
}

.value-card h3 {
  margin: 0 0 0.7rem;
  font-size: var(--card-title-size);
  color: var(--navy);
}

.value-card p {
  margin: 0;
  color: #50606c;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 1.3rem;
}

.process-card strong {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.1rem;
}

.process-card h3 {
  margin: 0.9rem 0 0.45rem;
}

.process-card p {
  margin: 0;
  opacity: 0.95;
}

.proof-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.simple-proof { max-width: 980px; }

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.proof-list div {
  background: #f3f8f6;
  border: 1px solid var(--border);
  padding: 1rem 1.1rem;
  border-radius: 18px;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.contact-boxes {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.contact-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.1rem;
}

.contact-box h3 {
  margin: 0 0 0.35rem;
  color: var(--navy);
}

.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cad7d5;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
  margin-top: 0.4rem;
  color: var(--text);
  background: #fcfeff;
}

.contact-form textarea { resize: vertical; }

.form-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  background: #17313b;
  color: rgba(255, 255, 255, 0.88);
  padding-top: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.95fr;
  gap: 2rem;
}

.footer-logo {
  max-width: 250px;
  margin-bottom: 1rem;
}

.site-footer h3 {
  margin-top: 0;
  color: white;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0 1.3rem;
  margin-top: 2rem;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .two-col,
  .contact-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .brand img { height: 56px; }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .banner-frame { border-radius: 20px; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem;
    background: white;
    border: 1px solid rgba(29, 52, 66, 0.1);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .site-nav.open { display: flex; }

  .hero-grid { padding: 2.8rem 0 3.2rem; }

  .service-grid,
  .proof-list,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .section { padding: 4rem 0; }
}