:root {
  /* Colors */
  --color-bg: #F3F4F6;
  /* Soft gray background */
  --color-surface: #FFFFFF;
  --color-text-primary: #111827;
  --color-text-secondary: #4B5563;
  --color-text-tertiary: #9CA3AF;
  --color-accent: #4F46E5;
  --color-accent-hover: #4338CA;
  --color-border: rgba(229, 231, 235, 0.8);

  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Soft UI Tokens */
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  --shadow-soft: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
  --shadow-float: 0 30px 60px -12px rgba(0, 0, 0, 0.08);
  --shadow-inner: inset 0 2px 4px 0 rgba(255, 255, 255, 0.5);

  /* Transitions */
  --transition-smooth: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  /* Subtle gradient background */
  background-image:
    radial-gradient(circle at 10% 10%, rgba(79, 70, 229, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(79, 70, 229, 0.03) 0%, transparent 40%);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-3xl) 0;
  position: relative;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

.flex-col {
  flex-direction: column;
}

.gap-sm {
  gap: var(--spacing-sm);
}

.gap-md {
  gap: var(--spacing-md);
}

.gap-lg {
  gap: var(--spacing-lg);
}

/* Typography */
.heading-display {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: var(--spacing-lg);
}

.heading-lg {
  font-size: 2.5rem;
  line-height: 1.1;
}

.heading-md {
  font-size: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
}

.text-sm {
  font-size: 0.875rem;
}

/* Components */

/* Floating Nav */
.nav-pill {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  padding: 12px 40px;
  /* Increased horizontal padding */
  border-radius: 99px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 60px;
  /* Increased gap from 40px to 60px */
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  width: auto;
  max-width: 90%;
}

.nav-logo img {
  height: 32px;
  /* Increased from default/implicit */
  width: auto;
}

.nav-pill.scrolled {
  top: var(--spacing-sm);
  padding: 0.25rem 0.25rem 0.25rem 1.25rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--color-text-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-text-primary);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

.btn-white {
  background: white;
  color: var(--color-text-primary);
  box-shadow: var(--shadow-soft);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-float);
}

/* Cards */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all var(--transition-smooth);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-float);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Floating Elements (Parallax) */
.floating-ui {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.1s linear;
  /* For smooth parallax */
}

.float-card {
  background: white;
  padding: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 6s ease-in-out infinite;
}

.float-card img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.bento-item {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.bento-item.large {
  grid-column: span 2;
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-text {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.reveal-text span {
  display: inline-block;
  transform: translateY(100%);
  animation: slideUpWord 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes slideUpWord {
  from {
    transform: translateY(110%);
  }

  to {
    transform: translateY(0);
  }
}

/* Map Section */
.map-section-container {
  position: relative;
  height: 400px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1F2937;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s linear;
  transform: scale(1.2);
  /* Start zoomed in */
}

.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-pin-icon {
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  color: var(--color-accent);
  z-index: 2;
}

.map-pin-label {
  background: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s;
  white-space: nowrap;
  z-index: 1;
  color: #111827;
  /* Force black text */
}

.map-pin:hover .map-pin-label,
.map-pin.active .map-pin-label {
  opacity: 1;
  transform: translateY(0);
}

.map-pin:hover {
  z-index: 10;
}

/* Google Review Card */
.google-review-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.demo-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  background: #F3F4F6;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E5E7EB;
  /* Fallback */
  object-fit: cover;
}

.review-meta h4 {
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

.review-meta span {
  font-size: 0.8rem;
  color: #6B7280;
}

.review-stars {
  color: #FBBF24;
  /* Google Star Yellow */
  display: flex;
  gap: 2px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #374151;
}

.google-logo-small {
  width: 20px;
  height: 20px;
  margin-left: auto;
}

.marquee-wrapper {
  background: transparent;
  padding: var(--spacing-lg) 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.marquee-container {
  width: 100%;
}

/* Marquee Section */
.integration-marquee {
  background: white;
  padding: 60px 0;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

.marquee-track {
  display: flex;
  gap: 80px;
  /* Increased gap */
  width: max-content;
  animation: scroll 40s linear infinite;
}

.integration-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  /* Fixed height container */
  width: 160px;
  /* Fixed width container for consistency */
}

@media (max-width: 768px) {
  .integration-logo {
    height: 40px;
    width: 100px;
  }

  .marquee-track {
    gap: 40px;
  }
}

.integration-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.integration-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 40px));
  }

  /* Adjust for gap */
}

/* Product Demo Section */
.demo-section {
  background: #0F172A;
  /* Dark background */
  padding: 120px 0;
  position: relative;
  z-index: 20;
  /* Ensure it sits above hero if overlap occurs */
  color: white;
  /* Ensure all text is white by default */
  height: 300vh;
  /* Allow for long scroll on desktop */
}

.demo-sticky-wrapper {
  /* Desktop: Sticky wrapper for both */
  position: sticky;
  top: 50vh;
  transform: translateY(-50%);
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ensure headings in demo section are white */
.demo-section .heading-lg {
  color: white;
}

.demo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.demo-text {
  flex: 1;
  max-width: 400px;
  position: relative;
  z-index: 10;
}

.demo-step-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.demo-step-text.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.demo-step-text h3 {
  color: white;
  /* Explicitly white */
  margin-bottom: 1rem;
}

.demo-step-text p {
  color: #94A3B8;
  /* Light gray for secondary text */
  font-size: 1.125rem;
  line-height: 1.6;
}

.device-frame-wrapper {
  flex: 0 0 375px;
  /* Restore width on desktop */
  height: 812px;
  position: relative;
  z-index: 10;
}

.device-frame {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 50px;
  /* Smoother corners */
  border: 14px solid #1F2937;
  /* Thicker border */
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 2px #374151,
    /* Outer ring */
    0 50px 100px -20px rgba(0, 0, 0, 0.7),
    /* Deep shadow */
    0 30px 60px -30px rgba(0, 0, 0, 0.5);
  /* Soft shadow */
  color: var(--color-text-primary);
  transform-style: preserve-3d;
}

.device-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F9FAFB;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

/* Demo UI Components */
.demo-header {
  padding-bottom: 20px;
  border-bottom: 1px solid #E5E7EB;
  margin-bottom: 20px;
}

.demo-product {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.demo-product-img {
  width: 80px;
  height: 80px;
  background: #E5E7EB;
  border-radius: 8px;
}

.demo-fitted-prompt {
  background: white;
  border: 2px solid var(--color-accent);
  border-radius: 16px;
  padding: 16px;
  margin-top: auto;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.demo-fitted-prompt.visible {
  transform: translateY(0);
}

.demo-installer-list {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.demo-installer-card {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
}

.demo-installer-card.selected {
  border-color: var(--color-accent);
  background: #EEF2FF;
}

/* Mobile adjustments for demo */
@media (max-width: 1024px) {

  .demo-section {
    min-height: 140vh !important;
    padding: 48px 0 64px;
    overflow: hidden;
  }

  .demo-sticky-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }

  .demo-container {
    position: relative;
    width: 100%;
    min-height: auto !important;
    padding: 0 var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }

  .device-frame-wrapper {
    position: relative !important;
    top: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 92% !important;
    max-width: 340px !important;
    height: 420px !important;
    z-index: 6 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none !important;
    order: -1 !important;
    margin: 8px auto 12px !important;
  }

  .device-frame {
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
    background: white !important;
    border-radius: 24px !important;
  }

  .demo-text {
    position: relative !important;
    margin-top: 0 !important;
    width: calc(100% - 2.5rem) !important;
    max-width: 520px !important;
    height: auto !important;
    min-height: 260px !important;
    z-index: 10 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    scroll-snap-type: y mandatory;
    gap: 16px;
  }

  .demo-step-text {
    position: relative !important;
    width: 100% !important;
    opacity: 0.3 !important;
    pointer-events: none !important;
    transform: translateY(16px) !important;
    transition: opacity 0.35s ease, transform 0.35s ease;
    background: rgba(17, 24, 39, 0.92) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 18px !important;
    padding: 1.5rem 1.5rem 1.75rem !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35) !important;
    min-height: 280px !important;
    z-index: 5 !important;
    scroll-snap-align: start;
  }

  .demo-step-text.active {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    border-color: rgba(99, 102, 241, 0.6) !important;
  }

  /* Mobile stack */
  .demo-mobile-stack {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0 var(--spacing-md);
  }

  .mobile-step-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .mobile-step-text {
    background: rgba(17, 24, 39, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 1.5rem;
    color: white;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  }

  .demo-mobile-stack .device-frame {
    height: 420px;
    max-width: 340px;
    width: 92%;
  }

  .demo-desktop {
    display: none;
  }

  .demo-step-text h2 {
    color: white !important;
  }

  .demo-step-text p {
    color: #CBD5E1 !important;
  }

  .tradie-notification {
    display: none;
  }
}

/* Tradie Notification & Lead Flow */
.tradie-notification {
  position: absolute;
  right: -280px;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  background: #1F2937;
  border: 1px solid #374151;
  border-radius: 16px;
  padding: 16px;
  width: 260px;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  z-index: 5;
}

.tradie-notification.visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Lead Flow Particle */
.lead-particle {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  /* Start from center of device */
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 20;
  box-shadow: 0 0 10px var(--color-accent);
}

.lead-particle.animate {
  animation: sendLead 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes sendLead {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(150px, -100px) scale(1.5);
    /* Arc path */
  }

  100% {
    opacity: 0;
    transform: translate(300px, -50%) scale(0.5);
    /* End at notification */
  }
}

@media (max-width: 1400px) {
  .tradie-notification {
    right: -20px;
    top: 20%;
  }
}

@media (max-width: 1024px) {
  .tradie-notification {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 20px auto;
    opacity: 1;
    /* Always show on mobile */
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 100px;
    /* Reduced from default */
    padding-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .nav-pill {
    width: 90%;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .heading-display {
    font-size: 3rem;
  }

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

  .bento-item.large {
    grid-column: span 1;
  }



  .floating-ui {
    display: none;
  }

  /* Hide complex floating elements on mobile */
}

/* Verified Trades Card */
.verified-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.toggle-switch {
  width: 40px;
  height: 24px;
  background: #E5E7EB;
  border-radius: 99px;
  position: relative;
  transition: all 0.3s;
}

.toggle-switch.active {
  background: var(--color-accent);
}

.toggle-knob {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all 0.3s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.toggle-switch.active .toggle-knob {
  transform: translateX(16px);
}

.badge-green {
  background: #DEF7EC;
  color: #03543F;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

/* Installer Form */
.installer-form-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.installer-form {
  margin-top: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .device-frame-wrapper {
    height: 60vh !important;
    max-width: 280px !important;
  }

  .demo-text {
    bottom: 1.5rem !important;
  }
}

/* Demo layout visibility */
.demo-desktop {
  display: flex;
  flex-direction: column;
}

.demo-mobile-stack {
  display: none;
}

@media (max-width: 1024px) {
  .demo-section {
    height: auto !important;
    padding: 48px 0 !important;
  }

  .demo-desktop {
    display: none !important;
  }

  .demo-mobile-stack {
    display: flex !important;
    flex-direction: column;
    gap: 32px;
    padding: 0 var(--spacing-md);
  }

  .mobile-step-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .demo-mobile-stack .device-frame {
    width: 92%;
    max-width: 340px;
    height: 420px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  }

  .mobile-step-text {
    background: rgba(17, 24, 39, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 1.5rem;
    color: white;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  }

  /* hide desktop-specific elements on mobile */
  .demo-text,
  .demo-step-text,
  .device-frame-wrapper {
    display: none !important;
  }
}

/* Mobile stack specifics */
@media (max-width: 1024px) {
  .demo-section {
    height: auto !important;
    padding: 32px 0 48px !important;
  }

  .demo-mobile-stack .device-frame {
    position: relative !important;
    display: block !important;
    width: 92% !important;
    max-width: 340px !important;
    height: 460px !important;
    overflow: hidden !important;
    background: white !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45) !important;
  }

  .demo-mobile-stack .device-screen {
    opacity: 1 !important;
    pointer-events: all !important;
  }

  .demo-mobile-stack {
    gap: 24px !important;
  }

  .mobile-step-block {
    gap: 14px !important;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.form-group input {
  padding: 0.75rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}
