/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f8fafc;
  color: #334155;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ========== VARIABLES & DESIGN SYSTEM (Light Theme) ========== */
:root {
  --primary: #4ECDC4;
  --primary-dark: #37b0a8;
  --primary-rgb: 78, 205, 196;
  
  --bg-page: #f8fafc;
  --bg-section: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  
  --border: rgba(15, 23, 42, 0.06);
  --border-hover: rgba(78, 205, 196, 0.4);
  
  --text-primary: #0f172a;       /* Dark Slate for headings */
  --text-secondary: #475569;     /* Medium Slate for body */
  --text-muted: #64748b;         /* Light Slate for muted text */
  --text-light: #94a3b8;
  
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 10px 24px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 0 40px rgba(78, 205, 196, 0.12);
  
  --font-heading: 'Outfit', sans-serif;
  --max-width: 1200px;
}

.accent { color: var(--primary); }
.gradient-text {
  background: linear-gradient(135deg, var(--primary), #3caaa0, #2a8e85);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-card.reveal, .step-card.reveal, .pricing-card.reveal {
  transition-delay: calc(var(--delay, 0) * 0.1s);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ========== LOGO BRANDING (Sidebar Style) ========== */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-image {
  width: 130px;
  height: 50px;
  background-color: var(--primary);
  mask: url('./assets/gms-logo.png') no-repeat center;
  mask-size: contain;
  -webkit-mask: url('./assets/gms-logo.png') no-repeat center;
  -webkit-mask-size: contain;
  transition: all 0.3s ease;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding-top: 10px;
  transition: all 0.3s ease;
}

.logo-text-primary {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary);
  line-height: 0.9;
  letter-spacing: -0.5px;
}

.logo-text-secondary {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.6rem;
  color: var(--text-muted);
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Footer-specific logo overrides if needed */
.footer-logo {
  margin-bottom: 15px;
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover { color: var(--primary-dark); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-nav-cta {
  padding: 10px 24px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(78, 205, 196, 0.2);
}
.btn-nav-cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.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); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 80px;
  overflow: hidden;
  background-color: var(--bg-page);
}
.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}
.blob-1 {
  width: 500px; height: 500px;
  background: rgba(var(--primary-rgb), 0.25);
  top: -10%; left: -5%;
  animation: float 15s ease-in-out infinite alternate;
}
.blob-2 {
  width: 350px; height: 350px;
  background: rgba(45, 156, 219, 0.18);
  bottom: 10%; right: -5%;
  animation: float 12s ease-in-out infinite alternate-reverse;
}
.blob-3 {
  width: 250px; height: 250px;
  background: rgba(var(--primary-rgb), 0.15);
  top: 50%; left: 40%;
  animation: float 18s ease-in-out infinite alternate;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.8) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.8) 0%, transparent 70%);
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.08); }
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 24px;
}
.hero-badge svg {
  color: var(--primary);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 8px 24px rgba(78, 205, 196, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(78, 205, 196, 0.45);
  background: linear-gradient(135deg, var(--primary-dark), #2c9a92);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: #ffffff;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  border-color: rgba(var(--primary-rgb), 0.4);
  color: var(--primary-dark);
  background: rgba(var(--primary-rgb), 0.02);
  transform: translateY(-1px);
}
.btn-lg { font-size: 1rem; }

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-item svg { color: var(--primary-dark); flex-shrink: 0; }

/* ========== HERO MOCKUP (Light Mode Design) ========== */
.hero-visual { position: relative; }
.hero-mockup { position: relative; }
.mockup-window {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
}
.mockup-dots {
  display: flex;
  gap: 6px;
  padding: 14px 16px;
  background: #f8fafc;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
}
.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

.mockup-content {
  display: flex;
  padding: 0;
  min-height: 280px;
  background: #f8fafc;
}
.mockup-sidebar {
  width: 60px;
  background: #ffffff;
  border-right: 1px solid rgba(15, 23, 42, 0.06);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.m-sidebar-item {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #f1f5f9;
}
.m-sidebar-item.active {
  background: var(--primary);
  box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.3);
}
.mockup-main {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.m-header {
  height: 12px;
  width: 40%;
  background: #e2e8f0;
  border-radius: 6px;
}
.m-cards {
  display: flex;
  gap: 10px;
}
.m-card {
  flex: 1;
  height: 60px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.05);
}
.m-chart {
  flex: 1;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  min-height: 100px;
}
.mockup-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60px;
  background: rgba(var(--primary-rgb), 0.08);
  filter: blur(40px);
  border-radius: 50%;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer {
  background: linear-gradient(90deg, #ffffff 25%, #f1f5f9 50%, #ffffff 75%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

/* ========== SECTIONS ========== */
.features, .how-it-works, .pricing {
  padding: 110px 0;
  position: relative;
}
.features {
  background: #ffffff;
}
.how-it-works {
  background: #f8fafc;
}
.pricing {
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== FEATURES GRID ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.feature-card:hover::before { opacity: 1; }

.feature-card-wide {
  grid-column: span 3;
  display: flex;
  align-items: center;
  gap: 30px;
}
.feature-card-wide p { max-width: 700px; }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  margin-bottom: 24px;
  flex-shrink: 0;
}
.feature-card-wide .feature-icon { margin-bottom: 0; }
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========== STEPS ========== */
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  flex: 1;
  max-width: 340px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}
.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  box-shadow: 0 4px 10px rgba(78, 205, 196, 0.3);
}
.step-icon {
  color: var(--primary-dark);
  margin-bottom: 24px;
}
.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.step-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.step-connector {
  color: var(--primary);
  flex-shrink: 0;
  opacity: 0.6;
}

/* ========== PRICING ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}
.pricing-card-featured {
  border-color: var(--primary);
  border-width: 2px;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(78, 205, 196, 0.12);
  transform: scale(1.03);
}
.pricing-card-featured:hover { 
  transform: scale(1.03) translateY(-5px); 
  box-shadow: 0 25px 50px rgba(78, 205, 196, 0.18);
}
.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(78, 205, 196, 0.25);
}
.pricing-header {
  margin-bottom: 28px;
}
.pricing-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-primary);
}
.period {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}
.pricing-save {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.pricing-features li svg { color: var(--primary-dark); flex-shrink: 0; }

.btn-pricing {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.btn-pricing:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: rgba(var(--primary-rgb), 0.02);
  transform: translateY(-1px);
}
.btn-pricing-featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  border: none;
  box-shadow: 0 6px 18px rgba(78, 205, 196, 0.2);
}
.btn-pricing-featured:hover {
  background: linear-gradient(135deg, var(--primary-dark), #2c9a92);
  box-shadow: 0 10px 24px rgba(78, 205, 196, 0.35);
  color: #ffffff;
}

/* ========== FINAL CTA ========== */
.final-cta {
  padding: 60px 0 110px;
  background: #f8fafc;
}
.cta-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.cta-blob-1 {
  width: 300px; height: 300px;
  background: rgba(var(--primary-rgb), 0.2);
  top: -50%; left: -10%;
}
.cta-blob-2 {
  width: 250px; height: 250px;
  background: rgba(45, 156, 219, 0.15);
  bottom: -40%; right: -5%;
}
.cta-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative;
}
.cta-card p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}
.cta-card .btn-primary { position: relative; }

/* ========== FOOTER ========== */
.footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 70px 0 40px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 8px;
  max-width: 300px;
}
.footer-links {
  display: flex;
  gap: 80px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary-dark); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-cta-group { justify-content: center; }
  .hero-trust { justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-wide { grid-column: span 2; }
  .steps-grid { flex-direction: column; gap: 36px; }
  .step-connector { transform: rotate(90deg); opacity: 0.4; }
  .step-card { max-width: 400px; width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; gap: 32px; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-5px); }
  .footer-content { flex-direction: column; gap: 40px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  }
  .hamburger { display: flex; }
  .hero { padding: 110px 16px 60px; min-height: auto; }
  .hero-title { font-size: 2.1rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-trust { flex-direction: column; align-items: center; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-wide { grid-column: span 1; flex-direction: column; text-align: center; }
  .feature-card-wide .feature-icon { margin-bottom: 20px; }
  .cta-card { padding: 60px 24px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .section-container { padding: 0 16px; }
  .features, .how-it-works, .pricing { padding: 70px 0; }
}
