/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLE DEFINITIONS
   ========================================================================== */
:root {
  /* Colors */
  --primary-green: #3DBE6C;
  --primary-green-hover: #2EA65A;
  --primary-green-light: #EAF8EF;
  --primary-green-dark: #1F7C43;
  --dark-gray: #1D1D1F;
  --medium-gray: #86868B;
  --light-gray: #F5F5F7;
  --white: #FFFFFF;
  
  /* State Colors */
  --red: #FF3B30;
  --soft-red: #FFEAEA;
  --orange: #FF9500;
  --soft-orange: #FFF4E5;
  --purple: #AF52DE;
  --soft-purple: #F7EBFD;
  --blue: #007AFF;
  --soft-blue: #E5F2FF;
  
  /* Fonts */
  --font-header: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Borders & Shadows */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 36px;
  --border-color: rgba(29, 29, 31, 0.08);
  --border-color-light: rgba(29, 29, 31, 0.04);
  --border-color-white: rgba(255, 255, 255, 0.15);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 10px 30px rgba(61, 190, 108, 0.25);
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
}

/* ==========================================================================
   RESET & FOUNDATIONS
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Blurry Gradients (Stripe Style) */
.bg-gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
}

.bg-gradient-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-green-light) 0%, rgba(61, 190, 108, 0.15) 100%);
  top: -200px;
  right: -100px;
}

.bg-gradient-2 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(61, 190, 108, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  top: 800px;
  left: -200px;
}

.bg-gradient-3 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--primary-green-light) 0%, rgba(61, 190, 108, 0.05) 100%);
  bottom: 200px;
  right: -200px;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark-gray);
}

p {
  color: var(--medium-gray);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ==========================================================================
   LAYOUTS & CONTAINER
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.max-width-md {
  max-width: 720px;
}

.grid {
  display: grid;
  gap: 32px;
}

.grid-2-col {
  grid-template-columns: 1fr 1fr;
}

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

.grid-4-col {
  grid-template-columns: repeat(4, 1fr);
}

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

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

section {
  padding: 100px 0;
  position: relative;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(61, 190, 108, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(61, 190, 108, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: var(--light-gray);
  color: var(--dark-gray);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: #EAEAEA;
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
  white-space: nowrap;
}


.btn-full {
  width: 100%;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

#site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 70px;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  overflow: visible;
}

/* Logo Design */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-header);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--dark-gray);
  flex-shrink: 0;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background-color: var(--primary-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 4px 8px rgba(61, 190, 108, 0.2);
}

.logo-text {
  letter-spacing: -0.5px;
}

.logo-badge {
  font-size: 0.75rem;
  font-weight: 600;
  background-color: var(--primary-green-light);
  color: var(--primary-green-dark);
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 4px;
  vertical-align: middle;
}

/* Navigation links */
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--medium-gray);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: var(--dark-gray);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Language Switcher — compact pill */
.lang-switcher {
  display: flex;
  align-items: center;
  background-color: var(--light-gray);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 3px;
  gap: 0;
  flex-shrink: 0;
}

.lang-btn {
  background: none;
  border: none;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--medium-gray);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.lang-btn.active {
  background-color: var(--white);
  color: var(--primary-green-dark);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
}

.lang-btn:hover:not(.active) {
  color: var(--dark-gray);
}

.lang-divider {
  display: none;
}

/* Mobile language row */
.mobile-lang-row {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.mobile-lang-row .lang-btn {
  font-size: 1rem;
  padding: 10px 24px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  background-color: var(--light-gray);
}

.mobile-lang-row .lang-btn.active {
  background-color: var(--primary-green-light);
  color: var(--primary-green-dark);
  border-color: var(--primary-green);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--dark-gray);
  cursor: pointer;
  padding: 8px;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 80%;
}

.mobile-nav-link {
  text-decoration: none;
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-gray);
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--primary-green);
}

.mobile-nav-link.btn {
  font-size: 1.1rem;
  width: 100%;
  padding: 14px;
  text-align: center;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
}

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

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-green-light);
  border: 1px solid rgba(61, 190, 108, 0.15);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.pill-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-green);
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

.pill-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-green-dark);
}

.hero-headline {
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--dark-gray);
}

.hero-subheadline {
  font-size: 1.25rem;
  color: var(--medium-gray);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--medium-gray);
}

.trust-item i {
  color: var(--primary-green);
}

/* ==========================================================================
   MOBILE MOCKUP WITH SURROUNDING VISUALS
   ========================================================================== */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.mockup-container {
  position: relative;
  width: 320px;
  margin: 0 auto;
}

/* Phone physical frame */
.phone-frame {
  position: relative;
  width: 100%;
  height: 650px;
  background-color: #000000;
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 4px #222;
  overflow: hidden;
  border: 4px solid #333333;
}

.phone-speaker {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #333;
  border-radius: 2px;
  z-index: 10;
}

.phone-camera {
  position: absolute;
  top: 14px;
  left: calc(50% + 45px);
  width: 10px;
  height: 10px;
  background-color: #111;
  border-radius: 50%;
  z-index: 10;
}

/* Screen content layout */
.phone-screen {
  background-color: var(--light-gray);
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Status Bar */
.screen-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #000000;
  z-index: 5;
}

.status-icons {
  display: flex;
  gap: 4px;
}

/* Dashboard Header inside phone */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.app-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-avatar {
  width: 32px;
  height: 32px;
  background-color: var(--primary-green-light);
  color: var(--primary-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.app-store-name {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1px;
}

.app-store-loc {
  font-size: 0.7rem;
  color: var(--medium-gray);
}

.status-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.active-badge {
  background-color: var(--primary-green-light);
  color: var(--primary-green-dark);
}

.paused-badge {
  background-color: var(--soft-red);
  color: var(--red);
}

.badge-pulse {
  width: 6px;
  height: 6px;
  background-color: var(--primary-green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-green 1.5s infinite;
}

/* Scroll Content */
.app-scroll-content {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 24px;
}

/* Custom Scrollbar for dashboard mockup */
.app-scroll-content::-webkit-scrollbar {
  width: 3px;
}
.app-scroll-content::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.1);
  border-radius: 10px;
}

.app-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Summary Card */
.stats-summary-card {
  background: linear-gradient(180deg, var(--white) 0%, #FAFAFA 100%);
}

.stats-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.card-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--medium-gray);
}

.stats-big-value {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark-gray);
  letter-spacing: -0.5px;
}

.currency {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--medium-gray);
}

.stats-change {
  font-size: 0.7rem;
  color: var(--primary-green-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.stats-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 12px;
}

.mini-stat {
  display: flex;
  flex-direction: column;
}

.mini-label {
  font-size: 0.65rem;
  color: var(--medium-gray);
  margin-bottom: 2px;
}

.mini-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-gray);
}

/* Active Offer Card (With Generated Image) */
.active-offer-card {
  padding: 0;
  overflow: hidden;
}

.offer-image-container {
  position: relative;
  height: 120px;
  width: 100%;
  overflow: hidden;
}

.offer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: var(--primary-green);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.offer-details {
  padding: 12px;
}

.offer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.offer-title {
  font-size: 0.8rem;
  font-weight: 700;
}

.offer-price-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-green-dark);
}

.old-price {
  text-decoration: line-through;
  color: var(--medium-gray);
  font-size: 0.65rem;
  font-weight: 500;
  margin-left: 2px;
}

.offer-desc {
  font-size: 0.7rem;
  color: var(--medium-gray);
  line-height: 1.4;
  margin-bottom: 10px;
}

.offer-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 8px;
}

.pickup-time {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--medium-gray);
}

/* iOS Toggle Switch Rendering */
.toggle-switch {
  position: relative;
  width: 32px;
  height: 18px;
  background-color: #E5E5EA;
  border-radius: 9px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: inline-block;
}

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

.switch-handle {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  background-color: var(--white);
  border-radius: 50%;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.toggle-switch.active .switch-handle {
  transform: translateX(14px);
}

/* Activity Card */
.card-title-sm {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark-gray);
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.activity-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--white);
}

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

.activity-info {
  display: flex;
  flex-direction: column;
}

.activity-text {
  font-size: 0.68rem;
  color: var(--dark-gray);
}

.activity-time {
  font-size: 0.6rem;
  color: var(--medium-gray);
}

/* Stripe style Floating Badges */
.floating-badge {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 18px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 15;
}

.badge-icon {
  width: 32px;
  height: 32px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
}

.floating-badge h6 {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.floating-badge p {
  font-size: 0.72rem;
  color: var(--medium-gray);
  font-weight: 500;
}

.badge-top-left {
  top: 80px;
  left: -80px;
}

.badge-bottom-right {
  bottom: 80px;
  right: -80px;
}

/* ==========================================================================
   PARTNERS SECTION / LOGO MARQUEE
   ========================================================================== */
.partners-section {
  padding: 40px 0;
  border-top: 1px solid var(--border-color-light);
  border-bottom: 1px solid var(--border-color-light);
  overflow: hidden;
}

.partners-title {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--medium-gray);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.partners-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.partner-logo {
  font-family: var(--font-header);
  font-weight: 800;
  font-size: 1.6rem;
  color: #D2D2D7;
  letter-spacing: 2px;
  transition: color 0.3s ease;
  user-select: none;
}

.partner-logo:hover {
  color: var(--medium-gray);
}

/* ==========================================================================
   PROBLEM STATEMENT SECTION
   ========================================================================== */
.problem-section {
  background-color: var(--white);
}

.section-header {
  margin-bottom: 60px;
}

.section-tagline {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-green);
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
}

.cards-grid {
  margin-bottom: 40px;
}

.problem-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61, 190, 108, 0.2);
}

.card-icon-container {
  width: 54px;
  height: 54px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 24px;
}

.card-heading {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.35;
}

.card-description {
  font-size: 0.92rem;
  color: var(--medium-gray);
  line-height: 1.5;
}

/* Colors for problem card icons */
.bg-soft-red { background-color: var(--soft-red); }
.text-red { color: var(--red); }
.bg-soft-orange { background-color: var(--soft-orange); }
.text-orange { color: var(--orange); }
.bg-soft-purple { background-color: var(--soft-purple); }
.text-purple { color: var(--purple); }
.bg-soft-blue { background-color: var(--soft-blue); }
.text-blue { color: var(--blue); }

/* Highlight Statement banner */
.problem-highlight-container {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.problem-highlight-quote {
  font-family: var(--font-header);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--dark-gray);
  background-color: var(--primary-green-light);
  border: 1px solid rgba(61, 190, 108, 0.12);
  padding: 16px 36px;
  border-radius: var(--border-radius-md);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  max-width: 90%;
  line-height: 1.3;
}

.quote-symbol {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  color: var(--primary-green);
  line-height: 0;
  vertical-align: middle;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.how-it-works-section {
  background-color: var(--light-gray);
}

.steps-grid {
  margin-top: 50px;
}

.step-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.02);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-green-light);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-header);
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 24px;
}

.step-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--medium-gray);
  margin-bottom: 24px;
}

/* Step mock visual displays inside cards */
.step-visual {
  height: 60px;
  background-color: var(--light-gray);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 16px;
}

.mock-ui-control {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 0.8rem;
  font-weight: 700;
}

.badge-add {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.72rem;
}

.mock-ui-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-avatar-sm {
  width: 24px;
  height: 24px;
  background-color: #D2D2D7;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.user-action-bubble {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.mock-ui-payout {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 0.8rem;
  font-weight: 700;
}

.payout-check {
  color: var(--primary-green-dark);
}

.payout-amount {
  color: var(--dark-gray);
}

/* ==========================================================================
   INTERACTIVE REVENUE CALCULATOR
   ========================================================================== */
.calculator-section {
  background-color: var(--white);
}

.calc-layout-grid {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  gap: 0;
}

.calc-inputs-card {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-intro-text {
  margin-bottom: 32px;
}

.calc-field {
  margin-bottom: 32px;
}

.calc-field:last-child {
  margin-bottom: 0;
}

.calc-label {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-gray);
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Tab selector */
.business-type-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.tab-btn {
  background-color: var(--light-gray);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-sm);
  padding: 12px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--medium-gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  background-color: #EAEAEA;
  color: var(--dark-gray);
}

.tab-btn.active {
  background-color: var(--white);
  color: var(--primary-green-dark);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-sm);
}

/* Custom premium slider */
.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.slider-value-display {
  font-family: var(--font-header);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--primary-green-dark);
}

.premium-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--light-gray);
  outline: none;
  margin-bottom: 8px;
}

.premium-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-green);
  cursor: pointer;
  border: 4px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.1s ease;
}

.premium-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: var(--primary-green-hover);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--medium-gray);
  font-weight: 500;
}

/* Outputs Panel */
.calc-outputs-card {
  background: linear-gradient(135deg, #153A23 0%, #0C2114 100%);
  padding: 56px;
  color: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.output-green-overlay {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(61, 190, 108, 0.15) 0%, rgba(0,0,0,0) 70%);
  top: -150px;
  right: -150px;
  pointer-events: none;
}

.output-title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.output-primary-value {
  margin-bottom: 32px;
}

.output-lbl {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 6px;
}

.output-number {
  font-family: var(--font-header);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.out-currency {
  font-size: 1.5rem;
  font-weight: 700;
}

.output-explanation {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.output-divider {
  height: 1px;
  background-color: var(--border-color-white);
  margin-bottom: 32px;
}

.output-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
  margin-bottom: 40px;
}

.output-stat {
  display: flex;
  flex-direction: column;
}

.output-val {
  font-family: var(--font-header);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 2px;
}

.output-val-sub {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.leaf-grow-icon {
  font-size: 1.25rem;
  filter: drop-shadow(0 0 8px rgba(61, 190, 108, 0.4));
  animation: float 3s ease-in-out infinite;
}

/* ==========================================================================
   KEY BENEFITS SECTION
   ========================================================================== */
.benefits-section {
  background-color: var(--light-gray);
}

.benefits-grid {
  margin-top: 50px;
}

.benefit-item-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 24px;
  border: 1px solid rgba(0,0,0,0.01);
  transition: all 0.3s ease;
}

.benefit-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(61, 190, 108, 0.1);
}

.benefit-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-color: var(--primary-green-light);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(61, 190, 108, 0.1);
}

.benefit-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.benefit-text p {
  font-size: 0.95rem;
  color: var(--medium-gray);
  line-height: 1.55;
}

/* ==========================================================================
   TESTIMONIAL SECTION
   ========================================================================== */
.testimonial-section {
  background-color: var(--white);
}

.testimonial-card {
  background: linear-gradient(180deg, var(--white) 0%, #FAFAFA 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-xl);
  padding: 60px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.testimonial-visual {
  position: relative;
  background-color: var(--primary-green-light);
  border-radius: var(--border-radius-lg);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 40px rgba(61, 190, 108, 0.1);
}

.testimonial-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}

.t-stat-card {
  background-color: var(--white);
  padding: 14px 24px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(61, 190, 108, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
}

.t-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--medium-gray);
  margin-bottom: 2px;
}

.t-stat-value {
  font-family: var(--font-header);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-green-dark);
}

.testimonial-quote-icon {
  position: absolute;
  font-size: 14rem;
  color: rgba(61, 190, 108, 0.04);
  bottom: -40px;
  right: -20px;
  line-height: 0;
  z-index: 1;
}

.stars-row {
  display: flex;
  gap: 4px;
  color: #FFCC00;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-family: var(--font-header);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--dark-gray);
  margin-bottom: 24px;
}

.testimonial-author h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.testimonial-author p {
  font-size: 0.85rem;
  color: var(--medium-gray);
  font-weight: 500;
}

/* ==========================================================================
   PARTNERSHIP REQUEST FORM
   ========================================================================== */
.partner-form-section {
  background-color: var(--light-gray);
  border-top: 1px solid var(--border-color-light);
}

.form-wrapper {
  background-color: var(--white);
  border-radius: var(--border-radius-xl);
  padding: 56px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.02);
  margin-top: 40px;
  position: relative;
  min-height: 500px;
}

.partner-form {
  transition: all 0.3s ease;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
}

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

.form-full-width {
  grid-column: span 2;
}

.form-group label {
  font-family: var(--font-header);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: var(--medium-gray);
  font-size: 0.95rem;
  pointer-events: none;
}

.phone-prefix {
  position: absolute;
  left: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-gray);
  border-right: 1px solid var(--border-color);
  padding-right: 8px;
  height: 20px;
  display: flex;
  align-items: center;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px 14px 44px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--white);
  outline: none;
  transition: all 0.2s ease;
  color: var(--dark-gray);
}

/* Custom left padding for phone input */
.form-group input[type="tel"] {
  padding-left: 68px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2386868B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.form-group input::placeholder {
  color: #B2B2B7;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(61, 190, 108, 0.12);
}

.form-helper {
  font-size: 0.78rem;
  color: var(--medium-gray);
  margin-top: 6px;
}

/* Honeypot — botlarni tutish uchun, ekranda ham, skrin-riderda ham ko'rinmaydi */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Form Checkbox Styling */
.form-terms {
  margin-top: 24px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  font-size: 0.85rem;
  user-select: none;
  line-height: 1.4;
  color: var(--medium-gray);
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  transition: all 0.2s ease;
}

.checkbox-container:hover input ~ .checkmark {
  border-color: var(--primary-green);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.terms-text a {
  color: var(--primary-green-dark);
  font-weight: 600;
  text-decoration: none;
}

.terms-text a:hover {
  text-decoration: underline;
}

.form-actions {
  margin-top: 32px;
}

/* Success View */
.form-success-state {
  display: none;
  text-align: center;
  padding: 20px 0;
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.form-success-state.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-icon-container {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--primary-green-light);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(61, 190, 108, 0.15);
}

.success-title {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.success-message {
  font-size: 1.05rem;
  color: var(--medium-gray);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.5;
}

.success-next-steps {
  background-color: var(--light-gray);
  border-radius: var(--border-radius-md);
  padding: 24px 32px;
  text-align: left;
  width: 100%;
  max-width: 480px;
  margin-bottom: 36px;
  border: 1px solid var(--border-color-light);
}

.success-next-steps h5 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: var(--dark-gray);
}

.success-next-steps ul {
  list-style: none;
}

.success-next-steps li {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.success-next-steps li:last-child {
  margin-bottom: 0;
}

.success-next-steps li i {
  margin-top: 3px;
  font-size: 0.85rem;
  width: 16px;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION STYLE)
   ========================================================================== */
.faq-section {
  background-color: var(--white);
}

.faq-accordion-wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background-color: var(--white);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover,
.faq-item.active {
  border-color: rgba(61, 190, 108, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-header);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-gray);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  outline: none;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--light-gray);
  color: var(--medium-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background-color: var(--primary-green-light);
  color: var(--primary-green-dark);
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--medium-gray);
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #0A0A0A;
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 40px;
  border-top: 1px solid #1C1C1E;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-col .logo {
  color: var(--white);
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.footer-links-col a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(61, 190, 108, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(61, 190, 108, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(61, 190, 108, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes float-delayed {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 30px));
  }
}

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

/* Animation Utilities */
.animate-fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up {
  opacity: 0;
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.animate-slide-up-delayed {
  opacity: 0;
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.animate-slide-up-more {
  opacity: 0;
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.animate-fade-in-delayed {
  opacity: 0;
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.animate-fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float-delayed 4.5s ease-in-out infinite;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  
  .calc-inputs-card,
  .calc-outputs-card {
    padding: 40px;
  }
  
  .grid-4-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  section {
    padding: 80px 0;
  }
  
  .grid-2-col {
    grid-template-columns: 1fr;
  }
  
  .hero-grid {
    gap: 60px;
  }
  
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .calc-layout-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .testimonial-visual {
    height: 200px;
  }
  
  .testimonial-stats {
    flex-direction: row;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-full-width {
    grid-column: span 1;
  }
  
  .form-wrapper {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  /* Navigation mobile menu triggers */
  .desktop-nav,
  .desktop-only {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .grid-3-col {
    grid-template-columns: 1fr;
  }
  
  .grid-4-col {
    grid-template-columns: 1fr;
  }
  
  .problem-highlight-quote {
    font-size: 1.35rem;
    padding: 12px 24px;
  }
  
  .section-title {
    font-size: 2.1rem;
  }
  
  .floating-badge {
    display: none; /* Hide floating badges on smaller viewports to prevent layout break */
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.4rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .business-type-tabs {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 30px;
  }
  
  .testimonial-quote {
    font-size: 1.25rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
