/* CSS Reset & Variables */
:root {
  --bg-dark: #090D16;
  --bg-card: rgba(21, 30, 46, 0.7);
  --bg-card-hover: rgba(30, 41, 59, 0.9);
  --border-color: rgba(38, 53, 74, 0.6);
  --border-focus: #06b6d4;
  
  /* Palette Colors */
  --primary: #06b6d4;      /* Cyan */
  --primary-hover: #0891b2;
  --secondary: #6366f1;    /* Indigo */
  --secondary-hover: #4f46e5;
  --accent-purple: #a855f7;/* Purple */
  --success: #10b981;
  --gold: #f59e0b;
  
  /* Text Colors */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  /* Gradients */
  --grad-accent: linear-gradient(135deg, #06b6d4 0%, #6366f1 100%);
  --grad-text: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
  --grad-purple: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
  --grad-dark-card: linear-gradient(180deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.8) 100%);
  
  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography & General Styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.025em;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.text-center { text-align: center; }
.font-green { color: var(--success) !important; }
.font-gold { color: var(--gold) !important; }
.font-purple { color: var(--accent-purple) !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(6, 182, 212, 0.45), 0 0 10px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
  padding: 14px;
}

/* Gradients & Accent Text */
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent-text {
  color: var(--primary);
}

.underlined-text {
  position: relative;
  display: inline-block;
}

.underlined-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 6px;
  background: var(--grad-accent);
  border-radius: 2px;
  z-index: -1;
  opacity: 0.8;
}

/* Headers / Titles */
.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

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

/* Animated Announcement Bar */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: linear-gradient(90deg, #6366f1 0%, #a855f7 50%, #06b6d4 100%);
  z-index: 1001;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.announcement-text {
  color: #fff;
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding-right: 50px;
  display: inline-block;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Floating Navigation Panel */
.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  background-color: rgba(9, 13, 22, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  padding: 14px 0;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-title);
}

.brand-logo {
  font-size: 1.6rem;
  animation: pulse 2s infinite;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--text-main);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 8px var(--primary)); }
  100% { transform: scale(1); }
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 200px 0 80px 0;
  overflow: hidden;
  background-image: radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
}

.hero-glow-1 {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  top: 30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
  position: relative;
}

.promo-badge {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-block;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  max-width: 900px;
}

.hero-lead {
  font-size: 1.15rem;
  max-width: 750px;
  margin-bottom: 35px;
  line-height: 1.6;
}

.hero-features-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
  margin-bottom: 40px;
  max-width: 800px;
}

.hero-feat-item {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  background: rgba(255,255,255,0.03);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Value Bar Section */
.value-bar {
  background-color: rgba(15, 23, 42, 0.4);
  border-y: 1px solid var(--border-color);
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.value-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.value-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.value-number {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.value-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Mockup Display Section */
.mockup-section {
  padding: 90px 0;
  position: relative;
  background-image: radial-gradient(circle at 50% 100%, rgba(99, 102, 241, 0.05) 0%, transparent 60%);
}

.device-switcher {
  display: inline-flex;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 6px;
  border-radius: 9999px;
  margin-bottom: 45px;
  gap: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.switcher-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 10px 22px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.switcher-btn:hover {
  color: var(--text-main);
}

.switcher-btn.active {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.mockup-display-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  perspective: 1000px;
  margin-bottom: 30px;
}

/* Sleek Responsive Mockup Frame */
.device-frame {
  background-color: #0f172a;
  border-radius: 12px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(6, 182, 212, 0.08);
  border: 4px solid #334155;
  overflow: hidden;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

/* Sizing of Device mockup based on active switcher setting */
.device-frame.pc-frame {
  width: 800px;
  height: 480px;
}

.device-frame.tablet-frame {
  width: 500px;
  height: 600px;
  border-radius: 24px;
  border-width: 8px;
}

.device-frame.mobile-frame {
  width: 320px;
  height: 580px;
  border-radius: 36px;
  border-width: 10px;
  position: relative;
}

/* Device notch simulation for mobile */
.device-frame.mobile-frame::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 16px;
  background-color: #334155;
  border-radius: 10px;
  z-index: 10;
}

.device-header {
  background-color: #1e293b;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.device-frame.mobile-frame .device-header,
.device-frame.tablet-frame .device-header {
  display: none; /* Hide browser header on mobile & tablet for realism */
}

.browser-dots {
  display: flex;
  gap: 6px;
  margin-right: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot.red { background-color: #ef4444; }
.dot.yellow { background-color: #f59e0b; }
.dot.green { background-color: #10b981; }

.browser-search-bar {
  flex: 1;
  background-color: rgba(9, 13, 22, 0.5);
  border-radius: 4px;
  padding: 3px 12px;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: center;
  font-family: monospace;
}

.device-viewport {
  flex: 1;
  width: 100%;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.device-viewport iframe {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #fff;
}

.mockup-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 15px;
}

/* Features/Benefits Section */
.features-section {
  padding: 90px 0;
  background-color: rgba(15, 23, 42, 0.3);
  border-y: 1px solid var(--border-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  padding: 35px 30px;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--grad-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 20px rgba(6, 182, 212, 0.05);
  background: var(--bg-card-hover);
}

.feature-card:hover::before {
  opacity: 1;
}

.feat-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: inline-block;
  background: rgba(6, 182, 212, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(6, 182, 212, 0.15);
}

.feat-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.feat-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Niche Showcase Section */
.niche-section {
  padding: 90px 0;
  background-image: radial-gradient(circle at 0% 50%, rgba(99, 102, 241, 0.04) 0%, transparent 50%);
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.niche-card {
  background: var(--grad-dark-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  transition: all 0.3s ease;
}

.niche-card:hover {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}

.niche-badge {
  background-color: rgba(99, 102, 241, 0.1);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.2);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.niche-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-main);
}

.niche-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Process Timeline Section */
.process-section {
  padding: 90px 0;
  background-color: rgba(15, 23, 42, 0.2);
  border-top: 1px solid var(--border-color);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px 24px;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--border-focus);
}

.step-num {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.3;
  margin-bottom: 15px;
}

.step-title {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Integrations Section */
.integrations-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
}

.integration-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-top: 40px;
}

.logo-box {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 18px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  transition: all 0.3s ease;
}

.logo-box:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.logo-icon {
  font-size: 1.6rem;
}

.logo-name {
  font-size: 0.9rem;
  font-weight: 600;
}

/* FAQ Accordion Section */
.faq-section {
  padding: 90px 0;
  background-color: rgba(15, 23, 42, 0.3);
  border-top: 1px solid var(--border-color);
}

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

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  color: var(--text-main);
  text-align: left;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 28px;
  background-color: rgba(0, 0, 0, 0.1);
}

.faq-answer p {
  padding-bottom: 22px;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Active FAQ styling */
.faq-item.active {
  border-color: rgba(6, 182, 212, 0.25);
  background-color: var(--bg-card-hover);
}

.faq-item.active .faq-answer {
  max-height: 1000px; /* Large enough value to allow text expanding */
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-purple);
}

/* Order Form & Contact Section */
.order-section {
  padding: 90px 0;
  border-top: 1px solid var(--border-color);
  background-image: radial-gradient(circle at 100% 0%, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
}

.order-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  padding-right: 20px;
}

.badge-accent {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: var(--accent-purple);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
}

.contact-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-desc {
  font-size: 1rem;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-detail-item {
  display: flex;
  gap: 15px;
}

.contact-detail-item .icon {
  font-size: 1.6rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.contact-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-link:hover {
  text-decoration: underline;
  color: var(--primary-hover);
}

/* Form Styling */
.form-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.form-title {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.85rem;
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.required {
  color: #ef4444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(9, 13, 22, 0.6);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.2);
}

.form-tip {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Checkbox group styling */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 6px;
}

.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-weight: 500 !important;
  cursor: pointer;
  font-size: 0.85rem !important;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-terms {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

/* Footer styling */
.main-footer {
  background-color: #05070c;
  padding: 60px 0 40px 0;
  border-top: 1px solid var(--border-color);
}

.footer-brand {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.footer-contact {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-contact a {
  color: var(--primary);
}

.footer-divider {
  border: 0;
  height: 1px;
  background-color: var(--border-color);
  margin: 30px 0;
}

.copyright {
  font-size: 0.75rem;
  color: #556075;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .order-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info-card {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .navbar {
    top: 36px;
    padding: 10px 0;
  }
  
  .nav-links {
    display: none; /* Hide link menu on mobile */
  }
  
  .hero-section {
    padding: 180px 0 60px 0;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .hero-lead {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .hero-features-list {
    gap: 10px 15px;
    margin-bottom: 30px;
  }

  .hero-feat-item {
    font-size: 0.85rem;
    padding: 4px 12px;
  }

  .section-title {
    font-size: 1.8rem;
  }
  
  /* Stack grids to 1 column on mobile to avoid overflow of 320px minimum widths */
  .features-grid,
  .niche-grid,
  .process-steps {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .device-frame.pc-frame {
    width: 100%;
    height: 320px;
  }
  
  .device-frame.tablet-frame {
    width: 100%;
    height: 480px;
  }
  
  .device-frame {
    max-width: 100%;
  }

  .device-frame.mobile-frame {
    width: 280px; /* Adjust mobile mockup slightly smaller to fit 320px screen width with padding */
    height: 480px;
  }

  .form-card {
    padding: 24px;
  }

  .value-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* Reduce paddings of all layout sections on mobile */
  .mockup-section,
  .features-section,
  .niche-section,
  .process-section,
  .integrations-section,
  .faq-section,
  .order-section {
    padding: 45px 0 !important;
  }

  .section-subtitle {
    margin-bottom: 25px !important;
  }

  .device-switcher {
    margin-bottom: 25px !important;
  }

  .niche-card {
    padding: 25px 20px !important;
  }

  .step-card {
    padding: 20px 18px !important;
  }
  
  .feature-card {
    padding: 25px 20px !important;
  }

  .integration-logos {
    margin-top: 25px !important;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 8px 0;
  }

  .nav-brand {
    font-size: 1.05rem; /* Make brand title fit on very small viewports */
  }

  .brand-logo {
    font-size: 1.2rem;
  }

  .nav-cta {
    display: none; /* Hide top header CTA button to prevent overlap/overflow on narrow mobile screens */
  }
  
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%; /* Make CTA buttons fill screen width and stack nicely */
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .hero-features-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
    padding: 0;
  }
  
  .hero-feat-item {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    font-size: 0.85rem;
  }

  .device-switcher {
    padding: 4px;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .switcher-btn {
    padding: 8px 12px;
    font-size: 0.78rem;
    gap: 4px;
  }

  .logo-box {
    min-width: unset !important;
    width: 100% !important;
    box-sizing: border-box;
    padding: 14px 20px;
  }
}
