@font-face {
  font-family: "Satoshi";
  src: url("../assets/fonts/Satoshi-Variable.woff2") format("woff2");
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --font-heading: "Satoshi", "General Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #f8fbff;
  --surface: #ffffff;
  --surface-soft: #eef6ff;
  --text: #111827;
  --muted: #5b6472;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --accent: #06b6d4;
  --accent-soft: #dff8ff;
  --border: #dbe7f5;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 14px 35px rgba(15, 23, 42, 0.06);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --section: 96px;
  --ease: 220ms ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: var(--section) 0;
  position: relative;
}

.section-soft {
  background: linear-gradient(180deg, rgba(238, 246, 255, 0.7), rgba(255, 255, 255, 0));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.06);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 900;
  max-width: 900px;
  margin: 22px 0 24px;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 850;
  max-width: 820px;
  margin: 18px 0 18px;
}

h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 22px 45px rgba(37, 99, 235, 0.32);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: var(--shadow-soft);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 255, 0.82);
  border-bottom: 1px solid rgba(219, 231, 245, 0.8);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 20px;
  white-space: nowrap;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
  font-size: 17px;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #334155;
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 14px;
  padding: 12px 17px;
  min-height: 42px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 99px;
}

.hero {
  padding: 92px 0 72px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 54px;
}

.hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.78;
}

.orb.one {
  width: 270px;
  height: 270px;
  background: rgba(37, 99, 235, 0.16);
  top: 12px;
  right: 36px;
}

.orb.two {
  width: 220px;
  height: 220px;
  background: rgba(6, 182, 212, 0.18);
  bottom: 52px;
  left: 18px;
}

.dashboard-card {
  position: absolute;
  top: 54px;
  right: 0;
  width: min(440px, 100%);
  padding: 22px;
  border: 1px solid rgba(219, 231, 245, 0.92);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  z-index: 2;
}

.dash-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.dash-title {
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 18px;
}

.status-pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 12px;
  font-weight: 850;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.metric {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
  border: 1px solid var(--border);
}

.metric strong {
  display: block;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.flow-card {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.flow-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 14px;
}

.flow-row:last-child {
  margin-bottom: 0;
}

.icon-bubble {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 900;
}

.flow-row b {
  display: block;
  line-height: 1.2;
  margin-bottom: 3px;
}

.flow-row small {
  color: var(--muted);
  font-weight: 600;
}

.floating-card {
  position: absolute;
  left: 20px;
  bottom: 22px;
  width: 270px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(6, 182, 212, 0.32), transparent 34%),
    linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #fff;
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.22);
  z-index: 1;
}

.floating-card span {
  display: block;
  color: #dbeafe;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 8px;
}

.floating-card strong {
  font-family: var(--font-heading);
  display: block;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.numbers {
  position: relative;
  z-index: 4;
  margin-top: 56px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.number-card {
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
  border: 1px solid rgba(219, 231, 245, 0.72);
}

.number-card strong {
  font-family: var(--font-heading);
  display: block;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.number-card span {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.services {
  padding-top: 84px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(37, 99, 235, 0.22);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--surface-soft), var(--accent-soft));
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.service-icon svg,
.mini-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card p,
.process-card p,
.profile-card p,
.model-card p,
.work-card p,
.testimonial p,
.faq-content p {
  color: var(--muted);
}

.inline-cta {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
  margin-top: 40px;
}

.why-panel {
  position: sticky;
  top: 110px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #111827, #1e3a8a);
  color: #fff;
  box-shadow: var(--shadow);
}

.why-panel p {
  color: #dbeafe;
  margin-top: 14px;
  font-size: 17px;
}

.why-list {
  display: grid;
  gap: 16px;
}

.why-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.mini-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: #eff6ff;
  color: var(--primary-dark);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.process-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 950;
  margin-bottom: 24px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.profile-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.profile-card h3 {
  font-size: 18px;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.model-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.best-for {
  margin-top: 20px;
  padding: 14px;
  border-radius: 16px;
  background: var(--surface-soft);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 850;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.work-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}


.work-image {
  height: 220px;
  overflow: hidden;
  background: #eef6ff;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease);
}

.work-card:hover .work-image img {
  transform: scale(1.04);
}

.work-visual {
  height: 170px;
  background:
    radial-gradient(circle at 20% 20%, rgba(6, 182, 212, 0.34), transparent 32%),
    radial-gradient(circle at 80% 0%, rgba(37, 99, 235, 0.28), transparent 30%),
    linear-gradient(135deg, #eef6ff, #ffffff);
  position: relative;
}

.work-visual::after {
  content: "";
  position: absolute;
  inset: 38px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.1);
}

.work-content {
  padding: 24px;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 850;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.testimonial {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.quote {
  font-size: 42px;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 8px;
}

.client {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-weight: 850;
}

.client span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  margin-top: 2px;
}

.faq-wrap {
  margin-top: 38px;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question span:last-child {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eff6ff;
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  flex: 0 0 auto;
  transition: transform var(--ease);
}

.faq-item.open .faq-question span:last-child {
  transform: rotate(45deg);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--ease);
}

.faq-item.open .faq-content {
  grid-template-rows: 1fr;
}

.faq-content > div {
  overflow: hidden;
}

.faq-content p {
  padding: 0 24px 22px;
}

.cta-strip {
  padding: 58px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(6, 182, 212, 0.32), transparent 34%),
    linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-strip h2 {
  margin-top: 0;
  max-width: 820px;
}

.cta-strip p {
  max-width: 780px;
  color: #dbeafe;
  font-size: 18px;
  margin-bottom: 26px;
}

.cta-strip .btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
  margin-top: 38px;
}

.form-card,
.contact-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 14px 15px;
  background: #fbfdff;
  color: var(--text);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

input:focus,
select:focus,
textarea:focus,
.btn:focus-visible,
.menu-toggle:focus-visible,
.faq-question:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.22);
  outline-offset: 3px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.form-message {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #ecfdf5;
  color: #047857;
  font-weight: 800;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.contact-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid var(--border);
  color: #334155;
  font-weight: 750;
}

.whatsapp {
  width: 100%;
  margin-top: 6px;
}

.footer {
  padding: 54px 0 28px;
  background: #0f172a;
  color: #e5edff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

.footer h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 14px;
}

.footer p,
.footer a {
  color: #b8c5dc;
}

.footer a:hover {
  color: #fff;
}

.footer-links,
.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #93a4bf;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  :root {
    --section: 82px;
  }

  .nav-links,
  .header .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links.open {
    display: grid;
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    justify-content: stretch;
    gap: 8px;
  }

  .nav-links.open a {
    padding: 12px;
  }

  .hero-grid,
  .why-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .dashboard-card {
    right: 0;
  }

  .floating-card {
    left: 20px;
    bottom: 16px;
  }

  .numbers-grid,
  .grid-3,
  .process-grid,
  .profile-grid,
  .models-grid,
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    padding-top: 58px;
  }

  .hero p,
  .section-lead {
    font-size: 16px;
  }

  .hero-actions,
  .inline-cta {
    align-items: stretch;
  }

  .btn,
  .hero-actions .btn,
  .inline-cta .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .dashboard-card,
  .floating-card,
  .orb {
    position: static;
  }

  .orb {
    display: none;
  }

  .floating-card {
    width: 100%;
  }

  .numbers {
    margin-top: 34px;
  }

  .numbers-grid,
  .grid-3,
  .process-grid,
  .profile-grid,
  .models-grid,
  .work-grid,
  .testimonial-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .why-item {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    padding: 34px 24px;
    border-radius: 28px;
  }

  .form-card,
  .contact-card,
  .card,
  .testimonial,
  .model-card,
  .process-card,
  .profile-card,
  .why-panel {
    padding: 24px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.form-message.success {
  display: block;
  background: #ecfdf5;
  color: #047857;
}

.form-message.error {
  display: block;
  background: #fef2f2;
  color: #b91c1c;
}

.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}
