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

:root {
  --primary: #1a1f71;
  --accent: #f2c94c;
  --light: #f9fafb;
  --dark: #242d42;
  --muted: #7b8199;
  --bg-gradient: radial-gradient(circle at top right, rgba(242, 201, 76, 0.2), transparent 55%), radial-gradient(circle at 20% 20%, rgba(26, 31, 113, 0.7), transparent 65%), linear-gradient(135deg, #0f123d, #171d52);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f7f8fb;
  color: #2c3349;
  line-height: 1.6;
}

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

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

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

h1,
h2,
h3 {
  font-family: "Poppins", "Inter", sans-serif;
  line-height: 1.2;
  color: #1b2250;
}

p {
  color: #5b6275;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.primary {
  background: var(--accent);
  color: #1a1f71;
  box-shadow: 0 10px 25px rgba(242, 201, 76, 0.35);
}

.btn.secondary {
  border: 1px solid rgba(36, 45, 66, 0.2);
  color: var(--dark);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(36, 45, 66, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  position: relative;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.site-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding-bottom: 0.25rem;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--primary);
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 0;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary);
}

.hero {
  background: linear-gradient(135deg, #f9fafc, #f1f4ff);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

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

.subtitle {
  font-size: 1.1rem;
  max-width: 540px;
  color: #4a4f61;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-meta {
  margin-top: 2.5rem;
  display: flex;
  gap: 2rem;
}

.hero-meta span {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
}

.hero-meta p {
  margin: 0.25rem 0 0;
  color: #6d758f;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.logo-mark {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff, #e4e8ff);
  border: 1px solid rgba(26, 31, 113, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 45px rgba(26, 31, 113, 0.12);
  overflow: hidden;
}

.logo-circle {
  width: 70%;
  height: 70%;
  border-radius: 50%;
  border: 2px solid rgba(26, 31, 113, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  position: relative;
  z-index: 2;
}

.logo-line {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.logo-line.accent {
  color: var(--accent);
}

.logo-ring {
  position: absolute;
  border: 1px solid rgba(26, 31, 113, 0.08);
  border-radius: 50%;
  animation: pulse 8s linear infinite;
}

.logo-ring.ring-one {
  inset: 10px;
}

.logo-ring.ring-two {
  inset: 25px;
  animation-duration: 12s;
}

.logo-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 201, 76, 0.25), transparent 70%);
  filter: blur(12px);
  animation: float 6s ease-in-out infinite alternate;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.service-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.service-card,
.feature-card {
  background: #fff;
  border: 1px solid rgba(36, 45, 66, 0.08);
  border-radius: 18px;
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card:hover,
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px rgba(15, 31, 68, 0.15);
}

.service-thumb {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(36, 45, 66, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.feature-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #f4f6ff;
  border: 1px solid rgba(26, 31, 113, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.feature-icon-box svg {
  width: 28px;
  height: 28px;
}

.service-card p,
.feature-card p {
  color: #4a5268;
}

.section-header p {
  color: #545c73;
}

.about {
  background: #fbf7f3;
}

.about-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(36, 45, 66, 0.12);
  font-size: 0.9rem;
  color: #5b4f47;
  margin-bottom: 1rem;
  box-shadow: 0 6px 20px rgba(15, 31, 68, 0.06);
}

.about-text p {
  color: #4b5269;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.about-feature-grid > div {
  display: flex;
  gap: 0.75rem;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(26, 31, 113, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.about-feature-grid strong {
  display: block;
  color: #1f2542;
}

.about-feature-grid p {
  margin: 0.2rem 0 0;
  color: #6a7084;
}

.about-stats {
  display: flex;
  justify-content: center;
}

.about-panel {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 32px;
  padding: 2rem;
  box-shadow: 0 30px 70px rgba(24, 23, 37, 0.1);
  border: 1px solid rgba(36, 45, 66, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  padding: 1.5rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8f3f0, #f4f1ff);
  text-align: center;
  border: 1px solid rgba(36, 45, 66, 0.06);
}

.stat-card span {
  display: block;
  font-size: 1.75rem;
  font-weight: 600;
  color: #1b2250;
}

.stat-card p {
  margin: 0.35rem 0 0;
  color: #7c7588;
}

.mission-card {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px dashed rgba(36, 45, 66, 0.2);
  background: #fdfaf6;
}

.mission-card h3 {
  margin: 0 0 0.5rem;
  color: #2d2440;
}

.mission-card p {
  margin: 0;
  color: #6b6276;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 1rem;
}

.testimonials {
  background: #ffffff;
}

.testimonial-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.slides {
  overflow: hidden;
  width: 100%;
}

.slide {
  display: none;
  margin: 0;
  padding: 2rem;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(36, 45, 66, 0.08);
  box-shadow: 0 20px 40px rgba(15, 31, 68, 0.1);
}

.slide.active {
  display: block;
}

.slide blockquote {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: #3b435e;
}

.slider-btn {
  background: rgba(26, 31, 113, 0.08);
  border: none;
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
}

.newsletter {
  background: #fbf7f3;
}

.newsletter-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 3.5rem;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(36, 45, 66, 0.08);
  text-align: center;
}

.newsletter-icon {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  margin: 0 auto 1.5rem;
  background: rgba(26, 31, 113, 0.06);
  display: grid;
  place-items: center;
}

.newsletter-text {
  margin: 0 auto 1.75rem;
  max-width: 460px;
  color: #605868;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-inputs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(36, 45, 66, 0.15);
  background: #fff;
  color: #2c3349;
  font-size: 1rem;
}

.btn.dark {
  background: #101727;
  color: #fff;
  padding: 0.95rem 1.75rem;
  box-shadow: none;
}

.form-note {
  font-size: 0.85rem;
  margin: 0.25rem 0 0;
  color: #8a7f92;
}

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

.contact {
  background: #fdf9f6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  align-items: stretch;
}

.contact-info-card {
  background: #fff;
  border-radius: 28px;
  padding: 2.5rem;
  border: 1px solid rgba(36, 45, 66, 0.08);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.contact-info-card p {
  color: #4a4f61;
}

.contact-details {
  margin: 2rem 0;
  display: grid;
  gap: 1.25rem;
}

.contact-details > div {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.contact-details span {
  font-size: 1.4rem;
}

.contact-details strong {
  display: block;
  color: #1b2250;
}

.contact-details p {
  margin: 0.15rem 0 0;
}

.soon-note {
  padding: 0.85rem 1.25rem;
  border-radius: 14px;
  background: #fff6df;
  color: #7a5b10;
  font-weight: 500;
  border: 1px solid rgba(242, 201, 76, 0.4);
}

.why-card {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 18px;
  background: #f6f2ff;
  border: 1px solid rgba(36, 45, 66, 0.08);
}

.why-card h3 {
  margin: 0 0 0.75rem;
  color: #1f2542;
}

.why-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #4b5064;
  display: grid;
  gap: 0.35rem;
}

.contact-form-card {
  background: #fff;
  border-radius: 28px;
  padding: 2.5rem;
  border: 1px solid rgba(36, 45, 66, 0.08);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-card h3 {
  margin: 0;
  color: #1b2250;
}

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

.contact-form-card label {
  font-weight: 600;
  color: #1f2542;
  margin-bottom: 0.3rem;
  display: inline-block;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(36, 45, 66, 0.15);
  background: #fafafa;
  color: #2c3349;
  font-family: inherit;
}

.contact-form-card textarea {
  resize: vertical;
}

.site-footer {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, #0b0c07 0%, #2a1b12 35%, #3b2216 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  width: min(420px, 90vw);
  border: 1px solid rgba(36, 45, 66, 0.08);
  position: relative;
  box-shadow: 0 30px 60px rgba(15, 31, 68, 0.2);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--dark);
  font-size: 1.5rem;
  cursor: pointer;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  to {
    transform: translate(25%, -15%);
    opacity: 0.8;
  }
}

@keyframes pulse {
  from {
    transform: scale(0.98);
    opacity: 0.7;
  }
  to {
    transform: scale(1.05);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .site-nav {
    position: absolute;
    top: 100%;
    right: 1.5rem;
    background: #fff;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(36, 45, 66, 0.12);
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .site-nav ul {
    flex-direction: column;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-meta {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 6rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .section {
    padding: 4rem 0;
  }
}

