/* ==========================================
   GLOBAL STYLES
   ========================================== */
:root {
  --primary-color: #3a87ad;
  --primary-dark: #2a6582;
  --primary-light: #5ba3c9;
  --primary-color-rgb: 58, 135, 173;
}

/* Global Styles */
html, body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

ul {
  margin-bottom: 1rem;
}

* {
  font-family: 'Poppins', sans-serif;
}

/* ==========================================
   BUTTONS - FIXED HOVER STATES
   ========================================== */

/* Primary Button - Default (colored background) */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: white !important;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 135, 173, 0.3);
}

/* Primary Button Explicit Class */
.btn-primary {
  background-color: var(--primary-color);
  color: white !important;
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white !important;
}

/* Secondary Button (Outlined) */
.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color) !important;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white !important;
  transform: translateY(-2px);
}

/* White Button (for colored backgrounds) */
.btn-white {
  background-color: white;
  color: var(--primary-color) !important;
  border: 2px solid white;
}

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: white;
  color: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Large Button Modifier */
.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Button States */
.btn:active,
.btn:focus {
  outline: 2px solid rgba(58, 135, 173, 0.3);
  outline-offset: 2px;
}

.btn:disabled,
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #ccc;
  border-color: #ccc;
}

/* ==========================================
   CONTAINER & LAYOUT
   ========================================== */

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ==========================================
   SECTION HEADERS & BANNERS
   ========================================== */

/* Main Section Header Banner (full-width gradient banner) */
.main-section-header {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 60px 0;
  margin: 0;
}

/* Container inside the banner centers the text */
.main-section-header .container {
  text-align: center;
}

.main-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  color: white;
}

.main-section-header p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
  max-width: 900px;
  margin: 0 auto;
  color: white;
}

.main-section-header strong {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  color: white;
}

/* Section Title (centered title block) */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 2.2rem;
}

.section-title p {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
}

/* Section Subtitle */
.section-subtitle {
  text-align: center;
  margin: 3rem 0;
}

.section-subtitle h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.section-subtitle p {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
}

/* ==========================================
   COMMON CARD STYLES
   ========================================== */

/* Business Cards */
.business-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.business-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.business-card-header {
  padding: 1.5rem;
}

.business-card-header h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.business-card-header .subtitle {
  color: #666;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.business-card-header p {
  color: #555;
  line-height: 1.7;
}

/* Generic Cards */
.card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* ==========================================
   FEATURE BOXES & CATEGORIES
   ========================================== */

.feature-category {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-category:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.feature-category h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-description {
  color: #555;
  line-height: 1.7;
}

/* Stage Feature Groups */
.stage-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stage-feature-group {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.stage-feature-group:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stage-feature-group h5 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-weight: 700;
}

.stage-feature-group p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

/* ==========================================
   GRIDS
   ========================================== */

.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.ecosystem-grid,
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

/* ==========================================
   FOOTER ELEMENTS
   ========================================== */

.section-footer {
  margin-top: 2rem;
  text-align: center;
  padding: 2rem;
}

.section-footer p {
  color: #555;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

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

.mt-20 {
  margin-top: 1.25rem;
}

.mt-40 {
  margin-top: 2.5rem;
}

.mt-60 {
  margin-top: 3.75rem;
}

/* ==========================================
   NAVBAR STYLES
   ========================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo img {
  height: 40px;
}

.main-menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.2rem;
}

.main-menu li {
  margin-left: 0;
  display: flex;
  align-items: center;
}

.main-menu a {
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 0.7rem;
  display: flex;
  align-items: center;
}

.main-menu a:hover {
  color: var(--primary-color);
}

/* Desktop Dropdown Menus */
.main-menu .dropdown {
  position: relative;
}

.main-menu .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-menu .dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.main-menu .dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.main-menu .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 10px 0;
  z-index: 1000;
  min-width: 200px;
  padding-top: 15px;
}

/* Invisible bridge to prevent dropdown from closing */
.main-menu .dropdown-content::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
}

.main-menu .dropdown:hover .dropdown-content {
  display: block;
}

.main-menu .dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: #333 !important;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.main-menu .dropdown-content a:hover {
  background-color: #f5f7fa;
  color: var(--primary-color) !important;
  border-left-color: var(--primary-color);
}

/* Login/Signup buttons in navbar */
.login-btn {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color) !important;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background-color: var(--primary-color);
  color: white !important;
}

.signup-btn {
  background-color: var(--primary-color);
  color: white !important;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-color);
}

.signup-btn:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white !important;
}

/* User menu dropdown */
.user-menu {
  position: relative;
}

.user-menu-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  z-index: 100;
  min-width: 180px;
}

.user-menu:hover .user-menu-dropdown {
  display: block;
}

.user-menu-dropdown a {
  display: block;
  padding: 8px 15px;
  color: #333 !important;
  transition: all 0.2s ease;
}

.user-menu-dropdown a:hover {
  background-color: #f5f5f5;
  color: var(--primary-color) !important;
}

/* Mobile menu */
.hamburger-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;  /* ADD THIS LINE */
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: white;
  z-index: 1001;
  padding: 2rem;
  transition: right 0.3s ease;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.mobile-menu.active {
  right: 0;
}

.close-menu {
  background: none;
  border: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 3rem;
}

.mobile-menu li {
  margin-bottom: 1rem;
}

.mobile-menu a {
  color: #333 !important;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--primary-color) !important;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  position: relative;
  padding: 6rem 0 4rem;
  background-color: var(--primary-color);
  color: white;
}

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

.hero-heading {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.hero-text {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-camel {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 300px;
  z-index: 1;
}

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

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

/* ==========================================
   BUSINESS TYPES SECTION
   ========================================== */

.business-types {
  padding: 5rem 0;
  background-color: white;
}

/* ==========================================
   ECOSYSTEM SECTION
   ========================================== */

.ecosystem {
  padding: 5rem 0;
  background: #f0f7ff;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stakeholder-card,
.partner-card {
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.1);
  transition: all 0.3s ease;
}

.stakeholder-card:hover,
.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.stakeholder-card h3,
.partner-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stakeholder-card-footer,
.partner-card-footer {
  margin-top: 1.5rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.partner-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

.partner-cta {
  background-color: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.1);
  margin-top: 3rem;
}

.partner-cta h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* ==========================================
   SUPPORT SECTION
   ========================================== */

.support {
  padding: 5rem 0;
  background-color: white;
}

.support-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.support-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.1);
}

.support-text h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.support-features {
  margin-top: 2rem;
}

.support-feature {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.support-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.support-feature-text h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.support-feature-text p {
  color: #555;
  line-height: 1.6;
}

/* ==========================================
   AI SECTION
   ========================================== */

.ai-section {
  padding: 5rem 0;
  background: #f0f7ff;
}

.ai-content {
  position: relative;
}

.ai-mascot {
  width: 150px;
  height: auto;
  margin: 0 auto 2rem;
  display: block;
}

.ai-layers {
  margin-top: 3rem;
}

.ai-layer {
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.1);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}

.ai-layer-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  flex-shrink: 0;
}

.ai-layer-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.ai-layer-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.ai-layer-features {
  list-style: none;
  padding: 0;
}

.ai-layer-features li {
  padding: 0.75rem;
  background: linear-gradient(135deg, #f0f7ff 0%, white 100%);
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 3px solid var(--primary-color);
}

.ai-layer-features li i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.ai-layer-features li strong {
  color: var(--primary-color);
}

.ai-section-footer {
  margin-top: 2rem;
  text-align: center;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content > p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  opacity: 0.95;
}

.cta-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1000px;
}

.cta-step {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-step-number {
  width: 50px;
  height: 50px;
  background-color: white;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.cta-step h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.cta-step p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   FLOATING BUTTON
   ========================================== */

.floating-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--primary-color);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 99;
}

.floating-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  background-color: var(--primary-dark);
}

.floating-btn i {
  font-size: 1.5rem;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background-color: #2c3e50;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-about img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-about p {
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.footer-links h3, .footer-contact h3 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.footer-links ul, .footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: white;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.footer-contact li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-contact i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.footer-contact a {
  color: white;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1200px) {
  .main-menu ul {
    gap: 0.8rem;
  }
  
  .main-menu ul li a {
    padding: 0.5rem 0.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 991px) {
  .main-menu {
    display: block;
  }
  
  .hamburger-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
    
  .hero {
    padding-top: 7rem;
  }
  
  .ecosystem-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .main-section-header {
    padding: 40px 20px;
  }

  .main-section-header h2 {
    font-size: 2rem;
  }

  .support-content {
    grid-template-columns: 1fr;
  }
  
  .ai-layer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .ai-layer-number {
    margin: 0 auto 1rem;
  }
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .business-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-camel {
    width: 200px;
    position: relative;
    margin: 2rem auto 0;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .btn-large {
    padding: 0.8rem 1.6rem;
    width: 100%;
  }

  .footer-buttons {
    flex-direction: column;
  }

  .footer-buttons .btn {
    width: 100%;
  }

  .stage-features {
    grid-template-columns: 1fr;
  }

  .cta-steps {
    grid-template-columns: 1fr;
  }

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

  .cta-content h2 {
    font-size: 2rem;
  }
}