@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --bg: #f8f9fc;
  --card: #ffffff;
  --primary: #1f4ab5;
  --primary-dark: #12306b;
  --accent: #fdb933;
  --text: #1c2333;
  --muted: #5b6377;
  --line: #e1e5ef;
}

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

html,
body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid rgba(17, 38, 87, 0.08);
  box-shadow: 0 10px 24px rgba(17, 38, 87, 0.08);
  width: 100%;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  min-height: 64px;
  gap: 12px;
  width: 100%;
}

.site-header * {
  float: none !important;
}

.site-header .header-inner {
  text-align: left !important;
}

.site-header .menu-btn {
  position: static !important;
  margin-left: auto !important;
}

.site-header .brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
  margin-right: auto;
}

.site-header .brand img {
  display: block;
  max-height: 32px;
  width: auto;
  object-fit: contain;
}

.site-header .brand-text {
  margin-left: 0.5rem;
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  display: block;
  white-space: nowrap;
}

.menu-btn {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  font-size: 1.35rem;
}

.nav-links {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(17, 38, 87, 0.08);
  padding: 1rem 1.75rem 1.25rem;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 20px 40px rgba(17, 38, 87, 0.15);
  border-radius: 0 0 1rem 1rem;
  display: none;
}

.nav-links[data-visible="true"] {
  display: flex;
}

.nav-links a {
  padding: 0.75rem 0;
  border-radius: 0;
  width: 100%;
  font-weight: 500;
}

.nav-links a:hover {
  background: rgba(17, 38, 87, 0.05);
}

@media (min-width: 900px) {
  .site-header .header-inner {
    padding: 0 32px;
  }

  .nav-links {
    position: static;
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 999px;
    background: transparent;
  }

  .nav-links a {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    width: auto;
  }

  .menu-btn {
    display: none;
  }
}


.hero {
  padding: 5rem 0 3rem;
  background-image: url("../images/slide_01.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  min-height: 520px;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.hero .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero .hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.hero .hero-text p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.hero .pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  gap: 0.4rem;
}

.hero .pill span {
  font-weight: 600;
}

.hero .hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero .hero-actions a {
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  border: 2px solid transparent;
}

.hero .hero-actions .primary {
  background: var(--accent);
  color: #1a2133;
}

.hero .hero-actions .secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.approach {
  padding: 4rem 0 2rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section-heading span {
  color: var(--muted);
  font-size: 1rem;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(17, 38, 87, 0.08);
}

.card-image {
  width: 100%;
  border-radius: 0.9rem;
  height: 160px;
  margin-bottom: 1rem;
  background-size: cover;
  background-position: center;
}

.card-image-1 {
  background-image: url("../images/service_01.jpg");
}

.card-image-2 {
  background-image: url("../images/service_02.jpg");
}

.card-image-3 {
  background-image: url("../images/service_03.jpg");
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.card small {
  font-size: 0.85rem;
  color: var(--primary);
}

.stat-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat {
  border-radius: 1rem;
  background: var(--card);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: 0 10px 20px rgba(17, 38, 87, 0.08);
}

.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--primary-dark);
}

.insights {
  padding: 4rem 0;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.insights article {
  background: var(--card);
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  box-shadow: 0 15px 25px rgba(17, 38, 87, 0.08);
}

.insights h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.testimonials {
  background: #0f1c35;
  color: #fff;
  padding: 4rem 0;
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card h4 {
  margin: 0 0 0.25rem;
}

.testimonial-card span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta {
  padding: 4rem 0;
}

.cta-card {
  background: var(--primary-dark);
  color: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.cta-card form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cta-card input,
.cta-card textarea {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0.75rem;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.cta-card input::placeholder,
.cta-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.cta-card button {
  border: none;
  border-radius: 0.9rem;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  background: var(--accent);
  color: #1c2133;
  cursor: pointer;
  margin-top: 0.5rem;
}

.cta-card button:hover {
  opacity: 0.9;
}

.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.footer h5 {
  margin-bottom: 0.5rem;
}

.footer a {
  color: var(--muted);
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.footer .footer-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--muted);
}

.form-feedback {
  display: none;
  color: #00ffb0;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .hero .hero-actions {
    width: 100%;
  }
}
