﻿:root {
  --sgi-primary: #d6267c;
  --sgi-navy: #000000;
  --sgi-bg: #fafbff;
  --sgi-white: #ffffff;
  --sgi-text: #444444;
  --sgi-muted: #6c757d;
  --sgi-accent: #f5a338;
  --sgi-border: #e1ecff;
  --sgi-shadow-soft: 0 10px 24px rgba(1, 41, 112, 0.08);
  --sgi-shadow-strong: 0 18px 38px rgba(1, 41, 112, 0.16);
  --sgi-radius: 18px;
  --sgi-radius-sm: 12px;
  --sgi-header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  color: var(--sgi-text);
  background: var(--sgi-bg);
  line-height: 1.6;
}

body.lightbox-open,
body.menu-open {
  overflow: hidden;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -50px;
  z-index: 1200;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  background: var(--sgi-navy);
  color: var(--sgi-white);
  font-weight: 600;
}

.skip-link:focus-visible {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #111111;
  border-bottom: 1px solid #d6257d;
}

.nav-shell {
  min-height: var(--sgi-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.brand-logo {
  width: 154px;
  height: auto;
  max-height: 40px;
}

.brand-product {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.nav-links a {
  padding: 0.35rem 0.2rem;
  color: #ffffff;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-cta {
  box-shadow: none;
  padding: 0.55rem 1rem;
}

.header-cta {
  display: inline-flex;
  align-items: center;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #111111;
  color: #ffffff;
  font-size: 1.45rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.section {
  padding-block: clamp(2.2rem, 4.2vw, 4rem);
}

.section-muted {
  background: #fafbff;
}

.hero {
  padding-top: clamp(1.4rem, 2.4vw, 2.2rem);
}

.hero.section {
  padding-block: clamp(2.2rem, 4.5vw, 3.8rem);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(1.95rem, 3.6vw, 3.05rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--sgi-navy);
}

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

.lead {
  margin: 1.2rem 0 0;
  max-width: 62ch;
  color: #334155;
}

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

.hero-meta {
  margin: 0.9rem 0 0;
  font-size: 0.86rem;
  color: #64748b;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.76rem 1.35rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--sgi-primary);
  color: var(--sgi-white);
  border-color: var(--sgi-primary);
  box-shadow: 0 10px 18px rgba(214, 38, 124, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  background: #ffffff;
  color: var(--sgi-primary);
  border-color: var(--sgi-primary);
}

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

.btn-secondary {
  background: rgba(214, 38, 124, 0.08);
  color: var(--sgi-navy);
  border-color: rgba(214, 38, 124, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(214, 38, 124, 0.16);
  transform: translateY(-1px);
}

.chip-list {
  margin-top: 1.2rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 51, 89, 0.14);
  background: rgba(255, 255, 255, 0.75);
  color: #334155;
  font-size: 0.84rem;
  font-weight: 600;
}

.desktop-frame {
  margin: 0;
  border-radius: 16px;
  border: 1px solid #d7dfec;
  background: #ffffff;
  box-shadow: var(--sgi-shadow-strong);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  width: 100%;
}

.desktop-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #dbe2ee;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--sgi-navy);
}

.section-head p {
  margin: 0.75rem 0 0;
  color: #475569;
}

.unified-subtitle {
  margin: 2rem 0 0.9rem;
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000000;
}

.trust-layout {
  margin-top: 1.8rem;
  display: grid;
  gap: 1.1rem;
}

.trust-badges {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.trust-badges li {
  background: var(--sgi-white);
  border: 1px solid var(--sgi-border);
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  color: #334155;
  font-weight: 600;
  font-size: 0.92rem;
}

.partner-block,
.surface-card,
.shot-card,
.contact-form,
.step {
  background: var(--sgi-white);
  border: 1px solid var(--sgi-border);
  border-radius: var(--sgi-radius);
  box-shadow: var(--sgi-shadow-soft);
}

.partner-block {
  padding: 1.25rem;
}

.partner-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}

.partner-head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.partner-state {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8a5f1b;
  background: rgba(245, 163, 56, 0.16);
}

.partner-anonymous,
.partner-named {
  margin-top: 1rem;
}

.partner-badge {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(214, 38, 124, 0.12);
  color: var(--sgi-primary);
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.partner-anonymous p,
.partner-named p {
  margin: 0.65rem 0 0;
  color: #334155;
  font-weight: 600;
}

.partner-hook {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: #64748b;
}

.partner-hook code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 6px;
  padding: 0.08rem 0.3rem;
}

.partner-named img {
  border: 1px dashed rgba(26, 51, 89, 0.35);
  border-radius: 12px;
  padding: 0.65rem;
  background: #fbfcff;
}

.partner-block[data-partner-mode="anonymous"] .partner-named {
  display: none;
}

.partner-block[data-partner-mode="named"] .partner-anonymous {
  display: none;
}

.card-grid {
  margin-top: 1.8rem;
  display: grid;
  gap: 1rem;
}

.surface-card {
  padding: 1.25rem;
}

.compact-card {
  min-height: 88px;
  display: flex;
  align-items: center;
}

.compact-card h3 {
  margin: 0;
  font-size: 1rem;
}

.icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sgi-primary);
  background: rgba(214, 38, 124, 0.12);
  font-size: 1.2rem;
}

.surface-card h3,
.feature-card h3,
.step h3 {
  margin: 0.8rem 0 0;
  font-size: 1.1rem;
  line-height: 1.3;
}

.surface-card p,
.feature-card p,
.step p {
  margin: 0.55rem 0 0;
  color: #475569;
  font-size: 0.95rem;
}

.feature-grid {
  margin-top: 1.8rem;
  display: grid;
  gap: 1.15rem;
  grid-template-columns: minmax(0, 1fr);
}

.feature-card {
  padding: 1rem 0.75rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.feature-card:focus-within {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(1, 41, 112, 0.08);
}

.feature-card > i {
  font-size: 1.2rem;
  color: var(--sgi-primary);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(214, 38, 124, 0.12);
}

.feature-points {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.feature-points li {
  position: relative;
  padding-left: 1rem;
  color: #334155;
  font-size: 0.94rem;
}

.feature-points li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0.02rem;
  font-weight: 700;
  line-height: 1;
  color: var(--sgi-primary);
}

.stepper {
  margin-top: 1.8rem;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.step {
  padding: 1.1rem;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--sgi-white);
  background: var(--sgi-primary);
}

.screenshot-slider {
  margin-top: 1.8rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.slider-stage {
  position: relative;
  overflow: hidden;
  border-radius: var(--sgi-radius);
  width: 100%;
  max-width: 100%;
}

.slider-track {
  display: flex;
  width: 100%;
  max-width: 100%;
  transition: transform 0.35s ease;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(17, 24, 39, 0.45);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  background: rgba(17, 24, 39, 0.62);
}

.slider-prev {
  left: 0.65rem;
}

.slider-next {
  right: 0.65rem;
}

.slider-controls {
  margin-top: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.slider-dots {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.shot-card {
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  margin: 0;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: zoom-in;
  transition: outline-color 0.2s ease;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.slider-dot {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  padding: 0;
  line-height: 1;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #c9d3e4;
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.slider-dot.is-active {
  background: var(--sgi-primary);
  transform: none;
}

.shot-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 12px;
  border: 0;
  background: transparent;
}

.shot-card.is-active:hover,
.shot-card:focus-visible {
  transform: none;
  box-shadow: none;
}

.shot-card:focus-visible {
  outline: 2px solid rgba(35, 136, 254, 0.45);
  outline-offset: 4px;
}

.shot-caption {
  margin-top: 0.7rem;
  display: inline-flex;
  font-weight: 600;
  color: #334155;
}

.badge-flag {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.24rem 0.65rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(26, 51, 89, 0.08);
  color: var(--sgi-navy);
}

.check-list {
  list-style: none;
  margin-top: 0.9rem;
  display: grid;
  gap: 0.6rem;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  color: #334155;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sgi-primary);
}

.security-list {
  margin-top: 1.6rem;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.security-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--sgi-border);
}

.security-list i {
  color: var(--sgi-primary);
  font-size: 1rem;
  margin-top: 0.1rem;
}

.faq-wrap {
  max-width: 920px;
}

.faq-list {
  margin-top: 1.6rem;
}

.faq-item {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--sgi-navy);
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 0;
}

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

.faq-item summary::before {
  content: "›";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.9rem;
  flex: 0 0 0.9rem;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--sgi-primary);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::before {
  transform: rotate(90deg);
}

.faq-item p {
  margin: 0 0 1rem 1.45rem;
  color: #475569;
}

.contact-shell {
  max-width: 920px;
}

.php-email-form {
  margin-top: 1.6rem;
}

.form-row {
  display: grid;
  gap: 0.9rem;
}

.form-col {
  min-width: 0;
}

.form-col-full {
  grid-column: 1 / -1;
}

.form-label {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-weight: 500;
  color: #444444;
}

.php-email-form .form-control {
  width: 100%;
  border-radius: 0;
  border: 1px solid #ced4da;
  box-shadow: none;
  font-size: 14px;
  background: #ffffff;
  padding: 10px 15px;
  font: inherit;
  color: var(--sgi-text);
  transition: border-color 0.2s ease;
  appearance: none;
}

.php-email-form textarea.form-control {
  padding: 12px 15px;
  resize: vertical;
}

.php-email-form .form-control:focus {
  outline: none;
  border-color: #d6267c;
  box-shadow: none;
}

.form-submit {
  margin-top: 1rem;
}

.php-email-form button[type="submit"] {
  background: #d6267c;
  border: 2px solid #d6267c;
  padding: 10px 30px;
  color: #ffffff;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.php-email-form button[type="submit"]:hover,
.php-email-form button[type="submit"]:focus,
.php-email-form button[type="submit"]:active {
  color: #d6267c;
  background: #ffffff;
  border-color: #d6267c;
  box-shadow: 0px 12px 35px rgba(214, 38, 124, 0.2);
  transform: translateY(-2px);
}

.php-email-form button[type="submit"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(214, 38, 124, 0.25);
}

.php-email-form button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-status {
  min-height: 1.45em;
  margin: 0.55rem 0 0;
  color: #334155;
  font-size: 0.875rem;
}

.form-status.is-success {
  color: #166534;
}

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

.privacy-note {
  margin: 0.55rem 0 0;
  color: #6c757d;
  font-size: 0.875rem;
}

.privacy-note a {
  color: #d6267c;
  text-decoration: none;
  font-weight: 400;
}

.privacy-note a:hover,
.privacy-note a:focus-visible {
  color: #b01f66;
  text-decoration: none;
}

.site-footer {
  background: #000000 url(../../../assets/img/footer-bg.png) no-repeat right top;
  background-size: contain;
  border-top: 1px solid #e1ecff;
  color: #ffffff;
  padding: 2.8rem 0 1.8rem;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) auto;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-logo {
  display: inline-flex;
  line-height: 0;
}

.footer-logo img {
  max-height: 40px;
  width: auto;
}

.footer-tagline {
  margin: 0.8rem 0 0;
  color: #ffffff;
  font-size: 0.95rem;
}

.footer-social {
  margin-top: 0.85rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--sgi-primary);
  font-size: 1rem;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: #ffffff;
  background: rgba(214, 38, 124, 0.7);
}

.footer-company {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
}

.footer-contact p {
  margin: 0.2rem 0 0;
  color: #ffffff;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #d6267c;
  border: 2px solid #d6267c;
  color: #fff;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top i {
  font-size: 24px;
  line-height: 0;
  color: inherit;
  transition: color 0.3s ease;
}

.back-to-top:hover,
.back-to-top:focus,
.back-to-top:active {
  background: #fff;
  color: #d6267c;
  border-color: #d6267c;
  box-shadow: 0px 12px 35px rgba(214, 38, 124, 0.2);
  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(214, 38, 124, 0.25);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 16, 38, 0.78);
}

.lightbox-dialog {
  position: relative;
  max-width: min(1080px, 100%);
  width: 100%;
  border-radius: 20px;
  background: #0f172a;
  color: #dbeafe;
  border: 1px solid rgba(219, 234, 254, 0.25);
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.35);
  padding: 1.1rem;
  z-index: 1;
}

.lightbox-image,
#lightbox-image {
  width: 100%;
  border-radius: 12px;
  max-height: min(72vh, 820px);
  object-fit: contain;
  background: #0b1222;
}

.lightbox-caption {
  margin: 0.7rem 0 0;
  color: #e2e8f0;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(219, 234, 254, 0.45);
  background: rgba(15, 23, 42, 0.7);
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
}

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(214, 38, 124, 0.45);
  outline-offset: 2px;
}

@media (min-width: 720px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .form-col-full {
    grid-column: 1 / -1;
  }
}

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

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.3rem;
  }

  .trust-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }

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

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

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

  .step {
    min-height: 206px;
    position: relative;
  }

  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2rem;
    right: -0.8rem;
    width: 1.1rem;
    border-top: 2px dashed rgba(214, 38, 124, 0.35);
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 979px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 1px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.95rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(17, 24, 39, 0.1);
    padding: 1rem;
    box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
  }

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

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .nav-links a {
    padding: 0.45rem 0;
    border: 0;
    color: #d6267c;
    font-weight: 700;
  }

  .nav-cta {
    width: auto;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(1120px, calc(100% - 1.15rem));
  }

  .site-header {
    border-bottom-color: #d6257d;
  }

  .hero {
    padding-top: 1.8rem;
  }

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

  .btn {
    width: 100%;
  }

  .partner-head {
    align-items: flex-start;
  }

  .slider-controls {
    gap: 0.8rem;
  }
}

@media (max-width: 640px) {
  .slider-arrow {
    width: 36px;
    height: 36px;
  }

  .slider-prev {
    left: 0.45rem;
  }

  .slider-next {
    right: 0.45rem;
  }

  .slider-controls {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
