/* =========================================================
   Google Fonts
   ========================================================= */

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


/* =========================================================
   Root Variables
   ========================================================= */

:root {
  --primary: #62528f;
  --primary-dark: #403567;
  --secondary: #344d87;
  --accent: #f0bd2d;

  --ink: #172033;
  --muted: #687086;

  --bg: #fbfbfd;
  --soft: #f3f1f8;
  --line: #e6e3ee;
  --white: #fff;

  --shadow: 0 16px 45px rgba(39, 31, 68, 0.10);
}


/* =========================================================
   Global Reset
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fbfbfd 55%,
    #f7f8fc 100%
  );
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

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


/* =========================================================
   Typography
   ========================================================= */

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.18;
  margin: 0 0 14px;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 3rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  color: var(--muted);
}


/* =========================================================
   Sections
   ========================================================= */

.section {
  padding: 90px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-title {
  max-width: 700px;
  margin: 0 auto 45px;
  text-align: center;
}

.section-title h2 {
  letter-spacing: -0.025em;
}

.section-title p {
  margin-bottom: 0;
}


/* =========================================================
   Eyebrow
   ========================================================= */

.eyebrow {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  color: var(--primary);
  text-transform: uppercase;
}


/* =========================================================
   Gradient Text
   ========================================================= */

.gradient-text {
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* =========================================================
   Buttons
   ========================================================= */

.btn-brand {
  background: linear-gradient(
    135deg,
    var(--primary),
    #7966a9
  );
  color: #fff;
  border: 0;
  padding: 13px 25px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(98, 82, 143, 0.22);
  transition: 0.25s ease;
}

.btn-brand:hover {
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline-brand {
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 12px 23px;
  border-radius: 10px;
  font-weight: 700;
}


/* =========================================================
   Reveal Animation
   ========================================================= */

.reveal {
  animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   Page Hero
   ========================================================= */

.page-hero {
  padding: 175px 0 90px;
  background:
    radial-gradient(
      circle at 12% 30%,
      #eee9fb 0,
      transparent 28%
    ),
    linear-gradient(
      120deg,
      #fff,
      #f7f6fb
    );
  overflow: hidden;
}

.page-hero .hero-visual {
  max-width: 470px;
  margin: auto;
}


/* =========================================================
   Soft Badge
   ========================================================= */

.badge-soft {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 13px;
  border-radius: 99px;
  background: #eee9fb;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
}


/* =========================================================
   Service Cards
   ========================================================= */

.service-card {
  position: relative;
  height: 100%;
  overflow: hidden;

  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;

  padding: 26px;

  box-shadow: 0 6px 25px rgba(30, 25, 55, 0.04);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: #d7cfea;
}

.service-card::after {
  content: "";

  position: absolute;
  inset: auto -35px -35px auto;

  width: 90px;
  height: 90px;

  background: radial-gradient(
    circle,
    rgba(98, 82, 143, 0.10),
    transparent 68%
  );

  pointer-events: none;
}


/* =========================================================
   Icon Box
   ========================================================= */

.icon-box {
  width: 52px;
  height: 52px;

  border-radius: 15px;

  background: linear-gradient(
    135deg,
    #eee9fb,
    #f7f6fb
  );

  display: grid;
  place-items: center;

  color: var(--primary);
  font-size: 1.35rem;

  margin-bottom: 18px;
}


/* =========================================================
   Information Band
   ========================================================= */

.info-band {
  background: linear-gradient(
    135deg,
    #312a50,
    #5f4e88
  );

  color: #fff;

  border-radius: 24px;
  padding: 42px;
}

.info-band p {
  color: #ddd8ea;
}


/* =========================================================
   Check List
   ========================================================= */

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.check-list li {
  padding: 7px 0;
}

.check-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 900;
  margin-right: 10px;
}


/* =========================================================
   CTA Panel
   ========================================================= */

.cta-panel {
  background: linear-gradient(
    120deg,
    #f2eefb,
    #fff 55%,
    #edf1fb
  );

  border: 1px solid var(--line);
  border-radius: 24px;

  padding: 48px;
}


/* =========================================================
   Stats
   ========================================================= */

.stat {
  padding: 24px;
  border-radius: 18px;

  background: #fff;
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 1.8rem;
  color: var(--primary);
  font-family: "Space Grotesk", sans-serif;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq .accordion-button:not(.collapsed) {
  background: #f1edfa;
  color: var(--primary);
  box-shadow: none;
}

.faq .accordion-button:focus {
  box-shadow: none;
}


/* =========================================================
   Floating Back-to-Top
   ========================================================= */

.floating-top {
  position: fixed;

  right: 22px;
  bottom: 22px;

  width: 46px;
  height: 46px;

  border: 0;
  border-radius: 50%;

  background: var(--primary);
  color: #fff;

  display: none;

  z-index: 100;
}


/* =========================================================
   Toast
   ========================================================= */

.toast-wrap {
  position: fixed;

  right: 20px;
  bottom: 20px;

  z-index: 3000;
}


/* =========================================================
   Form Controls
   ========================================================= */

.form-control,
.form-select {
  padding: 13px;
  border-color: #ded9e8;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);

  box-shadow:
    0 0 0 0.2rem rgba(98, 82, 143, 0.12);
}


/* =========================================================
   Main Content
   ========================================================= */

main {
  min-height: 70vh;
}


/* =========================================================
   Alternating Section Decoration
   ========================================================= */

.section:nth-of-type(even) {
  position: relative;
}

.section:nth-of-type(even)::before {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(98, 82, 143, 0.06),
    transparent 70%
  );

  right: -100px;
  top: 20px;

  pointer-events: none;
}


/* =========================================================
   Responsive — Tablet & Mobile
   ========================================================= */

@media (max-width: 991px) {

  .section {
    padding: 70px 0;
  }

  .page-hero {
    padding-top: 125px;
  }

  .desktop-actions {
    display: none;
  }
}