:root {
  --color-primary: #115e59;
  --color-primary-dark: #0c4a45;
  --color-secondary: #f59e0b;
  --color-success: #10b981;
  --color-background: #f8fafb;
  --color-surface: #ffffff;
  --color-soft: #f1f5f4;
  --color-text: #0f172a;
  --color-muted: #475569;
  --color-border: #d6dbe5;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-card: 0 16px 38px rgba(12, 74, 69, 0.08);
  --shadow-hover: 0 18px 34px rgba(12, 74, 69, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  scroll-behavior: smooth;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

.container {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: var(--color-soft);
}

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

.section-head h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  line-height: 1.2;
}

.section-intro {
  margin: 0.95rem 0 0;
  color: var(--color-muted);
  line-height: 1.6;
}

.eyebrow {
  margin: 0;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(248, 250, 251, 0.92);
  border-bottom: 1px solid rgba(214, 219, 229, 0.6);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-left: auto;
  color: var(--color-muted);
  font-weight: 500;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(214, 219, 229, 0.9);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 0.34rem 0.56rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  background: rgba(17, 94, 89, 0.08);
  color: var(--color-primary);
  outline: none;
}

.lang-btn.is-active {
  background: var(--color-primary);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--color-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  padding: 0.8rem 1.3rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
}

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

.btn:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 12px 30px rgba(17, 94, 89, 0.24);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
}

.btn-outline {
  border-color: rgba(17, 94, 89, 0.35);
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.75);
}

.btn-outline:hover {
  background: rgba(17, 94, 89, 0.09);
}

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

.btn-light {
  background: #fff;
  color: var(--color-primary-dark);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 24px rgba(9, 39, 36, 0.25);
}

.hero {
  background: radial-gradient(
      circle at 15% 10%,
      rgba(245, 158, 11, 0.14),
      transparent 38%
    ),
    radial-gradient(circle at 80% 0%, rgba(17, 94, 89, 0.15), transparent 42%),
    var(--color-background);
}

.hero-grid {
  display: grid;
  gap: 2.2rem;
  align-items: center;
  grid-template-columns: 1.15fr 0.85fr;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy h1 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  max-width: 16ch;
}

.hero-subtitle {
  margin: 0;
  max-width: 60ch;
  color: var(--color-muted);
  line-height: 1.6;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.store-badges {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.store-badge {
  display: inline-block;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 6px;
}

.store-badge svg {
  height: 44px;
  width: auto;
}

.store-badge:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.store-badges--cta {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.store-badges-label {
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 500;
}

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

.hero-metrics {
  margin-top: 2.25rem;
  display: grid;
  gap: 0.9rem;
}

.metric {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(214, 219, 229, 0.8);
  background: rgba(255, 255, 255, 0.78);
}

.metric strong {
  font-size: 0.95rem;
}

.metric span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.hero-panel {
  background: linear-gradient(145deg, var(--color-primary-dark), var(--color-primary));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  animation: panel-float 8s ease-in-out infinite;
}

.panel-eyebrow {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.hero-panel h2 {
  margin: 0.65rem 0 0;
  font-size: 1.4rem;
  line-height: 1.25;
}

.hero-panel-copy {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

.hero-benefits {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.hero-benefits li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.8rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-benefits strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}

.hero-benefits li > div {
  display: grid;
  gap: 0.18rem;
}

.hero-benefits li > div > span {
  display: block;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  line-height: 1.35;
}

.benefit-icon {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 0.1rem;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  flex-shrink: 0;
}

.hero-panel-footer {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

.hero-panel-footer > span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.84);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

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

.screenshots {
  background: linear-gradient(
    180deg,
    rgba(17, 94, 89, 0.04),
    rgba(17, 94, 89, 0)
  );
}

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

.shot-card {
  margin: 0;
  background: var(--color-surface);
  border: 1px solid rgba(214, 219, 229, 0.95);
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.shot-card:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 94, 89, 0.25);
  box-shadow: var(--shadow-hover);
}

.shot-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: linear-gradient(
    160deg,
    rgba(17, 94, 89, 0.08),
    rgba(245, 158, 11, 0.08)
  );
}

.shot-card figcaption {
  padding: 0.9rem;
  display: grid;
  gap: 0.35rem;
}

.shot-card strong {
  font-size: 0.96rem;
}

.shot-card span {
  font-size: 0.86rem;
  color: var(--color-muted);
  line-height: 1.45;
}

/* ── Pricing Slider ── */
.pricing-slider {
  position: relative;
}

.pricing-grid {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0 1rem;
}

.pricing-grid::-webkit-scrollbar {
  display: none;
}

.pricing-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid rgba(214, 219, 229, 0.95);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  flex: 0 0 calc((100% - 2 * 1.25rem) / 3);
  scroll-snap-align: start;
}

.pricing-card:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 94, 89, 0.25);
  box-shadow: var(--shadow-hover);
}

.pricing-card.is-featured {
  border-color: rgba(17, 94, 89, 0.45);
  background: linear-gradient(
    180deg,
    rgba(17, 94, 89, 0.08),
    rgba(255, 255, 255, 0.98) 32%
  );
}

.pricing-badge {
  margin: 0 0 0.9rem;
  align-self: flex-start;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  background: var(--color-primary);
}

.pricing-badges {
  margin: 0 0 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pricing-badges .pricing-badge {
  margin: 0;
}

.pricing-badge-trial {
  color: var(--color-primary);
  background: rgba(17, 94, 89, 0.08);
  border: 1px solid rgba(17, 94, 89, 0.28);
}

.pricing-label {
  margin: 0;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-price {
  margin: 0.9rem 0 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pricing-price span {
  font-size: clamp(2.25rem, 2.8vw, 2.9rem);
  line-height: 1;
  font-weight: 800;
  color: var(--color-text);
  white-space: nowrap;
}

.pricing-price small {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.3;
  max-width: 100%;
}

.pricing-card-private .pricing-price {
  display: grid;
  align-items: start;
  gap: 0.3rem;
}

.pricing-desc {
  margin: 1rem 0 0;
  color: var(--color-muted);
  line-height: 1.55;
  max-width: 30ch;
}

.pricing-points {
  margin-top: 1.25rem;
  margin-bottom: 1.15rem;
  gap: 0.62rem;
}

.pricing-points li {
  font-size: 1rem;
  line-height: 1.46;
}

.pricing-cta {
  margin-top: auto;
  width: 100%;
}

.pricing-footnote {
  margin: 1.5rem 0 0;
  text-align: center;
  color: var(--color-muted);
  line-height: 1.5;
  font-size: 0.9rem;
}

/* ── Pricing Arrows ── */
.pricing-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(214, 219, 229, 0.95);
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s, box-shadow 0.2s;
}

.pricing-arrow:hover {
  border-color: var(--color-primary);
  background: rgba(17, 94, 89, 0.06);
  box-shadow: var(--shadow-hover);
}

.pricing-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.pricing-arrow--prev {
  left: -1.35rem;
}

.pricing-arrow--next {
  right: -1.35rem;
}

/* ── Pricing Dots ── */
.pricing-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.pricing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(17, 94, 89, 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.pricing-dot:hover {
  background: rgba(17, 94, 89, 0.35);
}

.pricing-dot.is-active {
  background: var(--color-primary);
  transform: scale(1.25);
}

.pricing-luxury .section-head {
  margin-bottom: 2.55rem;
}

.pricing-luxury .pricing-grid {
  gap: 1.6rem;
  align-items: stretch;
}

.pricing-luxury .pricing-card {
  padding: 2.1rem 1.95rem;
  border-radius: 18px;
  min-height: 37.5rem;
  flex: 0 0 calc((100% - 2 * 1.6rem) / 3);
}

.pricing-luxury .pricing-card.is-featured {
  transform: translateY(-0.45rem);
}

.pricing-luxury .pricing-card:hover {
  transform: translateY(-0.58rem);
}

.pricing-luxury .pricing-card.is-featured:hover {
  transform: translateY(-0.75rem);
}

.pricing-luxury .pricing-badge {
  margin-bottom: 1.1rem;
}

.pricing-luxury .pricing-badges {
  margin-bottom: 1.1rem;
}

.pricing-luxury .pricing-label {
  font-size: 0.88rem;
}

.pricing-luxury .pricing-price {
  margin-top: 1.1rem;
}

.pricing-luxury .pricing-price span {
  font-size: clamp(2.55rem, 3.4vw, 3.2rem);
}

.pricing-luxury .pricing-price small {
  font-size: 0.97rem;
}

.pricing-luxury .pricing-card-private .pricing-price span {
  font-size: clamp(2.2rem, 3vw, 2.85rem);
}

.pricing-luxury .pricing-desc {
  margin-top: 1.15rem;
  max-width: 32ch;
  line-height: 1.62;
}

.pricing-luxury .pricing-points {
  margin-top: 1.45rem;
  margin-bottom: 1.5rem;
  gap: 0.76rem;
}

.pricing-luxury .pricing-points li {
  font-size: 1.06rem;
  line-height: 1.52;
}

.pricing-luxury .pricing-cta {
  padding: 0.95rem 1.3rem;
  font-size: 1.04rem;
}

.pricing-luxury .pricing-footnote {
  margin-top: 2.3rem;
  font-size: 1rem;
}

.luxury-layout .section {
  padding: 6.3rem 0;
}

.luxury-layout .section-head {
  margin-bottom: 2.4rem;
  max-width: 760px;
}

.luxury-layout .section-head h2 {
  margin-top: 0.62rem;
  line-height: 1.16;
}

.luxury-layout .section-intro {
  margin-top: 1.1rem;
  max-width: 62ch;
  line-height: 1.68;
}

.luxury-layout .hero-grid {
  gap: 2.95rem;
}

.luxury-layout .hero-subtitle {
  line-height: 1.7;
}

.luxury-layout .hero-metrics {
  margin-top: 2.55rem;
  gap: 1.08rem;
}

.luxury-layout .metric {
  padding: 1.2rem 1.26rem;
  gap: 0.35rem;
}

.luxury-layout .hero-panel {
  padding: 1.88rem;
  border-radius: 24px;
}

.luxury-layout .hero-panel h2 {
  margin-top: 0.78rem;
}

.luxury-layout .hero-panel-copy {
  margin-top: 1.04rem;
  line-height: 1.62;
}

.luxury-layout .hero-benefits {
  margin-top: 1.3rem;
  gap: 0.85rem;
}

.luxury-layout .hero-benefits li {
  padding: 0.95rem;
  gap: 0.85rem;
}

.luxury-layout .hero-panel-footer {
  margin-top: 1.2rem;
  gap: 0.75rem;
}

.luxury-layout .screenshot-grid,
.luxury-layout .unique-grid,
.luxury-layout .feature-grid,
.luxury-layout .role-grid,
.luxury-layout .timeline {
  gap: 1.25rem;
}

.luxury-layout .shot-card {
  border-radius: 20px;
}

.luxury-layout .shot-card figcaption {
  padding: 1.15rem;
  gap: 0.48rem;
}

.luxury-layout .shot-card strong {
  font-size: 1rem;
}

.luxury-layout .shot-card span {
  font-size: 0.92rem;
  line-height: 1.5;
}

.luxury-layout .unique-card,
.luxury-layout .feature-card,
.luxury-layout .role-card {
  border-radius: 16px;
  padding: 1.45rem;
}

.luxury-layout .timeline-card {
  border-radius: 16px;
  padding: 1.45rem 1.35rem 1.32rem;
}

.luxury-layout .card-head {
  gap: 0.82rem;
}

.luxury-layout .icon-badge {
  width: 2.32rem;
  height: 2.32rem;
  border-radius: 12px;
}

.luxury-layout .unique-card h3,
.luxury-layout .feature-card h3,
.luxury-layout .role-card h3,
.luxury-layout .timeline-card h3 {
  font-size: 1.1rem;
  line-height: 1.28;
}

.luxury-layout .unique-card p,
.luxury-layout .feature-card p,
.luxury-layout .role-card p,
.luxury-layout .timeline-card p {
  margin-top: 0.82rem;
  line-height: 1.62;
}

.luxury-layout .card-points {
  margin-top: 1rem;
  gap: 0.55rem;
}

.luxury-layout .card-points li {
  font-size: 0.97rem;
  line-height: 1.52;
}

.luxury-layout .timeline {
  gap: 1.35rem;
}

.luxury-layout .timeline-step {
  gap: 1rem;
}

.luxury-layout .timeline-node {
  min-width: 3rem;
  height: 3rem;
  box-shadow: 0 0 0 8px rgba(17, 94, 89, 0.12);
}

.luxury-layout .cta-box {
  padding: 2.35rem;
  gap: 2.3rem;
  border-radius: 24px;
}

.luxury-layout .cta h2 {
  margin-top: 0.65rem;
  margin-bottom: 1.15rem;
}

.luxury-layout .cta-form {
  gap: 1rem;
}

.luxury-layout .cta-form label {
  gap: 0.52rem;
}

.luxury-layout .cta-form input {
  padding: 0.82rem 0.95rem;
}

.unique-grid,
.feature-grid,
.role-grid,
.timeline {
  display: grid;
  gap: 1rem;
}

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

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

.unique-card,
.feature-card,
.role-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  border: 1px solid rgba(214, 219, 229, 0.9);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.unique-card:hover,
.feature-card:hover,
.role-card:hover {
  border-color: rgba(17, 94, 89, 0.26);
  box-shadow: var(--shadow-hover);
}

.card-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.icon-badge {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: linear-gradient(
    160deg,
    rgba(17, 94, 89, 0.16),
    rgba(245, 158, 11, 0.2)
  );
  border: 1px solid rgba(17, 94, 89, 0.2);
  flex-shrink: 0;
}

.icon-badge svg,
.benefit-icon svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-points {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.4rem;
  color: var(--color-muted);
}

.card-points li {
  line-height: 1.45;
  font-size: 0.9rem;
}

.card-points li::marker {
  color: var(--color-primary);
}

.unique-card h3,
.feature-card h3,
.role-card h3,
.timeline-card h3 {
  margin: 0;
  font-size: 1.02rem;
}

.unique-card p,
.feature-card p,
.role-card p,
.timeline-card p {
  margin: 0.7rem 0 0;
  color: var(--color-muted);
  line-height: 1.55;
}

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

.timeline {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.15rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(17, 94, 89, 0.5),
    rgba(245, 158, 11, 0.48),
    rgba(17, 94, 89, 0.5)
  );
  z-index: 0;
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.85rem;
  z-index: 1;
}

.timeline-node {
  position: relative;
  margin: 0 auto;
  z-index: 2;
  min-width: 2.8rem;
  height: 2.8rem;
  padding: 0 0.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--color-secondary);
  font-weight: 800;
  letter-spacing: 0.08em;
  border: 2px solid rgba(17, 94, 89, 0.48);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.98),
    rgba(245, 158, 11, 0.17)
  );
  box-shadow: 0 0 0 7px rgba(17, 94, 89, 0.11);
}

.timeline-node::after {
  content: "";
  position: absolute;
  top: calc(100% + 0.18rem);
  left: 50%;
  width: 2px;
  height: 14px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(17, 94, 89, 0.38),
    rgba(17, 94, 89, 0.06)
  );
  border-radius: 999px;
}

.timeline-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.15rem 1.15rem;
  border: 1px solid rgba(214, 219, 229, 0.9);
  min-height: 100%;
  display: grid;
  gap: 0.1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    transform 0.2s ease;
}

.timeline-label {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.timeline-step .card-head {
  align-items: flex-start;
}

.timeline-step:hover .timeline-card {
  border-color: rgba(17, 94, 89, 0.26);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.timeline-step:hover .timeline-node {
  box-shadow: 0 0 0 8px rgba(17, 94, 89, 0.16);
}

.cta-box {
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.95),
    rgba(241, 245, 244, 0.95)
  );
  border: 1px solid rgba(214, 219, 229, 0.9);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
}

.cta h2 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(1.55rem, 2.1vw, 2rem);
}

.cta p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.6;
}

.cta-form {
  display: grid;
  gap: 0.85rem;
}

.cta-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-muted);
}

.cta-form input {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
  color: var(--color-text);
  background: #fff;
}

.cta-form input:focus {
  border-color: var(--color-primary);
  outline: 2px solid rgba(17, 94, 89, 0.14);
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
  min-height: 1.2em;
  color: var(--color-success);
}

.form-note.is-pending {
  color: var(--color-muted);
}

.form-note.is-error {
  color: #b91c1c;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(214, 219, 229, 0.8);
  background: #fff;
}

.site-footer p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

/* ── Segment Cards ── */
.segment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.segment-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid rgba(214, 219, 229, 0.9);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.segment-card:hover {
  border-color: rgba(17, 94, 89, 0.26);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.segment-card--soon {
  opacity: 0.7;
}

.segment-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: linear-gradient(
    160deg,
    rgba(17, 94, 89, 0.14),
    rgba(245, 158, 11, 0.18)
  );
  border: 1px solid rgba(17, 94, 89, 0.18);
}

.segment-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.segment-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.segment-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.segment-soon-badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(17, 94, 89, 0.08);
  border: 1px solid rgba(17, 94, 89, 0.2);
}

/* ── Segment Toggle ── */
.segment-toggle {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(214, 219, 229, 0.9);
  margin-bottom: 1.5rem;
}

.segment-toggle-btn {
  border: 0;
  background: transparent;
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.segment-toggle-btn:hover {
  background: rgba(17, 94, 89, 0.08);
  color: var(--color-primary);
}

.segment-toggle-btn.is-active {
  background: var(--color-primary);
  color: #fff;
}

/* ── CTA Select ── */
.cta-select {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
  color: var(--color-text);
  background: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
}

.cta-select:focus {
  border-color: var(--color-primary);
  outline: 2px solid rgba(17, 94, 89, 0.14);
}

@keyframes panel-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 960px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .luxury-layout .section {
    padding: 5.3rem 0;
  }

  .luxury-layout .section-head {
    margin-bottom: 2rem;
  }

  .luxury-layout .hero-grid {
    gap: 2.3rem;
  }

  .luxury-layout .hero-panel {
    padding: 1.62rem;
  }

  .luxury-layout .shot-card figcaption {
    padding: 1rem;
  }

  .luxury-layout .unique-card,
  .luxury-layout .feature-card,
  .luxury-layout .role-card,
  .luxury-layout .timeline-card {
    padding: 1.25rem;
  }

  .luxury-layout .cta-box {
    padding: 1.85rem;
    gap: 1.85rem;
  }

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

  .pricing-grid {
    gap: 1rem;
  }

  .pricing-card {
    flex: 0 0 100%;
    padding: 1.45rem;
  }

  .pricing-arrow {
    width: 2.2rem;
    height: 2.2rem;
  }

  .pricing-arrow--prev {
    left: 0.25rem;
  }

  .pricing-arrow--next {
    right: 0.25rem;
  }

  .pricing-luxury .section-head {
    margin-bottom: 2.1rem;
  }

  .pricing-luxury .pricing-card {
    min-height: auto;
    padding: 1.65rem 1.5rem;
    flex: 0 0 100%;
  }

  .pricing-luxury .pricing-card.is-featured {
    transform: none;
  }

  .unique-grid,
  .feature-grid,
  .role-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .timeline-step {
    gap: 0.65rem;
  }

  .timeline-node {
    margin: 0;
    min-width: 2.2rem;
    height: 2.2rem;
    font-size: 0.68rem;
    box-shadow: 0 0 0 5px rgba(17, 94, 89, 0.09);
  }

  .timeline-node::after {
    display: none;
  }
}

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

  .menu-toggle {
    margin-left: auto;
    order: 2;
  }

  .header-actions {
    order: 3;
    gap: 0.45rem;
  }

  .lang-btn {
    font-size: 0.72rem;
    padding: 0.32rem 0.5rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    margin-left: 0;
    order: 4;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 78px;
    border-radius: 14px;
    border: 1px solid rgba(214, 219, 229, 0.95);
    background: #fff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem;
    gap: 0.7rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .section {
    padding: 4.5rem 0;
  }

  .luxury-layout .section {
    padding: 4.7rem 0;
  }

  .luxury-layout .section-head {
    margin-bottom: 1.6rem;
  }

  .luxury-layout .hero-grid {
    gap: 2rem;
  }

  .luxury-layout .hero-panel {
    padding: 1.45rem;
    border-radius: 20px;
  }

  .unique-grid,
  .feature-grid,
  .role-grid,
  .timeline,
  .screenshot-grid,
  .segment-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    flex: 0 0 100%;
  }

  .pricing-arrow {
    width: 2rem;
    height: 2rem;
  }

  .pricing-arrow--prev {
    left: 0.25rem;
  }

  .pricing-arrow--next {
    right: 0.25rem;
  }

  .pricing-luxury .section-head {
    margin-bottom: 1.6rem;
  }

  .pricing-luxury .pricing-card {
    padding: 1.35rem 1.15rem;
  }

  .pricing-luxury .pricing-points li {
    font-size: 0.96rem;
  }

  .luxury-layout .unique-card,
  .luxury-layout .feature-card,
  .luxury-layout .role-card,
  .luxury-layout .timeline-card {
    padding: 1.15rem;
  }

  .luxury-layout .shot-card figcaption {
    padding: 0.95rem;
  }

  .luxury-layout .card-points li {
    font-size: 0.93rem;
  }

  .luxury-layout .cta-box {
    padding: 1.35rem;
    gap: 1.25rem;
  }

  .timeline {
    gap: 1rem;
    position: relative;
    padding-left: 0.25rem;
  }

  .timeline::before {
    display: block;
    left: 1.45rem;
    right: auto;
    top: 1.2rem;
    bottom: 1rem;
    width: 2px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(17, 94, 89, 0.5),
      rgba(245, 158, 11, 0.45),
      rgba(17, 94, 89, 0.5)
    );
  }

  .timeline-step {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    grid-template-rows: 1fr;
    align-items: start;
    gap: 0.8rem;
    padding: 0;
  }

  .timeline-node {
    margin: 0;
    width: 2.4rem;
    height: 2.4rem;
    min-width: 2.4rem;
    font-size: 0.74rem;
    box-shadow: 0 0 0 4px rgba(17, 94, 89, 0.09);
  }

  .container {
    width: min(1120px, calc(100% - 1.5rem));
  }
}

/* ═══ Hero Phone Showcase ═══ */
.hero-grid--centered {
  grid-template-columns: 1.1fr 0.9fr;
}

.hero-phone-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  min-height: 380px;
}

.hero-phone-showcase--single {
  justify-content: center;
}

/* ── Subpage phone device mockup ── */
.phone-device {
  position: relative;
  z-index: 2;
  width: 260px;
  border-radius: 32px;
  overflow: hidden;
  background: #0c0c0c;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 24px 60px rgba(12, 74, 69, 0.2),
    0 8px 20px rgba(0,0,0,0.12);
}

.phone-device__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #0c0c0c;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}

.phone-device img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

/* decorative gradient blob behind phone */
.phone-backdrop {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17,94,89,0.1) 0%, rgba(245,158,11,0.06) 55%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

/* floating stat badges */
.phone-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 12px;
  background: var(--color-surface);
  border: 1px solid rgba(214, 219, 229, 0.8);
  box-shadow: 0 6px 20px rgba(12, 74, 69, 0.1);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-dark);
  white-space: nowrap;
  animation: floatBadge 3s ease-in-out infinite;
}

.phone-float svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.phone-float--top {
  top: 12%;
  right: -30px;
}

.phone-float--bottom {
  bottom: 14%;
  left: -30px;
  animation-delay: 1.5s;
}

.phone-float--left {
  top: 40%;
  left: -40px;
  animation-delay: 0.8s;
}

.phone-float--right {
  bottom: 38%;
  right: -35px;
  animation-delay: 2.2s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.phone-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(12, 74, 69, 0.15);
  border: 2px solid rgba(214, 219, 229, 0.6);
  background: var(--color-surface);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.phone-frame--center {
  position: relative;
  z-index: 2;
  width: 220px;
}

.phone-frame--left {
  position: relative;
  z-index: 1;
  width: 180px;
  transform: translateX(22px) scale(0.88);
  opacity: 0.85;
}

.phone-frame--right {
  position: relative;
  z-index: 1;
  width: 180px;
  transform: translateX(-22px) scale(0.88);
  opacity: 0.85;
}

.phone-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(12, 74, 69, 0.2);
}

.phone-frame--left:hover {
  transform: translateX(22px) scale(0.88) translateY(-4px);
}

.phone-frame--right:hover {
  transform: translateX(-22px) scale(0.88) translateY(-4px);
}

/* ═══ Hero Stats ═══ */
.hero-stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(214, 219, 229, 0.8);
  background: rgba(255, 255, 255, 0.78);
}

.stat-card div {
  display: grid;
  gap: 0.2rem;
}

.stat-card strong {
  font-size: 0.95rem;
}

.stat-card span {
  color: var(--color-muted);
  font-size: 0.88rem;
}

.stat-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  background: linear-gradient(160deg, rgba(17, 94, 89, 0.14), rgba(245, 158, 11, 0.18));
  border: 1px solid rgba(17, 94, 89, 0.18);
}

.stat-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══ Screen Tabs ═══ */
.screen-tabs {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(214, 219, 229, 0.9);
  margin-bottom: 1.5rem;
}

.screen-tab {
  border: 0;
  background: transparent;
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.screen-tab:hover {
  background: rgba(17, 94, 89, 0.08);
  color: var(--color-primary);
}

.screen-tab.is-active {
  background: var(--color-primary);
  color: #fff;
}

/* ═══ Screen Slider ═══ */
.screen-slider {
  position: relative;
}

.screen-gallery {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0 1rem;
}

.screen-gallery::-webkit-scrollbar {
  display: none;
}

.screen-card {
  margin: 0;
  background: var(--color-surface);
  border: 1px solid rgba(214, 219, 229, 0.95);
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  flex: 0 0 calc((100% - 4 * 1.25rem) / 5);
  scroll-snap-align: start;
}

.screen-card:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 94, 89, 0.25);
  box-shadow: var(--shadow-hover);
}

.screen-card-img {
  background: linear-gradient(160deg, rgba(17, 94, 89, 0.06), rgba(245, 158, 11, 0.06));
}

.screen-card-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.screen-card figcaption {
  padding: 0.9rem;
  display: grid;
  gap: 0.35rem;
}

.screen-card strong {
  font-size: 0.94rem;
}

.screen-card span {
  font-size: 0.84rem;
  color: var(--color-muted);
  line-height: 1.45;
}

/* ── Screen Arrows ── */
.screen-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(214, 219, 229, 0.95);
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s, box-shadow 0.2s;
}

.screen-arrow:hover {
  border-color: var(--color-primary);
  background: rgba(17, 94, 89, 0.06);
  box-shadow: var(--shadow-hover);
}

.screen-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.screen-arrow--prev {
  left: -1.35rem;
}

.screen-arrow--next {
  right: -1.35rem;
}

/* ── Screen Dots ── */
.screen-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.screen-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(17, 94, 89, 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.screen-dot:hover {
  background: rgba(17, 94, 89, 0.35);
}

.screen-dot.is-active {
  background: var(--color-primary);
  transform: scale(1.25);
}

/* ═══ Use Case Grid ═══ */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.usecase-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid rgba(214, 219, 229, 0.9);
  border-top: 3px solid transparent;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.usecase-card--edu {
  border-top-color: var(--color-primary);
}

.usecase-card--corp {
  border-top-color: var(--color-secondary);
}

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

.usecase-card__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.usecase-card__head h3 {
  margin: 0;
  font-size: 1.2rem;
}

.usecase-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: linear-gradient(160deg, rgba(17, 94, 89, 0.12), rgba(245, 158, 11, 0.14));
  border: 1px solid rgba(17, 94, 89, 0.15);
  flex-shrink: 0;
}

.usecase-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.usecase-card > p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.usecase-highlights {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.3rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.usecase-highlights li::marker {
  color: var(--color-primary);
}

.usecase-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.92rem;
}

/* ═══ Problem Grid ═══ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.problem-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid rgba(214, 219, 229, 0.9);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.problem-card:hover {
  border-color: rgba(185, 28, 28, 0.2);
  box-shadow: var(--shadow-hover);
}

.problem-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: rgba(185, 28, 28, 0.08);
  color: #b91c1c;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.problem-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
}

.problem-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

/* ═══ Footer Grid ═══ */
.footer-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.footer-name {
  font-weight: 700;
  font-size: 1rem;
}

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

.footer-links a {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-copy {
  margin-left: auto;
}

/* ═══ Privacy Policy ═══ */
.policy-hero {
  padding: 4.75rem 0 2.6rem;
  border-bottom: 1px solid rgba(214, 219, 229, 0.9);
  background:
    radial-gradient(
      circle at 84% 14%,
      rgba(17, 94, 89, 0.1),
      rgba(17, 94, 89, 0) 42%
    ),
    radial-gradient(
      circle at 9% 8%,
      rgba(245, 158, 11, 0.14),
      rgba(245, 158, 11, 0) 34%
    ),
    linear-gradient(
      180deg,
      rgba(248, 250, 251, 0.96),
      rgba(241, 245, 244, 0.86)
    );
}

.policy-hero h1 {
  margin: 0.82rem 0 0;
  font-size: clamp(2rem, 4.2vw, 3.12rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.policy-meta {
  margin-top: 1.35rem;
}

.policy-updated {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.96rem;
  border: 1px solid rgba(17, 94, 89, 0.2);
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-muted);
}

.policy-updated strong {
  color: var(--color-text);
}

.policy-body {
  padding: 2.4rem 0 5rem;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  align-items: start;
  gap: 1.25rem;
}

.policy-toc {
  position: sticky;
  top: 96px;
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(214, 219, 229, 0.95);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  padding: 1.1rem 1.05rem 1.2rem;
}

.policy-toc h3 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.policy-toc ol {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.28rem;
  color: var(--color-muted);
}

.policy-toc a {
  color: inherit;
  line-height: 1.34;
  transition: color 0.2s ease;
}

.policy-toc a:hover,
.policy-toc a:focus-visible {
  color: var(--color-primary);
}

.policy-content {
  display: grid;
  gap: 1.05rem;
}

.policy-section {
  border-radius: 20px;
  border: 1px solid rgba(214, 219, 229, 0.95);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  padding: 1.35rem 1.45rem;
  scroll-margin-top: 108px;
}

.policy-section h2 {
  margin: 0 0 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.62rem;
  font-size: clamp(1.4rem, 2.3vw, 1.9rem);
  line-height: 1.16;
}

.policy-section p {
  margin: 0 0 0.84rem;
  color: var(--color-text);
  line-height: 1.63;
}

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

.policy-section ul,
.policy-section ol {
  margin: 0.5rem 0 0.95rem;
  padding-left: 1.28rem;
  display: grid;
  gap: 0.46rem;
}

.policy-section li {
  color: var(--color-text);
  line-height: 1.56;
}

.policy-section li::marker {
  color: var(--color-primary);
}

.policy-section a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: rgba(17, 94, 89, 0.42);
  text-underline-offset: 2px;
}

.policy-section a:hover,
.policy-section a:focus-visible {
  text-decoration-color: currentColor;
}

.policy-section code {
  background: rgba(15, 23, 42, 0.08);
  border-radius: 6px;
  padding: 0.16rem 0.42rem;
  font-size: 0.9em;
}

.sec-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    160deg,
    rgba(17, 94, 89, 0.18),
    rgba(245, 158, 11, 0.23)
  );
  color: var(--color-primary);
  border: 1px solid rgba(17, 94, 89, 0.28);
  font-size: 0.86rem;
  font-weight: 800;
}

.policy-highlight {
  margin-top: 0.95rem;
  border-radius: 13px;
  border: 1px solid rgba(17, 94, 89, 0.24);
  background: linear-gradient(
    160deg,
    rgba(17, 94, 89, 0.08),
    rgba(17, 94, 89, 0.03)
  );
  padding: 0.82rem 0.92rem;
}

.policy-highlight p {
  margin: 0;
}

.policy-contact-card {
  margin-top: 0.72rem;
  border-radius: 13px;
  border: 1px solid rgba(214, 219, 229, 0.95);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.96),
    rgba(241, 245, 244, 0.9)
  );
  padding: 0.95rem 1rem;
  display: grid;
  gap: 0.5rem;
}

.policy-contact-card p {
  margin: 0;
}

/* ═══ Responsive — New Components ═══ */
@media (max-width: 960px) {
  .policy-hero {
    padding: 4.2rem 0 2.3rem;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .policy-toc {
    position: static;
    top: auto;
  }

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

  .hero-phone-showcase {
    min-height: auto;
    justify-content: center;
    overflow-x: clip;
  }

  .phone-device {
    width: 220px;
  }

  .phone-backdrop {
    width: 280px;
    height: 280px;
  }

  .phone-float--top {
    right: 0;
    top: 8%;
  }

  .phone-float--bottom {
    left: 0;
    bottom: 10%;
  }

  .phone-float--left {
    left: 0;
    top: 38%;
  }

  .phone-float--right {
    right: 0;
    bottom: 36%;
  }

  .phone-frame--center {
    width: 200px;
  }

  .phone-frame--left,
  .phone-frame--right {
    width: 160px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .screen-card {
    flex: 0 0 calc((100% - 2 * 1.25rem) / 3);
  }

  .screen-arrow--prev {
    left: 0.25rem;
  }

  .screen-arrow--next {
    right: 0.25rem;
  }

  .usecase-grid {
    grid-template-columns: 1fr;
    max-width: 32rem;
    margin: 0 auto;
  }

  .usecase-highlights {
    justify-content: center;
    text-align: left;
    max-width: 30ch;
    margin: 0 auto;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-copy {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .policy-hero {
    padding: 3.65rem 0 2rem;
  }

  .policy-updated {
    font-size: 0.9rem;
    padding: 0.45rem 0.7rem;
  }

  .policy-body {
    padding: 1.75rem 0 3.8rem;
  }

  .policy-section {
    border-radius: 16px;
    padding: 1.05rem 1.04rem;
  }

  .policy-section h2 {
    gap: 0.48rem;
    font-size: 1.34rem;
  }

  .sec-num {
    width: 1.72rem;
    height: 1.72rem;
    font-size: 0.78rem;
  }

  .hero-phone-showcase {
    gap: 0;
    overflow-x: clip;
  }

  .phone-device {
    width: 190px;
    padding: 6px;
    border-radius: 26px;
  }

  .phone-device img {
    border-radius: 20px;
  }

  .phone-backdrop {
    width: 240px;
    height: 240px;
  }

  .phone-float {
    font-size: 0.72rem;
    padding: 0.4rem 0.7rem;
    border-radius: 10px;
  }

  .phone-float--top {
    right: 0;
  }

  .phone-float--bottom {
    left: 0;
  }

  .phone-float--left,
  .phone-float--right {
    display: none;
  }

  .phone-frame--center {
    width: 180px;
  }

  .phone-frame--left,
  .phone-frame--right {
    width: 130px;
  }

  .phone-frame--left {
    transform: translateX(16px) scale(0.85);
  }

  .phone-frame--right {
    transform: translateX(-16px) scale(0.85);
  }

  .screen-card {
    flex: 0 0 85%;
  }

  .screen-arrow {
    width: 2rem;
    height: 2rem;
  }

  .screen-arrow--prev {
    left: 0.25rem;
  }

  .screen-arrow--next {
    right: 0.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-panel {
    animation: none;
  }

  .btn,
  .unique-card,
  .feature-card,
  .role-card,
  .timeline-card {
    transition: none;
  }
}
