:root {
  --bg: #f2f3f5;
  --white: #ffffff;
  --text: #121212;
  --muted: #666b74;
  --line: #e4e6ea;

  --reuse-blue: #187abf;
  --reuse-blue-dark: #0f355e;
  --reuse-green: #46ae51;
  --reuse-green-soft: #dff6e2;
  --reuse-blue-soft: #e7f4ff;

  --lime-ish: #d8ff36;
  --lime-soft: #efff9b;
  --soft-purple: #f0e8ff;
  --soft-gray: #f8f8f8;

  --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.08);

  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --radius-pill: 999px;

  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

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

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

button {
  font: inherit;
}

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

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 243, 245, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228, 230, 234, 0.8);
}

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

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

.brand-logo {
  height: 42px;
  object-fit: contain;
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--reuse-blue-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #4b5561;
}

.main-nav a:hover {
  color: var(--reuse-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: 0.2s ease;
  border: none;
}

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

.btn-primary {
  background: var(--reuse-blue);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(24, 122, 191, 0.22);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-mini {
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: var(--reuse-blue);
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  display: inline-flex;
  max-width: fit-content;
}

/* HERO */
.hero-section {
  padding: 34px 0 48px;
  background-image: url("../images/hero-bg-reuse.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero-wrap {
  display: grid;
  gap: 28px;
}

.hero-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pill-label,
.section-mini-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: var(--reuse-green);
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-heading h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.hero-heading h1 span {
  display: block;
}

.hero-heading p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.06rem;
  color: var(--muted);
}

.hero-buttons {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.launch-notice {
  max-width: 720px;
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(24, 122, 191, 0.22);
  border-left: 4px solid var(--reuse-blue);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.launch-notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--reuse-blue-dark);
  font-size: 0.95rem;
}

.launch-notice span {
  display: block;
  color: #4b5561;
  font-size: 0.94rem;
}

.launch-notice-final {
  margin-top: 18px;
}

.hero-point-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  text-align: left;
}

.hero-point-card {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(228, 230, 234, 0.86);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.hero-point-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.96rem;
  letter-spacing: -0.02em;
  color: var(--reuse-blue-dark);
}

.hero-point-card span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.hero-showcase {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95),
    rgba(242, 243, 245, 0) 62%
  );
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(340px, 86vw);
  background: #09111c;
  border: 10px solid #09111c;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.phone-notch {
  width: 46%;
  height: 28px;
  border-radius: 0 0 20px 20px;
  background: #09111c;
  margin: 0 auto;
}

.phone-screen {
  width: 100%;
  display: block;
}

.floating-card {
  position: absolute;
  z-index: 3;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.floating-card-left {
  left: 0;
  top: 160px;
  width: 260px;
  padding: 16px;
  background: #0d1420;
  color: var(--white);
}

.floating-card-right {
  right: 0;
  top: 120px;
  width: 250px;
  padding: 18px;
}

.floating-card-right-lower {
  right: 28px;
  top: 300px;
  width: 190px;
  padding: 14px;
  display: grid;
  gap: 12px;
  background: transparent;
  box-shadow: none;
}

.mini-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cfd7e2;
  font-size: 0.84rem;
  margin-bottom: 14px;
}

.mini-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-ish);
}

.line-chart {
  height: 120px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(216, 255, 54, 0.05)
  );
  position: relative;
  overflow: hidden;
}

.line-wave {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 28px;
  height: 44px;
  border-bottom: 4px solid var(--lime-ish);
  border-radius: 50% 40% 60% 30% / 60% 60% 30% 40%;
  transform: skewX(-10deg);
}

.price-eyebrow {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.card-price strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 16px;
}

.icon-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.icon-stat {
  background: #0e1420;
  color: white;
  border-radius: 16px;
  min-height: 76px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px;
  gap: 6px;
  font-weight: 700;
  font-size: 1rem;
}

.icon-stat span {
  display: block;
  font-size: 0.72rem;
  color: #d4dce7;
}

.stack-item {
  border-radius: 18px;
  background: var(--white);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}

.stack-item.dark {
  background: #0f1420;
  color: white;
}

.stack-item strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.stack-item span {
  font-size: 0.8rem;
  color: inherit;
  opacity: 0.82;
}

/* GENERIC */
.section-heading {
  margin-bottom: 24px;
}

.section-heading.centered {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 26px;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

/* PANELS */
.panel-section,
.split-section,
.banner-section,
.testimonial-section,
.article-section,
.faq-section,
.final-cta-section {
  padding: 28px 0 42px;
}

.soft-card {
  background: var(--white);
  border: 1px solid rgba(228, 230, 234, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* MOSAIC */
.feature-mosaic {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 16px;
}

.feature-card {
  padding: 22px;
  min-height: 190px;
}

.feature-card.large {
  grid-row: span 2;
  min-height: 396px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 1.2rem;
  font-weight: 800;
}

.feature-icon.purple {
  background: var(--soft-purple);
}

.feature-icon.green {
  background: var(--reuse-green-soft);
}

.feature-icon.blue {
  background: var(--reuse-blue-soft);
}

.feature-icon.soft {
  background: #f1f3f6;
}

.chart-card {
  padding: 16px;
  min-height: 190px;
  display: flex;
  align-items: stretch;
}

.chart-surface {
  width: 100%;
  border-radius: 20px;
  background: #101623;
  position: relative;
  overflow: hidden;
}

.chart-bars {
  position: absolute;
  inset: 20px;
  background: linear-gradient(
    90deg,
    transparent 0 18%,
    rgba(255, 255, 255, 0.06) 18% 19%,
    transparent 19% 40%,
    rgba(255, 255, 255, 0.06) 40% 41%,
    transparent 41% 62%,
    rgba(255, 255, 255, 0.06) 62% 63%,
    transparent 63% 100%
  );
}

.chart-line {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 34px;
  height: 54px;
  border-bottom: 5px solid var(--lime-ish);
  border-radius: 40% 50% 30% 60% / 60% 40% 60% 30%;
}

/* SPLIT */
.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: center;
}

.split-copy {
  padding: 16px 8px;
}

.split-copy h2 {
  margin: 12px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.split-copy p {
  color: var(--muted);
  margin: 0 0 24px;
}

.bullet-stack {
  display: grid;
  gap: 14px;
}

.bullet-item {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  align-items: start;
}

.bullet-dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--reuse-green);
}

.bullet-item strong {
  display: block;
  margin-bottom: 4px;
}

.bullet-item p {
  margin: 0;
  color: var(--muted);
}

.split-visual {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  align-items: stretch;
}

.info-stack {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.info-stack-item {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.info-stack-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-stack-item h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.info-stack-item p {
  margin: 0;
  color: var(--muted);
}

.phone-side-card {
  padding: 20px;
  display: grid;
  place-items: center;
  background: #eef1f4;
}

.phone-side-card img {
  width: 240px;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

/* BANNERS */
.banner-grid {
  display: grid;
  gap: 16px;
}

.wide-banner {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  min-height: 220px;
}

.wide-banner.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.wide-banner-copy {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wide-banner-copy h3 {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.wide-banner-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 460px;
}

.wide-banner-visual {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.lime-glow {
  background:
    radial-gradient(
      circle,
      rgba(216, 255, 54, 0.65),
      rgba(216, 255, 54, 0) 58%
    ),
    linear-gradient(180deg, #f7faf3, #ffffff);
}

.green-glow {
  background:
    radial-gradient(circle, rgba(70, 174, 81, 0.28), rgba(70, 174, 81, 0) 58%),
    linear-gradient(180deg, #f4faf5, #ffffff);
}

.round-action {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--reuse-green);
  display: grid;
  place-items: center;
  font-size: 2rem;
  box-shadow: 0 20px 50px rgba(216, 255, 54, 0.4);
}

.round-action.blue {
  background: var(--reuse-blue);
  box-shadow: 0 20px 50px rgba(24, 122, 191, 0.28);
}

.round-action.dark {
  background: var(--reuse-blue-dark);
  box-shadow: 0 20px 50px rgba(15, 53, 94, 0.26);
}

.wide-banner-visual strong {
  position: absolute;
  right: 26px;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

/* TESTIMONIALS */
.testimonial-section {
  background: linear-gradient(
    180deg,
    var(--reuse-blue) 0%,
    var(--reuse-blue) 100%
  );
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
}
.testimonial-section h2 {
  color: var(--reuse-blue-soft);
}
.testimonial-section p {
  color: var(--reuse-blue-soft);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.testimonial-card p {
  margin: 0 0 18px;
  font-size: 0.95rem;
  color: #262626;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eef1f4;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.testimonial-user strong {
  display: block;
  font-size: 0.92rem;
}

.testimonial-user span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ARTICLES */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.article-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.article-image {
  height: 220px;
}

.article-image-1 {
  background:
    linear-gradient(145deg, rgba(24, 122, 191, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #f3f3f3, #ececec);
}

.article-image-2 {
  background:
    radial-gradient(circle at center, rgba(70, 174, 81, 0.32), transparent 38%),
    linear-gradient(180deg, #f7faf5, #eceff1);
}

.article-image-3 {
  background:
    radial-gradient(
      circle at top right,
      rgba(24, 122, 191, 0.18),
      transparent 20%
    ),
    linear-gradient(180deg, #eef2f7, #eaedf1);
}

.article-content {
  padding: 18px;
}

.article-content h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.article-content p {
  margin: 0;
  color: var(--muted);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  position: relative;
  padding-right: 24px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.faq-cta {
  margin-top: 16px;
  background: var(--reuse-green-soft);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.faq-cta strong {
  display: block;
  margin-bottom: 4px;
}

.faq-cta p {
  margin: 0;
  color: #2e2e2e;
}

/* FINAL CTA */
.final-cta-wrap {
  text-align: center;
}

.final-phone {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.mini-phone {
  width: 190px;
  background: #09111c;
  border: 8px solid #09111c;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.mini-notch {
  width: 48%;
  height: 20px;
  background: #09111c;
  margin: 0 auto;
  border-radius: 0 0 14px 14px;
}

.final-copy {
  max-width: 760px;
  margin: 0 auto;
}

.final-copy h2 {
  margin: 14px 0 12px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.final-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

/* FOOTER */
.site-footer {
  padding: 40px 0 24px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.footer-brand p {
  max-width: 420px;
  color: var(--muted);
  margin: 14px 0 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 0.95rem;
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.footer-col a:hover {
  color: var(--reuse-blue);
}

.footer-bottom {
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-legal-links a {
  color: var(--muted);
  font-weight: 600;
}

.footer-legal-links a:hover {
  color: var(--reuse-blue);
}

/* LEGAL PAGES */
.main-nav a.is-current {
  color: var(--reuse-blue);
}

.legal-page {
  background:
    radial-gradient(
      circle at top left,
      rgba(24, 122, 191, 0.1),
      transparent 28%
    ),
    linear-gradient(180deg, #f2f3f5 0%, #eef2f7 100%);
}

.legal-main {
  padding-bottom: 42px;
}

.legal-hero {
  padding: 44px 0 22px;
  background-image: url("../images/hero-bg-reuse.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.legal-hero-inner {
  max-width: 860px;
}

.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: var(--reuse-blue-dark);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.legal-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(2.3rem, 4.5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.legal-hero p {
  max-width: 720px;
  margin: 0;
  font-size: 1.04rem;
  color: var(--muted);
}

.legal-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 18px;
  align-items: start;
}

.legal-sidebar,
.legal-content {
  padding: 24px;
}

.legal-sidebar {
  position: sticky;
  top: 106px;
}

.legal-sidebar strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.legal-sidebar nav {
  display: grid;
  gap: 10px;
  margin: 16px 0 18px;
}

.legal-sidebar nav a {
  color: #46505e;
  font-weight: 600;
}

.legal-sidebar nav a:hover {
  color: var(--reuse-blue);
}

.legal-side-note {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--reuse-blue-soft);
  border: 1px solid rgba(24, 122, 191, 0.12);
}

.legal-side-note span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--reuse-blue-dark);
}

.legal-side-note p {
  margin: 0 0 8px;
  color: #1d2734;
}

.legal-side-note a {
  color: var(--reuse-blue);
  font-weight: 700;
}

.legal-content {
  display: grid;
  gap: 30px;
}

.legal-block {
  scroll-margin-top: 106px;
}

.legal-block h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.legal-block p {
  margin: 0 0 14px;
  color: #27313e;
}

.legal-block p:last-child,
.legal-block ul:last-child {
  margin-bottom: 0;
}

.legal-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: #27313e;
}

.legal-list li::marker {
  color: var(--reuse-blue);
}

.legal-definition {
  display: grid;
  gap: 10px;
}

.legal-definition p {
  margin: 0;
}

.legal-link {
  color: var(--reuse-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

/* SUPPORT PAGE */
.support-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.support-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.support-contact-grid div {
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(24, 122, 191, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.support-contact-grid span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--reuse-blue-dark);
}

.support-contact-grid a,
.support-contact-grid p {
  margin: 0;
  color: #27313e;
  font-weight: 700;
  overflow-wrap: anywhere;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

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

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

/* RESPONSIVE */
@media (max-width: 1100px) {
  .floating-card-left,
  .floating-card-right,
  .floating-card-right-lower {
    position: static;
  }

  .hero-showcase {
    min-height: auto;
    gap: 16px;
  }

  .hero-showcase {
    display: grid;
    justify-items: center;
  }

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

  .feature-mosaic,
  .split-grid,
  .split-visual,
  .legal-layout,
  .support-contact-grid,
  .wide-banner,
  .wide-banner.reverse,
  .footer-top,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }

  .testimonial-grid,
  .article-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wide-banner-visual {
    min-height: 220px;
  }
}

@media (max-width: 820px) {
  .main-nav {
    position: absolute;
    top: 78px;
    left: 14px;
    right: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .header-actions .btn {
    display: none;
  }

  .testimonial-grid,
  .article-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-legal-links {
    justify-content: flex-start;
  }

  .faq-cta,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-heading h1 {
    font-size: 2.4rem;
  }

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

  .hero-point-card {
    text-align: center;
  }

  .wide-banner-copy h3 {
    font-size: 1.6rem;
  }

  .wide-banner-visual strong {
    position: static;
    margin-top: 12px;
  }

  .floating-card {
    width: 100%;
    max-width: 320px;
  }
}
.button-arrow {
  width: 13px;
  margin-left: 10px;
}
