:root {
  --bg: #0f172a;
  --bg-contrast: #ffffff;
  --surface: rgba(15, 23, 42, 0.9);
  --surface-light: #ffffff;
  --accent: #6366f1;
  --accent-soft: rgba(99, 102, 241, 0.15);
  --accent-dark: #4f46e5;
  --text: #0f172a;
  --text-muted: #475569;
  --border: rgba(148, 163, 184, 0.24);
  --radius: 18px;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.1);
  --max-width: 1120px;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

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

img {
  display: block;
  max-width: 100%;
  border-radius: 14px;
}

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

a:hover,
a:focus {
  color: var(--accent);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75em;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

p {
  margin: 0 0 1em;
  color: var(--text-muted);
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

.section {
  padding: 5rem 1.5rem;
}

.section-accent {
  background: #f1f5f9;
}

.section-cta {
  background: var(--accent);
  color: var(--bg-contrast);
  padding: 4rem 1.5rem;
}

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

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-heading p {
  font-size: 1.05rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
}

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

.nav {
  position: relative;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.cta {
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg-contrast);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta:hover,
.cta:focus {
  background: var(--accent);
  transform: translateY(-1px);
}

.hero {
  padding: 6rem 1.5rem 5rem;
  background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.16), transparent 55%),
    linear-gradient(150deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.92));
  color: #e2e8f0;
}

.hero-inner {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.hero-copy .lead {
  font-size: 1.1rem;
  color: #cbd5f5;
  max-width: 32rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(148, 163, 255, 0.85);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover,
.btn.primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.35);
}

.btn.secondary {
  background: rgba(148, 163, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(148, 163, 255, 0.35);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: rgba(148, 163, 255, 0.28);
}

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

.badge {
  padding: 0.4rem 0.9rem;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid rgba(148, 163, 255, 0.35);
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card {
  width: min(320px, 90%);
  background: rgba(15, 23, 42, 0.65);
  border-radius: 26px;
  padding: 1rem;
  box-shadow: 0 45px 80px rgba(15, 23, 42, 0.35);
}

.hero-card img {
  border-radius: 20px;
}

.hero-card.floating {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: min(200px, 70%);
  opacity: 0.85;
  transform: rotate(-6deg);
}

.support-hero {
  padding: 6rem 1.5rem 4.5rem;
}

.support-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.support-hero-inner h1 {
  font-size: clamp(2.2rem, 3vw, 3.1rem);
  margin-bottom: 1rem;
}

.support-hero-inner p {
  font-size: 1.1rem;
  color: #cbd5f5;
}

.support-cta {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.support-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

.feature-card {
  background: var(--surface-light);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.support-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.support-faq {
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}

.support-faq h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.support-list {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.support-contact-card {
  background: #f8fafc;
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.2);
  max-width: 920px;
  margin: 0 auto;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.feature-card ul li {
  margin-bottom: 0.75rem;
}

.support-card h3 {
  margin-bottom: 0.5rem;
}

.support-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.support-card ul li {
  margin-bottom: 0.65rem;
}

.split {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
}

.callout {
  background: var(--accent);
  color: #eef2ff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.callout ul {
  padding-left: 1rem;
  margin: 1.5rem 0 0;
}

.callout li {
  margin-bottom: 0.75rem;
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.9rem;
}

.checklist li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 600;
}

.link {
  display: inline-flex;
  font-weight: 500;
  color: var(--accent-dark);
  margin-top: 1.5rem;
}

.comparison {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.comparison-column {
  background: var(--surface-light);
  border-radius: var(--radius);
  padding: 2.2rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow-soft);
}

.comparison-column.highlight {
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 25px 45px rgba(99, 102, 241, 0.2);
}

.comparison-column ul li {
  margin-bottom: 0.8rem;
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.pricing-card.highlight {
  border-color: rgba(99, 102, 241, 0.5);
  transform: translateY(-6px);
}

.price {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent-dark);
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.sub {
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.timeline {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.timeline-item {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.gallery {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 2rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.18);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item img {
  width: min(100%, 360px);
  height: auto;
  margin: 0 auto;
  display: block;
  transition: transform 0.25s ease;
}

.gallery-item figcaption {
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.gallery-item:hover,
.gallery-item:focus {
  outline: 3px solid rgba(99, 102, 241, 0.45);
  outline-offset: 6px;
}

.gallery-item:hover,
.gallery-item:focus-within,
.gallery-item:focus {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.32);
}

.gallery-item:hover img,
.gallery-item:focus-within img,
.gallery-item:focus img {
  transform: scale(1.18);
}

.policy-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.policy-details {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 1.5rem;
}

.policy-details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--accent-dark);
}

.policy-full {
  margin-top: 1rem;
  background: #f8fafc;
  border-radius: var(--radius);
  padding: 1.75rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.policy-full section {
  margin-bottom: 1.5rem;
}

.policy-full section:last-of-type {
  margin-bottom: 0;
}

.policy-full h3 {
  margin-top: 0;
  color: var(--text);
}

.policy-full h4 {
  margin-top: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 1.05rem;
}

.policy-full h5 {
  margin-top: 1rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: var(--text);
}

.policy-full ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
}

.policy-full li {
  margin-bottom: 0.75rem;
}

.policy-date {
  margin-top: -0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.policy-note {
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow-soft);
}

.section-cta .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.section-cta p {
  color: rgba(241, 245, 249, 0.88);
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer {
  background: #0f172a;
  color: rgba(226, 232, 240, 0.78);
  padding: 1.5rem;
}

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

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

.footer-links a {
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.95rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 900px) {
  .nav-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    border-radius: var(--radius);
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .nav-toggle {
    display: block;
  }

  .cta {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .section-cta .container {
    align-items: stretch;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 6.5rem;
  }

  .hero-card.floating {
    display: none;
  }

  .section {
    padding: 4rem 1.25rem;
  }

  .hero-copy .lead {
    font-size: 1rem;
  }

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

  .support-hero {
    padding: 5rem 1.25rem 3rem;
  }

  .support-cta {
    flex-direction: column;
  }

  .support-contact-card {
    padding: 2.25rem 1.75rem;
  }
}

@media (min-width: 1280px) {
  .gallery {
    grid-template-columns: repeat(3, minmax(320px, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
