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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f5f7fb;
  color: #111827;
  line-height: 1.6;
}

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

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

/* Top Bar */
.top-bar {
  background: #0f172a;
  color: #e5e7eb;
  font-size: 13px;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  gap: 12px;
}

.top-contact span {
  margin-right: 6px;
}

/* Header */
.header {
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.logo a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 40px;
  width: auto;
  border-radius: 8px;
}

.logo-text {
  font-weight: 700;
  font-size: 20px;
  color: #0f172a;
}

/* Nav */
.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

.nav a {
  color: #374151;
  font-weight: 500;
}

.nav a:hover {
  color: #1d4ed8;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 22px;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
}

.mobile-nav a {
  padding: 10px 16px;
  border-bottom: 1px solid #f3f4f6;
  font-size: 14px;
}

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

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-secondary {
  background: #e5edff;
  color: #1d4ed8;
}

.btn-secondary:hover {
  background: #d4e4ff;
}

.btn-primary.small,
.btn-secondary.small {
  padding: 6px 14px;
  font-size: 13px;
}

.full {
  width: 100%;
}

/* Sections */
.section {
  padding: 60px 0;
}

.section-alt {
  background: #eef2ff;
}

.section-title {
  font-size: 28px;
  margin-bottom: 8px;
  text-align: center;
}

.section-subtitle {
  font-size: 14px;
  color: #6b7280;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 32px;
}

/* Hero */
.hero {
  padding: 60px 0 40px;
  background: radial-gradient(circle at top left, #dbeafe, #eff6ff);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr;
  gap: 32px;
  align-items: center;
}

.hero-text h1 {
  font-size: 34px;
  margin-bottom: 12px;
  color: #0f172a;
}

.hero-text p {
  color: #4b5563;
  margin-bottom: 18px;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: #4b5563;
}

.hero-badges span {
  background: #e5e7eb;
  padding: 4px 10px;
  border-radius: 999px;
}

.hero-graphic {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.12);
  min-height: 220px;
}

/* Grid & Cards */
.grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

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

.card p {
  font-size: 14px;
  color: #4b5563;
}

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1.3fr 1.7fr;
  gap: 28px;
  align-items: flex-start;
}

.contact-text p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 10px;
}

.contact-details {
  list-style: none;
  font-size: 14px;
  color: #111827;
}

.contact-details li {
  margin-bottom: 6px;
}

.contact-form {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.form-row {
  margin-bottom: 12px;
}

input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}

.form-note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 6px;
}

/* Footer */
.footer {
  background: #0b1120;
  color: #9ca3af;
  padding-top: 26px;
  margin-top: 30px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid #111827;
}

.footer h3 {
  color: #e5e7eb;
  margin-bottom: 6px;
}

.footer p {
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 13px;
}

.footer-links a {
  color: #9ca3af;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding: 10px 0 14px;
  font-size: 12px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .header-inner {
    gap: 10px;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    font-size: 12px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 520px) {
  .hero-text h1 {
    font-size: 26px;
  }

  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 22px;
  }
}
