:root {
  --bg: #f6f1e7;
  --bg-soft: #fcf8f1;
  --surface: rgba(255, 252, 246, 0.82);
  --surface-strong: #0b1f3b;
  --surface-deep: #08172d;
  --text: #132542;
  --text-muted: rgba(19, 37, 66, 0.8);
  --text-inverse: #f8f4ec;
  --text-inverse-muted: rgba(248, 245, 238, 0.82);
  --accent: #c99b3b;
  --accent-deep: #9c7320;
  --border: rgba(19, 37, 66, 0.12);
  --shadow: 0 20px 52px rgba(9, 26, 51, 0.1);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 155, 59, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(16, 39, 77, 0.05), transparent 20%),
    linear-gradient(180deg, #fdf9f2 0%, #f4edde 52%, #f7f1e5 100%);
  min-height: 100vh;
}

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

button,
input,
select {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 24px), var(--container));
  margin: 0 auto;
  padding: 14px 0 118px;
}

.topbar {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
  border-radius: 20px;
  background: rgba(255, 252, 246, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(9, 26, 51, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(9, 26, 51, 0.08);
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-text strong,
.hero h1,
.section-heading h2,
.quick-card h3,
.value-card h3,
.pricing-card h3,
.application-copy h2,
.footer-branding h2 {
  font-family: "Cormorant Garamond", serif;
}

.brand-text strong {
  font-family: "Manrope", sans-serif;
  color: #10274d;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.brand-text small {
  color: rgba(19, 37, 66, 0.88);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-transform: none;
}

.topnav {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--text-inverse);
  background: linear-gradient(135deg, #10274d, #091a33 62%, #17355d);
  box-shadow: 0 14px 32px rgba(9, 26, 51, 0.2);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(19, 37, 66, 0.14);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.section {
  padding: 14px 0;
}

.hero-copy,
.quick-card,
.value-card,
.pricing-card,
.application-copy,
.application-form,
.contact-pill {
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-copy {
  padding: 24px 18px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(201, 155, 59, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 239, 225, 0.98));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: #7c5d22;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 13vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.hero-subtitle {
  margin: 14px 0 0;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-muted);
}

.hero-description,
.section-heading p,
.quick-card p,
.value-card li,
.pricing-card p,
.application-copy p,
.application-points p,
.form-footnote,
.form-status {
  color: var(--text-muted);
  line-height: 1.65;
}

.hero-description {
  margin: 18px 0 0;
  font-size: 0.98rem;
}

.countdown-banner {
  position: relative;
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0e2448, #091a33 68%, #17355d);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(9, 26, 51, 0.18);
  overflow: hidden;
}

.countdown-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(226, 87, 87, 0.16);
  opacity: 0.48;
  pointer-events: none;
  animation: countdownFramePulse 2.4s ease-in-out infinite;
}

.countdown-copy {
  display: grid;
  gap: 4px;
}

.countdown-kicker {
  position: relative;
  padding-left: 16px;
  color: rgba(241, 217, 155, 0.9);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.countdown-kicker::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e25757;
  box-shadow: 0 0 0 0 rgba(226, 87, 87, 0.45);
  transform: translateY(-50%);
  animation: countdownDotPulse 1.9s ease-in-out infinite;
}

.countdown-copy strong {
  color: var(--text-inverse);
  font-size: 1.05rem;
  line-height: 1.35;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.countdown-unit {
  display: grid;
  gap: 4px;
  padding: 12px 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.countdown-unit span {
  color: #fff2cf;
  font-size: clamp(1.35rem, 6.2vw, 2rem);
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-unit small {
  color: rgba(248, 245, 238, 0.76);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown-banner.is-expired .countdown-unit {
  opacity: 0.72;
}

.countdown-banner.is-expired::after,
.countdown-banner.is-expired .countdown-kicker::before {
  animation: none;
  opacity: 0.32;
  box-shadow: none;
}

.hero-priority,
.hero-metrics,
.quick-grid,
.value-grid,
.pricing-grid,
.application-section,
.form-grid,
.footer-contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.hero-priority,
.hero-metrics {
  margin-top: 18px;
}

.priority-card,
.metric {
  padding: 16px 18px;
  border-radius: var(--radius-md);
}

.priority-card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(19, 37, 66, 0.08);
}

.priority-card span,
.metric-label,
.pricing-label,
.contact-pill span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.priority-card strong,
.metric strong,
.contact-pill strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.45;
}

.priority-card-solid {
  background: linear-gradient(135deg, #10274d, #0b1f3b 68%, #18365f);
  border-color: rgba(255, 255, 255, 0.08);
}

.priority-card-solid span {
  color: #f1d99b;
}

.priority-card-solid strong {
  color: var(--text-inverse);
}

.metric {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 244, 236, 0.98));
  border: 1px solid rgba(199, 160, 83, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 26px rgba(9, 26, 51, 0.06);
}

.hero-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-flags span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(201, 155, 59, 0.12);
  border: 1px solid rgba(201, 155, 59, 0.22);
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 800;
}

.cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
}

.section-heading {
  margin-bottom: 14px;
}

.section-heading h2,
.application-copy h2,
.footer-branding h2 {
  margin: 0 0 8px;
  font-size: clamp(2.6rem, 13vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.section-heading-compact {
  margin-bottom: 12px;
}

.quick-card,
.value-card,
.application-copy,
.application-form,
.contact-pill {
  padding: 18px 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 242, 232, 0.92));
}

.quick-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: rgba(19, 37, 66, 0.32);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}

.quick-card h3,
.value-card h3,
.pricing-card h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  line-height: 1;
}

.value-grid {
  gap: 14px;
}

.value-card {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(248, 240, 226, 0.94));
}

.value-card-dark {
  background: linear-gradient(160deg, rgba(11, 31, 59, 0.98), rgba(16, 39, 77, 0.96));
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
}

.value-card-dark h3 {
  color: #fff3d4;
}

.value-card-dark li {
  color: rgba(248, 245, 238, 0.78);
}

.bullet-list,
.bullet-list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bullet-list {
  display: grid;
  gap: 10px;
}

.bullet-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.bullet-list li::before {
  content: "+";
  color: var(--accent);
  font-weight: 800;
}

.pricing-shell {
  padding: 22px 18px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(9, 26, 51, 0.98), rgba(20, 45, 82, 0.96));
  box-shadow: 0 22px 52px rgba(9, 26, 51, 0.18);
}

.section-heading-light .eyebrow,
.section-heading-light p,
.section-heading-light h2 {
  color: var(--text-inverse);
}

.section-heading-light .eyebrow::before {
  background: rgba(248, 245, 238, 0.6);
}

.pricing-grid {
  margin-top: 16px;
}

.pricing-card {
  padding: 18px 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(245, 237, 223, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.pricing-card p {
  margin: 0 0 14px;
}

.pricing-card-featured {
  background: linear-gradient(180deg, rgba(24, 51, 93, 0.98), rgba(12, 29, 56, 0.96));
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
}

.pricing-card-featured .pricing-label,
.pricing-card-featured p {
  color: rgba(248, 245, 238, 0.76);
}

.pricing-card-featured h3 {
  color: #fff5dc;
}

.pricing-details,
.pricing-details li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-details {
  display: grid;
  gap: 10px;
}

.pricing-details li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.pricing-details li::before {
  content: "•";
  color: var(--accent);
  font-size: 1rem;
  line-height: 1.2;
}

.pricing-card-featured .pricing-details li {
  color: rgba(248, 245, 238, 0.84);
}

.pricing-note {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(248, 245, 238, 0.92);
}

.pricing-note strong {
  color: #fff2cf;
}

.pricing-note span {
  color: var(--text-inverse-muted);
}

.application-section {
  gap: 14px;
}

.application-section > .countdown-banner {
  grid-column: 1 / -1;
  margin-top: 0;
  margin-bottom: 2px;
}

.application-copy {
  background:
    radial-gradient(circle at top left, rgba(201, 155, 59, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 239, 225, 0.96));
}

.application-points {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.application-points div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: start;
}

.application-points span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(9, 26, 51, 0.94);
  color: var(--text-inverse);
  font-weight: 800;
  font-size: 0.85rem;
}

.application-form {
  display: grid;
  gap: 16px;
}

.application-form label {
  display: grid;
  gap: 8px;
}

.application-form label span {
  font-size: 0.9rem;
  font-weight: 700;
}

.application-form input,
.application-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}

.application-form input:focus,
.application-form select:focus {
  outline: none;
  border-color: rgba(201, 155, 59, 0.72);
  box-shadow: 0 0 0 4px rgba(201, 155, 59, 0.14);
}

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

.preference-card {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 250, 239, 0.96), rgba(248, 240, 221, 0.96));
  border: 1px solid rgba(201, 155, 59, 0.24);
}

.preference-card input,
.checkbox-field input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
  accent-color: #10274d;
}

.preference-copy {
  display: grid;
  gap: 4px;
}

.preference-copy strong {
  font-size: 0.95rem;
  line-height: 1.45;
}

.preference-copy small {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button-submit {
  width: 100%;
}

.form-footnote,
.form-status {
  margin: 0;
  font-size: 0.9rem;
}

.form-status.is-success {
  color: #165e2f;
}

.form-status.is-error {
  color: #8b2332;
}

.footer-strip {
  display: grid;
  gap: 14px;
  padding: 20px 16px;
  margin-top: 16px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(8, 23, 45, 0.98), rgba(16, 39, 77, 0.95));
  box-shadow: 0 20px 48px rgba(9, 26, 51, 0.16);
}

.footer-branding .eyebrow,
.footer-branding h2 {
  color: var(--text-inverse);
}

.footer-branding .eyebrow::before {
  background: rgba(248, 245, 238, 0.6);
}

.contact-pill {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.contact-pill span {
  margin-bottom: 0;
  color: rgba(241, 217, 155, 0.86);
}

.contact-pill strong {
  color: var(--text-inverse);
  word-break: break-word;
}

.contact-pill-address strong {
  font-size: 0.9rem;
  line-height: 1.55;
}

.site-meta {
  display: grid;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 0 4px;
}

.footer-copyright {
  margin: 0;
  color: rgba(19, 37, 66, 0.74);
  font-size: 0.84rem;
  line-height: 1.5;
}

.footer-credit {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 30px;
  min-width: 338px;
  max-width: 100%;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(236, 229, 214, 0.92), rgba(227, 218, 201, 0.96));
  border: 1px solid rgba(16, 39, 77, 0.12);
  box-shadow: 0 6px 16px rgba(9, 26, 51, 0.08);
}

.footer-credit-icon {
  color: rgba(16, 39, 77, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.footer-credit-copy {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
  white-space: nowrap;
}

.footer-credit-copy small {
  color: rgba(16, 39, 77, 0.58);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-credit-copy strong {
  color: #183d72;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.sticky-cta {
  position: fixed;
  inset: auto 12px 12px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(9, 26, 51, 0.96);
  color: var(--text-inverse);
  box-shadow: 0 18px 42px rgba(9, 26, 51, 0.24);
}

.sticky-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sticky-copy strong {
  font-size: 0.92rem;
}

.sticky-copy span {
  margin-bottom: 0;
  color: rgba(248, 245, 238, 0.74);
  font-size: 0.74rem;
}

.sticky-cta .button-primary {
  min-height: 44px;
  padding: 0 16px;
  color: #091a33;
  background: linear-gradient(135deg, #f0d598, #c99b3b 58%, #e3c172);
  box-shadow: 0 10px 26px rgba(201, 155, 59, 0.28);
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 88px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: #f7fff9;
  box-shadow: none;
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.96);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    filter 180ms ease;
}

.floating-whatsapp:hover {
  filter: brightness(1.03);
}

.floating-whatsapp.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.floating-whatsapp-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #28d366, #1fa855 68%, #128c4a);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 38px rgba(18, 140, 74, 0.32);
  color: #ffffff;
  flex: 0 0 auto;
}

.floating-whatsapp-icon svg {
  width: 28px;
  height: 28px;
}

.floating-whatsapp-label {
  display: none;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(9, 26, 51, 0.96);
  box-shadow: 0 14px 30px rgba(9, 26, 51, 0.16);
  color: var(--text-inverse);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0) scale(0.982);
  transition:
    opacity 1080ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1080ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-copy > *,
.quick-grid > *,
.value-grid > *,
.pricing-grid > *,
.application-copy > *,
.application-form > *,
.footer-contacts > *,
.countdown-grid > * {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 980ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-visible .hero-copy > *,
.reveal.is-visible .quick-grid > *,
.reveal.is-visible .value-grid > *,
.reveal.is-visible .pricing-grid > *,
.reveal.is-visible .application-copy > *,
.reveal.is-visible .application-form > *,
.reveal.is-visible .footer-contacts > *,
.reveal.is-visible .countdown-grid > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-copy > *:nth-child(1),
.quick-grid > *:nth-child(1),
.value-grid > *:nth-child(1),
.pricing-grid > *:nth-child(1),
.application-copy > *:nth-child(1),
.application-form > *:nth-child(1),
.footer-contacts > *:nth-child(1),
.countdown-grid > *:nth-child(1) {
  transition-delay: 120ms;
}

.hero-copy > *:nth-child(2),
.quick-grid > *:nth-child(2),
.value-grid > *:nth-child(2),
.pricing-grid > *:nth-child(2),
.application-copy > *:nth-child(2),
.application-form > *:nth-child(2),
.footer-contacts > *:nth-child(2),
.countdown-grid > *:nth-child(2) {
  transition-delay: 220ms;
}

.hero-copy > *:nth-child(3),
.quick-grid > *:nth-child(3),
.value-grid > *:nth-child(3),
.pricing-grid > *:nth-child(3),
.application-copy > *:nth-child(3),
.application-form > *:nth-child(3),
.footer-contacts > *:nth-child(3),
.countdown-grid > *:nth-child(3) {
  transition-delay: 320ms;
}

.hero-copy > *:nth-child(4),
.quick-grid > *:nth-child(4),
.value-grid > *:nth-child(4),
.pricing-grid > *:nth-child(4),
.application-copy > *:nth-child(4),
.application-form > *:nth-child(4),
.footer-contacts > *:nth-child(4),
.countdown-grid > *:nth-child(4) {
  transition-delay: 420ms;
}

.hero-copy > *:nth-child(5),
.application-copy > *:nth-child(5),
.application-form > *:nth-child(5) {
  transition-delay: 520ms;
}

.hero-copy > *:nth-child(6),
.application-form > *:nth-child(6) {
  transition-delay: 620ms;
}

.hero-copy > *:nth-child(7),
.application-form > *:nth-child(7) {
  transition-delay: 720ms;
}

.hero-copy > *:nth-child(8),
.application-form > *:nth-child(8) {
  transition-delay: 820ms;
}

.hero-copy > *:nth-child(9),
.application-form > *:nth-child(9) {
  transition-delay: 920ms;
}

@keyframes countdownDotPulse {
  0%,
  100% {
    opacity: 0.72;
    box-shadow: 0 0 0 0 rgba(226, 87, 87, 0.18);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 0 8px rgba(226, 87, 87, 0);
  }
}

@keyframes countdownFramePulse {
  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.58;
  }
}

@media (min-width: 760px) {
  .page-shell {
    width: min(calc(100% - 40px), var(--container));
    padding-top: 22px;
  }

  .topbar {
    padding: 14px 18px;
    border-radius: 999px;
  }

  .brand-logo {
    width: 60px;
    height: 60px;
  }

  .brand-text strong {
    font-size: 1.28rem;
  }

  .brand-text small {
    font-size: 1rem;
  }

  .hero-copy {
    padding: 38px 36px;
  }

  .hero h1 {
    font-size: clamp(4rem, 8vw, 6rem);
  }

  .eyebrow {
    font-size: 1.05rem;
  }

  .section-heading h2,
  .application-copy h2,
  .footer-branding h2 {
    font-size: clamp(3.6rem, 6.8vw, 5.6rem);
  }

  .hero-priority,
  .hero-metrics,
  .quick-grid,
  .value-grid,
  .pricing-grid,
  .footer-contacts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-row {
    display: flex;
    flex-wrap: wrap;
  }

  .application-section {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

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

  .site-meta {
    grid-template-columns: 1fr auto;
  }

  .footer-credit {
    justify-self: end;
  }

  .floating-whatsapp-label {
    display: inline-flex;
  }
}

@media (min-width: 1040px) {
  .quick-grid,
  .value-grid,
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-contacts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-priority {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sticky-cta {
    display: none;
  }

  .floating-whatsapp {
    right: 20px;
    bottom: 20px;
  }
}

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

  .button,
  .reveal {
    transition: none;
  }

  .countdown-banner::after,
  .countdown-kicker::before {
    animation: none;
  }

  .hero-copy > *,
  .quick-grid > *,
  .value-grid > *,
  .pricing-grid > *,
  .application-copy > *,
  .application-form > *,
  .footer-contacts > *,
  .countdown-grid > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
