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

:root {
  --primary-orange: #F57C24;
  --primary-orange-light: #FF8D42;
  --primary-green: #00B661;
  --primary-green-dark: #009D52;
  --secondary-bg: #F8F9FA;
  --text-main: #1A1A1A;
  --text-muted: #6C757D;
  --white: #FFFFFF;
  --black: #000000;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: var(--primary-orange-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

.btn-block {
  width: 100%;
  justify-content: center;
}

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

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 182, 97, 0.1);
  color: var(--primary-green);
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

/* Navbar */
.navbar {
  height: 90px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.logo-img {
  height: 48px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}

.nav-links a:not(.btn):hover {
  color: var(--primary-orange);
}

/* Hero Section */
.hero {
  padding: 100px 0;
  background: radial-gradient(circle at top right, rgba(0, 182, 97, 0.05), transparent),
              radial-gradient(circle at bottom left, rgba(245, 124, 36, 0.05), transparent);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 19px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-visual {
  position: relative;
}

.platform-mockup {
  position: relative;
}

.mock-main {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: block;
}

.mock-mobile {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 180px;
  border-radius: 24px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: var(--white);
}

.section-title {
  font-size: 42px;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 40px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  text-align: left;
}

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

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.icon-box.green { background: rgba(0, 182, 97, 0.1); color: var(--primary-green); }
.icon-box.orange { background: rgba(245, 124, 36, 0.1); color: var(--primary-orange); }

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.feature-card p {
  color: var(--text-muted);
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background: var(--secondary-bg);
}

/* Pricing CTA Refinement */
.pricing-cta {
  padding: 80px 60px;
  background: var(--black);
  color: var(--white);
  border-radius: 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.pricing-cta .section-title { color: var(--white); margin-bottom: 24px; }
.pricing-cta .section-subtitle { color: rgba(255,255,255,0.7); margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }

.pricing-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: left;
}

.p-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
}

.p-feat i { color: var(--primary-green); }

/* Developer Section */
.developer-section {
  padding: 100px 0;
  background: var(--white);
}

.dev-card {
  padding: 80px 40px;
  background: var(--secondary-bg);
  border-radius: 40px;
  border: 1px solid rgba(0,0,0,0.05);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 60px 0;
}

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

.r-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 24px;
  color: var(--primary-orange);
  box-shadow: var(--shadow-sm);
}

.roadmap-item h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.roadmap-item p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Demo Section */
.demo-section {
  padding: 120px 0;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.demo-text h2 {
  font-size: 48px;
  margin-bottom: 24px;
}

.demo-text p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.trust-marks {
  display: flex;
  gap: 32px;
}

.mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
}

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

.demo-form-card {
  padding: 50px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input, 
.form-group select {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid #ddd;
  outline: none;
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus {
  border-color: var(--primary-orange);
}

.form-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 20px 0;
}

.form-success i {
  font-size: 64px;
  color: var(--primary-green);
  margin-bottom: 16px;
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 48px;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.link-group h4 {
  margin-bottom: 24px;
}

.link-group a {
  display: block;
  text-decoration: none;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.05);
  color: var(--text-muted);
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 20px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container, .demo-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-text p, .hero-actions { margin-left: auto; margin-right: auto; justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin-left: auto; margin-right: auto; }
  .nav-links { display: none; }
}

@media (max-width: 768px) {
  .hero-text h1 { font-size: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; gap: 40px; }
  .footer-links { flex-direction: column; gap: 40px; }
}

/* ADA Accessibility Widget Classes */
:root {
  --ada-bg: rgba(255, 255, 255, 0.95);
  --ada-accent: #007AFF;
  --ada-text: #1d1d1f;
}

body.ada-high-contrast {
  filter: contrast(150%) brightness(110%);
  background: #000 !important;
  color: #fff !important;
}

body.ada-high-contrast *:not(.ada-widget-container *) {
  background: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
}

body.ada-dyslexia, 
body.ada-dyslexia * {
  font-family: 'OpenDyslexic', 'Inter', sans-serif !important;
}

body.ada-highlight-links a:not(.btn) {
  background-color: yellow !important;
  color: black !important;
  outline: 3px solid black !important;
  text-decoration: underline !important;
  font-weight: bold !important;
}

body.ada-text-spacing * {
  letter-spacing: 0.1em !important;
  line-height: 1.8 !important;
  word-spacing: 0.1em !important;
}

body.ada-big-cursor, 
body.ada-big-cursor * {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 24 24" fill="black" stroke="white" stroke-width="1"><path d="M7 2l12 11.2l-5.8 0.8l3.8 6l-2 1.2l-3.8-6l-4.2 3.8z"/></svg>'), auto !important;
}

/* Widget UI Styling */
.ada-trigger {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  background: var(--ada-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform 0.3s ease;
  border: none;
  font-size: 24px;
}

.ada-trigger:hover {
  transform: scale(1.1);
}

.ada-container {
  position: fixed;
  bottom: 100px;
  left: 30px;
  width: 350px;
  max-width: calc(100vw - 60px);
  max-height: min(600px, 75vh);
  background: var(--ada-bg);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  z-index: 9998;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  animation: adaFadeIn 0.3s ease;
}

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

.ada-header {
  padding: 24px;
  background: var(--ada-accent);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ada-header h3 { margin: 0; font-size: 18px; }

.ada-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.ada-body {
  padding: 24px;
  overflow-y: auto;
}

.ada-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.ada-option:last-child { border-bottom: none; }

.ada-info h4 { margin: 0 0 4px; font-size: 15px; }
.ada-info p { margin: 0; font-size: 12px; color: #666; }

/* Switch Toggle Styling */
.ada-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.ada-switch input { opacity: 0; width: 0; height: 0; }

.ada-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.ada-slider:before {
  position: absolute;
  content: "";
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .ada-slider { background-color: var(--ada-accent); }
input:checked + .ada-slider:before { transform: translateX(20px); }

/* Range Styling */
.ada-range-container {
  width: 100%;
  padding: 20px 0;
}

.ada-range {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  background: #ddd;
  border-radius: 5px;
  outline: none;
}

.ada-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  background: var(--ada-accent);
  border-radius: 50%;
  cursor: pointer;
}

.ada-footer {
  padding: 16px;
  text-align: center;
  font-size: 12px;
  background: #f8f9fa;
  color: #666;
  border-top: 1px solid rgba(0,0,0,0.05);
}
