/* Custom Theme Variables to match React CSS exactly */
:root {
  --color-primary: #6366f1;
  --color-primary-dark: #4f46e5;
  --color-accent: #8b5cf6;
  --color-background: #09090b;
  --color-card: rgba(24, 24, 27, 0.6);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-text: #fafafa;
  --color-text-muted: #a1a1aa;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Manrope', sans-serif;
}

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

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-background);
  color: var(--color-text);
  background-image: 
    radial-gradient(circle at 0% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Typography from React Source */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  background: linear-gradient(to right, #fff 20%, #6366f1 50%, #8b5cf6 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: textShine 4s ease-in-out infinite alternate;
}

@keyframes textShine {
  0% { background-position: 0% center; }
  100% { background-position: 100% center; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #6155EF;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4a45d1;
}

/* Focus Styles */
:focus-visible {
  outline: 2px solid var(--color-ring);
  outline-offset: 2px;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Animation Utilities */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Focus States */
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-ring);
  outline-offset: 2px;
}

/* Button Styles */
button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
.navigation {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 1.5rem;
}

.nav-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  background-color: #0F0F11; /* Deep Professional Black Matte */
  border: 1px solid rgba(255, 255, 255, 0.08); /* Subtle glass effect */
  border-radius: 9999px;
  padding: 0.5rem 2rem;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
}

.nav-logo {
  display: flex;
  align-items: center; /* Center logo vertically */
  flex-shrink: 0;
  padding: 0.25rem 0;
}

.nav-logo img {
  height: 3.2rem; /* Increased from 2.2rem for better visibility */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-logo-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .nav-logo-text {
    display: none;
  }
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
  padding: 0.4rem 1rem;
  position: relative;
  opacity: 0.8;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid transparent;
}

.nav-link:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-link.active {
  background-color: transparent;
  border-bottom: 2px solid #6155EF;
  border-radius: 0;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  opacity: 1;
  border-top: none;
  border-left: none;
  border-right: none;
}

.nav-link::after {
  display: none;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0.5rem 0;
}

.nav-dropdown:hover .nav-link {
  background-color: transparent;
  opacity: 1;
}

.nav-dropdown:hover svg {
  transform: rotate(180deg);
  color: #6155EF;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 0.75rem;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  z-index: 2000;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

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

.dropdown-item {
  display: block;
  color: #4b5563;
  padding: 0.75rem 1rem;
  border-radius: 0.4rem;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1.4;
}

.dropdown-item:hover {
  background-color: #f8fafc;
  color: #6155EF;
}

.nav-btn-payment {
  background-color: #6155EF;
  color: #ffffff;
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.nav-btn-payment:hover {
  background-color: #4a45d1;
  transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-content {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: #6155EF;
  display: block;
  margin-top: 0.25rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #64748b;
  margin-bottom: 3rem;
  max-width: 800px;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background-color: #6155EF;
  color: #ffffff;
  padding: 0.6rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
}

.btn-primary:hover {
  background-color: #4a45d1;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(97, 85, 239, 0.3);
}

.hero-mockup {
  margin-top: 3rem;
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 100%;
  width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.what-we-do-mockup {
  order: -1;
  max-width: 100%;
  width: 400px;
  margin: 0 auto;
}

.mockup-notifications {
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.notification-box:nth-child(2) {
  margin-left: 0;
}

.hero-badge-left {
  position: absolute;
  left: -40px;
  bottom: 15%;
  background: white;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 20;
  font-size: 0.9rem;
}

.hero-badge-left .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

.hero-badge-right {
  position: absolute;
  right: -40px;
  bottom: 25%;
  background: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  z-index: 20;
  text-align: left;
  font-size: 0.85rem;
}

.hero-badge-right span {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
}

.hero-badge-right strong {
  display: block;
  font-size: 1rem;
  color: #0A0A0B;
}

.phone-container {
  width: 100%;
  max-width: 280px;
  height: auto;
  min-height: 320px;
  background: #ffffff;
  border-radius: 3rem 3rem 0 0;
  border: 12px solid #1a1a1a;
  border-bottom: none;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.phone-icon {
  margin-top: 2rem;
  color: #6155EF;
  margin-bottom: 2rem;
}

.phone-lines {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.phone-line {
  height: 40px;
  background: #f1f5f9;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  position: relative;
}

.phone-line::after {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 9999px;
}

.market-badge {
  position: absolute;
  top: 10%;
  right: -60px;
  background: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  font-weight: 500;
  color: #4b5563;
  z-index: 20;
  font-size: 0.85rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: #6155EF;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #6155EF 0%, #7b6ff5 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  background-color: #4a45d1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(97, 85, 239, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #6155EF;
}

.btn-secondary:hover {
  background-color: rgba(97, 85, 239, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(97, 85, 239, 0.2);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Our Process Section */
.our-process {
  background-color: #6155EF;
  color: #ffffff;
  padding: 8rem 0;
}

.process-header {
  margin-bottom: 5rem;
}

.process-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.process-header p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 45rem;
  line-height: 1.6;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: left;
}

.step-dot {
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 50%;
  margin-bottom: 2rem;
  background-color: #6155EF;
}

.step-content span {
  display: block;
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.85;
}

/* Pricing Section Refinement */
.pricing-header {
  text-align: left;
  margin-bottom: 4rem;
}

.pricing-header h2 {
  font-size: 2.5rem;
  color: #6155EF;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 0;
}

.pricing-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.pricing-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-mockup .mockup-bg-block {
  width: 100%;
  height: 60%;
  background-color: #6155EF;
  border-radius: 2rem;
  position: absolute;
  z-index: 1;
}

.pricing-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  z-index: 2;
  width: 100%;
}

.pricing-card .features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-card .features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #4b5563;
}

.pricing-card .features-list li svg {
  color: #6155EF;
  background: rgba(97, 85, 239, 0.1);
  padding: 4px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pricing-card .price-box {
  margin-bottom: 1.5rem;
}

.pricing-card .price {
  font-size: 2.25rem;
  font-weight: 800;
  color: #6155EF;
}

.pricing-card .price span {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}

.btn-get-started {
  background-color: #6155EF;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
}

/* Contact Us Section */
.contact-section {
  padding: 8rem 0;
  background-color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

@media (max-width: 1024px) {
  .pricing-container,
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }
}

.contact-info h2 {
  font-size: 2.25rem;
  color: #6155EF;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.contact-info p {
  color: #64748b;
  margin-bottom: 3rem;
  font-size: 1rem;
}

.contact-detail-text strong {
  display: block;
  color: #0A0A0B;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-detail-text strong span {
  font-weight: 400;
  color: #4b5563;
}

.contact-detail-text p {
  color: #4b5563;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact-form-grid {
    grid-template-columns: 1fr !important;
  }
}

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

.form-control {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: #6155EF;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(97, 85, 239, 0.1);
}

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

.btn-send {
  width: 100%;
  background-color: #6155EF;
  color: #ffffff;
  padding: 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-send:hover {
  background-color: #4a45d1;
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .pricing-container,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .pricing-mockup {
    order: -1;
  }
}

/* Section Styles */
.features-section,
.cta-section {
  padding: 6rem 0;
}

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

.section-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background-color: rgba(97, 85, 239, 0.2);
  border-radius: 9999px;
  border: 1px solid rgba(97, 85, 239, 0.3);
  transition: all 0.3s ease;
}

.section-badge:hover {
  background-color: rgba(97, 85, 239, 0.3);
  transform: scale(1.02);
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #ffffff;
  border-radius: 50%;
}

.section-badge span {
  font-size: 0.875rem;
  color: #ffffff;
  font-weight: 500;
}

.section-title {
  font-size: 2.25rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #ffffff;
  opacity: 0.9;
  max-width: 64rem;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

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

.feature-card {
  background-color: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.feature-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-card h3 {
  color: #0A0A0B;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature-card p {
  color: #4b5563 !important;
  line-height: 1.6;
  font-size: 0.95rem;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.feature-card .price {
  color: #6155EF;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-card .features-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.feature-card.active {
  border: 2px solid #6155EF;
  transform: scale(1.05);
  z-index: 5;
  background-color: #ffffff;
}

.feature-card.active .price {
  color: #6155EF;
}

.feature-card .price span {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}

.feature-card .features-list li {
  color: #4b5563;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
  text-align: left;
  font-size: 0.9rem;
}

.feature-card .features-list li::before {
  content: '✓';
  color: #6155EF;
  margin-right: 0.5rem;
  font-weight: 700;
}

/* What we do Section */
.what-we-do {
  padding: 8rem 0;
  background-color: #ffffff;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.what-we-do-content h2 {
  color: #6155EF;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.what-we-do-content h3 {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.what-we-do-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.what-we-do-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.check-icon {
  width: 20px;
  height: 20px;
  background-color: #6155EF;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.item-text strong {
  color: #0A0A0B;
  font-weight: 700;
  font-size: 0.95rem;
}

.item-text p {
  color: #64748b;
  font-size: 0.9rem;
  display: inline;
}

.what-we-do-mockup {
  position: relative;
}

.mockup-bg-block {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 60%;
  background-color: #6155EF;
  border-radius: 2rem;
  z-index: 1;
}

.mockup-phone {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 240px;
  height: 480px;
  margin: 0 auto;
  transform: rotate(10deg);
  background: #ffffff !important;
  border: 10px solid #1a1a1a !important;
  border-radius: 2.5rem;
}

.mockup-notifications {
  position: absolute;
  top: 15%;
  left: -40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.notification-box {
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 240px;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.notification-box:nth-child(2) {
  margin-left: 2rem;
}

.notification-dot {
  width: 12px;
  height: 12px;
  background-color: #6155EF;
  border-radius: 50%;
}

.notification-line {
  height: 8px;
  background-color: #f1f5f9;
  border-radius: 4px;
}

.notification-line.short { width: 60%; }
.notification-line.long { width: 90%; }

.btn-get-started {
  background-color: #6155EF;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-get-started:hover {
  background-color: #4a45d1;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(97, 85, 239, 0.3);
}

.cta-section {
  background: linear-gradient(135deg, #6155EF 0%, #4a45d1 100%);
  padding: 8rem 0;
}

.cta-title {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: #64748b;
  margin-bottom: 3.5rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-badge span {
  font-size: 0.875rem;
  color: #ffffff;
  font-weight: 600;
}

.cta-offer {
  background-color: rgba(97, 85, 239, 0.2);
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(97, 85, 239, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-offer:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(97, 85, 239, 0.2);
}

.offer-text {
  color: #ffffff;
  font-size: 1rem;
}

/* FAQ Section */
.faq-section {
  padding: 8rem 0;
  background-color: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.faq-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.faq-mockup .mockup-bg-block {
  width: 80%;
  height: 70%;
  background-color: #6155EF;
  border-radius: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.faq-illustration {
  position: relative;
  z-index: 2;
  width: 300px;
}

.faq-content h2 {
  font-size: 2.5rem;
  color: #6155EF;
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1.5rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #0A0A0B;
  font-size: 1rem;
  gap: 1rem;
}

.faq-question svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #64748b;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 1rem;
}

/* Redesigned Footer to match capsule shape */
.footer {
  background-color: transparent;
  color: #ffffff;
  padding: 2rem 0 4rem;
}

.footer-container {
  max-width: 100%;
  margin: 0 auto;
  background-color: #6155EF;
  border-radius: 2rem;
  padding: 4rem 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.footer-brand .reg-info {
  font-size: 0.65rem;
  opacity: 0.7;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.footer-brand .tagline {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

.footer-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.footer-section ul li {
  margin-bottom: 1rem;
}

.footer-section ul li a {
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  align-items: flex-start;
}

.footer-contact-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.footer-contact-text span, 
.footer-contact-text p {
  opacity: 0.85;
  line-height: 1.5;
}

/* Sub-footer disclaimer */
.sub-footer {
  padding: 3rem 0;
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.6;
}

.disclaimer-text {
  margin-bottom: 3rem;
  text-align: justify;
}

.sub-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e2e8f0;
  padding-top: 2rem;
}

.copyright-text {
  font-weight: 500;
}

.developer-credit {
  font-weight: 500;
}

.developer-credit a {
  color: #6155EF;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .footer-container {
    border-radius: 0;
    padding: 4rem 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .sub-footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Responsive Design */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav-container {
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
  }
  .nav-content {
    height: 4rem;
  }

  .nav-logo img {
    height: 2.5rem;
  }

  .nav-logo-text {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-main {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background-color: #0F0F11;
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: stretch;
    gap: 1rem;
    overflow-y: auto !important;
    overflow-x: visible !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-main.active {
    right: 0;
  }

  .nav-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .nav-links .nav-link {
    display: flex !important;
    width: 100% !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 1rem !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border-radius: 0.75rem !important;
    border: 1px solid transparent !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    margin: 0 !important;
    text-align: left !important;
    box-sizing: border-box !important;
    opacity: 1 !important;
    position: relative !important;
  }

  .nav-dropdown .dropdown-toggle-btn {
    display: flex !important;
    width: 100% !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 1rem !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border-radius: 0.75rem !important;
    border: 1px solid transparent !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    margin: 0 !important;
    text-align: left !important;
    box-sizing: border-box !important;
  }

  .nav-dropdown {
    width: 100% !important;
    display: block !important;
    position: static !important;
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
  }

  .dropdown-menu {
    position: static !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0.5rem !important;
    margin: 0.5rem 0 0 0 !important;
    border-radius: 0.75rem !important;
    overflow: hidden !important;
    display: none !important;
    box-sizing: border-box !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    float: none !important;
    clear: both !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: none !important;
    height: auto !important;
    pointer-events: auto !important;
    z-index: 2001 !important;
  }

  .dropdown-item {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 1rem 1.25rem !important;
    font-size: 0.95rem !important;
    border-radius: 0.5rem !important;
    margin: 0.5rem 0 !important;
    white-space: normal !important;
    line-height: 1.4 !important;
    width: 100% !important;
    text-align: left !important;
    word-break: break-word !important;
    box-sizing: border-box !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
  }

  .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
  }

  .nav-btn-payment {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    justify-content: center;
  }

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

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-mockup {
    max-width: 300px;
  }

  .hero-badge-left, .hero-badge-right, .market-badge {
    display: none;
  }

  .what-we-do-grid, .faq-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .what-we-do-mockup {
    order: -1;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block !important;
  }

  .features-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .feature-card {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  .process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    width: 100%;
  }

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-mockup {
    width: 100%;
    max-width: 280px;
    margin: 3rem auto 0;
  }

  .phone-container {
    width: 100%;
    max-width: 260px;
    height: auto;
    min-height: 480px;
  }

  .pricing-container {
    padding: 0;
    width: 100%;
  }

  .pricing-card {
    width: 100%;
    padding: 2rem 1.5rem;
  }

  .features-list li {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .pricing-mockup {
    display: none;
  }
}

/* Legal and Compliance Page Shared Styles */
.compliance-content ul, .charter-content ul, .legal-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.compliance-content ul li, .charter-content ul li, .legal-list li {
  position: relative;
  padding-left: 1.5rem !important;
  margin-bottom: 0.75rem;
  color: #4b5563;
  line-height: 1.6;
}

.compliance-content ul li::before, .charter-content ul li::before, .legal-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6155EF;
  font-weight: bold;
  font-size: 1.2rem;
}

.compliance-content .sub-list, .charter-content .sub-list {
  padding-left: 2rem !important;
  margin-top: 0.5rem;
}

.compliance-content p, .charter-content p, .legal-container p {
  margin-bottom: 1.5rem;
  color: #4b5563;
  line-height: 1.6;
}

.compliance-content a, .charter-content a, .legal-container a {
  color: #6155EF;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.compliance-content a:hover, .charter-content a:hover, .legal-container a:hover {
  opacity: 0.8;
}

.compliance-content strong, .charter-content strong, .legal-container strong {
  color: #0A0A0B;
  font-weight: 600;
}

.contact-box, .impersonation-note, .disclosure-card {
  background-color: #f8fafc;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .contact-box, .impersonation-note, .disclosure-card {
    padding: 1.5rem;
  }
}
