@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --bg: #ffffff;
  --bg-alt: #f4f6f8;
  --card: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --accent: #0d9488;
  --accent-strong: #0f766e;
  --accent-soft: #f0fdfa;
  --highlight: #ccfbf1;
  --line: #e5e7eb;
  --shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
  --radius: 32px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background-color: var(--bg);
  background-image: radial-gradient(var(--line) 1px, transparent 1px);
  background-size: 32px 32px;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(13, 148, 136, 0.03), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

/* Icons */
.icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
}

.icon-lg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
}

.icon-xl {
  width: 64px;
  height: 64px;
  stroke-width: 1;
  color: var(--accent);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-auth {
  display: flex;
  gap: 12px;
}

.btn.sm {
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: 8px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink);
}

/* Footer */
/* Footer Redesign */
.footer {
  background: var(--bg-alt);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  margin-bottom: 64px;
}

.footer-brand p {
  color: var(--text-light);
  margin: 24px 0 32px;
  max-width: 320px;
  line-height: 1.6;
}

.footer-logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 16px;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.copyright, .legal-links a {
  font-size: 0.9rem;
  color: var(--text-light);
}

.legal-links {
  display: flex;
  gap: 24px;
}

.legal-links a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-links a:hover {
  color: var(--accent);
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
}

/* Page Header */
.page-header {
  padding: 80px 0 40px;
  text-align: center;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.page-header .lead {
  max-width: 600px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-item {
  text-align: center;
  padding: 24px;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: start;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  position: relative;
}

.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: 0 20px 40px -12px rgba(13, 148, 136, 0.15);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  margin: 16px 0;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li.included .icon {
  color: var(--accent);
}

.pricing-features li.excluded {
  color: var(--muted);
  opacity: 0.6;
}

.pricing-features li.excluded .icon {
  color: var(--muted);
}



/* Contact Split Layout */
.contact-hero {
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text {
  position: sticky;
  top: 40px;
}

.contact-text h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  line-height: 1.1;
}

.contact-text .lead {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 500px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--ink);
}

.detail-item a,
.detail-item p {
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  line-height: 1.5;
}

.detail-item a:hover {
  color: var(--accent);
}

.sub-detail {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 4px;
}

.support-box {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--line);
}

.support-box h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.support-box p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

.support-box a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.contact-form-container {
  width: 100%;
}

@media (max-width: 992px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-text {
    position: static;
  }

  .contact-text h1 {
    font-size: 2.5rem;
  }
}

/* Auth Pages */
.auth-page {
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.auth-container {
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.auth-logo {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 32px;
}

.auth-form {
  text-align: left;
}

.auth-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 0.9rem;
}

.auth-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

/* Utilities */
.full-width {
  width: 100%;
}

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

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  margin-top: 16px;
}

.link-arrow::after {
  content: "→";
  transition: transform 0.2s ease;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.cta-box {
  background: var(--ink);
  background: linear-gradient(135deg, var(--ink) 0%, #1f2937 100%);
  color: #fff;
  border-radius: 32px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .cta-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 0 20px;
  }
  
  .cta-text {
    max-width: 60%;
  }
  
  .cta-action {
    flex-shrink: 0;
  }
}

.cta-box h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-box p.lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  margin-bottom: 0;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.inverse {
  background: #fff;
  color: var(--ink);
}

.btn.inverse:hover {
  background: var(--accent);
  color: #fff;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--card);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.quote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
  flex-grow: 1;
}

.author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.author div {
  display: flex;
  flex-direction: column;
}

.author strong {
  color: var(--ink);
  font-size: 0.95rem;
}

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

/* Responsive adjustments */
@media (max-width: 900px) {
  .mobile-toggle {
    display: block;
    z-index: 101;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 99;
  }

  .nav-links.active {
    transform: translateY(0);
    display: flex;
  }

  .nav-links a {
    font-size: 1.5rem;
    color: var(--ink);
  }

  .nav-auth {
    display: none; /* Simplify for mobile for now, or add to menu */
  }
  
  .nav-links.active ~ .nav-auth {
    /* If we wanted to show auth buttons in mobile menu, we'd need to restructure HTML or use JS to move them */
    display: none; 
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

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

main {
  display: block;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 600;
}

p {
  margin: 0 0 24px;
  line-height: 1.7;
  color: var(--muted);
  font-size: 1.125rem;
}

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 80px;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 4vw + 1rem, 3.5rem);
  color: var(--ink);
}

.section-heading p {
  font-size: 1.25rem;
  max-width: 60ch;
}

.hero {
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 80px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(3.5rem, 5vw + 1rem, 5.5rem);
  color: var(--ink);
  margin-bottom: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
}

.lead {
  font-size: 1.25rem;
  margin-bottom: 40px;
}

.cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  border-radius: 12px;
  padding: 16px 32px;
  border: 1px solid transparent;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn.primary {
  background: var(--ink);
  color: #fff;
}

.btn.primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px var(--accent);
}

.btn.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn.ghost:hover {
  border-color: var(--ink);
  background: transparent;
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, var(--highlight) 0%, transparent 70%);
  top: -20%;
  left: -20%;
  opacity: 0.5;
  z-index: -1;
}

.dashboard-frame {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
  position: relative;
  padding: 0;
}

.dashboard-frame:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0);
}

/* App Preview Styles */
.app-header {
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.app-url {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--muted);
  flex: 1;
  text-align: center;
}

.app-body {
  display: flex;
  height: 300px;
  background: #fff;
}

.app-sidebar {
  width: 60px;
  border-right: 1px solid var(--line);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f8fafc;
}

.sidebar-item {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--line);
  opacity: 0.5;
}

.sidebar-item.active {
  background: var(--accent);
  opacity: 1;
}

.app-main {
  flex: 1;
  padding: 24px;
  background: #fff;
}

.app-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.card-row {
  display: flex;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  align-items: center;
}

.card-row:last-child {
  border-bottom: none;
}

.card-row.header {
  background: #f8fafc;
  font-weight: 600;
  color: var(--muted);
}

.col-1 { flex: 2; }
.col-2 { flex: 1; }
.col-3 { flex: 1; text-align: right; }

.status-pill {
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 600;
}

.status-pill.ok { background: #d1fae5; color: #059669; }
.status-pill.warning { background: #fef3c7; color: #d97706; }
.status-pill.danger { background: #fee2e2; color: #dc2626; }

/* Overlay */
.preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.overlay-badge {
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 16px;
  box-shadow: 0 10px 25px -5px rgba(13, 148, 136, 0.4);
}

.overlay-badge .icon {
  width: 20px;
  height: 20px;
}

.preview-overlay p {
  font-weight: 500;
  color: var(--ink);
  max-width: 250px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.card h3 {
  font-size: 1.75rem;
  color: var(--ink);
  margin-bottom: 16px;
}

.card h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 600;
}

.card-block + .card-block {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.list {
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--ink);
  font-size: 1rem;
}

.list li::before {
  content: "→";
  color: var(--accent);
  font-weight: 400;
  margin-right: 12px;
}

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 16px;
  color: var(--ink);
  font-size: 1rem;
}

.steps li {
  display: flex;
  gap: 16px;
  align-items: center;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 600;
  font-size: 0.9rem;
}

.principles {
  background: var(--bg-alt);
  border: none;
}

.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 0;
}

.checklist li {
  background: var(--card);
  border-radius: 20px;
  padding: 24px 24px 24px 60px;
  position: relative;
  border: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.checklist li:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.08);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230d9488' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7' /%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 0;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.form-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 48px;
  border: 1px solid var(--line);
  box-shadow: none;
  display: grid;
  gap: 20px;
}

.form-card h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

label {
  font-weight: 500;
  color: var(--ink);
  font-size: 0.9rem;
  margin-bottom: 4px;
  display: block;
}

input, textarea {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  background: var(--bg-alt);
  transition: all 0.2s ease;
  width: 100%;
}

input:focus, textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.form-card .btn {
  width: 100%;
  margin-top: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  animation: rise 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 120px 0 80px;
  }

  .section {
    padding: 80px 0;
  }
  
  .hero-copy h1 {
    font-size: 3rem;
  }
}

@media (max-width: 720px) {
  .cta {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-frame {
    width: 100%;
    transform: none;
  }
  
  .dashboard-frame:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto;
  }
}

/* Process Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.step-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--line);
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  opacity: 0.5;
}

.step-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-alt);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--ink);
}

.step-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.faq-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
}

.faq-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.05);
}

.faq-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.faq-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.faq-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact Form Enhancements */
.form-group {
  margin-bottom: 16px;
}

.input-icon {
  position: relative;
}

.input-icon .icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--muted);
  pointer-events: none;
}

.input-icon input,
.input-icon select {
  padding-left: 48px;
}

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

select {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  background: var(--bg-alt);
  transition: all 0.2s ease;
  width: 100%;
  appearance: none;
  cursor: pointer;
}

select:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px var(--accent-soft);
}

/* Utilities */
.mobile-only {
  display: none !important;
}

@media (max-width: 900px) {
  .mobile-only {
    display: block !important;
  }
}

