@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@500;600;700;800&display=swap');

:root {
  --primary-blue: #0F4C81;
  --primary-blue-dark: #0a355c;
  --success-green: #50C878;
  --cta-orange: #FF7A00;
  --cta-orange-hover: #e06c00;
  --bg-white: #FFFFFF;
  --bg-light: #F9FAFB;
  --bg-gray: #F3F4F6;
  --text-dark: #1F2937;
  --text-muted: #6B7280;
  --border-light: #E5E7EB;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(15, 76, 129, 0.15);
  
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary-blue);
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

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

.section-bg-blue {
  background-color: var(--primary-blue);
  color: var(--bg-white);
}

.section-bg-blue h2, .section-bg-blue h3, .section-bg-blue p {
  color: var(--bg-white);
}

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

.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--cta-orange);
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(255, 122, 0, 0.4);
}

.btn-primary:hover {
  background-color: var(--cta-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.6);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--bg-white);
}

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

.btn-white:hover {
  background-color: var(--bg-gray);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  border: 2px solid var(--bg-white);
  color: var(--bg-white);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--cta-orange);
}

/* Hero Section */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,76,129,0.08) 0%, rgba(255,255,255,0) 70%);
  z-index: 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero-content h1 span {
  color: var(--primary-blue);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.hero-feature i {
  color: var(--success-green);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  height: 600px;
}

.mockup-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.mockup-laptop {
  position: absolute;
  top: 50px;
  right: 0;
  width: 85%;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.mockup-tablet {
  position: absolute;
  bottom: 80px;
  left: 20px;
  width: 45%;
  z-index: 3;
  animation: float 5s ease-in-out infinite 1s;
}

.mockup-mobile {
  position: absolute;
  bottom: 20px;
  right: 40px;
  width: 25%;
  z-index: 4;
  animation: float 4s ease-in-out infinite 2s;
}

.mockup-laptop img,
.mockup-tablet img,
.mockup-mobile img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 5;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.fc-1 { top: 20px; left: -20px; animation: float 5s ease-in-out infinite 0.5s; }
.fc-1 .card-icon { background: rgba(80, 200, 120, 0.1); color: var(--success-green); }
.fc-2 { top: 250px; right: -40px; animation: float 6s ease-in-out infinite 1.5s; }
.fc-2 .card-icon { background: rgba(255, 122, 0, 0.1); color: var(--cta-orange); }
.fc-3 { bottom: 150px; left: -10px; animation: float 5.5s ease-in-out infinite 2.5s; }
.fc-3 .card-icon { background: rgba(15, 76, 129, 0.1); color: var(--primary-blue); }

.floating-card-content h4 {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.floating-card-content p {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

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

/* Trust Bar */
.trust-bar {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  padding: 3rem 0;
}

.trust-stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.5rem;
  color: var(--success-green);
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Challenges Section */
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
}

.challenge-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.challenge-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: rgba(255, 122, 0, 0.3);
}

.challenge-icon {
  width: 64px;
  height: 64px;
  background-color: var(--bg-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-muted);
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.challenge-card:hover .challenge-icon {
  background-color: rgba(255, 122, 0, 0.1);
  color: var(--cta-orange);
}

.challenge-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.challenges-solution {
  margin-top: 4rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  padding: 3rem;
  border-radius: var(--radius-xl);
  text-align: center;
  color: var(--bg-white);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.challenges-solution h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--bg-white);
}

/* Modules Circle / One Platform */
.one-platform {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.platform-center {
  width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.platform-center img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
}

.orbit-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  border: 1px dashed var(--border-light);
  z-index: 1;
}

.orbit-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px;
  height: 1100px;
  border-radius: 50%;
  border: 1px dashed var(--border-light);
}

.module-badge {
  position: absolute;
  background: var(--bg-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  cursor: default;
}

.module-badge:hover {
  transform: scale(1.1);
  background: var(--primary-blue);
  color: var(--bg-white);
  z-index: 20;
}

/* Setup orbit positions in main.js or hardcode CSS */
.m-1 { top: 10%; left: 50%; transform: translateX(-50%); }
.m-2 { top: 20%; right: 15%; }
.m-3 { top: 50%; right: -5%; transform: translateY(-50%); }
.m-4 { bottom: 20%; right: 15%; }
.m-5 { bottom: 10%; left: 50%; transform: translateX(-50%); }
.m-6 { bottom: 20%; left: 15%; }
.m-7 { top: 50%; left: -5%; transform: translateY(-50%); }
.m-8 { top: 20%; left: 15%; }
/* Outer orbit */
.m-9 { top: -2%; left: 50%; transform: translateX(-50%); }
.m-10 { top: 15%; right: 0%; }
.m-11 { bottom: 15%; right: 0%; }
.m-12 { bottom: -2%; left: 50%; transform: translateX(-50%); }
.m-13 { bottom: 15%; left: 0%; }
.m-14 { top: 15%; left: 0%; }

/* Target Audience */
.audience-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.audience-card {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  background: var(--bg-white);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.audience-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-bottom-color: var(--primary-blue);
}

.audience-icon {
  font-size: 3.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.audience-card h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
}

/* Dashboard Showcase */
.showcase-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--primary-blue);
  color: var(--bg-white);
  border-color: var(--primary-blue);
}

.showcase-display {
  background: #fffff;
  border-radius: var(--radius-xl);
  padding: 1rem;
  box-shadow: var(--shadow-2xl);
}

.showcase-screen {
  width: 100%;
  height: auto;
  position: relative;
  display: none;
}

.showcase-screen.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.showcase-screen img {
  max-width: 100%;
  width: auto;
  max-height: 750px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: block;
  margin: 0 auto;
}

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

/* Feature Sections (Flow/Grid) */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-split.reverse .feature-content {
  order: 2;
}

.feature-split.reverse .feature-visual {
  order: 1;
}

.feature-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.feature-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.feature-list li i {
  color: var(--success-green);
  font-size: 1.25rem;
}

.feature-visual {
  position: relative;
}

.feature-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.flow-diagram {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 48px;
  bottom: -1.5rem;
  width: 2px;
  background-color: var(--border-light);
  z-index: 1;
}

.flow-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 2;
}

.flow-text h4 {
  font-size: 1.125rem;
  margin: 0;
}

.flow-text p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Why Management Loves Us */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--success-green);
  transition: var(--transition);
}

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

.benefit-icon {
  font-size: 2rem;
  color: var(--success-green);
  margin-bottom: 1rem;
}

.benefit-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Implementation Process */
.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow-x: auto;
  padding-bottom: 2rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--border-light);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  min-width: 120px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  border: 4px solid var(--bg-light);
  box-shadow: var(--shadow-sm);
}

.process-step h4 {
  font-size: 1rem;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-question i {
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary-blue);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(-10px);
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
  max-height: 400px;
  opacity: 1;
  transform: translateY(0);
}

/* CTA Section */
.final-cta {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: var(--bg-white);
  text-align: center;
  padding: 6rem 2rem;
  border-radius: var(--radius-xl);
  margin: 4rem 2rem;
}

.final-cta h2 {
  font-size: 3rem;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
}

.final-cta p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

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

/* Footer */
.footer {
  background-color: #05192D;
  color: #9CA3AF;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h2 {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.footer-links h4 {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

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

.footer-links ul li a {
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--bg-white);
}

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

/* Animations - Content is visible by default, JS enhances it */
.js-loaded .animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.js-loaded .animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero .container, .feature-split {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content p {
    margin: 0 auto 2rem;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .one-platform {
    display: none; /* Simplification for mobile */
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* Mobile menu needed */
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .trust-stats {
    flex-direction: column;
  }
  
  .process-timeline {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 30px;
  }
  
  .process-timeline::before {
    top: 0;
    left: 60px;
    width: 4px;
    height: 100%;
  }
  
  .process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
  }
  
  .step-number {
    margin: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-content.video-modal {
  max-width: 800px;
  background: #000;
  padding: 0;
}

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.close-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--cta-orange);
}

.modal-body {
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
}

/* Mobile Menu & Responsiveness Enhancements */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-blue);
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--bg-white);
  box-shadow: var(--shadow-xl);
  z-index: 3000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

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

.close-mobile-menu {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-dark);
  cursor: pointer;
  margin-bottom: 2rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.5rem;
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Mobile App Showcase Base */
.mobile-app-showcase {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  padding: 1rem 0;
}

.app-mockup {
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  height: 600px;
  width: auto;
  object-fit: contain;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .mobile-app-showcase {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2rem;
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .app-mockup {
    scroll-snap-align: center;
    flex: 0 0 220px;
    height: 450px;
  }
  .desktop-only {
    display: none !important;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-features {
    font-size: 0.9rem;
    gap: 0.75rem;
    justify-content: center;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .hero-visual {
    height: 350px;
    display: block;
    width: 100%;
    position: relative;
    margin-top: 2rem;
  }
  
  .mockup-container {
    transform: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .mockup-laptop {
    width: 90%;
    top: 0;
    right: 5%;
    position: absolute;
  }
  
  .mockup-tablet {
    width: 45%;
    bottom: 0px;
    left: 5%;
    position: absolute;
  }
  
  .mockup-mobile {
    width: 25%;
    bottom: -20px;
    right: 15%;
    position: absolute;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .showcase-screen {
    height: 250px;
  }
  
  .flow-diagram {
    padding: 1.5rem;
  }
  
  .feature-visual img {
    margin: 0 auto;
  }
  
  .feature-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .final-cta {
    padding: 3rem 1.5rem;
    margin: 2rem 0;
    border-radius: var(--radius-lg);
  }
  
  .final-cta h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    height: 250px;
  }
  
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .floating-card {
    display: none;
  }
}
