:root {
  /* Brand core */
  --navy-950: #011d44;
  --navy-900: #02377d;
  --navy-800: #084a96;
  --navy-700: #0c5cb0;
  --blue-700: #0184c4;
  --aqua-600: #0288b8;
  --aqua-500: #019cd2;
  --aqua-400: #2bb4e6;
  --aqua-300: #66d0f1;
  --aqua-100: #98e7f6;
  --aqua-50: #e6f7fc;
  --red-600: #c92e29;
  --red-500: #e0413c;
  --amber-500: #c92e29;
  --green-600: #019cd2;

  --ink: #102033;
  --muted: #586b80;
  --line: #dce8f2;
  --surface: #f3f8fc;
  --white: #ffffff;

  /* Gradients */
  --grad-aqua: linear-gradient(135deg, #019cd2 0%, #02377d 100%);
  --grad-aqua-soft: linear-gradient(135deg, #2bb4e6 0%, #0184c4 100%);
  --grad-deep: linear-gradient(135deg, #02377d 0%, #011d44 100%);
  --grad-cta: linear-gradient(120deg, #02377d 0%, #0c5cb0 55%, #019cd2 100%);
  --grad-red: linear-gradient(135deg, #e0413c 0%, #c92e29 100%);

  /* Elevation */
  --shadow: 0 24px 60px -18px rgba(2, 55, 125, 0.28);
  --shadow-soft: 0 14px 38px -16px rgba(2, 55, 125, 0.22);
  --shadow-sm: 0 6px 18px -10px rgba(2, 55, 125, 0.25);
  --ring-aqua: 0 0 0 1px rgba(1, 156, 210, 0.18);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --header-height: 76px;
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --font-display: "Benton Sans Wide Bold", "Plus Jakarta Sans", "Arial Black", Arial, sans-serif;
  --font-body: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  background: rgba(1, 156, 210, 0.24);
  color: var(--navy-950);
}

:focus-visible {
  outline: 3px solid rgba(1, 156, 210, 0.75);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--navy-900);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(220, 232, 242, 0.7);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: background 280ms var(--ease-out), box-shadow 280ms var(--ease-out),
    border-color 280ms var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(220, 232, 242, 0.95);
  box-shadow: 0 10px 30px -18px rgba(2, 55, 125, 0.35);
}

.nav-shell {
  width: min(var(--max-width), calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy-900);
  text-decoration: none;
  min-width: max-content;
  transition: transform 240ms var(--ease-out);
}

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

.brand-logo {
  width: 48px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.8rem;
  color: var(--navy-900);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 220ms var(--ease-out), color 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.42rem;
  height: 2px;
  border-radius: 999px;
  background: var(--grad-aqua-soft);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition: transform 260ms var(--ease-out), opacity 260ms var(--ease-out);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--blue-700);
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-links .nav-cta {
  margin-left: 0.45rem;
  color: var(--white);
  background: var(--grad-red);
  box-shadow: 0 14px 26px -10px rgba(201, 46, 41, 0.6);
  font-weight: 800;
}

.nav-links .nav-cta:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -10px rgba(201, 46, 41, 0.7);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-900);
  cursor: pointer;
  transition: border-color 200ms var(--ease-out);
}

.menu-toggle:hover {
  border-color: var(--aqua-400);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms var(--ease-out), opacity 220ms var(--ease-out);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.page-grid,
.section-inner {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(90svh - var(--header-height));
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -3;
  transform: scale(1.08);
  animation: heroZoom 22s ease-out forwards;
  will-change: transform;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(1, 29, 68, 0.94) 0%, rgba(2, 55, 125, 0.8) 42%, rgba(2, 55, 125, 0.4) 82%),
    linear-gradient(180deg, rgba(2, 55, 125, 0.2), rgba(1, 29, 68, 0.92));
}

/* Animated aqua light glow */
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -20%;
  background:
    radial-gradient(38% 42% at 18% 28%, rgba(102, 208, 241, 0.45), transparent 70%),
    radial-gradient(34% 40% at 82% 72%, rgba(1, 156, 210, 0.4), transparent 70%);
  mix-blend-mode: screen;
  filter: blur(10px);
  animation: heroGlow 18s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Bottom caustic fade */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  z-index: -1;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 38px),
    linear-gradient(180deg, transparent, rgba(1, 29, 68, 0.55));
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  display: grid;
  align-content: center;
  gap: 1.25rem;
  min-height: calc(90svh - var(--header-height));
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(3.5rem, 6vw, 5.5rem);
}

.hero-lockup {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.45rem 0.95rem 0.45rem 0.45rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px -16px rgba(1, 29, 68, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero-lockup img {
  width: 54px;
  height: 42px;
  object-fit: contain;
  border-radius: 999px;
  padding: 0.3rem 0.45rem;
  background: var(--white);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: var(--aqua-500);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.eyebrow,
.intro-band .section-kicker,
.conversion-section .section-kicker,
.final-cta .section-kicker {
  color: var(--aqua-100);
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 10vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-shadow: 0 24px 60px rgba(1, 29, 68, 0.45);
}

.hero h1 .accent {
  background: linear-gradient(120deg, #98e7f6, #66d0f1 60%, #2bb4e6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1.15;
  font-weight: 780;
}

.hero-copy {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* Hero entrance choreography */
.hero-lockup,
.hero .eyebrow,
.hero h1,
.hero-subtitle,
.hero-copy,
.hero-actions,
.hero-facts {
  animation: heroIn 0.9s var(--ease-out) both;
}

.hero .eyebrow { animation-delay: 0.08s; }
.hero h1 { animation-delay: 0.16s; }
.hero-subtitle { animation-delay: 0.26s; }
.hero-copy { animation-delay: 0.34s; }
.hero-actions { animation-delay: 0.42s; }
.hero-facts { animation-delay: 0.5s; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  animation: heroIn 0.9s var(--ease-out) 0.7s both;
}

.scroll-cue .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  position: relative;
}

.scroll-cue .mouse::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--aqua-100);
  transform: translateX(-50%);
  animation: scrollDot 1.8s var(--ease-out) infinite;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.78rem 1.2rem;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  overflow: hidden;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out),
    background 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

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

.btn:active {
  transform: translateY(0);
}

/* sheen sweep */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: left 600ms var(--ease-out);
}

.btn:hover::before {
  left: 140%;
}

.btn-primary {
  color: var(--white);
  background: var(--grad-red);
  box-shadow: 0 18px 34px -12px rgba(201, 46, 41, 0.62);
}

.btn-primary::after {
  content: "→";
  font-size: 1.05em;
  line-height: 1;
  transition: transform 220ms var(--ease-out);
}

.btn-primary:hover {
  box-shadow: 0 22px 40px -12px rgba(201, 46, 41, 0.72);
}

.btn-primary:hover::after {
  transform: translateX(3px);
}

.btn-secondary {
  color: var(--navy-900);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 30px -16px rgba(2, 55, 125, 0.5);
}

.btn-secondary:hover {
  border-color: var(--aqua-400);
  color: var(--blue-700);
}

.surface-section .btn-secondary,
#formatos .btn-secondary {
  border-color: var(--line);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-small {
  min-height: 42px;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--grad-aqua);
  box-shadow: 0 14px 26px -14px rgba(2, 55, 125, 0.6);
}

/* ---------- Hero facts ---------- */
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 940px;
  margin: 1.4rem 0 0;
}

.hero-facts div {
  position: relative;
  min-height: 118px;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(2, 55, 125, 0.42);
  box-shadow: 0 18px 40px -20px rgba(1, 29, 68, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 260ms var(--ease-out), border-color 260ms var(--ease-out);
}

.hero-facts div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--grad-aqua-soft);
}

.hero-facts div:hover {
  transform: translateY(-4px);
  border-color: rgba(152, 231, 246, 0.55);
}

.hero-facts dt {
  color: var(--aqua-100);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0.35rem 0 0;
  font-size: 1.02rem;
  font-weight: 800;
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.surface-section {
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(1, 156, 210, 0.06), transparent 60%),
    linear-gradient(180deg, var(--surface), #fbfdff);
}

.intro-band {
  position: relative;
  overflow: hidden;
  background: var(--grad-deep);
  color: var(--white);
  padding-bottom: clamp(5rem, 10vw, 8rem);
}

.intro-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 85% 10%, rgba(1, 156, 210, 0.35), transparent 60%),
    radial-gradient(50% 70% at 5% 95%, rgba(102, 208, 241, 0.18), transparent 60%);
  pointer-events: none;
}

.intro-band .section-inner {
  position: relative;
}

.intro-band p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.84);
}

/* Wave divider */
.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: clamp(48px, 7vw, 96px);
}

.split-layout,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(1.5rem, 4vw, 2.6rem);
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.heading-with-action {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0.5rem 0 0;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.intro-band h2,
.final-cta h2 {
  color: var(--white);
}

h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

p {
  color: var(--muted);
  margin: 0.85rem 0 0;
}

.quote-panel,
.institutional-panel,
.coming-soon-card {
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.quote-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 5px solid var(--aqua-500);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.quote-panel::before {
  content: "\201C";
  position: absolute;
  top: -1.4rem;
  right: 0.6rem;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: rgba(152, 231, 246, 0.18);
}

.quote-panel p {
  position: relative;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.18;
  font-weight: 850;
}

/* ---------- Card grids ---------- */
.profile-grid,
.info-grid,
.pricing-grid,
.forms-grid,
.category-grid,
.lodging-grid,
.schedule-grid,
.notice-row {
  display: grid;
  gap: 1rem;
}

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

.profile-card,
.info-card,
.category-card,
.price-card,
.form-card,
.document-card,
.schedule-card,
.lodging-card,
.notice-row article {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.profile-card {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1.3rem;
  text-decoration: none;
  overflow: hidden;
  transition: transform 260ms var(--ease-out), border-color 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out);
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-aqua-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease-out);
}

.profile-card:hover {
  transform: translateY(-6px);
  border-color: rgba(1, 156, 210, 0.42);
  box-shadow: var(--shadow);
}

.profile-card:hover::before {
  transform: scaleX(1);
}

.profile-card strong {
  color: var(--navy-900);
  font-size: 1.05rem;
  line-height: 1.2;
}

.profile-card > strong + span {
  color: var(--muted);
}

.profile-card .card-arrow {
  margin-top: auto;
  color: var(--aqua-500);
  font-weight: 900;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out);
}

.profile-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.icon-badge {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--grad-aqua);
  box-shadow: 0 12px 24px -12px rgba(1, 156, 210, 0.85);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.info-card {
  min-height: 168px;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1.25rem;
  overflow: hidden;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out),
    border-color 240ms var(--ease-out);
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(1, 156, 210, 0.35);
  box-shadow: var(--shadow);
}

.info-card .icon-badge {
  background: var(--aqua-50);
  color: var(--blue-700);
  box-shadow: var(--ring-aqua);
}

.info-card p,
.schedule-card p,
.price-card p,
.form-card p,
.document-card p,
.lodging-card p,
.notice-row p {
  margin-top: 0.4rem;
}

/* ---------- Timeline ---------- */
.timeline {
  --timeline-line: rgba(1, 156, 210, 0.24);
  position: relative;
  display: grid;
  grid-template-columns: repeat(11, minmax(210px, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 1rem 0 1.5rem;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(1, 156, 210, 0.4) transparent;
}

.timeline::-webkit-scrollbar {
  height: 8px;
}

.timeline::-webkit-scrollbar-thumb {
  background: rgba(1, 156, 210, 0.35);
  border-radius: 999px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 35px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--timeline-line) 8%, var(--timeline-line) 92%, transparent);
}

.timeline-item {
  position: relative;
  min-height: 230px;
  scroll-snap-align: start;
  padding: 3.1rem 1.15rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 1.15rem;
  width: 20px;
  height: 20px;
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(2, 55, 125, 0.08), 0 6px 14px -4px rgba(2, 55, 125, 0.4);
}

.timeline-item.general::before {
  background: var(--blue-700);
}

.timeline-item.deadline::before {
  background: var(--red-600);
}

.timeline-item.event::before {
  background: var(--aqua-500);
}

.timeline-item time,
.schedule-card time {
  color: var(--blue-700);
  font-weight: 950;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.timeline-item h3,
.schedule-card h3 {
  margin-top: 0.4rem;
}

.status-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  margin-top: 0.85rem;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  color: var(--navy-900);
  background: var(--aqua-100);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.timeline-item.deadline .status-label,
.document-card .status-label {
  background: rgba(201, 46, 41, 0.12);
  color: var(--red-600);
}

.timeline-item.event .status-label {
  background: rgba(152, 231, 246, 0.42);
  color: var(--navy-900);
}

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

.schedule-card,
.price-card,
.form-card,
.document-card,
.lodging-card,
.notice-row article {
  padding: 1.3rem;
}

.schedule-card {
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.note {
  max-width: 760px;
  margin-top: 1.4rem;
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--aqua-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--aqua-50);
  color: var(--navy-900);
  font-weight: 700;
}

/* ---------- Conversion ---------- */
.conversion-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--grad-deep);
}

.conversion-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 60% at 90% 15%, rgba(1, 156, 210, 0.35), transparent 60%),
    radial-gradient(45% 60% at 8% 90%, rgba(102, 208, 241, 0.18), transparent 60%);
  pointer-events: none;
}

.conversion-section .section-inner {
  position: relative;
}

.conversion-section h2,
.conversion-section h3 {
  color: var(--white);
}

.conversion-section p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-line {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.contact-line a {
  color: var(--aqua-100);
  font-weight: 800;
}

.steps-list {
  display: grid;
  gap: 0.75rem;
}

.steps-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  transition: transform 220ms var(--ease-out), background 220ms var(--ease-out);
}

.steps-list article:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.12);
}

.steps-list span,
.category-card span {
  display: inline-grid;
  place-items: center;
  min-width: 2.2rem;
  color: var(--aqua-100);
  font-family: var(--font-display);
  font-weight: 950;
  font-size: 1.05rem;
}

.steps-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* ---------- Categories ---------- */
.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
  min-height: 170px;
  padding: 1.3rem;
  overflow: hidden;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out),
    border-color 240ms var(--ease-out);
}

.category-card span {
  color: var(--aqua-500);
  font-size: 1.4rem;
  justify-content: start;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(1, 156, 210, 0.4);
  box-shadow: var(--shadow);
}

/* ---------- Accordion ---------- */
.accordion-group {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: border-color 220ms var(--ease-out);
}

.accordion-group:has(.accordion-trigger[aria-expanded="true"]) {
  border-color: rgba(1, 156, 210, 0.4);
}

.accordion-trigger {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: var(--white);
  color: var(--navy-900);
  padding: 1.05rem 1.2rem;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
  transition: background 200ms var(--ease-out);
}

.accordion-trigger:hover {
  background: var(--aqua-50);
}

.accordion-trigger span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--aqua-50);
  transition: background 220ms var(--ease-out);
}

.accordion-trigger[aria-expanded="true"] span {
  background: var(--aqua-100);
}

.accordion-trigger span::before,
.accordion-trigger span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-700);
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease-out);
}

.accordion-trigger span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-trigger[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-panel {
  padding: 0 1.2rem 1.2rem;
  animation: panelIn 320ms var(--ease-out);
}

.accordion-panel p {
  margin-top: 0;
}

/* ---------- Check lists ---------- */
.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.85rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.32rem;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--aqua-50);
  box-shadow: var(--ring-aqua);
}

.check-list li::after {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 5px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--aqua-500);
  border-bottom: 2px solid var(--aqua-500);
  transform: rotate(-45deg);
}

.institutional-panel .check-list li,
.checklist-panel li {
  color: var(--muted);
}

/* ---------- Tabs ---------- */
.tabs {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.tab-list {
  display: flex;
  gap: 0.35rem;
  padding: 0.6rem;
  background: linear-gradient(180deg, rgba(152, 231, 246, 0.3), rgba(152, 231, 246, 0.16));
  overflow-x: auto;
}

.tab-button {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  color: var(--navy-900);
  background: transparent;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: background 220ms var(--ease-out), color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.tab-button:hover {
  background: rgba(255, 255, 255, 0.6);
}

.tab-button.is-active {
  color: var(--white);
  background: var(--grad-aqua);
  box-shadow: 0 12px 22px -12px rgba(2, 55, 125, 0.7);
}

.tab-panel {
  padding: 1.4rem;
  animation: panelIn 320ms var(--ease-out);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  border: 1px solid rgba(1, 156, 210, 0.3);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  color: var(--navy-900);
  background: var(--aqua-50);
  font-weight: 700;
  transition: transform 200ms var(--ease-out), background 200ms var(--ease-out),
    border-color 200ms var(--ease-out);
}

.pill-list li:hover {
  transform: translateY(-2px);
  background: var(--aqua-100);
  border-color: var(--aqua-400);
}

/* ---------- Pricing ---------- */
.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card {
  min-height: 190px;
  overflow: hidden;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out),
    border-color 240ms var(--ease-out);
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.price-card strong {
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  background: var(--grad-aqua);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.featured-price {
  position: relative;
  border-color: rgba(201, 46, 41, 0.42);
  box-shadow: 0 24px 50px -20px rgba(201, 46, 41, 0.32);
}

.featured-price::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--grad-red);
}

.featured-price strong {
  background: var(--grad-red);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.two-column {
  align-items: start;
}

.document-card {
  min-height: 240px;
}

.code-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}

.code-examples code {
  display: inline-flex;
  max-width: 100%;
  border: 1px dashed rgba(1, 156, 210, 0.45);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  color: var(--navy-900);
  background: var(--aqua-50);
  font-family: ui-monospace, "SFMono-Regular", "Cascadia Code", Menlo, monospace;
  font-size: 0.9rem;
  white-space: normal;
  overflow-wrap: anywhere;
}

.notice-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.notice-row article {
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.notice-row article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.checklist-panel {
  margin-top: 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

/* ---------- Lodging ---------- */
.lodging-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lodging-card {
  display: grid;
  gap: 0.75rem;
  overflow: hidden;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out),
    border-color 240ms var(--ease-out);
}

.lodging-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.lodging-card strong {
  display: block;
  font-family: var(--font-display);
  background: var(--grad-aqua);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
}

.lodging-card > span:not(.status-label) {
  color: var(--muted);
  font-weight: 700;
}

.lodging-featured {
  border-color: rgba(1, 156, 210, 0.42);
  box-shadow: 0 24px 50px -20px rgba(1, 156, 210, 0.3);
}

.warning-panel {
  border-color: rgba(201, 46, 41, 0.28);
  background: linear-gradient(180deg, rgba(201, 46, 41, 0.07), rgba(201, 46, 41, 0.02));
}

.warning-panel h3 {
  color: var(--red-600);
}

.coming-soon-card {
  position: relative;
  margin-top: 1rem;
  border: 1px solid var(--line);
  overflow: hidden;
}

.coming-soon-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad-aqua-soft);
}

/* ---------- Bank ---------- */
.bank-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.bank-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
  background: var(--white);
  transition: border-color 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.bank-grid div:hover {
  transform: translateY(-2px);
  border-color: rgba(1, 156, 210, 0.4);
}

.bank-grid dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.bank-grid dd {
  margin: 0.3rem 0 0;
  color: var(--navy-900);
  font-weight: 850;
  overflow-wrap: anywhere;
}

/* ---------- Forms ---------- */
.forms-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.form-card {
  min-height: 260px;
  display: grid;
  gap: 0.7rem;
  align-content: start;
  overflow: hidden;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out),
    border-color 240ms var(--ease-out);
}

.form-card:hover {
  transform: translateY(-5px);
  border-color: rgba(1, 156, 210, 0.4);
  box-shadow: var(--shadow);
}

.form-card .btn {
  margin-top: auto;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list .accordion-group {
  margin-top: 0;
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--grad-cta);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(30% 40% at 20% 20%, rgba(152, 231, 246, 0.3), transparent 60%),
    radial-gradient(34% 44% at 84% 80%, rgba(255, 255, 255, 0.18), transparent 60%);
  mix-blend-mode: screen;
  animation: heroGlow 20s ease-in-out infinite alternate;
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  max-width: 860px;
  text-align: center;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.final-cta .hero-actions {
  justify-content: center;
  margin-top: 1.4rem;
}

.contact-email {
  display: inline-flex;
  margin-top: 1rem;
  padding-bottom: 0.15rem;
  border-bottom: 2px solid rgba(152, 231, 246, 0.5);
  color: var(--aqua-100);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
  text-decoration: none;
  transition: border-color 220ms var(--ease-out);
}

.contact-email:hover {
  border-color: var(--aqua-100);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 2.4rem 0 calc(2.4rem + env(safe-area-inset-bottom));
  color: rgba(255, 255, 255, 0.8);
  background: var(--navy-950);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner strong {
  color: var(--white);
}

/* ---------- Floating controls ---------- */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--grad-aqua);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.9);
  transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-spring),
    box-shadow 240ms var(--ease-out);
}

.back-to-top:hover {
  transform: translateY(-2px) scale(1);
  box-shadow: 0 22px 44px -16px rgba(2, 55, 125, 0.6);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-sticky-cta {
  display: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 120;
  max-width: min(420px, calc(100% - 32px));
  transform: translate(-50%, 18px);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  color: var(--white);
  background: rgba(1, 29, 68, 0.96);
  box-shadow: var(--shadow);
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-spring);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Keyframes ---------- */
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

@keyframes heroGlow {
  0% {
    transform: translate3d(-3%, -2%, 0) scale(1);
  }
  100% {
    transform: translate3d(4%, 3%, 0) scale(1.12);
  }
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-links a {
    padding-inline: 0.55rem;
    font-size: 0.86rem;
  }

  .nav-links a:not(.nav-cta)::after {
    left: 0.55rem;
    right: 0.55rem;
  }

  .profile-grid,
  .info-grid,
  .pricing-grid,
  .forms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    align-content: start;
    gap: 0.25rem;
    height: calc(100svh - var(--header-height));
    padding: 1rem 16px 2rem;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 280ms var(--ease-out);
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-links a {
    width: 100%;
    justify-content: flex-start;
    min-height: 52px;
    padding-inline: 1rem;
    font-size: 1rem;
  }

  .nav-links a:not(.nav-cta)::after {
    display: none;
  }

  .nav-links .nav-cta {
    margin: 0.45rem 0 0;
    justify-content: center;
  }

  .hero,
  .hero-content {
    min-height: calc(88svh - var(--header-height));
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(1, 29, 68, 0.9), rgba(2, 55, 125, 0.66) 52%, rgba(1, 29, 68, 0.92)),
      linear-gradient(90deg, rgba(2, 55, 125, 0.86), rgba(2, 55, 125, 0.42));
  }

  .hero-facts,
  .split-layout,
  .two-column,
  .lodging-grid,
  .notice-row,
  .bank-grid {
    grid-template-columns: 1fr;
  }

  .heading-with-action {
    display: grid;
    align-items: start;
  }

  .timeline {
    grid-template-columns: 1fr;
    overflow: visible;
    padding-left: 1rem;
  }

  .timeline::before {
    left: 1.4rem;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--timeline-line) 6%, var(--timeline-line) 94%, transparent);
  }

  .timeline-item {
    min-height: auto;
    padding: 1rem 1rem 1rem 2rem;
  }

  .timeline-item::before {
    top: 1.12rem;
    left: -0.2rem;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 88;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: var(--radius-sm);
    color: var(--white);
    background: var(--grad-red);
    box-shadow: 0 16px 32px -10px rgba(201, 46, 41, 0.6);
    text-decoration: none;
    font-weight: 900;
  }

  .back-to-top {
    bottom: calc(80px + env(safe-area-inset-bottom));
  }

  .site-footer {
    padding-bottom: calc(6rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .page-grid,
  .section-inner {
    width: min(100% - 24px, var(--max-width));
  }

  .brand-text small {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3rem, 18vw, 4.6rem);
  }

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

  .btn {
    width: 100%;
  }

  .hero-facts,
  .profile-grid,
  .info-grid,
  .pricing-grid,
  .forms-grid,
  .category-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .profile-card,
  .info-card,
  .price-card,
  .form-card,
  .category-card,
  .document-card,
  .schedule-card,
  .lodging-card,
  .notice-row article {
    min-height: auto;
  }

  .tab-list {
    display: grid;
  }

  .tab-button {
    width: 100%;
    white-space: normal;
  }

  .code-examples {
    display: grid;
  }

  .footer-inner {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .hero-image {
    transform: none;
  }
}
