:root {
  --primary: #1a2e4a;
  --secondary: #e8a020;
  --bg: #f5f6f8;
  --text: #1c1c1e;
  --text-muted: #6b7280;
  --white: #ffffff;
  --border: #e5e7eb;
  --radius: 4px;
  --container: 1180px;
  --shadow-soft: 0 1px 6px rgba(0, 0, 0, 0.08);
  --section-space: clamp(56px, 8vw, 104px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: var(--section-space) 0;
}

.section-white {
  background: var(--white);
}

.section-light {
  background: var(--bg);
}

.section-primary {
  background: var(--primary);
  color: var(--white);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.4rem;
}

.section-head .eyebrow {
  margin: 0;
  color: var(--secondary);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0.65rem 0 0.9rem;
  font-size: clamp(1.7rem, 3.2vw, 2.75rem);
  line-height: 1.2;
  color: var(--primary);
  font-family: "Syne", sans-serif;
  font-weight: 700;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.52rem);
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.97rem;
  padding: 0.35rem 0.2rem;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  border-color: var(--secondary);
}

.nav-links .cta-link {
  border-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
  padding: 0.75rem 1.2rem;
}

.btn-primary:hover {
  background: #d69014;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  padding: 0.75rem 1.2rem;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-dark-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  padding: 0.7rem 1.15rem;
}

.btn-dark-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.nav-links .cta-link .btn {
  padding: 0.62rem 0.95rem;
}

.nav-links .cta-link.active .btn {
  background: #d69014;
}

.menu-toggle {
  border: 0;
  background: none;
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.28rem;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.65);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 770px;
  padding: 4.5rem 0;
}

.hero h1 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.12;
}

.hero p {
  margin: 1.2rem 0 2rem;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.93);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-secondary {
  min-height: 50vh;
}

.kpi-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kpi-card {
  text-align: center;
  padding: 1.2rem;
  border: 1px solid var(--border);
  background: var(--white);
}

.kpi-number {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  font-family: "Syne", sans-serif;
}

.kpi-label {
  margin: 0.7rem 0 0;
  color: var(--text-muted);
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.testimonial-card,
.value-card,
.profile-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.35rem;
}

.service-icon,
.value-card i,
.why-list i,
.contact-list i {
  color: var(--secondary);
  font-size: 1.25rem;
}

.service-card h3,
.value-card h3,
.profile-card h3,
.contact-card h3 {
  margin: 0.8rem 0 0.4rem;
  color: var(--primary);
  font-size: 1.2rem;
}

.service-card p,
.value-card p,
.profile-card p,
.contact-card p {
  margin: 0;
  color: var(--text-muted);
}

.service-card a {
  margin-top: 0.75rem;
  display: inline-flex;
  color: var(--primary);
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  gap: 2rem;
}

.split img {
  border-radius: var(--radius);
  min-height: 260px;
  object-fit: cover;
}

.why-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.why-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.why-list strong {
  color: var(--primary);
  display: block;
}

.testimonial-card {
  border-radius: var(--radius);
}

.testimonial-card p {
  margin: 0;
  color: var(--text-muted);
}

.testimonial-author {
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 600;
}

.cta-banner {
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.cta-banner h2 {
  color: var(--white);
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-family: "Syne", sans-serif;
}

.page-intro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}

.history-grid,
.team-grid,
.values-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.history-grid {
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
}

.mission-block {
  background: #eef3fa;
  border-left: 4px solid var(--secondary);
  padding: 1.2rem 1.3rem;
  color: var(--primary);
}

.values-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.client-logo-card {
  background: var(--white);
  border: 1px solid var(--border);
  min-height: 140px;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.client-logo-card img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
}

.client-caption {
  margin-top: 0.6rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.profile-card img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
}

.profile-role {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 1.4rem;
  align-items: center;
  margin-bottom: 1.6rem;
}

.service-detail:nth-child(even) {
  grid-template-columns: 1.08fr 1fr;
}

.service-detail:nth-child(even) .service-media {
  order: 2;
}

.service-detail:nth-child(even) .service-content {
  order: 1;
}

.service-media img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  min-height: 280px;
}

.service-content h3 {
  color: var(--primary);
  font-size: 1.55rem;
  margin: 0 0 0.5rem;
}

.service-content p {
  color: var(--text-muted);
  margin: 0 0 0.8rem;
}

.service-content ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--text-muted);
}

.pricing-table-wrap {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
}

.pricing-table th,
.pricing-table td {
  border: 1px solid var(--border);
  padding: 0.78rem;
  text-align: center;
}

.pricing-table th {
  color: var(--primary);
  background: #f9fafb;
  font-family: "Syne", sans-serif;
}

.pricing-table td:first-child,
.pricing-table th:first-child {
  text-align: left;
  min-width: 190px;
}

.fa-check {
  color: #0f766e;
}

.fa-xmark {
  color: #b91c1c;
}

.contact-grid {
  grid-template-columns: 1fr 1.1fr;
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.35rem;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.form-grid.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-size: 0.92rem;
  color: #374151;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  padding: 0.68rem 0.72rem;
  font: inherit;
  background: var(--white);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(232, 160, 32, 0.32);
  border-color: var(--secondary);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-feedback {
  display: none;
  margin-top: 0.8rem;
  padding: 0.72rem 0.9rem;
  border-radius: var(--radius);
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-feedback.visible {
  display: block;
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

.quote-progress {
  margin: 0 auto 1.35rem;
  max-width: 760px;
}

.quote-progress-track {
  height: 10px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.quote-progress-fill {
  height: 100%;
  width: 33.33%;
  background: linear-gradient(90deg, #d88f14, var(--secondary));
  transition: width 0.35s ease;
}

.quote-steps {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.2rem;
}

.quote-step {
  display: none;
}

.quote-step.active {
  display: block;
}

.quote-step h3 {
  margin: 0 0 0.8rem;
  color: var(--primary);
  font-size: 1.25rem;
}

.radio-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.radio-card {
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  padding: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-card strong {
  color: var(--primary);
  display: block;
}

.radio-card span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.radio-card:has(input:checked) {
  border-color: var(--secondary);
  background: #fff8ea;
}

.quote-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 1rem;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.quote-confirmation {
  display: none;
  margin-top: 1rem;
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: 0.78rem 0.9rem;
}

.quote-confirmation.visible {
  display: block;
}

footer {
  background: var(--primary);
  color: var(--white);
}

.footer-main {
  padding: 3rem 0 1.9rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.1fr 1fr 1fr;
}

.footer-brand {
  max-width: 360px;
}

.footer-title {
  margin: 0 0 0.35rem;
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: #f7c35d;
}

.footer-bottom {
  padding: 0.95rem 0 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-visible {
  animation: fadeInUp 0.7s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-logo-grid,
  .card-grid-3,
  .team-grid,
  .kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .radio-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    right: 1rem;
    top: 76px;
    width: min(90vw, 350px);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .split,
  .history-grid,
  .contact-grid,
  .service-detail,
  .service-detail:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) .service-media,
  .service-detail:nth-child(even) .service-content {
    order: initial;
  }

  .form-grid.two-cols,
  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .section {
    padding: clamp(48px, 10vw, 70px) 0;
  }

  .hero {
    min-height: 84vh;
  }

  .card-grid-3,
  .team-grid,
  .kpi-grid,
  .values-grid,
  .client-logo-grid {
    grid-template-columns: 1fr;
  }

  .quote-actions {
    flex-direction: column;
  }

  .quote-actions .btn {
    width: 100%;
  }
}
