:root {
  color-scheme: light;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;

  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --text: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --accent: #2563eb;
  --accent-soft: #eff6ff;
  --accent-hover: #1d4ed8;
  --card: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.08);
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(37, 99, 235, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 40% at 95% 100%, rgba(99, 102, 241, 0.06), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 108px 24px 56px;
  isolation: isolate;
}

.content-page {
  align-content: start;
  padding-bottom: 32px;
}

.hero::before {
  display: none;
}

.hero-card {
  width: min(880px, 100%);
  padding: clamp(40px, 7vw, 80px);
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-lg);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(20px, 4vw, 40px);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border) 20%,
    var(--border) 80%,
    transparent
  );
}

.brand {
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.site-nav a {
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
  background: var(--bg-soft);
  transform: translateY(-1px);
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
  background: var(--accent-soft);
}

.site-footer {
  padding: 32px 24px 40px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.site-footer p {
  margin: 0;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 20px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent-soft);
}

h1 {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.support-page h1,
.content-page h1 {
  font-size: clamp(2.2rem, 6.5vw, 3.75rem);
}

.page-card {
  text-align: left;
}

.page-card h1 {
  margin-left: 0;
  margin-right: 0;
}

.lead {
  max-width: 580px;
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.home-lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lead a,
.cta-line a,
.service-item a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 99, 235, 0.35);
  transition: color 180ms ease, border-color 180ms ease;
}

.lead a:hover,
.cta-line a:hover,
.service-item a:hover {
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}

.content-grid {
  display: grid;
  gap: 16px;
  margin-top: 44px;
}

@media (min-width: 720px) {
  .content-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-block,
.service-item {
  padding: 26px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  box-shadow: var(--shadow-sm);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.info-block:hover,
.service-item:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.info-block h2,
.service-item h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.info-block p,
.service-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.service-list {
  display: grid;
  gap: 14px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.cta-line {
  margin: 44px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.98rem;
  text-align: center;
}

.content-page .cta-line {
  text-align: left;
}

.contact-form {
  display: grid;
  gap: 18px;
  width: min(480px, 100%);
  margin: clamp(36px, 5vw, 52px) auto 0;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  text-align: left;
}

.contact-form.contact-form-card {
  width: 100%;
  margin: 0;
  padding: 32px;
  border: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-md);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  outline: none;
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.contact-form button {
  margin-top: 4px;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 15px 24px;
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  background: var(--accent);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.contact-form button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.32);
}

.contact-form button:active {
  transform: translateY(0);
}

.glow {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}

.glow-one {
  top: 8%;
  right: 8%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 70%);
}

.glow-two {
  bottom: 12%;
  left: 6%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.14), transparent 70%);
}

/* ——— Landing page ——— */

.landing-page {
  background: var(--bg);
}

.container {
  width: min(1120px, 100%);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 32px);
}

.landing-hero {
  padding: 120px 0 64px;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(37, 99, 235, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(99, 102, 241, 0.06), transparent 50%),
    var(--bg);
}

.landing-hero-inner {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .landing-hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

.landing-hero-copy h1 {
  margin: 0;
  max-width: none;
  text-align: left;
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  line-height: 1.1;
}

.landing-hero-copy .lead {
  margin-top: 20px;
  max-width: 520px;
  text-align: left;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.btn-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.32);
}

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

.btn-secondary:hover {
  border-color: var(--border-strong);
  background: var(--bg-soft);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 40px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stats strong {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-stats span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.landing-hero-visual {
  position: relative;
}

.hero-image-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  max-height: 560px;
}

.hero-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow-md);
}

.floating-card img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}

.floating-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}

.floating-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.floating-card-one {
  top: 12%;
  left: -8%;
}

.floating-card-two {
  bottom: 10%;
  right: -4%;
}

.floating-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.trust-strip {
  padding: 28px 0;
  border-block: 1px solid var(--border);
  background: var(--bg-soft);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.trust-strip p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tech-tags li {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
}

.section {
  padding: clamp(64px, 10vw, 96px) 0;
}

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

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head-center {
  margin-inline: auto;
  text-align: center;
}

.section-head-center .section-lead {
  margin-inline: auto;
}

.section-head h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--text);
}

.section-lead {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 200ms ease,
    transform 200ms ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-card-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.feature-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.feature-card:hover .feature-card-image img {
  transform: scale(1.04);
}

.feature-card h3 {
  margin: 0;
  padding: 20px 22px 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.feature-card p {
  margin: 0;
  padding: 0 22px 24px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.showcase-row {
  display: grid;
  gap: 40px;
  align-items: center;
  margin-bottom: 72px;
}

.showcase-row:last-child {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .showcase-row {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .showcase-row-reverse .showcase-media {
    order: 2;
  }

  .showcase-row-reverse .showcase-copy {
    order: 1;
  }
}

.showcase-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.showcase-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.showcase-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.showcase-copy > p {
  margin: 0 0 20px;
  color: var(--text-muted);
  line-height: 1.65;
}

.check-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 0.95rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-soft)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563eb'%3E%3Cpath d='M6.2 11.2 3.4 8.4l1-1 1.8 1.8 4.4-4.4 1 1z'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.text-link:hover {
  color: var(--accent-hover);
}

.process-steps {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.process-step {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.process-num {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
}

.process-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.testimonial-section {
  padding-block: 48px 80px;
}

.testimonial {
  margin: 0;
  padding: clamp(36px, 6vw, 56px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg) 60%);
  box-shadow: var(--shadow-md);
}

.testimonial > p {
  margin: 0 0 28px;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial footer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testimonial cite {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-style: normal;
}

.testimonial cite strong {
  font-size: 0.95rem;
}

.testimonial cite span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.contact-copy .section-lead {
  margin-bottom: 28px;
}

.contact-side-image {
  display: block;
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.nav-cta {
  color: #fff !important;
  background: var(--accent) !important;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  color: #fff !important;
}

.site-footer-rich {
  padding-top: 48px;
  text-align: left;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.footer-brand p {
  margin: 12px 0 0;
  max-width: 280px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-copy {
  margin: 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand {
    text-align: center;
  }

  .site-nav {
    justify-content: center;
  }

  .site-nav a {
    padding-inline: 12px;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 148px;
  }

  .hero-card {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .content-page .cta-line {
    text-align: center;
  }

  .contact-form:not(.contact-form-card) {
    padding-top: 28px;
  }

  .landing-hero {
    padding-top: 148px;
  }

  .floating-card-one {
    left: 0;
    top: 4%;
  }

  .floating-card-two {
    right: 0;
    bottom: 4%;
  }

  .footer-grid {
    flex-direction: column;
  }
}
