:root {
  --navy: #14213d;
  --navy-light: #1f2e52;
  --orange: #f4692c;
  --orange-dark: #d9531d;
  --grey-bg: #f5f6f8;
  --text: #232830;
  --muted: #626b78;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 6px 20px rgba(20, 33, 61, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

a { color: inherit; }

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid #eaecf0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img { width: 44px; height: 44px; }

.brand-text .name {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: 0.3px;
}

.brand-text .name span { color: var(--orange); }

.brand-text .tagline {
  font-size: 0.72rem;
  font-style: italic;
  color: var(--muted);
  font-weight: 600;
}

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

nav.main-nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
}

nav.main-nav a:hover { color: var(--orange); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-link {
  display: none;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--navy);
}
.btn-light:hover { background: #e9ebf0; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 65%, #2a3d6e 100%);
  color: var(--white);
  padding: 76px 0 90px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: rgba(244, 105, 44, 0.15);
  color: #ffb086;
  border: 1px solid rgba(244, 105, 44, 0.4);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 800;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero p {
  color: #cfd6e6;
  font-size: 1.05rem;
  max-width: 46ch;
  margin: 0 0 30px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(2px);
}

.hero-card ul { margin: 0; padding: 0; list-style: none; }

.hero-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  color: #e4e8f2;
}
.hero-card li:last-child { border-bottom: none; }

.hero-card .tick {
  color: var(--orange);
  font-weight: 800;
}

/* Section basics */
section { padding: 72px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.section-head .kicker {
  color: var(--orange);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--navy);
  margin: 8px 0 10px;
}

.section-head p { color: var(--muted); }

.bg-grey { background: var(--grey-bg); }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  border: 1px solid #eef0f3;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(20, 33, 61, 0.12);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(244, 105, 44, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon svg { width: 24px; height: 24px; stroke: var(--orange); }

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--navy);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 10px;
}

.why-card .num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.why-card h3 { color: var(--navy); margin: 0 0 8px; font-size: 1.05rem; }
.why-card p { color: var(--muted); margin: 0; font-size: 0.92rem; }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-inner h2 { color: var(--navy); font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 0; }
.about-inner p { color: var(--muted); }

.stat-row {
  display: flex;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.stat-row .stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--orange);
}

.stat-row .stat span {
  font-size: 0.85rem;
  color: var(--muted);
}

.about-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}

.about-panel h3 { margin-top: 0; color: var(--white); }
.about-panel ul { padding-left: 18px; margin: 0; color: #d7dcea; }
.about-panel li { margin-bottom: 10px; }

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-card {
  background: var(--white);
  border: 1px solid #eef0f3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

.contact-card h3 { margin-top: 0; color: var(--navy); }

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(244, 105, 44, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item .icon svg { width: 20px; height: 20px; stroke: var(--orange); }

.contact-item strong { display: block; color: var(--navy); font-size: 0.95rem; }
.contact-item a, .contact-item span { color: var(--muted); text-decoration: none; font-size: 0.95rem; }
.contact-item a:hover { color: var(--orange); }

.contact-form { display: flex; flex-direction: column; gap: 14px; }

.contact-form label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: -8px;
}

.contact-form input,
.contact-form textarea {
  border: 1.5px solid #dfe2e8;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}

/* Footer */
footer {
  background: var(--navy);
  color: #c7cee1;
  padding: 40px 0 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 24px;
  margin-bottom: 20px;
}

.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 36px; height: 36px; }
.footer-brand strong { color: var(--white); }

.footer-links { display: flex; gap: 22px; }
.footer-links a { text-decoration: none; color: #c7cee1; font-size: 0.9rem; }
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: #8a92ab;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
}

@media (min-width: 900px) {
  .phone-link { display: inline-flex; align-items: center; gap: 6px; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .about-inner, .contact-wrap { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 16px;
    border-bottom: 1px solid #eaecf0;
    box-shadow: var(--shadow);
    display: none;
  }
  nav.main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .header-cta .btn-outline { display: none; }
}
