/* ===========================
   DIGOI Garage Management
   Styles — Premium B&W SaaS
   =========================== */

/* ---- CSS Variables ---- */
:root {
  --black: #000000;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --light-gray: #e8e8e8;
  --mid-gray: #a0a0a0;
  --dark-gray: #1a1a1a;
  --charcoal: #0d0d0d;
  --accent: #ffffff;
  --accent-dim: rgba(255, 255, 255, 0.08);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Syne', 'Inter', sans-serif;

  --section-pad: 100px;
  --container-max: 1200px;
  --container-pad: 24px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 72px;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 99px;
}

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.accent-text {
  color: var(--white);
  position: relative;
  display: inline-block;
}


.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  background: var(--accent-dim);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-sub {
  color: var(--mid-gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-pad {
  padding: var(--section-pad) 0;
}

.bg-black {
  background: var(--charcoal);
}

/* ---- Scroll Animations ---- */
.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left {
  transform: translateX(-32px);
}

.fade-right {
  transform: translateX(32px);
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  transform: none;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
}

.btn-primary:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ========================
   NAVBAR
   ======================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.nav-logo:hover .nav-logo-img {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mid-gray);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a.nav-active {
  color: var(--white);
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 99px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(20px);
  padding: 24px;
  display: none;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 0;
  color: var(--mid-gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}

.mobile-menu a.btn {
  color: var(--black);
  text-align: center;
  border: none;
}

.mobile-menu a:hover {
  color: var(--white);
}

/* ========================
   HERO
   ======================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ---- Split Layout ---- */
.hero-split {
  align-items: stretch;
}

.hero-split-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 560px;
  align-items: center;
  gap: 0;
  min-height: 100vh;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 48px var(--container-pad) 80px;
}

.hero-content-left {
  text-align: left;
  max-width: 100%;
  padding: 80px 0;
}

.hero-content-left .hero-logo-wrap {
  align-items: flex-start;
}

.hero-content-left .hero-logo {
  margin: 0;
  display: block;
}

.hero-content-left .hero-logo-tagline {
  text-align: left;
}

.hero-content-left .hero-sub {
  margin-left: 0;
}

.hero-content-left .hero-cta {
  justify-content: flex-start;
}

.hero-content-left .hero-trust {
  justify-content: flex-start;
}

/* ---- Girl Image ---- */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100vh;
  overflow: hidden;
}

.hero-girl-img {
  width: auto;
  height: min(100vh, 850px);
  max-width: 140%;
  object-fit: contain;
  object-position: bottom right;
  display: block;
  filter: drop-shadow(-20px 0 60px rgba(0, 0, 0, 0.5));
  animation: hero-float 6s ease-in-out infinite;
  transform-origin: bottom center;
  position: absolute;
  bottom: -40px;
  right: -60px;
}

@keyframes hero-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ---- Sign In button ---- */
.nav-signin {
  font-size: 0.85rem;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  border-color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.02em;
}

.nav-signin:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

/* Logo in Hero */
.hero-logo-wrap {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-logo {
  height: 64px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.hero-logo-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.hero-headline {
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--mid-gray);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  justify-content: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--mid-gray);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: 99px;
}

.trust-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.8);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.8);
  }

  50% {
    box-shadow: 0 0 16px rgba(74, 222, 128, 1);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
  margin: 0 auto;
  animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 0.4;
  }
}

.desk-only {
  display: initial;
}

/* ========================
   MARQUEE
   ======================== */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
  text-transform: uppercase;
}

.marquee-track .dot {
  color: rgba(255, 255, 255, 0.2);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ========================
   FEATURES
   ======================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--dark-gray);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.feature-card:hover .feature-icon {
  opacity: 1;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.65;
}

/* ========================
   WHY DIGOI
   ======================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-left .section-tag {
  margin-bottom: 16px;
}

.why-left h2 {
  margin-bottom: 20px;
}

.why-desc {
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 36px;
  font-size: 1.02rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.why-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.why-item:hover {
  padding-left: 6px;
}

.why-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
}

.why-icon svg {
  width: 20px;
  height: 20px;
}

.why-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.84rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ========================
   STATS STRIP
   ======================== */
.stats-strip {
  background: var(--white);
  padding: 64px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  animation: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ========================
   HOW IT WORKS
   ======================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: start;
}

.step-card {
  background: var(--dark-gray);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.step-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  margin-bottom: -16px;
  text-align: left;
  pointer-events: none;
  user-select: none;
}

.step-icon {
  width: 52px;
  height: 52px;
  color: var(--white);
  margin: 0 auto 20px;
  opacity: 0.85;
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.65;
}

.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  gap: 4px;
}

.connector-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.connector-arrow {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.25);
}

/* ========================
   TESTIMONIALS
   ======================== */
.trust-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 99px;
  margin-bottom: 56px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid-gray);
}

.trust-badge-large strong {
  color: var(--white);
}

.trust-icon {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.test-quote {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 12px;
  left: 20px;
  pointer-events: none;
}

.test-body {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.test-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.test-author strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.test-author span {
  font-size: 0.78rem;
  color: var(--mid-gray);
}

.test-stars {
  color: #f5c842;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ========================
   LEAD FORM
   ======================== */
.lead-form-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.lead-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.025) 0%, transparent 70%);
  pointer-events: none;
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.form-left {
  padding-top: 16px;
}

.form-left .section-tag {
  margin-bottom: 16px;
}

.form-left h2 {
  margin-bottom: 16px;
}

.form-left>p {
  font-size: 1rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

.form-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.form-perks svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--white);
}

/* Form itself */
.demo-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group label span {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--white);
  outline: none;
  transition: var(--transition);
  width: 100%;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.form-group input.error {
  border-color: #f87171;
}

.form-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.5;
}

/* Form Success */
.form-success {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.success-icon {
  width: 64px;
  height: 64px;
  color: var(--white);
  opacity: 0.8;
}

.form-success h3 {
  font-size: 1.4rem;
}

.form-success p {
  color: var(--mid-gray);
  font-size: 0.95rem;
  max-width: 280px;
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 72px 0 0;
}

.footer-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--mid-gray);
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
  font-family: var(--font-sans);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--mid-gray);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

/* Get in Touch — contact rows */
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item svg {
  width: 15px;
  height: 15px;
  min-width: 15px;
  color: var(--mid-gray);
  flex-shrink: 0;
}

.contact-item a {
  font-size: 0.88rem;
  color: var(--mid-gray);
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-seo a {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
  transition: color 0.2s;
}

.footer-seo a:hover {
  color: rgba(255, 255, 255, 0.45);
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step-connector {
    display: none;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
    --nav-h: 60px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .desk-only {
    display: none;
  }

  .hero-content {
    padding: 32px 20px 64px;
  }

  .hero-split-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-content-left {
    text-align: center;
    padding: 60px 0 24px;
  }

  .hero-content-left .hero-logo-wrap {
    align-items: center;
  }

  .hero-content-left .hero-sub {
    margin-left: auto;
  }

  .hero-content-left .hero-cta {
    justify-content: center;
  }

  .hero-content-left .hero-trust {
    justify-content: center;
  }

  .hero-image-wrap {
    height: 360px;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
  }

  .hero-girl-img {
    height: 340px;
    min-height: unset;
    width: auto;
    position: absolute;
    bottom: -20px;
    right: -30px;
  }


  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-grid {
    gap: 40px;
  }

  .why-left {
    text-align: center;
  }

  .why-left .btn {
    width: 100%;
    justify-content: center;
  }

  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .demo-form {
    padding: 24px 20px;
  }

  .form-left {
    text-align: center;
  }

  .form-perks {
    align-items: center;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* ========================
   ANIMATIONS
   ======================== */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delay utilities for stagger via JS */
.d100 {
  transition-delay: 0.1s;
}

.d200 {
  transition-delay: 0.2s;
}

.d300 {
  transition-delay: 0.3s;
}

.d400 {
  transition-delay: 0.4s;
}

.d500 {
  transition-delay: 0.5s;
}