:root {
  --primary: #145684;
  --primary-deep: #0a253a;
  --primary-soft: #e6eef5;
  --accent: #d98f47;
  --accent-soft: #f3dfc7;
  --success: #1f734b;
  --success-soft: #d8ebdf;
  --ink: #10283b;
  --ink-soft: #51697c;
  --ink-muted: #6e8494;
  --surface: #f3eee5;
  --surface-alt: #fbf8f2;
  --paper: #ffffff;
  --paper-soft: #f7f3eb;
  --panel: #0c1f31;
  --panel-soft: #122f47;
  --border: rgba(16, 40, 59, 0.1);
  --border-strong: rgba(16, 40, 59, 0.16);
  --border-light: rgba(255, 255, 255, 0.14);
  --shadow-soft: 0 24px 60px rgba(12, 26, 38, 0.08);
  --shadow-medium: 0 32px 80px rgba(12, 26, 38, 0.14);
  --shadow-deep: 0 42px 110px rgba(6, 16, 25, 0.22);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --font-heading: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --h1-size: clamp(3.1rem, 6.9vw, 5.6rem);
  --h2-size: clamp(2.15rem, 4vw, 3.3rem);
  --h3-size: clamp(1.32rem, 2.1vw, 1.72rem);
  --subtitle-size: clamp(1.02rem, 1.7vw, 1.16rem);
  --body-size: 1rem;
  --label-size: 0.78rem;
  --nav-offset: 88px;
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: var(--nav-offset);
}

body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: 1.68;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(20, 86, 132, 0.08), transparent 26%),
    linear-gradient(180deg, #fcfaf4 0%, #f7f4ee 20%, #ffffff 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

main {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: var(--nav-offset);
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.text-accent {
  color: var(--accent);
}

.section-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-container--narrow {
  max-width: 860px;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--h1-size);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.section-title,
.showcase-title,
.cta-title {
  font-family: var(--font-heading);
  font-size: var(--h2-size);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.service-title,
.benefit-title,
.package-title,
.hero-panel-title,
.step-title,
.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: var(--h3-size);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.hero-subtitle,
.section-subtitle,
.showcase-desc,
.cta-desc,
.benefits-intro p,
.package-desc,
.benefit-desc,
.step-desc,
.faq-answer p,
.footer-desc {
  font-size: var(--subtitle-size);
  line-height: 1.72;
  color: var(--ink-soft);
}

.hero-kicker,
.section-kicker,
.showcase-label,
.cta-kicker,
.hero-panel-label,
.package-kicker,
.footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--label-size);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title,
.showcase-title,
.cta-title {
  margin-bottom: 16px;
  color: var(--ink);
}

.section-subtitle {
  max-width: 56ch;
  margin: 0 auto;
}

.section-kicker,
.showcase-label,
.cta-kicker {
  margin-bottom: 14px;
  color: var(--primary);
}

.showcase-label::before,
.cta-kicker::before,
.section-kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}

.hero-kicker::before,
.footer-kicker::before,
.hero-panel-label::before,
.package-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    backdrop-filter 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(249, 245, 238, 0.74);
  border-bottom-color: rgba(16, 40, 59, 0.07);
  box-shadow: 0 16px 40px rgba(9, 18, 27, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.menu-open .site-header {
  background: rgba(249, 245, 238, 0.92);
  border-bottom-color: rgba(16, 40, 59, 0.08);
  box-shadow: 0 18px 44px rgba(9, 18, 27, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-container {
  max-width: 1280px;
  min-height: 88px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
  line-height: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

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

.site-header.is-scrolled .logo,
body.menu-open .site-header .logo {
  background: none;
  border-color: transparent;
}

.logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 10px 24px rgba(6, 16, 25, 0.18));
  transition: filter 0.22s ease;
}

.site-header.is-scrolled .logo img,
body.menu-open .site-header .logo img {
  filter: drop-shadow(0 8px 16px rgba(16, 40, 59, 0.08));
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  padding: 10px 0;
  font-size: 0.94rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 1px 20px rgba(6, 18, 29, 0.28);
  transition: color 0.22s ease, text-shadow 0.22s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.nav-link:hover,
.nav-link.is-current {
  color: var(--paper);
}

.nav-link:hover::after,
.nav-link.is-current::after {
  transform: scaleX(1);
}

.site-header.is-scrolled .nav-link,
body.menu-open .site-header .nav-link {
  color: var(--ink-soft);
  text-shadow: none;
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.is-current,
body.menu-open .site-header .nav-link:hover,
body.menu-open .site-header .nav-link.is-current {
  color: var(--ink);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hamburger {
  position: relative;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--paper);
  transition: background-color 0.25s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--paper);
  transition: transform 0.25s ease, top 0.25s ease, bottom 0.25s ease;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  bottom: -7px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.site-header.is-scrolled .nav-toggle,
body.menu-open .site-header .nav-toggle {
  background: rgba(20, 86, 132, 0.06);
  border-color: rgba(20, 86, 132, 0.1);
}

.site-header.is-scrolled .hamburger,
.site-header.is-scrolled .hamburger::before,
.site-header.is-scrolled .hamburger::after,
body.menu-open .site-header .hamburger,
body.menu-open .site-header .hamburger::before,
body.menu-open .site-header .hamburger::after {
  background: var(--ink);
}

.nav-mobile {
  position: absolute;
  top: calc(100% + 8px);
  left: 24px;
  right: 24px;
  display: none;
  padding: 14px;
  border-radius: 24px;
  background: rgba(252, 248, 242, 0.96);
  border: 1px solid rgba(16, 40, 59, 0.1);
  box-shadow: var(--shadow-medium);
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-mobile-link {
  display: block;
  padding: 13px 16px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-mobile-link:hover,
.nav-mobile-link.is-current {
  background: rgba(20, 86, 132, 0.08);
  color: var(--ink);
}

.nav-mobile-cta {
  margin-top: 8px;
  background: var(--ink);
  color: var(--paper);
}

.nav-mobile-cta.is-current {
  background: var(--primary);
  color: var(--paper);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

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

.btn-primary {
  min-height: 48px;
  padding: 11px 22px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--paper);
  box-shadow: 0 10px 26px rgba(6, 16, 25, 0.12);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 34px rgba(6, 16, 25, 0.16);
}

.site-header.is-scrolled .btn-primary,
body.menu-open .site-header .btn-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  box-shadow: none;
}

.site-header.is-scrolled .btn-primary:hover,
body.menu-open .site-header .btn-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-whatsapp {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 235, 0.95));
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--ink);
  box-shadow: 0 20px 48px rgba(6, 16, 25, 0.2);
}

.btn-whatsapp:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(251, 246, 239, 1));
  box-shadow: 0 24px 56px rgba(6, 16, 25, 0.24);
}

.btn-whatsapp i,
.btn-whatsapp-sm i {
  color: var(--success);
}

.btn-whatsapp-sm {
  min-height: 46px;
  padding: 11px 18px;
  background: rgba(31, 115, 75, 0.08);
  border-color: rgba(31, 115, 75, 0.16);
  color: var(--ink);
}

.btn-whatsapp-sm:hover {
  background: rgba(31, 115, 75, 0.12);
}

.btn-whatsapp-lg {
  min-height: 56px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #173954 0%, #1d4e3a 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  box-shadow: 0 28px 60px rgba(8, 24, 38, 0.28);
}

.btn-whatsapp-lg i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #99d3b1;
}

.btn-whatsapp-lg:hover {
  box-shadow: 0 34px 72px rgba(8, 24, 38, 0.34);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--paper);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 138px 0 112px;
  background: var(--panel);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: saturate(1.02) brightness(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 18, 30, 0.85) 0%,
    rgba(10, 18, 30, 0.75) 40%,
    rgba(10, 18, 30, 0.55) 70%,
    rgba(10, 18, 30, 0.35) 100%
  );
  z-index: 1;
}

.hero-shell {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-proof {
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.78);
}

.hero-title {
  max-width: 600px;
  color: var(--paper);
  margin-bottom: 22px;
  font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.022em;
  text-align: left;
}

.hero-title-highlight {
  display: inline-block;
  color: #f59e0b;
  font-weight: 800;
  font-size: 1.06em;
}

.hero-subtitle {
  max-width: 520px;
  margin-top: 0;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.6;
}

.hero-assurance {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}

.hero-cta-group {
  margin-top: 24px;
}

.hero-cta-primary {
  min-height: auto;
  padding: 16px 28px;
  border-radius: 10px;
  background: #f59e0b;
  border-color: #f59e0b;
  color: #10283b;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.35);
}

.hero-cta-primary:hover {
  background: #f59e0b;
  transform: translateY(-2px);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.hero-cta-secondary i {
  font-size: 0.86rem;
}

.hero-trust {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.74);
}

.hero-features {
  display: grid;
  gap: 12px;
  max-width: 36rem;
  margin-top: 24px;
  opacity: 0.85;
}

.hero-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 0;
  border: 0;
  background: none;
  font-size: 14px;
  opacity: 0.75;
}

.feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffd8ae;
  flex-shrink: 0;
}

.feature-check i {
  font-size: 0.72rem;
}

.hero-feature span:last-child {
  display: block;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.hero-visual {
  min-height: clamp(380px, 42vw, 500px);
}

.hero-panel {
  position: relative;
  max-width: 430px;
  justify-self: end;
}

.hero-panel-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(10, 31, 49, 0.84) 0%, rgba(10, 31, 49, 0.7) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-panel-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(217, 143, 71, 0.22), transparent 68%);
  pointer-events: none;
}

.hero-panel-top,
.hero-panel-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-panel-top {
  display: block;
}

.hero-panel-heading-text {
  font-family: var(--font-heading);
  max-width: none;
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1.06;
  color: var(--paper);
}

.hero-panel-header {
  display: grid;
  gap: 14px;
  width: 100%;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel-brow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 18px;
  flex-wrap: wrap;
}

.hero-panel-copy {
  display: grid;
  gap: 10px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-panel-label {
  color: rgba(255, 255, 255, 0.76);
}

.hero-panel-intro {
  max-width: none;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.hero-panel-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hero-panel-body {
  position: relative;
  z-index: 1;
  padding: 20px 0 24px;
}

.hero-panel-title {
  color: var(--paper);
  margin-bottom: 22px;
}

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

.hero-panel-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.hero-panel-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-panel-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--paper);
  font-size: 0.98rem;
}

.hero-panel-item p {
  font-size: 0.88rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.66);
}

.hero-panel-footer {
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-panel-stat {
  flex: 1;
}

.hero-panel-stat strong {
  display: block;
  margin-bottom: 5px;
  color: var(--paper);
  font-family: var(--font-heading);
  font-size: 1.52rem;
  line-height: 1;
}

.hero-panel-stat span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

.services,
.benefits,
.packages,
.showcase,
.process,
.faq {
  position: relative;
}

.services {
  padding: 102px 0 118px;
  background: linear-gradient(180deg, #f3eee6 0%, #faf7f1 28%, #ffffff 100%);
}

.services-grid {
  display: grid;
  gap: 24px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 34px 30px 30px;
  border-radius: 30px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 242, 234, 0.86) 100%);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -36% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 86, 132, 0.08), transparent 68%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(12, 26, 38, 0.12);
}

.service-card--accent::before {
  background: linear-gradient(90deg, var(--accent), rgba(217, 143, 71, 0.1));
}

.service-card--primary::before {
  background: linear-gradient(90deg, var(--primary), rgba(20, 86, 132, 0.12));
}

.service-card--dark::before {
  background: linear-gradient(90deg, #304b62, rgba(48, 75, 98, 0.08));
}

.service-card--featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(230, 238, 245, 0.9) 100%);
  border-color: rgba(20, 86, 132, 0.16);
}

.service-card--dark {
  background: linear-gradient(180deg, #0f2638 0%, #17354d 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 76px rgba(8, 18, 28, 0.2);
}

.service-card--dark .service-title,
.service-card--dark .service-desc,
.service-card--dark .service-note,
.service-card--dark .service-list li,
.service-card--dark .service-index {
  color: var(--paper);
}

.service-card--dark .service-desc,
.service-card--dark .service-note,
.service-card--dark .service-list li {
  color: rgba(255, 255, 255, 0.72);
}

.service-index {
  position: absolute;
  top: 26px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(20, 86, 132, 0.1);
}

.service-card--dark .service-index {
  color: rgba(255, 255, 255, 0.12);
}

.service-icon,
.benefit-icon,
.feature-icon,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(6, 16, 25, 0.12);
}

.service-card--accent .service-icon,
.benefit-icon--accent,
.feature-icon--accent {
  background: linear-gradient(135deg, var(--accent), #e5b176);
  color: var(--paper);
}

.service-card--primary .service-icon,
.benefit-icon--primary,
.feature-icon--primary {
  background: linear-gradient(135deg, var(--primary), #0f4a75);
  color: var(--paper);
}

.service-card--dark .service-icon,
.benefit-icon--dark,
.feature-icon--dark {
  background: linear-gradient(135deg, #405a70, #24394c);
  color: var(--paper);
}

.service-icon i,
.benefit-icon i,
.feature-icon i {
  font-size: 1.35rem;
}

.service-title {
  margin-bottom: 12px;
  color: var(--ink);
}

.service-desc {
  margin-bottom: 18px;
}

.service-note {
  margin-bottom: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 40, 59, 0.08);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.service-card--dark .service-note {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.service-list,
.package-list {
  display: grid;
  gap: 12px;
}

.service-list li,
.package-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  line-height: 1.6;
}

.bullet {
  width: 7px;
  height: 7px;
  margin-top: 9px;
  flex-shrink: 0;
  border-radius: 50%;
}

.service-card--accent .bullet,
.package-card--essential .bullet {
  background: var(--accent);
}

.service-card--primary .bullet,
.package-card--featured .bullet {
  background: rgba(255, 255, 255, 0.8);
}

.service-card--dark .bullet,
.package-card--signature .bullet {
  background: #8eb6d2;
}

.faq-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 38px;
  padding: 24px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(243, 238, 229, 0.92));
  border: 1px solid rgba(16, 40, 59, 0.08);
  box-shadow: 0 18px 40px rgba(12, 26, 38, 0.06);
}

.faq-cta p,
.process-cta p {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.2;
}

.benefits {
  padding: 98px 0;
  background: linear-gradient(180deg, #faf7f1 0%, #eef2f6 100%);
}

.benefits .section-header {
  max-width: 760px;
  margin-bottom: 46px;
}

.benefits .section-title {
  margin-bottom: 12px;
  max-width: none;
  font-size: clamp(2.35rem, 4.2vw, 3.7rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
  color: #0f2638;
  text-wrap: balance;
}

.benefits .section-subtitle {
  max-width: 50ch;
  color: rgba(16, 40, 59, 0.78);
}

.benefits-layout {
  display: grid;
  width: min(100%, 1120px);
  margin: 0 auto;
  gap: 20px;
  align-items: start;
  justify-items: stretch;
  padding: 0;
}

.benefits-layout::before {
  content: none;
}

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

.benefits-system {
  display: grid;
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
  justify-items: center;
}

.benefits-intro {
  position: relative;
  width: min(100%, 760px);
  margin: 0;
  justify-self: center;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-items: start;
  justify-items: center;
  padding: 0 0 10px;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.benefits-intro::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(16, 40, 59, 0), rgba(16, 40, 59, 0.08), rgba(16, 40, 59, 0));
}

.benefits-intro-label {
  display: block;
  max-width: 18ch;
  font-family: var(--font-heading);
  font-size: clamp(1.46rem, 2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-transform: none;
  color: var(--ink);
}

.benefits-intro-label::before {
  content: none;
}

.benefits-intro p {
  max-width: 38ch;
  margin: 0;
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.58;
  color: rgba(16, 40, 59, 0.76);
}

.benefits-stage {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 31px 28px 28px 88px;
  border-radius: 30px;
  border: 1px solid rgba(16, 40, 59, 0.07);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 24px rgba(12, 26, 38, 0.035);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.benefit-card::after {
  content: none;
}

.benefit-card--feature {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 237, 223, 0.54));
}

.benefit-card--dialog {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(232, 239, 245, 0.56));
}

.benefit-card--approval {
  background: linear-gradient(180deg, rgba(15, 38, 56, 0.94) 0%, rgba(24, 58, 84, 0.9) 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 44px rgba(8, 18, 28, 0.12);
  transform: translateY(-8px);
}

.benefit-card--approval .benefit-title,
.benefit-card--approval .benefit-desc {
  color: var(--paper);
}

.benefit-card--approval .benefit-desc {
  color: rgba(255, 255, 255, 0.74);
}

.benefit-icon {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(6, 16, 25, 0.06);
}

.benefit-title {
  margin-bottom: 8px;
  color: var(--ink);
}

.benefit-desc {
  font-size: 1rem;
  line-height: 1.62;
}

.benefits-trust {
  max-width: 40ch;
  margin: 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.04rem, 1.16vw, 1.14rem);
  font-weight: 600;
  line-height: 1.38;
  color: rgba(16, 40, 59, 0.9);
}

.benefits-cta {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 8px;
  width: min(100%, 760px);
  margin: 0 auto;
  padding-top: 2px;
  text-align: center;
  border-top: 0;
}

.benefits-link {
  width: min(100%, 480px);
  margin: 0;
  text-align: center;
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.benefits-link a {
  display: grid;
  justify-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.48;
  text-align: center;
  color: rgba(16, 40, 59, 0.8);
}

.benefits-link span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #0f4a75);
  box-shadow: 0 14px 34px rgba(20, 86, 132, 0.18);
  color: var(--paper);
  font-weight: 700;
}

.benefits-link span i {
  color: currentColor;
}

.packages {
  padding: 114px 0 122px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f5ef 100%);
}

.packages-grid {
  display: grid;
  gap: 22px;
}

.package-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px 30px 30px;
  border-radius: 30px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 235, 0.9));
  box-shadow: var(--shadow-soft);
}

.package-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
}

.package-card--essential::before {
  background: linear-gradient(90deg, var(--accent), rgba(217, 143, 71, 0.12));
}

.package-card--featured::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.1));
}

.package-card--signature::before {
  background: linear-gradient(90deg, #6b8aa5, rgba(107, 138, 165, 0.12));
}

.package-card--featured {
  background: linear-gradient(180deg, #0d2438 0%, #123552 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(8, 18, 28, 0.2);
  transform: translateY(-14px);
}

.package-card--featured .package-kicker,
.package-card--featured .package-title,
.package-card--featured .package-desc,
.package-card--featured .package-list li {
  color: var(--paper);
}

.package-card--featured .package-desc {
  color: rgba(255, 255, 255, 0.74);
}

.package-badge {
  width: max-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-kicker {
  margin-bottom: 12px;
  color: var(--primary);
}

.package-card--featured .package-kicker {
  color: var(--accent-soft);
}

.package-title {
  margin-bottom: 14px;
  color: var(--ink);
}

.package-desc {
  margin-bottom: 20px;
}

.package-list {
  margin-top: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 40, 59, 0.08);
}

.package-card--featured .package-list {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.package-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 26px;
  font-weight: 700;
  color: var(--primary);
}

.package-card--featured .package-link {
  color: var(--accent-soft);
}

.showcase {
  padding: 124px 0 138px;
  background:
    radial-gradient(circle at 10% 18%, rgba(20, 86, 132, 0.08), transparent 24%),
    linear-gradient(180deg, #f7f4ee 0%, #ffffff 100%);
}

.showcase-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.showcase-content {
  max-width: none;
  display: grid;
  gap: 32px;
  align-content: center;
  align-self: center;
}

.showcase-copy {
  max-width: 33.5rem;
}

.showcase-title {
  max-width: 14ch;
  margin-bottom: 14px;
  font-size: clamp(2.35rem, 3.75vw, 3.12rem);
}

.showcase-desc {
  max-width: 40ch;
  margin-bottom: 0;
}

.showcase-features {
  display: grid;
  gap: 12px;
  max-width: 32.5rem;
  padding-top: 0;
}

.showcase-feature {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 15px 16px 15px 14px;
  border: 1px solid rgba(16, 40, 59, 0.06);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(249, 244, 236, 0.48) 100%);
  box-shadow: 0 8px 22px rgba(12, 26, 38, 0.025);
}

.showcase-feature:last-child {
  border-bottom-color: rgba(16, 40, 59, 0.07);
}

.showcase-feature .feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(16, 40, 59, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.showcase .feature-icon--accent {
  background: linear-gradient(180deg, rgba(217, 143, 71, 0.14) 0%, rgba(217, 143, 71, 0.08) 100%);
  color: #af6b2d;
}

.showcase .feature-icon--primary {
  background: linear-gradient(180deg, rgba(20, 86, 132, 0.14) 0%, rgba(20, 86, 132, 0.08) 100%);
  color: var(--primary);
}

.showcase .feature-icon--dark {
  background: linear-gradient(180deg, rgba(16, 40, 59, 0.12) 0%, rgba(16, 40, 59, 0.08) 100%);
  color: #304d63;
}

.showcase-feature .feature-icon i {
  font-size: 0.92rem;
}

.showcase-feature .feature-content {
  display: grid;
  gap: 4px;
  padding-top: 0;
}

.showcase-feature .feature-content strong {
  display: block;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.showcase-feature .feature-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.58;
  color: rgba(16, 40, 59, 0.72);
}

.showcase-visual {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: center;
}

.mockup-stage {
  position: relative;
  width: 100%;
  max-width: 756px;
  margin-left: auto;
}

.mockup-stage::before {
  content: "";
  position: absolute;
  inset: 18px 18px 46px;
  border-radius: 34px;
  background: radial-gradient(circle at center, rgba(20, 86, 132, 0.07), rgba(20, 86, 132, 0));
  filter: blur(22px);
  pointer-events: none;
}

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

.mockup-container {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
}

.mockup-book {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  filter: none;
}

.mockup-book::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: -16px;
  height: 20px;
  background: radial-gradient(circle, rgba(12, 26, 38, 0.16) 0%, rgba(12, 26, 38, 0) 76%);
  filter: blur(12px);
  pointer-events: none;
}

.mockup-page {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  box-sizing: border-box;
  width: 50%;
  height: 528px;
  flex: 0 0 50%;
  padding: 20px 20px 34px;
  background: linear-gradient(180deg, #fffdf8 0%, #f7f1e8 100%);
  border: 1px solid rgba(16, 40, 59, 0.08);
  box-shadow: 0 16px 36px rgba(12, 26, 38, 0.06);
}

.mockup-page::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 14px;
  height: 1px;
  background: linear-gradient(90deg, rgba(16, 40, 59, 0.12), rgba(16, 40, 59, 0));
  opacity: 0.3;
}

.mockup-page--left {
  border-right-color: transparent;
  border-radius: 18px 4px 4px 18px;
  padding-right: 17px;
}

.mockup-page--right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  border-left-color: transparent;
  border-radius: 4px 18px 18px 4px;
  padding-left: 17px;
  gap: 6px;
}

.mockup-page--left::before,
.mockup-page--right::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  pointer-events: none;
}

.mockup-page--left::before {
  right: -1px;
  background: linear-gradient(90deg, rgba(10, 31, 49, 0), rgba(10, 31, 49, 0.04), rgba(10, 31, 49, 0.07));
}

.mockup-page--right::before {
  left: -1px;
  background: linear-gradient(90deg, rgba(10, 31, 49, 0.07), rgba(10, 31, 49, 0.04), rgba(10, 31, 49, 0));
}

.mockup-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 31, 49, 0.46);
}

.mockup-page-kicker {
  color: rgba(20, 86, 132, 0.72);
}

.mockup-page-meta {
  text-align: right;
}

.mockup-page-photo {
  position: relative;
  overflow: hidden;
  border-radius: 9px;
  border: 1px solid rgba(16, 40, 59, 0.06);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mockup-page-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(6, 18, 29, 0.04)),
    linear-gradient(0deg, rgba(10, 31, 49, 0.03), rgba(10, 31, 49, 0.03));
}

.mockup-page-photo-image {
  display: block;
  width: 100%;
  height: 100%;
}

.mockup-page-media {
  display: grid;
  gap: 10px;
}

.mockup-page-media--feature {
  height: 350px;
}

.mockup-page-media--grid {
  height: 350px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mockup-page-media--grid .mockup-page-photo {
  aspect-ratio: 1 / 1;
}

.mockup-portrait-card {
  display: grid;
  gap: 5px;
  align-content: start;
}

.mockup-portrait-line {
  display: block;
  width: 72%;
  height: 4px;
  margin-left: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(16, 40, 59, 0.18), rgba(16, 40, 59, 0.06));
}

.mockup-portrait-card:nth-child(3n + 2) .mockup-portrait-line {
  width: 64%;
}

.mockup-portrait-card:nth-child(3n) .mockup-portrait-line {
  width: 56%;
}

.mockup-page-photo--group {
  width: 100%;
  height: auto;
  aspect-ratio: 1.46 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  background-image: none;
  background-position: center center;
}

.mockup-page-header--group {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 0;
}

.mockup-page-heading {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-deep);
}

.mockup-page--right .mockup-page-media--feature {
  height: auto;
  padding: 0;
  align-content: start;
  border-radius: 0;
  background: none;
  border: 0;
}

.mockup-page--right .mockup-page-photo--group::after {
  content: none;
}

.mockup-page-photo-image--group {
  object-fit: contain;
  object-position: center top;
}

.mockup-page-copy--group {
  width: 100%;
  max-width: 30ch;
  gap: 3px;
  align-self: center;
  padding-top: 0;
}

.mockup-page-bridge {
  margin: 0;
  align-self: center;
  text-align: center;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(16, 40, 59, 0.62);
}

.mockup-page-media--secondary {
  width: 70%;
  align-self: center;
  margin-top: 0;
}

.mockup-page-photo--group-secondary {
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 10px;
  background: transparent;
}

.mockup-page-photo--group-secondary::after {
  content: none;
}

.mockup-page-photo-image--group-secondary {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.mockup-page--right .mockup-page-title {
  max-width: none;
  font-size: 0.98rem;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.mockup-page--right .mockup-page-text {
  max-width: 29ch;
  font-size: 0.67rem;
  line-height: 1.56;
}

.mockup-page-text--group {
  color: rgba(16, 40, 59, 0.64);
  max-width: 32ch;
}

.mockup-page-photo--portrait-01 {
  background-image: url("assets/student1.png");
  background-position: center center;
}

.mockup-page-photo--portrait-02 {
  background-image: url("assets/student2.png");
  background-position: center center;
}

.mockup-page-photo--portrait-03 {
  background-image: url("assets/student3.png");
  background-position: center center;
}

.mockup-page-photo--portrait-04 {
  background-image: url("assets/student4.png");
  background-position: center center;
}

.mockup-page-photo--portrait-05 {
  background-image: url("assets/student5.png");
  background-position: center center;
}

.mockup-page-photo--portrait-06 {
  background-image: url("assets/student6.png");
  background-position: center center;
}

.mockup-page-photo--portrait-07 {
  background-image: url("assets/student7.png");
  background-position: center center;
}

.mockup-page-photo--portrait-08 {
  background-image: url("assets/student8.png");
  background-position: center center;
}

.mockup-page-photo--portrait-09 {
  background-image: url("assets/student9.png");
  background-position: center center;
}

.mockup-page-brow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(16, 40, 59, 0.52);
}

.mockup-page-brow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.mockup-page-copy {
  display: grid;
  gap: 6px;
  align-content: start;
  max-width: none;
}

.mockup-page-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.mockup-page-text {
  margin: 0;
  font-size: 0.64rem;
  line-height: 1.44;
  color: rgba(16, 40, 59, 0.68);
}

.mockup-page-number {
  position: absolute;
  bottom: 16px;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(10, 31, 49, 0.24);
}

.mockup-page--left .mockup-page-number {
  left: 20px;
}

.mockup-page--right .mockup-page-number {
  right: 20px;
}

.mockup-spine {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 50%;
  width: 18px;
  flex: none;
  margin: 0;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(71, 53, 35, 0), rgba(71, 53, 35, 0.06) 22%, rgba(255, 255, 255, 0.5) 50%, rgba(71, 53, 35, 0.06) 78%, rgba(71, 53, 35, 0));
  box-shadow: inset 0 0 8px rgba(78, 59, 39, 0.04);
  pointer-events: none;
  z-index: 3;
}

.mockup-spine::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.38);
}

.mockup-stage-note {
  display: none;
}

.mockup-stage-note strong {
  font-size: 0.98rem;
  color: var(--ink);
}

.mockup-stage-note span {
  font-size: 0.92rem;
  line-height: 1.62;
  color: var(--ink-soft);
}

.process {
  padding: 118px 0 124px;
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 143, 71, 0.12), transparent 24%),
    linear-gradient(180deg, #0a1d2f 0%, #10283d 100%);
  color: var(--paper);
  overflow: hidden;
}

.process .section-title,
.process .section-subtitle,
.process .section-kicker,
.process .step-title,
.process .step-desc {
  color: var(--paper);
}

.process .section-subtitle,
.process .step-desc,
.process-cta p {
  max-width: 22ch;
  color: rgba(255, 255, 255, 0.74);
}

.process .section-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.process .section-kicker::before {
  background: rgba(255, 255, 255, 0.42);
}

.process-grid {
  position: relative;
  display: grid;
  gap: 22px;
}

.process-step {
  position: relative;
  padding: 88px 26px 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.process-step--final {
  background: linear-gradient(180deg, rgba(31, 115, 75, 0.18), rgba(255, 255, 255, 0.04));
  border-color: rgba(153, 211, 177, 0.2);
}

.step-number {
  position: absolute;
  top: 24px;
  left: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(217, 143, 71, 0.18);
  border: 1px solid rgba(217, 143, 71, 0.24);
  color: var(--accent-soft);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.14);
}

.step-title {
  margin-bottom: 10px;
}

.step-desc {
  font-size: 1rem;
}

.process-cta {
  display: grid;
  justify-items: center;
  gap: 16px;
  width: min(100%, 430px);
  margin: 54px auto 0;
  padding-top: 28px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.process .btn-whatsapp-sm {
  min-width: 214px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--paper);
}

.process .btn-whatsapp-sm i {
  color: #9cd0af;
}

.faq {
  padding: 114px 0;
  background: linear-gradient(180deg, #f7f3ec 0%, #ffffff 100%);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  position: relative;
  overflow: clip;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 40, 59, 0.08);
  box-shadow: 0 18px 42px rgba(12, 26, 38, 0.05);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: transparent;
  transition: background-color 0.22s ease;
}

.faq-item.is-open {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 235, 0.96));
  border-color: rgba(16, 40, 59, 0.14);
  box-shadow: 0 28px 60px rgba(12, 26, 38, 0.08);
}

.faq-item.is-open::before {
  background: linear-gradient(180deg, var(--accent), rgba(20, 86, 132, 0.7));
}

.faq-question {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 26px 24px 34px;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
}

.faq-question > span:first-child {
  max-width: 48ch;
}

.faq-symbol {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--ink-muted);
  transition: color 0.22s ease;
}

.faq-symbol-line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
  transition: transform 0.22s ease, opacity 0.22s ease, background-color 0.22s ease;
}

.faq-symbol-line--vertical {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item.is-open .faq-question {
  padding-bottom: 14px;
}

.faq-item.is-open .faq-symbol {
  color: var(--accent);
}

.faq-item.is-open .faq-symbol-line--vertical {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(0);
}

.faq-answer {
  display: block;
  padding: 0 26px 26px 34px;
}

.faq-answer[hidden] {
  display: none !important;
}

.faq-answer p {
  max-width: 56ch;
  color: var(--ink-soft);
}

.cta-section {
  position: relative;
  padding: 124px 0;
  background: #0a1d2f;
  overflow: hidden;
}

.cta-bg,
.cta-bg img,
.cta-overlay {
  position: absolute;
  inset: 0;
}

.cta-bg {
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  background:
    linear-gradient(180deg, rgba(6, 18, 29, 0.82) 0%, rgba(6, 18, 29, 0.88) 100%),
    linear-gradient(110deg, rgba(10, 31, 49, 0.84) 0%, rgba(10, 31, 49, 0.36) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  padding: 42px 38px;
  border-radius: 34px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 34px 88px rgba(8, 18, 28, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cta-content::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent);
}

.cta-kicker {
  justify-content: center;
  color: rgba(255, 231, 211, 0.9);
}

.cta-kicker::before {
  background: rgba(255, 255, 255, 0.3);
}

.cta-title {
  color: var(--paper);
}

.cta-desc {
  max-width: 56ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
}

.cta-actions {
  display: grid;
  justify-items: center;
  gap: 22px;
  margin-top: 40px;
  width: 100%;
}

.cta-note {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 28ch;
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.cta-note i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.92);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  border: 0;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.whatsapp-float i {
  color: var(--paper);
  font-size: 1.55rem;
}

.whatsapp-float:hover {
  background: #1fbe5b;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.32);
}

.site-footer {
  position: relative;
  padding: 88px 24px 34px;
  background: linear-gradient(180deg, #081623 0%, #0b2033 100%);
  color: var(--paper);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  gap: 38px 48px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 10px;
  align-content: start;
  max-width: 360px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 18px;
}

.footer-logo img {
  height: 76px;
  width: auto;
}

.footer-kicker {
  margin-bottom: 12px;
  color: rgba(255, 231, 211, 0.76);
}

.footer-desc {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-nav h4,
.footer-contact h4 {
  margin-bottom: 18px;
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.footer-nav ul,
.footer-contact ul {
  display: grid;
  gap: 12px;
}

.footer-nav a,
.footer-contact a,
.footer-bottom,
.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-legal a:hover {
  color: var(--paper);
}

.footer-contact li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.94rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.faq-question:focus-visible,
.nav-toggle:focus-visible,
.btn:focus-visible,
.package-link:focus-visible,
.nav-link:focus-visible,
.nav-mobile-link:focus-visible,
.whatsapp-float:focus-visible {
  outline: 2px solid rgba(217, 143, 71, 0.95);
  outline-offset: 3px;
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: 0.95fr 1.08fr 0.95fr;
    align-items: stretch;
  }

  .service-card--featured {
    transform: translateY(-22px);
  }

  .service-card--featured:hover {
    transform: translateY(-30px);
  }

  .benefits-layout {
    gap: 18px;
    padding: 0;
  }

  .benefits-stage {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.05fr) minmax(0, 0.98fr);
    gap: 20px;
    align-items: start;
  }

  .benefit-card--feature,
  .benefit-card--dialog {
    margin-top: 12px;
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.12fr);
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

@media (min-width: 1024px) {
  .packages-grid {
    grid-template-columns: 0.96fr 1.08fr 0.96fr;
    align-items: stretch;
  }

  .showcase-grid {
    grid-template-columns: minmax(350px, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(42px, 4.6vw, 64px);
    align-items: center;
  }

  .showcase-visual {
    justify-content: flex-end;
  }

  .showcase-content {
    max-width: 33rem;
    padding-top: 0;
  }

  .mockup-stage {
    max-width: 770px;
    transform: translateY(-4px);
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding-top: 30px;
  }

  .process-grid::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 54px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04));
  }

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

@media (max-width: 1023px) {
  .logo img {
    height: 48px;
  }

  .hero {
    padding-bottom: 84px;
  }

  .hero-grid {
    gap: 26px;
  }

  .showcase-grid {
    gap: 42px;
  }

  .benefits {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .benefits .section-header {
    margin-bottom: 38px;
  }

  .benefits-layout {
    gap: 20px;
  }

  .benefits-system {
    gap: 14px;
  }

  .benefits-intro {
    width: min(100%, 700px);
    grid-template-columns: 1fr;
    gap: 7px;
    padding-bottom: 10px;
  }

  .benefits-cta {
    width: min(100%, 700px);
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding-top: 0;
    border-top: 0;
    text-align: center;
  }

  .benefits-stage {
    gap: 16px;
  }

  .showcase-content {
    gap: 32px;
  }

  .showcase-visual {
    justify-content: center;
  }

  .mockup-stage {
    width: min(100%, 660px);
  }

  .mockup-page {
    width: 50%;
    height: 484px;
    flex: 0 0 50%;
    padding: 18px 17px 30px;
  }

  .mockup-page-media--feature,
  .mockup-page-media--grid {
    height: 302px;
  }

  .mockup-page--right .mockup-page-media--feature {
    height: auto;
    padding: 0;
  }

  .mockup-page-title {
    font-size: 0.92rem;
  }

  .mockup-page-text {
    font-size: 0.6rem;
  }

  .mockup-page-heading {
    font-size: 1.08rem;
  }

  .mockup-page--right .mockup-page-text {
    font-size: 0.6rem;
  }

  .mockup-page--right {
    gap: 5px;
  }

  .mockup-page-copy--group {
    gap: 3px;
    max-width: 29ch;
    padding-top: 0;
  }

  .mockup-page-bridge {
    margin-top: 0;
    font-size: 0.48rem;
    letter-spacing: 0.2em;
  }

  .mockup-page-media--secondary {
    width: 74%;
    margin-top: 0;
  }

  .mockup-page::after {
    left: 17px;
    right: 17px;
  }

  .mockup-page-media--grid {
    gap: 7px;
  }

  .mockup-portrait-card {
    gap: 4px;
  }

  .mockup-portrait-line {
    height: 3px;
  }

  .mockup-spine {
    top: 14px;
    bottom: 14px;
    width: 14px;
  }
}

@media (max-width: 767px) {
  .site-header {
    background: transparent;
  }

  .header-container {
    min-height: 78px;
  }

  .section-container {
    padding: 0 20px;
  }

  .hero {
    min-height: auto;
    padding: 108px 0 56px;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(10, 18, 30, 0.9) 0%,
      rgba(10, 18, 30, 0.82) 42%,
      rgba(10, 18, 30, 0.62) 72%,
      rgba(10, 18, 30, 0.4) 100%
    );
  }

  .hero-bg img {
    object-position: right center;
  }

  .hero-title {
    max-width: 560px;
    margin-bottom: 16px;
    font-size: clamp(2.5rem, 10vw, 3.6rem);
  }

  .hero-subtitle {
    margin-bottom: 18px;
  }

  .hero-assurance {
    font-size: 13px;
  }

  .hero-actions {
    gap: 12px;
    align-items: flex-start;
  }

  .hero-visual {
    order: -1;
    min-height: clamp(220px, 48vw, 300px);
  }

  .hero-cta-primary {
    width: 100%;
    justify-content: center;
    min-height: 56px;
  }

  .hero-trust {
    margin-bottom: 18px;
  }

  .hero-feature {
    gap: 10px;
  }

  .services,
  .benefits,
  .packages,
  .showcase,
  .process,
  .faq {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .benefits {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section-header {
    margin-bottom: 42px;
  }

  .benefits .section-header {
    margin-bottom: 32px;
  }

  .benefits .section-title {
    margin-bottom: 10px;
  }

  .service-card,
  .benefit-card,
  .package-card,
  .faq-item {
    border-radius: 24px;
  }

  .service-card,
  .benefit-card,
  .package-card {
    padding: 30px 24px 26px;
  }

  .benefit-card {
    padding: 26px 22px 22px 72px;
  }

  .benefit-icon {
    left: 18px;
    top: 20px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .faq-cta {
    padding: 24px 22px;
  }

  .benefits-intro {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 0 12px;
    justify-items: center;
    text-align: center;
  }

  .benefits-intro p {
    margin: 0 auto;
  }

  .benefits-intro::after {
    left: 12px;
    right: 12px;
  }

  .benefits-layout {
    padding: 0;
    gap: 18px;
    border-radius: 0;
  }

  .benefits-system {
    gap: 14px;
  }

  .benefits-stage {
    gap: 14px;
  }

  .benefits-trust {
    max-width: 38ch;
    margin-top: -2px;
    text-align: center;
    font-size: 1rem;
  }

  .benefits-cta {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 12px;
    width: 100%;
    border-top: 0;
    padding-top: 0;
  }

  .benefits-link {
    padding: 0;
    margin-top: -2px;
    text-align: center;
    width: 100%;
  }

  .benefits-link a {
    display: grid;
    gap: 10px;
    justify-items: center;
  }

  .package-card--featured {
    transform: none;
  }

  .showcase-visual {
    min-height: auto;
    justify-content: center;
  }

  .mockup-stage {
    width: min(100%, 356px);
    margin-inline: auto;
  }

  .showcase-content {
    gap: 28px;
  }

  .showcase-feature {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
  }

  .showcase-feature .feature-icon {
    width: 42px;
    height: 42px;
  }

  .mockup-book::after {
    left: 12%;
    right: 12%;
    bottom: -12px;
    height: 14px;
  }

  .mockup-spine {
    top: 10px;
    bottom: 10px;
    width: 9px;
  }

  .mockup-page {
    width: 50%;
    height: 304px;
    flex: 0 0 50%;
    gap: 9px;
    padding: 12px 10px 20px;
  }

  .mockup-page::after {
    left: 10px;
    right: 10px;
    top: 10px;
  }

  .mockup-page--left {
    padding-right: 9px;
    border-radius: 14px 2px 2px 14px;
  }

  .mockup-page--right {
    padding-left: 9px;
    border-radius: 2px 14px 14px 2px;
  }

  .mockup-page-header {
    padding-top: 5px;
    font-size: 0.42rem;
    gap: 6px;
  }

  .mockup-page-media {
    gap: 7px;
  }

  .mockup-page-media--feature,
  .mockup-page-media--grid {
    height: 180px;
  }

  .mockup-page--right .mockup-page-media--feature {
    height: auto;
    padding: 0;
  }

  .mockup-page-title {
    font-size: 0.72rem;
  }

  .mockup-page-text {
    font-size: 0.5rem;
    line-height: 1.38;
  }

  .mockup-page-copy--group {
    gap: 3px;
    max-width: 27ch;
    padding-top: 0;
  }

  .mockup-page-bridge {
    margin-top: 0;
    font-size: 0.42rem;
    letter-spacing: 0.18em;
  }

  .mockup-page-media--secondary {
    width: 78%;
    margin-top: 0;
  }

  .mockup-page-heading {
    font-size: 0.82rem;
  }

  .mockup-page--right .mockup-page-text {
    font-size: 0.48rem;
    line-height: 1.34;
  }

  .mockup-page--right {
    gap: 4px;
  }

  .mockup-page-number {
    bottom: 9px;
    font-size: 0.46rem;
  }

  .mockup-page-media--grid {
    gap: 5px;
  }

  .mockup-portrait-card {
    gap: 4px;
  }

  .mockup-portrait-line {
    height: 2px;
    margin-left: 1px;
  }

  .mockup-page--left .mockup-page-number {
    left: 10px;
  }

  .mockup-page--right .mockup-page-number {
    right: 10px;
  }

  .process-step {
    padding: 82px 22px 24px;
  }

  .step-number {
    left: 22px;
  }

  .faq-question {
    padding: 20px 20px 20px 26px;
  }

  .faq-answer {
    padding: 0 20px 22px 26px;
  }

  .cta-section {
    padding: 100px 0;
  }

  .cta-content {
    padding: 32px 22px;
  }

  .cta-actions {
    gap: 20px;
    margin-top: 34px;
  }

  .btn-whatsapp-lg {
    width: 100%;
  }

  .site-footer {
    padding: 76px 24px 32px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 560px) {
  .faq-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-cta .btn-whatsapp-sm,
  .process-cta .btn-whatsapp-sm {
    width: 100%;
  }

  .process-cta {
    width: 100%;
    justify-items: stretch;
  }

  .cta-actions {
    width: 100%;
  }

  .hero-badge {
    width: 100%;
    justify-content: center;
  }

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

}

@media (hover: none) {
  .btn:hover,
  .whatsapp-float:hover {
    transform: none;
  }

  .service-card:hover {
    transform: none;
  }

  .service-card--featured:hover {
    transform: translateY(-22px);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
