*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #111827;
  background: #fff;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  font-style: none;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul {
  list-style: none;
}

:root {
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-900: #1e3a8a;
  --gray-50: #f9fafb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --container: min(1200px, calc(100% - 2rem));
}

.container {
  width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.nav {
  padding: 1rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-600);
  font-style: none;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-desktop a,
.nav-desktop button.nav-link {
  color: var(--gray-700);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.nav-desktop a:hover,
.nav-desktop button.nav-link:hover {
  color: var(--blue-600);
}
.btn-primary {
  background: var(--blue-600);
  color: #fff !important;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  transition: background 0.2s;
}
.btn-primary:hover {
  background: var(--blue-700);
}
.menu-toggle {
  padding: 0.25rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-toggle svg {
  width: 24px;
  height: 24px;
}
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0 1rem;
}
.nav-mobile.is-open {
  display: flex;
}
.nav-mobile a,
.nav-mobile button.nav-link {
  text-align: left;
  color: var(--gray-700);
  padding: 0.25rem 0;
}
.nav-mobile .btn-primary {
  text-align: center;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(30, 58, 138, 0.8), rgba(29, 78, 216, 0.7));
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 2rem 1rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero .tagline {
  font-size: clamp(1.25rem, 4vw, 2.25rem);
  font-weight: 300;
  margin-bottom: 2rem;
}
.hero .sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  opacity: 0.9;
  max-width: 42rem;
  margin: 0 auto 3rem;
}
.btn-hero {
  background: #fff;
  color: var(--blue-600);
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 600;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, background 0.2s;
}
.btn-hero:hover {
  background: #f3f4f6;
  transform: scale(1.02);
}
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}
.scroll-hint-inner {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid #fff;
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.5rem;
}
.scroll-hint-bar {
  width: 0.25rem;
  height: 0.75rem;
  background: #fff;
  border-radius: 9999px;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.section {
  padding: 5rem 0;
}
.section-title {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}
.section-title .rule {
  width: 5rem;
  height: 4px;
  background: var(--blue-600);
  margin: 0 auto 1rem;
}
.section-title p {
  color: var(--gray-600);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}
.bg-white {
  background: #fff;
}
.bg-gray-50 {
  background: var(--gray-50);
}
.bg-gradient-soft {
  background: linear-gradient(to bottom right, #eff6ff, #f0fdf4);
}

.about-inner {
  max-width: 56rem;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.about-grid img {
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.about-grid h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.about-grid p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.625;
}
.mission {
  background: linear-gradient(to right, #eff6ff, #f0fdf4);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
}
@media (min-width: 768px) {
  .mission {
    padding: 3rem;
  }
}
.mission-head {
  text-align: center;
  margin-bottom: 2rem;
}
.mission-head svg {
  width: 3rem;
  height: 3rem;
  color: var(--blue-600);
  margin: 0 auto 1rem;
  display: block;
}
.mission-head h3 {
  font-size: 1.875rem;
  font-weight: 700;
}
.mission-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.mission-grid h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.mission-grid p {
  color: var(--gray-600);
  font-size: 0.875rem;
}
.icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--blue-600);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.services-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service-card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s;
}
.service-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}
.service-card .thumb {
  height: 22rem;
  overflow: hidden;
}
.service-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.service-card:hover .thumb img {
  transform: scale(1.05);
}
.service-body {
  padding: 1.5rem;
}
.service-body svg {
  width: 3rem;
  height: 3rem;
  color: var(--blue-600);
  margin-bottom: 1rem;
}
.service-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-body p {
  color: var(--gray-600);
  line-height: 1.625;
}
.note-box {
  margin-top: 3rem;
  max-width: 48rem;
  margin-inline: auto;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  color: var(--gray-700);
}

.steps {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.step {
  text-align: center;
  position: relative;
}
@media (min-width: 768px) {
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2.5rem;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #bfdbfe;
    z-index: 0;
  }
}
.step-inner {
  position: relative;
  z-index: 1;
}
.step-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, var(--blue-600), var(--blue-700));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px rgba(37, 99, 235, 0.3);
}
.step-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #fff;
}
.step-num {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  background: #dbeafe;
  color: var(--blue-600);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.step p {
  color: var(--gray-600);
}
.cta-center {
  text-align: center;
  margin-top: 4rem;
}
.btn-lg {
  background: var(--blue-600);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 600;
  box-shadow: 0 10px 15px rgba(37, 99, 235, 0.25);
  transition: background 0.2s, transform 0.2s;
}
.btn-lg:hover {
  background: var(--blue-700);
  transform: scale(1.02);
}

.reasons-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.reason-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s;
}
.reason-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.reason-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: #dbeafe;
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.reason-icon svg {
  width: 2rem;
  height: 2rem;
}
.reason-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.reason-card p {
  color: var(--gray-600);
  line-height: 1.625;
}
.why-cta {
  margin-top: 4rem;
  max-width: 48rem;
  margin-inline: auto;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  text-align: center;
}
@media (min-width: 768px) {
  .why-cta {
    padding: 3rem;
  }
}
.why-cta h3 {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.why-cta > p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.reviews-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.review-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  position: relative;
}
.review-quote {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #dbeafe;
}
.review-quote svg {
  width: 2.5rem;
  height: 2.5rem;
}
.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #facc15;
  color: #facc15;
}
.review-text {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.625;
}
.review-meta {
  border-top: 1px solid var(--gray-50);
  padding-top: 1rem;
}
.review-meta strong {
  font-weight: 600;
  color: var(--gray-900);
}
.review-meta .loc {
  font-size: 0.875rem;
  color: var(--gray-600);
}
.review-meta .date {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.25rem;
}
.stats-bar {
  margin-top: 4rem;
  max-width: 48rem;
  margin-inline: auto;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stats-inner .num {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--blue-600);
  margin-bottom: 0.5rem;
}
.stats-inner .label {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-grid h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.contact-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon.blue {
  background: #dbeafe;
  color: var(--blue-600);
}
.contact-icon.green {
  background: #dcfce7;
  color: #16a34a;
}
.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.contact-row h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.contact-row a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-row a:hover {
  color: var(--blue-600);
}
.contact-row .hint {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 0.25rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}
.form-group textarea {
  resize: vertical;
  min-height: 6rem;
}
.form-submit {
  width: 100%;
  background: var(--blue-600);
  color: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s, transform 0.2s;
}
.form-submit:hover {
  background: var(--blue-700);
}

.footer {
  background: var(--gray-900);
  color: #fff;
  padding: 3rem 0;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer h4 {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.footer p,
.footer li {
  color: var(--gray-400);
  line-height: 1.625;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links button {
  color: var(--gray-400);
  text-align: left;
  transition: color 0.2s;
}
.footer-links button:hover {
  color: #fff;
}
.footer a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s;
}
.footer a:hover {
  color: #fff;
}
.social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.social .fb {
  background: var(--blue-600);
}
.social .ig {
  background: linear-gradient(to bottom right, #9333ea, #db2777, #ea580c);
}
.social svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}
.footer-bar {
  border-top: 1px solid #1f2937;
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-400);
  font-size: 0.9rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
