:root {
  --navy: #0f1f4d;
  --navy-2: #16305e;
  --green: #1c8a43;
  --green-dark: #146030;
  --white: #ffffff;
  --bg: #f5f7fa;
  --text: #1a1d29;
  --text-muted: #5b6172;
  --border: #e3e6ee;
  --shadow: 0 10px 30px rgba(15, 31, 77, 0.08);
  --radius: 14px;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--font-head); color: var(--navy); line-height: 1.2; }

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

.eyebrow {
  font-family: var(--font-head);
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; margin-bottom: 12px; }
.section-sub { color: var(--text-muted); max-width: 620px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 8px 20px rgba(28,138,67,0.35); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.15;
}
.brand-name small { font-weight: 500; color: var(--text-muted); font-size: 0.68rem; letter-spacing: 0.04em; text-transform: uppercase; }

.main-nav { display: flex; gap: 28px; }
.main-nav a { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.main-nav a:hover { color: var(--green); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.phone-link { font-weight: 700; color: var(--navy); font-size: 0.92rem; white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: 80px 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 48px;
}
.hero-text .eyebrow { color: #6fe39a; }
.hero-text h1 { color: var(--white); font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 18px; }
.hero-sub { color: #d7dcef; max-width: 520px; margin-bottom: 30px; font-size: 1.05rem; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-badges { display: flex; gap: 22px; flex-wrap: wrap; list-style: none; color: #b9c1de; font-size: 0.9rem; font-weight: 600; }

.hero-emblem { display: flex; justify-content: center; }
.hero-logo-img {
  width: min(340px, 100%);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* Services */
.services { padding: 90px 0; background: var(--bg); }
.services-grid {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.service-card {
  flex: 1 1 300px;
  max-width: 360px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(15,31,77,0.14); }
.service-icon { font-size: 2rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }

/* About */
.about { padding: 90px 0; }
.about-inner { max-width: 720px; margin: 0 auto; text-align: left; }
.about-text p { color: var(--text-muted); margin: 18px 0 24px; font-size: 1.02rem; }
.why-list { list-style: none; display: grid; gap: 14px; }
.why-list li {
  background: var(--bg);
  border-left: 4px solid var(--green);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.96rem;
}

/* Contact */
.contact { padding: 90px 0; background: var(--bg); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.info-list { list-style: none; margin-top: 32px; display: grid; gap: 22px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-icon { font-size: 1.3rem; }
.info-list em { color: var(--text-muted); font-weight: 400; font-size: 0.82rem; }
.info-list a { color: var(--green-dark); font-weight: 600; }

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form label { font-weight: 600; font-size: 0.88rem; margin-top: 12px; color: var(--navy); }
.contact-form input, .contact-form textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--green); border-color: transparent; }
.contact-form button { margin-top: 20px; }

/* Footer */
.site-footer { background: var(--navy); color: #b9c1de; padding: 30px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--white); }
.footer-logo { width: 32px; height: 32px; border-radius: 50%; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 2; }
  .hero-emblem { order: 1; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-badges { justify-content: center; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    display: none;
    gap: 16px;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .phone-link { display: none; }
  .brand-name { font-size: 0.9rem; }
}
