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

:root {
  /* Brand Colors */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-tertiary: #F1F5F9;

  --accent-primary: #0D9488;
  /* Teal 600 */
  --accent-secondary: #0891B2;
  /* Cyan 600 */
  --accent-hover: #0F766E;
  /* Teal 700 */
  --accent-light: rgba(13, 148, 136, 0.08);
  --accent-border: rgba(13, 148, 136, 0.15);

  /* Text Colors */
  --text-heading: #0F172A;
  /* Slate 900 */
  --text-body: #334155;
  /* Slate 700 */
  --text-muted: #64748B;
  /* Slate 500 */

  /* Borders and Shadow */
  --border-color: #E2E8F0;
  /* Slate 200 */
  --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 -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-elegant: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Fonts */
  --font-family: 'Inter', sans-serif;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-body);
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

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

/* Grid & Flex Utilities */
.grid {
  display: grid;
  gap: 2rem;
}

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

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

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

@media (max-width: 1024px) {

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

@media (max-width: 768px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  color: var(--accent-primary);
  margin-bottom: 1.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: #FFFFFF;
}

.btn-primary {
  border: none;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}

.btn-primary:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-body);
}

.btn-outline:hover {
  background: var(--bg-secondary);
  border-color: #CBD5E1;
}

/* Global Sticky Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all var(--transition-fast);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-heading);
}

.logo-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
}

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

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

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

.nav-links a.active {
  color: var(--accent-primary);
  font-weight: 600;
}

.nav-cta {
  display: flex;
  align-items: center;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-heading);
  margin: 5px 0;
  transition: var(--transition-fast);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 4.5rem;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* Global Unified Footer — Light Theme */
.footer {
  background: #FFFFFF !important;
  color: #374151 !important;
  border-top: 2px solid #E5E7EB !important;
  padding: 5rem 0 2rem 0;
}

.footer * {
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand p {
  margin: 1rem 0;
  max-width: 320px;
  color: #6B7280;
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-links h4 {
  color: #111827 !important;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.footer-links ul li {
  margin-bottom: 0.75rem;
  color: #6B7280;
  font-size: 0.9rem;
}

.footer-links ul li a {
  font-size: 0.9rem;
  color: #6B7280 !important;
  transition: all 0.18s ease;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #1B4D4F !important;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid #E5E7EB;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #9CA3AF;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Hero Section style */
.hero {
  padding: 8rem 0 5rem 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
}

@media (max-width: 1024px) {
  .hero-grid-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}

.hero-text h1 {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-heading) 60%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 640px) {
  .hero-text h1 {
    font-size: 2.25rem;
  }
}

.hero-text p {
  font-size: 1.125rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  max-width: 580px;
}

@media (max-width: 1024px) {
  .hero-text p {
    margin: 0 auto 2rem auto;
  }
}

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

@media (max-width: 1024px) {
  .hero-actions {
    justify-content: center;
  }
}

/* Hero Mockup View */
.hero-mockup {
  position: relative;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  box-shadow: var(--shadow-elegant);
  padding: 1.5rem;
}

.mockup-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E2E8F0;
}

.mockup-dot:nth-child(1) {
  background: #F87171;
}

.mockup-dot:nth-child(2) {
  background: #FBBF24;
}

.mockup-dot:nth-child(3) {
  background: #34D399;
}

.mockup-content {
  display: grid;
  gap: 1.25rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
}

.stat-card h3 {
  font-size: 1.5rem;
  color: var(--accent-primary);
  margin-bottom: 0.25rem;
}

.stat-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.visit-feed {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1rem;
}

.feed-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
}

.feed-item-mock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.8125rem;
}

.feed-item-mock:last-child {
  border-bottom: none;
}

.status-badge {
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-badge.verified {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.status-badge.transit {
  background: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
}

/* Social Proof Gallery */
.social-proof {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.social-proof p {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.logos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.logo-item {
  font-size: 1.25rem;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: -0.01em;
}

/* Feature/Highlights Cards */
.cards-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.section-header {
  max-width: 650px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.highlight-card,
a.highlight-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 2.5rem;
  transition: all var(--transition-fast);
  text-decoration: none;
  color: inherit;
  display: block;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-primary);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.highlight-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.highlight-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.feature-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-badge {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-body);
}

/* Benefits Section */
.benefits-section {
  background: var(--bg-secondary);
  padding: 6rem 0;
}

.benefit-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
}

.benefit-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-primary);
  background: var(--accent-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Bottom CTA Banner */
.cta-banner {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: white;
  text-align: center;
}

.cta-banner h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta-banner .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

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

/* FAQ Accordion Component */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--bg-primary);
}

.faq-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: background-color var(--transition-fast);
}

.faq-header:hover {
  background-color: var(--bg-secondary);
}

.faq-header h3 {
  font-size: 1rem;
  font-weight: 600;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-normal);
  color: var(--text-muted);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-content {
  border-top: 1px solid var(--border-color);
}

.faq-content-inner {
  padding: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Contact Page Tabbed Form Style */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  padding: 4rem 0;
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.form-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-elegant);
}

@media (max-width: 640px) {
  .form-card {
    padding: 1.5rem;
  }
}

.tab-switcher {
  display: flex;
  background: var(--bg-secondary);
  padding: 0.25rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
}

.tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 0.375rem;
  transition: all var(--transition-fast);
}

.tab-btn.active {
  background: var(--bg-primary);
  color: var(--accent-primary);
  box-shadow: var(--shadow-sm);
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-heading);
}

.form-control {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  background-color: var(--bg-primary);
  color: var(--text-body);
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 2rem;
}

.sidebar-card h3 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  color: var(--accent-primary);
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

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

.map-placeholder {
  height: 220px;
  background: #E2E8F0;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--border-color);
}

/* Screenshots Layout */
.screenshots-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.screenshot-section-block h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent-primary);
  padding-left: 0.75rem;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .mockup-grid {
    grid-template-columns: 1fr;
  }
}

.mobile-mockup-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mobile-device-frame {
  width: 240px;
  height: 480px;
  background: #0F172A;
  border-radius: 2rem;
  border: 8px solid #334155;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.mobile-app-header {
  background: var(--accent-primary);
  color: white;
  padding: 1rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.mobile-app-body {
  flex: 1;
  background: var(--bg-primary);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mock-list-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.5rem;
  text-align: left;
  font-size: 0.6875rem;
}

.mock-list-item strong {
  color: var(--text-heading);
}

.mock-btn {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: white;
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 700;
}

.web-mockup-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.web-device-frame {
  height: 320px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.web-device-frame img,
.mobile-device-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.web-app-navbar {
  height: 32px;
  background: #F1F5F9;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 1rem;
}

.web-app-body {
  flex: 1;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
}

.web-app-sidebar {
  border-right: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.web-app-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mock-chart {
  flex: 1;
  background: #F8FAFC;
  border: 1px dashed #CBD5E1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Success modal popup simulation */
.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.success-modal.active {
  display: flex;
}

.success-modal-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 3rem;
  max-width: 480px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.success-modal-icon {
  width: 56px;
  height: 56px;
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Dual-Device (iPhone Mobile + MacBook Laptop) Side-by-Side UI Presentation
   ========================================================================== */
.dual-device-container {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto 3.5rem auto;
  width: 100%;
  max-width: 900px;
}

/* iPhone Mobile Frame (Beside Laptop - Left) */
.mobile-device-frame {
  width: 240px;
  flex-shrink: 0;
  background: #0F172A;
  border-radius: 36px;
  padding: 8px 8px 10px 8px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.22);
  border: 3px solid #334155;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.mobile-dynamic-island {
  width: 70px;
  height: 14px;
  background: #000;
  border-radius: 10px;
  margin: 2px auto 6px auto;
  flex-shrink: 0;
}

.mobile-screen-content {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  padding: 0.75rem;
  border: 1px solid #E2E8F0;
  font-size: 0.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.mobile-home-bar {
  width: 100px;
  height: 4px;
  background: #94A3B8;
  border-radius: 2px;
  margin: 6px auto 2px auto;
  flex-shrink: 0;
}

/* MacBook Laptop Frame (Right) */
.laptop-device-frame {
  flex: 1;
  max-width: 620px;
  background: #1e1e1e;
  border-radius: 12px 12px 0 0;
  padding: 8px 8px 0 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid #333;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.laptop-notch {
  width: 80px;
  height: 10px;
  background: #1e1e1e;
  margin: 0 auto;
  border-radius: 0 0 5px 5px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.laptop-screen-content {
  background: #FAFBFD;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.laptop-base {
  width: 106%;
  margin-left: -3%;
  height: 12px;
  background: linear-gradient(180deg, #CBD5E1 0%, #94A3B8 100%);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  flex-shrink: 0;
}

.laptop-base-lip {
  width: 60px;
  height: 4px;
  background: #64748B;
  margin: 0 auto;
  border-radius: 0 0 4px 4px;
}

@media (max-width: 768px) {
  .dual-device-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .mobile-device-frame {
    width: 100%;
    max-width: 250px;
  }
}

/* SaaS Portal Unified Left Sidebar Mockup Navigation */
.saas-sidebar {
  width: 145px;
  background: #1B4D4F;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.4rem 0.3rem;
  font-size: 0.62rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.saas-sidebar-brand {
  font-weight: 800;
  color: #FFFFFF;
  padding: 0.2rem 0.35rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.68rem;
}

.saas-sidebar-link {
  padding: 0.2rem 0.35rem;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(255, 255, 255, 0.8);
}

.saas-sidebar-link.active {
  background: #10B981;
  color: #FFFFFF;
  font-weight: 700;
}