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

:root {
  --primary: #0a2342;
  --secondary: #d4af37;
  --dark: #081827;
  --text: #243447;
  --muted: #6b7280;
  --light: #f6f8fb;
  --white: #ffffff;
  --border: #e5e7eb;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.navbar {
  max-width: 1180px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.logo span {
  color: var(--secondary);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: var(--dark);
}

.nav-btn {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 30px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  border: none;
  background: none;
  cursor: pointer;
}

.hero {
  max-width: 1180px;
  margin: auto;
  padding: 90px 20px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.eyebrow {
  color: var(--secondary);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 54px;
  line-height: 1.08;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-text {
  font-size: 18px;
  color: var(--muted);
  max-width: 650px;
}

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

.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 30px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--primary);
  color: var(--white);
}

.secondary {
  background: var(--light);
  color: var(--primary);
  border: 1px solid var(--border);
}

.hero-card {
  background: var(--primary);
  color: var(--white);
  padding: 34px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(10, 35, 66, 0.18);
}

.hero-card h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

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

.hero-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.hero-card li::before {
  content: "✓ ";
  color: var(--secondary);
  font-weight: bold;
}

.stats {
  background: var(--light);
  padding: 35px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.stats h2 {
  color: var(--primary);
  font-size: 28px;
}

.section {
  max-width: 1180px;
  margin: auto;
  padding: 80px 20px;
}

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

.section-head h2,
.about h2,
.contact h2 {
  color: var(--primary);
  font-size: 38px;
  line-height: 1.2;
}

.cards-grid,
.tools-grid,
.process-grid {
  display: grid;
  gap: 22px;
}

.cards-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.tool-card,
.process-grid div {
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
}

.service-card h3,
.tool-card h3,
.process-grid h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.tools-section {
  background: var(--light);
  max-width: none;
}

.tools-section .section-head,
.tools-section .tools-grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.tools-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tool-card label {
  display: block;
  font-weight: 700;
  margin: 12px 0 6px;
  color: var(--dark);
}

.tool-card input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
}

.tool-card button {
  width: 100%;
  margin-top: 16px;
  padding: 13px;
  border: none;
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.result {
  margin-top: 14px;
  font-weight: 800;
  color: var(--primary);
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid span {
  display: inline-block;
  color: var(--secondary);
  font-weight: 900;
  margin-bottom: 12px;
}

.contact-box {
  background: var(--primary);
  color: var(--white);
  padding: 42px;
  border-radius: 26px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.contact h2 {
  color: var(--white);
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.disclaimer {
  max-width: 1180px;
  margin: 0 auto 70px;
  padding: 22px;
  border-radius: 16px;
  background: #fff8e1;
  color: #5f4b00;
  font-size: 14px;
}

footer {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 22px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 16px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hero,
  .about {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 38px;
  }

  .cards-grid,
  .tools-grid,
  .process-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }
}
