:root {
  --bg: #f6f1e8;
  --bg-alt: #eef4fb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-dark: #0d2033;
  --surface-dark-2: #153452;
  --text: #102033;
  --muted: #5d6c7d;
  --line: rgba(17, 40, 64, 0.12);
  --line-strong: rgba(255, 255, 255, 0.16);
  --primary: #123c73;
  --primary-strong: #0a2647;
  --accent: #e3b25c;
  --accent-strong: #c88b24;
  --accent-soft: #f7e7c2;
  --success: #2f8b66;
  --danger: #c95d5d;
  --shadow: 0 28px 70px rgba(12, 28, 46, 0.14);
  --shadow-soft: 0 18px 45px rgba(12, 28, 46, 0.08);
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(18, 60, 115, 0.1), transparent 28%),
    radial-gradient(circle at 90% 24%, rgba(227, 178, 92, 0.14), transparent 22%),
    linear-gradient(180deg, #f8f3ea 0%, #eef4fb 50%, #f6f1e8 100%);
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(18px);
}

body::before {
  top: 108px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: rgba(18, 60, 115, 0.08);
}

body::after {
  right: -90px;
  bottom: 12%;
  width: 250px;
  height: 250px;
  background: rgba(227, 178, 92, 0.1);
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

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

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

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

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.04em;
  color: var(--text);
}

h1 {
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2.2rem, 3.7vw, 3.6rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.34rem;
  line-height: 1.14;
}

strong {
  color: inherit;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 60, 115, 0.14);
  background: rgba(18, 60, 115, 0.08);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.95rem 1.3rem;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

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

.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.nav-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(227, 178, 92, 0.22);
}

.btn-primary {
  color: #112033;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 16px 40px rgba(200, 139, 36, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 44px rgba(200, 139, 36, 0.28);
}

.btn-secondary,
.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(17, 40, 64, 0.08);
}

.btn-outline {
  color: var(--text);
  background: transparent;
  border-color: rgba(18, 60, 115, 0.18);
}

.btn-light {
  color: #102033;
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-sm {
  min-height: 44px;
  padding: 0.72rem 1rem;
  border-radius: 14px;
}

.btn-block {
  width: 100%;
}

.demo-note {
  font-size: 0.96rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(248, 243, 234, 0.82);
  border-bottom: 1px solid transparent;
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(248, 243, 234, 0.94);
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(12, 28, 46, 0.08);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand img {
  width: 134px;
  height: auto;
}

.brand-lockup {
  display: grid;
  gap: 0.14rem;
}

.brand-lockup strong {
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-lockup small {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav .btn {
  margin-left: 0.35rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(18, 60, 115, 0.08);
  cursor: pointer;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 7.6rem 0 5.2rem;
  background:
    radial-gradient(circle at 12% 14%, rgba(227, 178, 92, 0.18), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(39, 98, 162, 0.18), transparent 26%),
    linear-gradient(135deg, #0a1827 0%, #102940 58%, #173654 100%);
  color: #ffffff;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  top: -80px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: rgba(227, 178, 92, 0.08);
  filter: blur(10px);
}

.hero::after {
  right: -120px;
  bottom: -80px;
  width: 360px;
  height: 360px;
  background: rgba(39, 98, 162, 0.14);
  filter: blur(16px);
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 2.8rem;
  align-items: center;
}

.hero-copy,
.hero-visual,
.section-intro,
.section-head,
.app-copy,
.contact-copy {
  display: grid;
  gap: 1.15rem;
}

.hero .eyebrow,
.section-flow .eyebrow,
.section-contact .eyebrow {
  border-color: rgba(227, 178, 92, 0.24);
  background: rgba(227, 178, 92, 0.12);
  color: var(--accent-soft);
}

.hero h1,
.section-flow h2,
.section-contact h2 {
  color: #ffffff;
}

.hero p,
.section-flow p,
.section-contact p {
  color: rgba(237, 244, 251, 0.78);
}

.lead {
  max-width: 58ch;
  font-size: 1.08rem;
}

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

.hero .btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 0.2rem 0 0;
  padding: 0;
}

.hero-highlights li {
  padding: 0.82rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 14px 32px rgba(3, 8, 14, 0.18);
}

.hero-frame {
  position: relative;
  min-height: 560px;
  padding: 1.4rem;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(23, 54, 84, 0.92), rgba(9, 24, 39, 0.82));
  box-shadow: 0 36px 90px rgba(2, 10, 17, 0.35);
  overflow: hidden;
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 70px 18px 18px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.55;
}

.hero-status {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  width: fit-content;
  padding: 0.55rem 0.65rem;
  border-radius: 999px;
  background: rgba(7, 17, 28, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.status-pill,
.plan-badge,
.benefit-tag,
.card-kicker,
.flow-step,
.form-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.status-pill {
  padding: 0.5rem 0.8rem;
  background: rgba(227, 178, 92, 0.18);
  border: 1px solid rgba(227, 178, 92, 0.28);
  color: var(--accent-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero-status p {
  margin: 0;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-device {
  position: absolute;
  inset: 108px 56px 56px 56px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(222, 234, 246, 0.92)),
    linear-gradient(180deg, rgba(18, 60, 115, 0.08), rgba(18, 60, 115, 0.02));
  box-shadow: 0 20px 40px rgba(7, 17, 28, 0.22);
}

.hero-device::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 110px;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(16, 32, 51, 0.14);
  z-index: 2;
}

.hero-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-float {
  position: absolute;
  z-index: 2;
  width: min(200px, 44%);
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(7, 17, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 36px rgba(2, 10, 17, 0.22);
}

.hero-float span {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--accent-soft);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-float strong {
  color: #ffffff;
  font-size: 0.96rem;
  line-height: 1.35;
}

.hero-float-a {
  top: 148px;
  right: 26px;
}

.hero-float-b {
  left: 24px;
  bottom: 110px;
}

.hero-float-c {
  right: 42px;
  bottom: 26px;
}

.trust-bar {
  position: relative;
  z-index: 2;
  margin-top: -2.6rem;
}

.mobile-rail-wrap {
  display: none;
}

.mobile-rail {
  display: flex;
  gap: 0.6rem;
}

.mobile-rail a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 40, 64, 0.08);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
}

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

.trust-item {
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 40, 64, 0.08);
  box-shadow: var(--shadow-soft);
}

.trust-item span {
  display: block;
  margin-bottom: 0.34rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-item strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

.section {
  padding: 6rem 0;
}

#nosotros,
#soluciones,
#beneficios,
#planes,
#app,
#contacto {
  scroll-margin-top: 120px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head-light h2 {
  color: #ffffff;
}

.section-head-light p {
  color: rgba(237, 244, 251, 0.78);
}

.section-intro {
  max-width: 520px;
}

.text-link {
  color: var(--primary);
  font-weight: 800;
}

.story-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

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

.story-card,
.story-quote,
.solution-card,
.flow-card,
.benefit-card,
.plan-card,
.app-shell,
.contact-card,
.form-card {
  border: 1px solid rgba(17, 40, 64, 0.08);
  box-shadow: var(--shadow-soft);
}

.story-card,
.benefit-card,
.plan-card,
.contact-card {
  padding: 1.3rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
}

.story-card span {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-quote {
  grid-row: span 2;
  padding: 1.55rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(227, 178, 92, 0.24), transparent 38%),
    linear-gradient(180deg, var(--primary), var(--primary-strong));
  color: #ffffff;
  display: grid;
  align-content: space-between;
  gap: 1rem;
}

.story-quote p {
  color: #ffffff;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.story-quote small {
  color: rgba(245, 249, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.6;
}

.section-solutions {
  position: relative;
}

.solution-grid,
.benefit-grid,
.plan-grid,
.flow-grid {
  display: grid;
  gap: 1.15rem;
}

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

.solution-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 1.25rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.solution-card:hover,
.plan-card:hover,
.benefit-card:hover,
.form-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.solution-media {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(18, 60, 115, 0.06), rgba(18, 60, 115, 0.02));
}

.card-kicker {
  padding: 0.38rem 0.72rem;
  background: rgba(18, 60, 115, 0.1);
  color: var(--primary);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.solution-points,
.benefit-card ul,
.plan-card ul,
.app-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.solution-points li {
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  background: rgba(18, 60, 115, 0.06);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.solution-card-featured {
  background:
    radial-gradient(circle at top right, rgba(227, 178, 92, 0.22), transparent 34%),
    linear-gradient(180deg, var(--primary), #173e63);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
}

.solution-card-featured p {
  color: rgba(245, 249, 255, 0.78);
}

.solution-card-featured .card-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.solution-card-featured .solution-points li {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.section-flow {
  background:
    radial-gradient(circle at top left, rgba(227, 178, 92, 0.16), transparent 26%),
    linear-gradient(135deg, #0d2033 0%, #16314c 100%);
}

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

.flow-card {
  padding: 1.35rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.flow-step {
  margin-bottom: 0.9rem;
  padding: 0.48rem 0.8rem;
  background: rgba(227, 178, 92, 0.16);
  color: var(--accent-soft);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.flow-card h3 {
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.flow-card p {
  color: rgba(237, 244, 251, 0.78);
}

.benefit-card {
  display: grid;
  gap: 0.9rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 244, 251, 0.9));
}

.benefit-card-accent {
  background:
    radial-gradient(circle at top right, rgba(227, 178, 92, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(18, 60, 115, 0.98), rgba(15, 44, 74, 0.98));
  color: #ffffff;
}

.benefit-card-accent p,
.benefit-card-accent li {
  color: rgba(245, 249, 255, 0.8);
}

.benefit-card-accent .benefit-tag {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.benefit-tag {
  padding: 0.38rem 0.72rem;
  background: rgba(18, 60, 115, 0.08);
  color: var(--primary);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.benefit-card ul,
.plan-card ul,
.app-points {
  display: grid;
  gap: 0.65rem;
}

.benefit-card li,
.plan-card li,
.app-points li {
  position: relative;
  padding-left: 1.2rem;
}

.benefit-card li::before,
.plan-card li::before,
.app-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-strong);
}

.section-plans {
  position: relative;
}

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

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: 1.35rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.plan-card p {
  min-height: 4.5rem;
}

.plan-badge {
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(18, 60, 115, 0.12);
  background: rgba(18, 60, 115, 0.06);
  color: var(--primary);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.plan-card-featured {
  background:
    radial-gradient(circle at top right, rgba(227, 178, 92, 0.22), transparent 34%),
    linear-gradient(180deg, var(--primary), #163b5f);
  color: #ffffff;
}

.plan-card-featured p,
.plan-card-featured li {
  color: rgba(245, 249, 255, 0.82);
}

.plan-card-featured .plan-badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

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

.section-app {
  padding-top: 5rem;
}

.app-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(227, 178, 92, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 244, 251, 0.92));
}

.app-visual {
  padding: 1rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(227, 178, 92, 0.18), transparent 38%),
    linear-gradient(135deg, var(--primary), #173e63);
  min-height: 100%;
}

.app-visual img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.app-demo {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.9rem;
  max-width: 34rem;
}

.store-badge {
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: var(--surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.store-badge:hover,
.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.store-badge img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.store-badge small {
  display: block;
  color: rgba(245, 249, 255, 0.72);
}

.store-badge strong {
  display: block;
  font-size: 1rem;
}

.section-contact {
  background:
    radial-gradient(circle at top right, rgba(227, 178, 92, 0.14), transparent 22%),
    linear-gradient(135deg, #0c1d30 0%, #132c45 58%, #173654 100%);
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2rem;
  align-items: start;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-card strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.contact-card span,
.contact-card a {
  color: rgba(237, 244, 251, 0.78);
}

.contact-snippet {
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
  background: rgba(227, 178, 92, 0.12);
  border: 1px solid rgba(227, 178, 92, 0.2);
}

.contact-snippet p {
  color: #ffffff;
  font-weight: 700;
}

.social-row {
  display: grid;
  gap: 0.75rem;
}

.social-row > span {
  color: rgba(237, 244, 251, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.social-link img {
  width: 24px;
  height: 24px;
}

.form-card {
  padding: 1.45rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 70px rgba(2, 10, 17, 0.26);
}

.form-card-head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.form-card-head h3,
.form-card-head p,
label {
  color: var(--text);
}

.form-tag {
  padding: 0.38rem 0.72rem;
  background: rgba(18, 60, 115, 0.08);
  color: var(--primary);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.contact-form {
  color: var(--text);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-group {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

label {
  font-size: 0.94rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 40, 64, 0.12);
  outline: none;
  background: #ffffff;
  color: var(--text);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

input::placeholder,
textarea::placeholder {
  color: #7a8797;
}

select option {
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(18, 60, 115, 0.34);
  box-shadow: 0 0 0 4px rgba(18, 60, 115, 0.08);
  background: #ffffff;
}

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

.form-actions {
  display: grid;
  gap: 0.75rem;
}

.form-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.form-message {
  display: none;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  font-weight: 700;
}

.form-message.is-success {
  display: block;
  color: #d9f3e7;
  background: rgba(47, 139, 102, 0.14);
  border: 1px solid rgba(47, 139, 102, 0.22);
}

.form-message.is-error {
  display: block;
  color: #fff0f0;
  background: rgba(201, 93, 93, 0.14);
  border: 1px solid rgba(201, 93, 93, 0.22);
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.site-footer {
  padding: 2.4rem 0 3rem;
  background: #08131f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p,
.site-footer .brand-lockup small,
.footer-links {
  color: rgba(237, 244, 251, 0.72);
}

.site-footer .brand-lockup strong {
  color: #ffffff;
}

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

.footer-brand {
  margin-bottom: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

@media (max-width: 1120px) {
  .hero-shell,
  .story-shell,
  .contact-shell,
  .app-shell {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero {
    padding-top: 6.6rem;
  }

  .hero-frame {
    min-height: 520px;
  }
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 82px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(248, 243, 234, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .btn {
    margin-left: 0;
    width: 100%;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 760px) {
  .brand-lockup {
    display: none;
  }

  .hero,
  .section {
    padding-top: 4.1rem;
    padding-bottom: 4.1rem;
  }

  .hero {
    padding-top: 5.8rem;
    padding-bottom: 3.5rem;
  }

  .hero-shell,
  .story-shell,
  .contact-shell,
  .app-shell {
    gap: 1.25rem;
  }

  .hero-copy,
  .hero-visual,
  .section-intro,
  .section-head,
  .app-copy,
  .contact-copy {
    gap: 0.9rem;
  }

  .hero-highlights {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    margin-right: -0.2rem;
    scrollbar-width: none;
  }

  .hero-highlights::-webkit-scrollbar,
  .trust-grid::-webkit-scrollbar,
  .story-grid::-webkit-scrollbar,
  .solution-grid::-webkit-scrollbar,
  .flow-grid::-webkit-scrollbar,
  .benefit-grid::-webkit-scrollbar,
  .plan-grid::-webkit-scrollbar,
  .contact-list::-webkit-scrollbar,
  .mobile-rail::-webkit-scrollbar {
    display: none;
  }

  .hero-highlights li {
    flex: 0 0 auto;
  }

  .hero-frame {
    min-height: 360px;
    padding: 0.85rem;
    border-radius: 28px;
  }

  .hero-frame::before {
    inset: 58px 12px 12px;
    border-radius: 22px;
  }

  .hero-status {
    gap: 0.55rem;
    padding: 0.48rem 0.58rem;
  }

  .hero-device {
    inset: 76px 14px 14px 14px;
    border-radius: 22px;
  }

  .hero-device::before {
    top: 12px;
    width: 88px;
    height: 11px;
  }

  .hero-float {
    display: none;
  }

  .trust-bar {
    margin-top: -1.6rem;
  }

  .mobile-rail-wrap {
    position: sticky;
    top: 76px;
    z-index: 35;
    display: block;
    padding: 0.55rem 0 0;
    background: linear-gradient(180deg, rgba(238, 244, 251, 0.96), rgba(238, 244, 251, 0.88));
    backdrop-filter: blur(10px);
  }

  .mobile-rail {
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }

  .trust-grid,
  .story-grid,
  .solution-grid,
  .flow-grid,
  .benefit-grid,
  .plan-grid,
  .contact-list {
    display: grid;
    grid-auto-flow: column;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 0.1rem;
    align-items: stretch;
    padding-bottom: 0.35rem;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .trust-grid {
    grid-auto-columns: minmax(240px, 74vw);
    grid-template-columns: none;
  }

  .story-grid {
    grid-auto-columns: minmax(270px, 84vw);
    grid-template-columns: none;
  }

  .solution-grid,
  .benefit-grid {
    grid-auto-columns: minmax(290px, 86vw);
    grid-template-columns: none;
  }

  .flow-grid {
    grid-auto-columns: minmax(260px, 82vw);
    grid-template-columns: none;
  }

  .plan-grid {
    grid-auto-columns: minmax(292px, 88vw);
    grid-template-columns: none;
  }

  .contact-list {
    grid-auto-columns: minmax(220px, 74vw);
    grid-template-columns: none;
  }

  .story-card,
  .story-quote,
  .solution-card,
  .flow-card,
  .benefit-card,
  .plan-card,
  .contact-card,
  .trust-item {
    scroll-snap-align: start;
  }

  .story-quote {
    grid-row: auto;
    min-height: 100%;
  }

  .solution-card,
  .benefit-card,
  .plan-card {
    min-height: 100%;
  }

  .plan-card p {
    min-height: 0;
  }

  .app-shell,
  .form-card {
    border-radius: 28px;
  }

  .app-shell {
    padding: 1rem;
  }

  .app-visual {
    order: 2;
    padding: 0.7rem;
    border-radius: 22px;
  }

  .app-visual img {
    max-height: 280px;
    object-fit: contain;
  }

  .contact-copy {
    order: 2;
  }

  .form-card {
    order: 1;
    padding: 1.15rem;
  }

  .social-row {
    gap: 0.55rem;
  }

  .store-badges {
    flex-direction: column;
  }

  .store-badge {
    width: 100%;
    min-width: 0;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .section,
  .hero {
    padding-inline: 0;
  }

  h1,
  h2 {
    word-break: break-word;
  }

  h1 {
    font-size: clamp(2.6rem, 10vw, 3.3rem);
  }

  h2 {
    font-size: clamp(1.95rem, 8vw, 2.5rem);
  }

  .container {
    width: min(100% - 1rem, var(--container));
  }

  .hero,
  .section {
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
  }

  .hero {
    padding-top: 5.2rem;
    padding-bottom: 3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .solution-card .btn,
  .plan-card .btn {
    width: 100%;
  }

  .hero-frame {
    min-height: 320px;
  }

  .hero-device {
    inset: 72px 12px 12px 12px;
  }

  .trust-grid {
    grid-auto-columns: minmax(228px, 82vw);
  }

  .story-grid,
  .flow-grid {
    grid-auto-columns: minmax(248px, 84vw);
  }

  .solution-grid,
  .benefit-grid,
  .plan-grid {
    grid-auto-columns: minmax(272px, 88vw);
  }

  .contact-list {
    grid-auto-columns: minmax(220px, 82vw);
  }

  .mobile-rail-wrap {
    top: 72px;
  }

  .mobile-rail a {
    min-height: 38px;
    padding: 0.7rem 0.88rem;
    font-size: 0.84rem;
  }
}

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

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

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

