/* =========================================================
   汐光旅冊｜募資介紹網站 v2
   圖片路徑：assets/images/*.png
   設計方向：藍白清透、微奇幻、玻璃擬態、海浪與星光粒子
========================================================= */

:root {
  --navy: #172e6d;
  --blue-deep: #1f5fb7;
  --blue: #3f86f5;
  --sky: #73c9ff;
  --sky-soft: #e9f8ff;
  --ice: #f7fcff;
  --white: #ffffff;
  --gold: #f0bf63;
  --gold-soft: #fff3d9;
  --violet: #8d89ff;
  --ink: #172851;
  --muted: #667aa5;
  --line: rgba(66, 133, 220, 0.18);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.88);
  --shadow: 0 30px 90px rgba(39, 101, 178, 0.20);
  --shadow-soft: 0 16px 46px rgba(39, 101, 178, 0.13);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Noto Serif TC", "Noto Sans TC", "Microsoft JhengHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at 12% 2%, rgba(255, 243, 217, 0.90), transparent 24%),
    radial-gradient(circle at 86% 6%, rgba(141, 137, 255, 0.18), transparent 30%),
    radial-gradient(circle at 50% 0%, rgba(115, 201, 255, 0.28), transparent 36%),
    linear-gradient(180deg, #f9fdff 0%, #eef8ff 46%, #f8fcff 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -3;
  pointer-events: none;
  opacity: 0.75;
}

body::before {
  width: 980px;
  height: 980px;
  top: -520px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,0.92), transparent 33%),
    conic-gradient(from 210deg, rgba(63,134,245,0.07), rgba(240,191,99,0.08), rgba(141,137,255,0.06), rgba(63,134,245,0.07));
  filter: blur(1px);
}

body::after {
  width: 100%;
  height: 460px;
  left: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 90%, rgba(115,201,255,0.18), transparent 38%),
    radial-gradient(ellipse at 75% 100%, rgba(31,95,183,0.10), transparent 40%);
}

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

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

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

#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(247, 252, 255, 0.76);
  backdrop-filter: blur(22px);
  box-shadow: 0 10px 34px rgba(31, 95, 183, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-emblem {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--blue-deep);
  font-weight: 900;
  font-size: 24px;
  background:
    radial-gradient(circle at 72% 20%, var(--gold-soft), transparent 35%),
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(220,244,255,0.86));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.brand-text strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.brand-text small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #36548a;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  opacity: 0.86;
  transition: color .25s ease, opacity .25s ease, transform .25s ease;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transition: left .25s ease, right .25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue-deep);
  opacity: 1;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  left: 0;
  right: 0;
}

.nav-cta {
  padding: 11px 17px;
  color: white !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 14px 30px rgba(31, 95, 183, 0.25);
  opacity: 1 !important;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 15px;
  background: rgba(255,255,255,0.76);
  box-shadow: var(--shadow-soft);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--blue-deep);
}

/* Common */
.content-section,
.hero,
.final-cta {
  position: relative;
  padding: 92px 0;
}

.hero {
  padding-top: 86px;
  overflow: hidden;
}

.section-orbit::before,
.content-section::before,
.final-cta::before {
  content: "✦";
  position: absolute;
  top: 40px;
  right: 8vw;
  color: rgba(240, 191, 99, 0.60);
  font-size: 24px;
  pointer-events: none;
}

.pale-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.36), rgba(234,247,255,0.50)),
    radial-gradient(circle at 12% 16%, rgba(115,201,255,0.16), transparent 28%);
}

.blue-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(141,137,255,0.14), transparent 28%),
    linear-gradient(180deg, rgba(231,247,255,0.52), rgba(248,252,255,0.55));
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 42px;
}

.hero-copy,
.section-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: 0 12px 34px rgba(31,95,183,0.09);
}

.eyebrow span {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.055em;
  text-shadow: 0 10px 30px rgba(31,95,183,0.10);
}

h1 span,
h2 span {
  background: linear-gradient(110deg, var(--blue-deep), var(--blue), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead,
.section-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 28px;
}

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

.center-actions {
  justify-content: center;
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

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

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 18px 34px rgba(31, 95, 183, 0.26);
}

.button.ghost {
  color: var(--blue-deep);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.86);
  box-shadow: var(--shadow-soft);
}

.hero-tags,
.profile-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.profile-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #375c95;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.78);
}

/* Image frame */
.visual-frame {
  position: relative;
  margin: 0;
  border-radius: var(--radius-xl);
  padding: 10px;
  cursor: zoom-in;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(219,244,255,0.64)),
    radial-gradient(circle at 8% 10%, rgba(255,243,217,0.9), transparent 18%);
  border: 1px solid rgba(255,255,255,0.86);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border-radius: calc(var(--radius-xl) - 9px);
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: inset 0 0 42px rgba(255,255,255,0.20);
}

.visual-frame::after {
  content: "✦";
  position: absolute;
  right: 28px;
  top: 24px;
  z-index: 3;
  color: rgba(240,191,99,0.88);
  font-size: 24px;
  text-shadow: 0 0 18px rgba(255,255,255,0.9);
  pointer-events: none;
}

.visual-frame img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 12px);
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}

.visual-frame:hover img {
  transform: scale(1.018);
  filter: saturate(1.04) brightness(1.015);
}

.hero-frame {
  transform: rotate(0.4deg);
}

.wide-frame {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.tall-frame,
.portrait-frame {
  align-self: center;
}

.portrait-frame img {
  max-height: 780px;
  object-fit: contain;
  background: rgba(255,255,255,0.48);
}

/* Layouts */
.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.section-copy h2,
.final-card h2,
.video-copy h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.24;
  letter-spacing: -0.045em;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 44px;
}

.split-layout.reverse {
  grid-template-columns: 1.18fr 0.82fr;
}

.soft-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.soft-list li {
  position: relative;
  padding: 14px 18px 14px 46px;
  border-radius: 18px;
  color: #3f5f92;
  font-weight: 800;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: var(--shadow-soft);
}

.soft-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 14px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  font-size: 13px;
}

.card-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.three-cards {
  grid-template-columns: repeat(3, 1fr);
}

.five-cards {
  grid-template-columns: repeat(5, 1fr);
}

.glass-card,
.feature-card,
.plan-card,
.quote-card,
.video-card,
.final-card,
details {
  border: 1px solid rgba(255,255,255,0.82);
  background: var(--glass);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.glass-card {
  min-height: 210px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  font-size: 25px;
  background: linear-gradient(145deg, #ffffff, #e4f7ff);
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: 0 14px 30px rgba(31,95,183,0.11);
}

.glass-card h3,
.feature-card h3,
.plan-card h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 21px;
}

.glass-card p,
.feature-card p,
.plan-card li,
details p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.step-row {
  margin: 34px auto 0;
  max-width: 960px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: var(--shadow-soft);
}

.step-row span {
  color: var(--blue-deep);
  font-weight: 900;
  white-space: nowrap;
}

.step-row i {
  width: 40px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sky), var(--gold));
}

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

.feature-card {
  position: relative;
  min-height: 210px;
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 128px;
  height: 128px;
  right: -58px;
  top: -58px;
  border-radius: 50%;
  background: rgba(115, 201, 255, 0.15);
}

.feature-card b {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 14px 30px rgba(31,95,183,0.16);
}

.quote-card {
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius-lg);
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.7;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.84), rgba(232,247,255,0.74)),
    radial-gradient(circle at 90% 10%, rgba(240,191,99,0.20), transparent 28%);
}

/* Plans */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 85% 8%, rgba(240,191,99,0.14), transparent 25%);
}

.plan-card.recommended {
  transform: translateY(-10px);
  border-color: rgba(63,134,245,0.45);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.90), rgba(220,244,255,0.78));
}

.plan-card small {
  position: relative;
  align-self: flex-start;
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--blue-deep);
  font-weight: 900;
  background: rgba(230, 246, 255, 0.76);
  border: 1px solid rgba(255,255,255,0.78);
}

.plan-card h3 {
  position: relative;
  margin-top: 18px;
}

.plan-card strong {
  position: relative;
  display: block;
  margin-bottom: 16px;
  color: var(--blue-deep);
  font-size: 32px;
  letter-spacing: -0.04em;
}

.plan-card ul {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  padding-left: 22px;
  font-size: 14px;
}

.plan-card li::before {
  content: "✦";
  position: absolute;
  margin-left: -22px;
  color: var(--gold);
}

/* Video / FAQ / CTA */
.video-card {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 82% 20%, rgba(240,191,99,0.18), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.86), rgba(223,245,255,0.74));
}

.video-copy p:last-child {
  color: var(--muted);
  line-height: 1.85;
}

.video-play {
  min-height: 210px;
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.38), transparent 22%),
    linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 24px 52px rgba(31,95,183,0.28);
  transition: transform .25s ease;
}

.video-play:hover {
  transform: translateY(-5px);
}

.video-play span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-deep);
  font-size: 32px;
  background: rgba(255,255,255,0.86);
}

.video-play strong {
  font-size: 20px;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

details {
  border-radius: 22px;
  overflow: hidden;
}

summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  color: var(--navy);
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  color: var(--blue-deep);
  background: rgba(230, 246, 255, 0.90);
}

details[open] summary::after {
  content: "−";
}

details p {
  padding: 0 24px 22px;
}

.final-card {
  position: relative;
  text-align: center;
  padding: 58px 32px;
  border-radius: 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(240,191,99,0.20), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(141,137,255,0.16), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.90), rgba(226,247,255,0.76));
}

.final-card h2 {
  font-size: clamp(32px, 5vw, 58px);
}

.final-card p:not(.eyebrow) {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  line-height: 1.9;
  font-size: 17px;
}

.site-footer {
  padding: 40px 0 52px;
  color: var(--muted);
  background: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.78);
}

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

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

.footer-inner p {
  margin: 4px 0 0;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(10, 27, 62, 0.78);
  backdrop-filter: blur(14px);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1400px, 96vw);
  max-height: 88vh;
  border-radius: 26px;
  background: white;
  box-shadow: 0 30px 90px rgba(0,0,0,0.36);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--navy);
  background: rgba(255,255,255,0.88);
  font-size: 30px;
  line-height: 1;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--blue-deep);
  font-weight: 900;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.86);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}

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

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s ease, transform .72s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .visual-frame img, .button, .video-play { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 1180px) {
  .five-cards,
  .feature-grid,
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plan-card.recommended {
    transform: none;
  }
}

@media (max-width: 920px) {
  .menu-button {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(255,255,255,0.9);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 10px 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    text-align: center;
  }

  .hero-grid,
  .split-layout,
  .split-layout.reverse,
  .video-card {
    grid-template-columns: 1fr;
  }

  .hero-frame {
    transform: none;
  }

  .content-section,
  .hero,
  .final-cta {
    padding: 72px 0;
  }

  .video-play {
    min-height: 170px;
  }
}

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

  .header-inner {
    min-height: 70px;
  }

  .brand-emblem {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text small {
    font-size: 11px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 56px);
  }

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

  .button {
    width: 100%;
  }

  .three-cards,
  .five-cards,
  .feature-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .visual-frame {
    border-radius: 24px;
    padding: 6px;
  }

  .visual-frame img {
    border-radius: 18px;
  }

  .visual-frame::before {
    inset: 6px;
    border-radius: 18px;
  }

  .step-row {
    border-radius: 24px;
    align-items: stretch;
  }

  .step-row i {
    display: none;
  }

  .step-row span {
    width: 100%;
    padding: 9px 12px;
    text-align: center;
    border-radius: 999px;
    background: rgba(255,255,255,0.65);
  }

  .glass-card,
  .feature-card,
  .plan-card,
  .video-card,
  .final-card {
    padding: 22px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}
