:root {
  --bg: #07111f;
  --bg-deep: #030814;
  --surface: rgba(13, 29, 53, 0.78);
  --surface-strong: rgba(13, 29, 53, 0.94);
  --surface-soft: rgba(18, 39, 68, 0.7);
  --text: #eff5ff;
  --muted: #a6b7d1;
  --muted-soft: #7f93b3;
  --primary: #6cb4ff;
  --primary-deep: #224d7a;
  --accent: #f4c85a;
  --accent-deep: #e4ac1d;
  --border: rgba(141, 178, 235, 0.18);
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.32);
  --glow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 12px 40px rgba(76, 134, 219, 0.16);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", Verdana, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(108, 180, 255, 0.2), transparent 24%),
    radial-gradient(circle at top right, rgba(244, 200, 90, 0.12), transparent 18%),
    linear-gradient(180deg, #081224 0%, #050c18 48%, var(--bg-deep) 100%);
}

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

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

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

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

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

.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(11, 24, 43, 0.3), rgba(10, 20, 37, 0.12));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(24px);
  background: rgba(5, 12, 24, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrap,
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(244, 200, 90, 0.95), rgba(250, 223, 129, 0.95));
  color: #051020;
  box-shadow: 0 14px 30px rgba(244, 200, 90, 0.28);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
  font-weight: 600;
}

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

.nav-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.6rem;
  height: 2px;
  margin: 0.3rem 0;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: visible;
  padding-top: 6rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 28%, rgba(108, 180, 255, 0.24), transparent 18%),
    radial-gradient(circle at 78% 12%, rgba(244, 200, 90, 0.14), transparent 12%);
  pointer-events: none;
}

.hero-grid,
.two-column,
.contact-card {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  position: relative;
  align-items: center;
  overflow: visible;
}

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

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.1;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 8vw, 5rem);
}

h2 {
  max-width: 16ch;
  font-size: clamp(1.95rem, 4vw, 3.3rem);
}

h3 {
  font-size: 1.15rem;
}

.price-highlight {
  color: var(--accent);
  text-shadow: 0 0 28px rgba(244, 200, 90, 0.22);
}

.hero-text,
.section-heading,
.info-card p,
.step-card p,
.note-card p,
.comparison-card p,
.trust-item p,
.contact-card p,
.initiative,
.example-copy p {
  color: var(--muted);
}

.hero-text {
  max-width: 57ch;
  margin-top: 1.2rem;
  font-size: 1.05rem;
}

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

.hero-note {
  display: inline-flex;
  margin-top: 1.25rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(244, 200, 90, 0.22);
  border-radius: 999px;
  background: rgba(244, 200, 90, 0.08);
  color: #ffe6a1;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #ffd66f);
  color: #081224;
  box-shadow: 0 18px 30px rgba(244, 200, 90, 0.2);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-on-dark {
  background: rgba(255, 255, 255, 0.08);
}

.hero-points,
.check-list {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
}

.hero-points li,
.check-list li {
  position: relative;
  padding-left: 1.55rem;
  margin-top: 0.75rem;
}

.hero-points li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffd66f);
  box-shadow: 0 0 16px rgba(244, 200, 90, 0.3);
}

.danger-list li::before {
  background: linear-gradient(135deg, #ff8a8a, #ffb0b0);
  box-shadow: none;
}

.hero-visual {
  position: relative;
  min-height: 30rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: visible;
}

.trust-item,
.comparison-card,
.info-card,
.step-card,
.note-card,
.contact-card,
.glass-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow), var(--glow);
}

.mockup-shell {
  position: relative;
  width: 100%;
  border-radius: 2rem;
  overflow: visible;
}

.mockup-shell::before {
  content: "";
  position: absolute;
  inset: 6% -2% 4% 8%;
  background: radial-gradient(circle, rgba(108, 180, 255, 0.38), rgba(108, 180, 255, 0.08) 48%, transparent 72%);
  filter: blur(44px);
  z-index: 0;
}

.mockup-shell::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 8%;
  bottom: -1.4rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.26);
  filter: blur(20px);
  z-index: 0;
}

.mockup-shell-hero {
  display: flex;
  justify-content: flex-end;
  transform: translate(6vw, -0.5rem);
}

.mockup-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.8rem;
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.42),
    0 12px 36px rgba(74, 132, 221, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.mockup-image-hero {
  width: min(62rem, 78vw);
  max-width: none;
  animation: mockup-float 6s ease-in-out infinite;
  transform-origin: center;
}

.mockup-image-example {
  max-width: 35rem;
  margin: 0 auto;
}

.trust-strip {
  margin-top: -1rem;
  padding-bottom: 2rem;
}

.trust-grid,
.card-grid,
.timeline,
.comparison-grid {
  display: grid;
  gap: 1rem;
}

.trust-item,
.info-card,
.step-card,
.note-card,
.comparison-card {
  padding: 1.45rem;
}

.trust-item strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.align-left {
  margin-bottom: 1.5rem;
}

.comparison-card-featured {
  background:
    linear-gradient(180deg, rgba(244, 200, 90, 0.1), rgba(13, 29, 53, 0.86)),
    var(--surface);
}

.comparison-label {
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 800;
  font-size: 1.05rem;
}

.comparison-card-muted {
  background: rgba(10, 21, 39, 0.82);
}

.icon-circle,
.step-number {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  color: #081224;
  background: linear-gradient(135deg, var(--accent), #ffd66f);
  box-shadow: 0 14px 26px rgba(244, 200, 90, 0.18);
}

.step-number {
  color: var(--text);
  background: linear-gradient(135deg, rgba(108, 180, 255, 0.2), rgba(108, 180, 255, 0.35));
  border: 1px solid rgba(108, 180, 255, 0.26);
  box-shadow: none;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(108, 180, 255, 0.4), rgba(108, 180, 255, 0));
}

.example-section {
  position: relative;
}

.example-preview {
  padding: 1rem;
}

.example-preview .mockup-image {
  border-radius: 1.6rem;
}

.note-card,
.contact-card {
  background: linear-gradient(180deg, rgba(17, 36, 64, 0.92), rgba(8, 18, 33, 0.96));
}

.contact-card {
  padding: 2rem;
}

.contact-card .eyebrow,
.contact-card h2,
.contact-card .contact-link {
  color: var(--text);
}

.contact-details {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.contact-link {
  font-size: 1.08rem;
  font-weight: 700;
}

.site-footer {
  background: rgba(2, 7, 14, 0.95);
  color: rgba(239, 245, 255, 0.72);
}

@media (max-width: 899px) {
  .nav-wrap {
    flex-wrap: wrap;
    padding: 0.75rem 0;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .site-nav {
    order: 4;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: var(--radius-sm);
    background: rgba(6, 14, 27, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

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

  .nav-cta {
    display: none;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .hero-visual {
    min-height: auto;
    justify-content: center;
    align-items: center;
  }

  .mockup-shell-hero {
    justify-content: center;
    transform: translateY(1rem);
  }

  .mockup-image-hero {
    width: min(90vw, 48rem);
  }
}

@media (min-width: 900px) {
  .hero-grid,
  .two-column,
  .contact-card,
  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

  .timeline::before {
    left: 0;
    right: 0;
    top: 2.25rem;
    bottom: auto;
    width: auto;
    height: 1px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 0;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.2rem 0;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .mockup-shell-hero {
    transform: translateY(0.5rem);
  }

  .mockup-image-hero {
    width: 95%;
  }

}

@media (min-width: 900px) {

  .hero-grid{
      grid-template-columns: 44% 56%;
      gap: 5rem;
      align-items:center;
  }

  .hero-copy{
      max-width:560px;
      padding-right:2rem;
  }

  .hero-visual{
      justify-content:flex-end;
      align-items:flex-start;
      min-height:42rem;
  }

  .mockup-shell-hero{
      transform:translate(120px,-70px);
  }

.mockup-image-hero {
    position: relative;
    left: 80px;
    top: -70px;
}

}
@media (min-width: 1181px) {
  .mockup-image-hero {
    width: min(60rem, 58vw);
  }

  .mockup-shell-hero {
    transform: translateX(2vw);
  }
}

@media (hover: hover) and (pointer: fine) {
  .mockup-image-hero:hover {
    transform: scale(1.03);
  }
}

@keyframes mockup-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

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

  .button {
    transition: none;
  }
}
