:root {
  --maroon-900: #3c0b1f;
  --maroon-800: #54142b;
  --maroon-700: #6a1d36;
  --rose-200: #f6d7e3;
  --text: #fff4f8;
  --page-x: clamp(76px, 11vw, 210px);
  --section-space: 110px;
  --ink-dark: #2b1440;
  --ink-mid: #4c2b6b;
  --ink-soft: #6f4b90;
}

@keyframes floatDrift {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { scroll-padding-top: 128px; }
body {
  font-family: "DM Sans", sans-serif;
  background: linear-gradient(140deg, #2b0057 0%, #3b0a70 55%, #1f0140 100%);
  color: var(--text);
  min-height: 100vh;
}

#top {
  scroll-margin-top: 128px;
}

.hero-page {
  min-height: 100vh;
  width: 100%;
  padding: 150px var(--page-x) 0;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  background: linear-gradient(140deg, #2b0057 0%, #3b0a70 55%, #1f0140 100%);
  position: relative;
  overflow: hidden;
}

.hero-page::before,
.hero-page::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
}

.hero-page::before {
  inset: -20% -10% auto -10%;
  width: auto;
  height: 70%;
  border-radius: 0;
  background:
    radial-gradient(42% 48% at 18% 22%, rgba(255, 176, 224, 0.34), rgba(255, 176, 224, 0)),
    radial-gradient(38% 42% at 72% 34%, rgba(177, 99, 255, 0.33), rgba(177, 99, 255, 0)),
    radial-gradient(30% 36% at 50% 8%, rgba(255, 218, 245, 0.24), rgba(255, 218, 245, 0));
  transform: none;
  animation: floatDrift 13s ease-in-out infinite;
}

.hero-page::after {
  inset: auto -10% -24% -10%;
  width: auto;
  height: 60%;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(46% 56% at 24% 72%, rgba(255, 188, 238, 0.28), rgba(255, 188, 238, 0)),
    radial-gradient(40% 52% at 78% 68%, rgba(141, 91, 188, 0.3), rgba(141, 91, 188, 0)),
    radial-gradient(28% 34% at 56% 96%, rgba(255, 196, 240, 0.22), rgba(255, 196, 240, 0));
  animation: floatDrift 16s ease-in-out infinite;
}

.hero-page > * {
  position: relative;
  z-index: 1;
}

.hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 102px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2000;
  padding: 30px var(--page-x);
  background: #2b0057;
}

.brand { display: inline-flex; text-decoration: none; }
.brand-logo {
  height: clamp(18px, 2.1vw, 28px);
  width: auto;
  filter: brightness(0) invert(1);
}

.hero-nav {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-nav a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  color: #ffffff;
  padding: 0.1rem 0;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.24);
  transition: color 0.22s ease;
}

.hero-nav a:hover {
  color: #ffd2f2;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero-nav .nav-talk {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0.44rem 1.05rem;
  border: 1.8px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  line-height: 1;
}

.hero-nav .nav-talk:hover {
  color: #ffffff;
  border-color: #ffffff;
  text-decoration: none;
}

.nav-talk-arrow {
  font-size: 1.35rem;
  line-height: 1;
}

.hero {
  max-width: 1200px;
  margin: 34px auto var(--section-space);
  width: 100%;
  text-align: center;
}

.wave-separator {
  width: auto;
  margin-left: calc(-1 * var(--page-x));
  margin-right: calc(-1 * var(--page-x));
  height: 18px;
  display: block;
  border: 0;
  line-height: 0;
  scroll-margin-top: 128px;
}

.wave-about {
  background: linear-gradient(90deg, #c284fb 0%, #dfadff 50%, #ffb0e0 100%);
}

.wave-serve {
  background: linear-gradient(90deg, #ffb0e0 0%, #cb9add 48%, #6e2eab 100%);
}

.wave-contact {
  background: linear-gradient(90deg, #5f209c 0%, #8d5bbc 50%, #b68bcc 100%);
}

.wave-footer {
  background: linear-gradient(90deg, #b68bcc 0%, #9465bc 50%, #2b0057 100%);
}

.wave-separator.wave-footer {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  height: 12px;
}


h1, h2 {
  font-family: Outfit, sans-serif;
  letter-spacing: -0.01em;
}

h1 {
  margin: 0 auto;
  font-size: clamp(1.85rem, 5.9vw, 4.2rem);
  line-height: 1.02;
  max-width: 1200px;
  text-align: center;
}

.headline-soft {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(79, 22, 48, 0.45);
}

.headline-highlight {
  position: relative;
  display: inline-block;
  color: #ffffff;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.32);
  z-index: 1;
}

.headline-highlight::after {
  content: "";
  position: absolute;
  left: 0.02em;
  right: 0.02em;
  bottom: -0.02em;
  height: 0.78em;
  background: #b163ff;
  border-radius: 0.18em;
  transform: rotate(-1.2deg);
  z-index: -1;
  opacity: 1;
}


.hero-copy {
  margin: 34px auto 0;
  color: #ffffff;
  font-size: clamp(0.94rem, 2vw, 1.15rem);
  max-width: 700px;
  line-height: 1.55;
  text-shadow: 0 2px 10px rgba(79, 22, 48, 0.36);
}

.btn {
  text-decoration: none;
  border-radius: 10px;
  padding: 0.72rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.btn-light {
  background: var(--text);
  color: #3c0b1f;
}

.hero-cards {
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-cards article {
  background: #9547e1;
  border: 1px solid #c894ff;
  box-shadow: 0 10px 22px rgba(78, 18, 132, 0.38);
  border-radius: 12px;
  padding: 12px;
}

.hero-cards article:nth-child(odd) {
  transform: rotate(-0.35deg);
}

.hero-cards article:nth-child(even) {
  transform: rotate(0.35deg);
}

.hero-cards h2 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-family: "Kalam", "DM Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
}

.hero-cards p {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 235, 243, 0.88);
}

.about {
  width: auto;
  margin-left: calc(-1 * var(--page-x));
  margin-right: calc(-1 * var(--page-x));
  margin-top: 0;
  padding: calc(var(--section-space) - 28px) 0 var(--section-space);
  text-align: center;
  background: #ffb0e0;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(56% 52% at 14% 10%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    radial-gradient(45% 48% at 88% 88%, rgba(129, 42, 195, 0.22), rgba(129, 42, 195, 0)),
    radial-gradient(34% 36% at 55% 52%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  opacity: 0.9;
  pointer-events: none;
}

.about::after {
  content: "";
  position: absolute;
  inset: auto 0 -40% 0;
  height: 55%;
  width: 100%;
  border-radius: 0;
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 176, 224, 0), rgba(255, 255, 255, 0.2)),
    radial-gradient(36% 40% at 18% 86%, rgba(255, 176, 224, 0.22), rgba(255, 176, 224, 0));
  pointer-events: none;
}

.about > * {
  position: relative;
  z-index: 1;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(24px, 5vw, 72px);
}

.about-eyebrow {
  font-family: "Space Grotesk", "Outfit", sans-serif;
  display: inline-block;
  position: relative;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(1.55rem, 3.3vw, 2.25rem);
  font-weight: 900;
  line-height: 1;
  color: var(--ink-dark);
  padding: 0.05em 0.12em 0.01em;
  z-index: 0;
  text-decoration: none;
}

.about-eyebrow::after {
  content: "";
  position: absolute;
  left: -0.6em;
  right: -0.6em;
  top: 50%;
  height: 1.18em;
  border-radius: 0.2em;
  background: rgba(154, 72, 221, 0.52);
  transform: translateY(-50%) rotate(-0.35deg);
  z-index: -1;
}

.about-eyebrow::before {
  content: "";
  position: absolute;
  left: -0.22em;
  right: -0.22em;
  bottom: 0.01em;
  height: 0.12em;
  border-radius: 999px;
  background: currentColor;
  transform: none;
  opacity: 0.95;
  z-index: 1;
  pointer-events: none;
}

.about h2 {
  font-family: "Space Grotesk", "Outfit", sans-serif;
  margin: 46px 0 0;
  font-size: clamp(1.28rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  color: var(--ink-dark);
}

.about-copy {
  margin: 18px 0 0;
  max-width: 860px;
  color: var(--ink-mid);
  font-size: clamp(0.98rem, 1.45vw, 1.06rem);
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.tools-section {
  margin-top: 30px;
}

.tools-heading {
  margin: 0 0 14px;
  font-family: "Space Grotesk", "Outfit", sans-serif;
  font-size: clamp(1.35rem, 2.7vw, 1.8rem);
  font-weight: 700;
  color: var(--ink-dark);
}

.tool-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.tool-marquee::before,
.tool-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(28px, 6vw, 72px);
  z-index: 2;
  pointer-events: none;
}

.tool-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffb0e0 18%, rgba(255, 176, 224, 0));
}

.tool-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffb0e0 18%, rgba(255, 176, 224, 0));
}

.tool-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: tools-scroll 60s linear infinite;
}

.tool-marquee:hover .tool-track {
  animation-play-state: paused;
}

.tool-tile {
  width: clamp(220px, 26vw, 270px);
  min-height: 142px;
  background: #ffffff;
  border: 1px solid rgba(81, 21, 140, 0.14);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(66, 24, 97, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(66, 24, 97, 0.16);
}

.tool-tile img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-bottom: 10px;
  filter: none;
  transition: transform 0.3s ease;
}

.tool-tile:hover img {
  transform: scale(1.06);
}

.tool-tile h4 {
  margin: 0;
  font-family: "Space Grotesk", "Outfit", sans-serif;
  font-size: 1rem;
  color: var(--ink-dark);
}

.tool-tile p {
  margin: 6px 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink-mid);
}

@keyframes tools-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.about-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-grid article {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(81, 21, 140, 0.24);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 8px 18px rgba(68, 22, 98, 0.08);
}

.about-grid h3 {
  margin: 0 0 6px;
  font-family: "Space Grotesk", "Outfit", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink-dark);
}

.about-grid p {
  margin: 0;
  color: var(--ink-mid);
  font-size: 0.94rem;
  line-height: 1.55;
}

.serve {
  width: auto;
  margin-left: calc(-1 * var(--page-x));
  margin-right: calc(-1 * var(--page-x));
  margin-top: 0;
  padding: calc(var(--section-space) - 28px) 0 var(--section-space);
  text-align: center;
  background:
    radial-gradient(1200px 520px at 12% -8%, rgba(177, 99, 255, 0.24), transparent 62%),
    radial-gradient(1000px 500px at 92% 108%, rgba(214, 155, 255, 0.2), transparent 66%),
    linear-gradient(145deg, #4a1183 0%, #51158c 48%, #3c0f69 100%);
  position: relative;
  overflow: hidden;
}

.serve::before,
.serve::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.serve::before {
  inset: 0;
  background:
    radial-gradient(50% 44% at 10% 12%, rgba(216, 164, 255, 0.32), rgba(216, 164, 255, 0)),
    radial-gradient(42% 46% at 90% 90%, rgba(255, 186, 232, 0.28), rgba(255, 186, 232, 0)),
    radial-gradient(30% 34% at 52% 52%, rgba(190, 122, 242, 0.2), rgba(190, 122, 242, 0));
  opacity: 0.92;
}

.serve::after {
  inset: 0;
  width: auto;
  height: auto;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  border-radius: 0;
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
    radial-gradient(26% 30% at 8% 88%, rgba(255, 190, 234, 0.2), rgba(255, 190, 234, 0)),
    radial-gradient(24% 28% at 92% 16%, rgba(205, 149, 249, 0.18), rgba(205, 149, 249, 0));
}

.serve > * {
  position: relative;
  z-index: 1;
}

.serve h2 {
  font-family: "Space Grotesk", "Outfit", sans-serif;
  margin: 46px auto 0;
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 820px;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

.serve .about-eyebrow {
  margin: 0;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
}

.serve .about-eyebrow::after {
  background: rgba(190, 122, 242, 0.5);
}

.contact .about-eyebrow::after {
  background: rgba(111, 36, 168, 0.46);
}

.contact .about-eyebrow {
  color: var(--ink-dark);
}

.serve-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(24px, 5vw, 72px);
}

.serve-grid article {
  position: relative;
  isolation: isolate;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.09) 100%);
  border: 1px solid rgba(255, 235, 243, 0.42);
  border-radius: 14px;
  padding: 14px 12px;
  min-height: 64px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(28, 4, 48, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.serve-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.08));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.62;
  pointer-events: none;
}

.serve-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(20, 2, 34, 0.34);
  border-color: rgba(255, 235, 243, 0.62);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.11) 100%);
}

.serve-grid h3 {
  margin: 0;
  font-family: "Space Grotesk", "Outfit", sans-serif;
  font-size: 1.02rem;
  line-height: 1.3;
  text-wrap: balance;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
}

.serve-grid p {
  margin: 0;
  color: rgba(255, 235, 243, 0.92);
  font-size: 0.9rem;
}

.contact {
  width: auto;
  margin-left: calc(-1 * var(--page-x));
  margin-right: calc(-1 * var(--page-x));
  margin-top: 0;
  padding: calc(var(--section-space) - 28px) 0 var(--section-space);
  text-align: center;
  background: #b68bcc;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(46% 48% at 12% 14%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    radial-gradient(38% 44% at 86% 86%, rgba(81, 21, 140, 0.28), rgba(81, 21, 140, 0)),
    radial-gradient(30% 34% at 50% 52%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.contact::after {
  content: "";
  position: absolute;
  inset: auto 0 -42% 0;
  width: auto;
  height: 52%;
  right: 0;
  left: 0;
  top: auto;
  bottom: -42%;
  border-radius: 0;
  border: 0;
  background:
    linear-gradient(180deg, rgba(182, 139, 204, 0), rgba(81, 21, 140, 0.24)),
    radial-gradient(30% 34% at 84% 18%, rgba(255, 185, 233, 0.2), rgba(255, 185, 233, 0));
  pointer-events: none;
}

.contact > * {
  position: relative;
  z-index: 1;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
}

.contact h2 {
  font-family: "Space Grotesk", "Outfit", sans-serif;
  margin: 46px auto 0;
  max-width: 760px;
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink-dark);
}

.contact-copy {
  margin: 16px auto 0;
  max-width: 760px;
  color: var(--ink-mid);
  font-size: clamp(0.98rem, 1.45vw, 1.06rem);
  line-height: 1.58;
}

.contact-form {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(81, 21, 140, 0.45);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 24px rgba(58, 20, 88, 0.12);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.contact-form span {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink-mid);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(81, 21, 140, 0.4);
  background: #ffffff;
  color: var(--ink-dark);
  border-radius: 10px;
  padding: 0.78rem 0.84rem;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--ink-soft);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #51158c;
  box-shadow: 0 0 0 2px rgba(81, 21, 140, 0.2);
}

.message-field {
  margin-top: 12px;
}

.website-trap {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-actions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.form-msg {
  margin: 0;
  min-height: 1.2rem;
  font-size: 0.9rem;
  color: var(--ink-mid);
}

.contact .btn-light {
  background: #51158c;
  color: #ffffff;
  border-color: #3f0f6e;
}

.form-msg.success {
  color: #d4ffd8;
}

.form-msg.error {
  color: #ffd3d7;
}


.contact-form.hidden {
  display: none;
}

.inquiry-success {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 24px 20px;
  border-radius: 16px;
  border: 1px solid rgba(36, 120, 80, 0.34);
  background: rgba(231, 255, 242, 0.9);
  color: #12472f;
  text-align: center;
  box-shadow: 0 16px 30px rgba(23, 98, 66, 0.14);
}

.inquiry-success.hidden {
  display: none;
}

.success-check {
  width: clamp(88px, 10vw, 120px);
  height: clamp(88px, 10vw, 120px);
  display: block;
  margin: 0 auto 12px;
  filter: drop-shadow(0 8px 14px rgba(22, 132, 78, 0.2));
}

.success-check circle,
.success-check path {
  fill: none;
  stroke: #22a160;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-check circle {
  stroke-width: 8;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  animation: drawCircle 0.58s ease forwards;
}

.success-check path {
  stroke-width: 9;
  stroke-dasharray: 76;
  stroke-dashoffset: 76;
  animation: drawCheck 0.42s 0.52s ease forwards;
}

.inquiry-success h3 {
  margin: 0;
  font-family: "Space Grotesk", "Outfit", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #0f5f3a;
}

.inquiry-success p {
  margin: 8px 0 0;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  color: #176440;
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.site-footer {
  width: 100%;
  margin: 0;
  background: #2b0057;
  border-top: 0;
  position: relative;
}

.site-footer::before {
  display: none;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: calc(var(--section-space) + 12px) clamp(24px, 5vw, 72px) var(--section-space);
  min-height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: inline-flex;
  text-decoration: none;
  margin-top: 4px;
}

.footer-copy {
  text-align: center;
}

.footer-email {
  margin: 2px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 235, 243, 0.92);
  font-size: 0.92rem;
  line-height: 1.4;
}

.footer-email a {
  color: inherit;
  text-decoration: none;
}

.footer-email a:hover {
  text-decoration: underline;
}

.footer-email-icon {
  width: 17px;
  height: 17px;
  opacity: 0.95;
}

.footer-email-icon rect,
.footer-email-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 235, 243, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-inner p + p {
  margin-top: 6px;
}

@media (max-width: 900px) {
  .hero-cards,
  .about-grid,
  .serve-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    min-height: 0;
    padding: 36px clamp(24px, 5vw, 72px);
    flex-direction: column;
    align-items: center;
  }

  .footer-copy {
    text-align: center;
  }

  .tool-track {
    animation-duration: 46s;
  }

  .tool-tile {
    width: clamp(190px, 62vw, 230px);
    min-height: 132px;
  }

  .serve-grid {
    gap: 12px;
  }
}


.faq-band {
  margin: 0 calc(-1 * var(--page-x));
  padding: calc(var(--section-space) - 28px) 0 calc(var(--section-space) - 22px);
  background: #ff9bd5;
  position: relative;
  overflow: hidden;
}

.faq-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 48% at 16% 16%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)),
    radial-gradient(36% 40% at 84% 78%, rgba(111, 36, 168, 0.25), rgba(111, 36, 168, 0)),
    radial-gradient(26% 28% at 52% 54%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  opacity: 0.86;
  pointer-events: none;
}

.faq-band > * {
  position: relative;
  z-index: 1;
}

.faq-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
  text-align: center;
}

.faq-title {
  margin: 0;
  font-family: "Space Grotesk", "Outfit", sans-serif;
  display: inline-block;
  position: relative;
  font-size: clamp(1.55rem, 3.3vw, 2.25rem);
  font-weight: 900;
  line-height: 1;
  padding: 0.05em 0.12em 0.01em;
  color: var(--ink-dark);
  z-index: 0;
  text-decoration: none;
}

.faq-title::after {
  content: "";
  position: absolute;
  left: -0.6em;
  right: -0.6em;
  top: 50%;
  height: 1.18em;
  border-radius: 0.2em;
  background: rgba(154, 72, 221, 0.52);
  transform: translateY(-50%) rotate(-0.35deg);
  z-index: -1;
}

.faq-title::before {
  content: "";
  position: absolute;
  left: -0.22em;
  right: -0.22em;
  bottom: 0.01em;
  height: 0.12em;
  border-radius: 999px;
  background: currentColor;
  transform: none;
  opacity: 0.95;
  z-index: 1;
  pointer-events: none;
}

.faq-subtitle {
  margin: 30px auto 0;
  max-width: 760px;
  color: var(--ink-mid);
  font-family: "Space Grotesk", "Outfit", sans-serif;
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  font-weight: 700;
  line-height: 1.35;
}

.faq-list {
  margin: 24px auto 0;
  max-width: 900px;
  display: grid;
  gap: 12px;
  text-align: left;
}

.faq-item {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(81, 21, 140, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Space Grotesk", "Outfit", sans-serif;
  font-weight: 700;
  color: var(--ink-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink-dark);
  background: rgba(81, 21, 140, 0.12);
  border: 1px solid rgba(81, 21, 140, 0.26);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] summary::after {
  content: "×";
  transform: rotate(90deg);
  background: rgba(81, 21, 140, 0.2);
  border-color: rgba(81, 21, 140, 0.45);
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--ink-mid);
  line-height: 1.58;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: var(--page-x);
  right: var(--page-x);
  bottom: 20px;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(28, 7, 52, 0.92);
  box-shadow: 0 12px 26px rgba(12, 2, 24, 0.36);
}

.cookie-banner p {
  margin: 0;
  color: #f4e9ff;
  font-size: 0.92rem;
  line-height: 1.45;
}

.cookie-accept {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  background: #b163ff;
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-banner.hidden {
  display: none;
}

@media (max-width: 680px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
}
