/* SCSS Variables */
/* CSS Variables for Runtime */
:root {
  --primary: #000000;
  --primary-hover: #333333;
  --bg-main: #FFFFFF;
  --bg-secondary: #FAFAFA;
  --bg-gradient: linear-gradient(135deg, #FAFAFA 0%, #F5F5F7 100%);
  --text-main: #0F172A;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --border-hover: #CBD5E1;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --font-sans: Inter, system-ui, -apple-system, sans-serif;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.5;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

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

.bg-gradient {
  background: var(--bg-gradient);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn-primary {
  background-color: var(--primary);
  color: white;
  border: 1px solid transparent;
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1.125rem;
}
.btn-full {
  width: 100%;
}
.btn-white {
  background: white;
  color: black;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s;
}
.btn-white:hover {
  background: #e2e2e2;
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
}

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

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}
.logo img {
  height: 28px;
  width: auto;
}

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

.nav-link {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.nav-link:hover {
  color: var(--primary);
}

.nav-btn-link {
  background: none;
  border: none;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-sans);
  padding: 0;
}
.nav-btn-link:hover {
  color: var(--primary);
}

.nav-btn-link-mobile {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 8px 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sans);
}

.desktop-only {
  display: flex;
  align-items: center;
  gap: 24px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu-overlay {
  display: none;
  /* JS will toggle */
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: white;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu-content a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 8px 0;
}
.mobile-menu-content hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 8px 0;
}
.mobile-menu-content .lang-selector {
  justify-content: flex-start;
  padding: 8px 0;
  gap: 16px;
}

/* Hero Section */
.hero {
  padding-top: 160px;
  padding-bottom: 80px;
  text-align: left;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #FAFAFA 0%, #FFFFFF 100%);
}

.hero-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

/* Badge Pill */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 4px;
  background: #F1F5F9;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #E2E8F0;
  transition: transform 0.2s;
}
.badge-pill:hover {
  transform: scale(1.02);
}

.badge-new {
  background: var(--primary);
  color: white;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-text {
  color: var(--text-main);
}

/* Hero Title */
.hero-title {
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--primary);
}

.gradient-text {
  background: linear-gradient(135deg, #000000 0%, #555555 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  margin-bottom: 80px;
}

.signup-form {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 480px;
}
.signup-form input {
  flex: 1;
  padding: 16px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  font-size: 1rem;
  outline: none;
  font-family: var(--font-sans);
  transition: border-color 0.2s;
}
.signup-form input:focus {
  border-color: var(--primary);
}

.cta-subtext {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #94A3B8;
}

/* Hero Image & Floating UI */
.hero-image-container {
  position: relative;
  flex: 1.2;
  min-width: 0;
  /* flexbox text overflow fix */
  margin-right: -800px;
  /* Pull image out of container to the right */
  z-index: 1;
}

.browser-header:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(0deg, #FFFFFF 0%, transparent 25%);
}

.browser-window {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.browser-header {
  background: #F8FAFC;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border);
}

.browser-dots {
  display: flex;
  gap: 6px;
}
.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
}
.browser-dots span:nth-child(1) {
  background: #FF5f56;
}
.browser-dots span:nth-child(2) {
  background: #FFBD2E;
}
.browser-dots span:nth-child(3) {
  background: #27C93F;
}

.browser-address-bar {
  flex: 1;
  background: white;
  height: 28px;
  border-radius: 6px;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  padding-left: 12px;
  font-size: 0.8rem;
  color: #94A3B8;
}

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

/* Floating Cards */
.floating-card {
  position: absolute;
  background: white;
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}
.floating-card .text {
  display: flex;
  flex-direction: column;
}
.floating-card strong {
  font-size: 0.9rem;
  color: var(--text-main);
}
.floating-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.card-1 {
  top: 80%;
  left: -40px;
  animation-delay: 0s;
  z-index: 999;
}

.card-2 {
  bottom: 20%;
  right: -40px;
  animation-delay: 2s;
}

.icon-circle {
  width: 40px;
  height: 40px;
  background: #F1F5F9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
/* Trusted By */
.trusted-by {
  padding: 60px 0;
  background: white;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.trusted-by p {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #94A3B8;
  margin-bottom: 32px;
}

.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 32px;
}

.partner-logo {
  height: 32px;
  width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s ease;
}
.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Features Grid */
.section-header {
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.25rem;
  color: var(--text-muted);
}

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

.feature-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: #F8FAFC;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
}
.card-icon svg {
  width: 24px;
  height: 24px;
}

/* Interactive Tabs Section */
.tabs-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tabs-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
.tabs-header p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
}

.tabs-nav {
  display: inline-flex;
  background: white;
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  margin-top: 32px;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  /* Firefox */
}
.tabs-nav::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}
@media (max-width: 768px) {
  .tabs-nav {
    display: none;
  }
}

.tabs-bullets {
  display: none;
  gap: 8px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .tabs-bullets {
    display: flex;
    justify-content: center;
  }
}
.tabs-bullets .tab-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tabs-bullets .tab-bullet.active {
  background: var(--primary);
  width: 24px;
  border-radius: 999px;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.95rem;
}
.tab-btn.active {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.tabs-content-wrapper {
  background: white;
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  position: relative;
  touch-action: pan-y pinch-zoom;
}

.tab-content {
  display: none;
  width: 100%;
  align-items: center;
  padding: 60px;
  gap: 60px;
  animation: fadeIn 0.4s ease;
}
.tab-content.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tab-text-side {
  flex: 1;
}
.tab-text-side h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.check-list {
  padding-top: 1rem;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--text-main);
  font-weight: 500;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.tab-image-side {
  flex: 1.2;
  min-width: 70%;
}
.tab-image-side img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

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

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

.footer-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.footer-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer-right a {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.footer-right a:hover {
  color: var(--primary);
}

.footer-link-btn {
  background: none;
  border: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-sans);
}
.footer-link-btn:hover {
  color: var(--primary);
}

/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1001;
  /* Above navbar */
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  display: flex;
  /* Flex to center */
  opacity: 1;
}
.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-container {
  background: white;
  padding: 40px;
  border-radius: 24px;
  width: 90%;
  max-width: 480px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  border: 1px solid var(--border);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.2s;
}
.modal-close:hover {
  color: var(--primary);
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
}
.modal-header h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
}
.form-group input {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
  outline: none;
  font-family: var(--font-sans);
  transition: border-color 0.2s;
}
.form-group input:focus {
  border-color: var(--primary);
}

/* Language Selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  opacity: 0.5;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.lang-link:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}
.lang-link.active {
  opacity: 1;
  border-color: var(--border);
  background: white;
  box-shadow: var(--shadow-sm);
}
.lang-link svg {
  display: block;
  border-radius: 2px;
}

/* Icon Grid Section */
.icon-grid-section {
  background: white;
  padding: 120px 0;
  width: 100%;
}

.section-title-lg {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  color: var(--primary);
  line-height: 1.1;
}

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

.features-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background-color: #E2E8F0;
  border: 1px solid #E2E8F0;
  /* Removed border-radius and overflow hidden to prevent clipping of hover effects */
  width: 100%;
  margin: 0 auto;
  margin: 0 auto;
  position: relative;
}
.features-icon-grid::before, .features-icon-grid::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  width: 100px;
  z-index: 20;
  pointer-events: none;
}
@media (max-width: 768px) {
  .features-icon-grid::before, .features-icon-grid::after {
    display: none;
  }
}
.features-icon-grid::before {
  left: -1px;
  background: linear-gradient(to right, white 20%, transparent);
}
.features-icon-grid::after {
  right: -1px;
  background: linear-gradient(to left, white 20%, transparent);
}

.icon-grid-item {
  background: white;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  aspect-ratio: 1;
  min-height: 140px;
  position: relative;
  z-index: 1;
}
.icon-grid-item:hover {
  background: white;
  background: white;
  z-index: 30;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: scale(1.02);
  border-radius: 8px;
}
.icon-grid-item:hover .icon-wrapper {
  color: var(--primary);
}
.icon-grid-item:hover span {
  color: var(--primary);
  font-weight: 600;
}
.icon-grid-item .icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.icon-grid-item span {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

/* Dark Section */
.dark-section {
  background-color: #050505 !important;
  color: white;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  /* Background glow effect */
}
.dark-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.dark-header {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.dark-header h2 {
  color: white;
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 32px;
}
.dark-header .btn-white {
  background: white;
  color: black;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s;
}
.dark-header .btn-white:hover {
  background: #e2e2e2;
  transform: translateY(-2px);
}

.dark-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.dark-card {
  background: #171717;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(10px);
}
.dark-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}
.dark-card:hover .dark-card-img {
  transform: scale(1.05) translate(-10px, -10px);
}
.dark-card h3 {
  font-size: 1.75rem;
  color: white;
  margin-bottom: 24px;
  line-height: 1.3;
}
.dark-card .dark-card-content {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}

.dark-card-visual {
  margin-top: auto;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.mock-notification {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mock-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF5f56, #FFBD2E);
  flex-shrink: 0;
}

.mock-content {
  flex: 1;
}

.mock-line {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 6px;
  width: 80%;
}
.mock-line.short {
  width: 60%;
}

.dark-card-img {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}
.pricing-card.featured {
  background: #0F172A;
  /* Using dark theme color */
  color: white;
  border: 1px solid #0F172A;
  transform: scale(1.05);
  z-index: 10;
  box-shadow: var(--shadow-xl);
}
.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}
.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .usage,
.pricing-card.featured .features-list li,
.pricing-card.featured .pricing-desc {
  color: white;
  /* Ensure text is readable on dark background */
}
.pricing-card.featured .features-list li::before {
  filter: invert(1);
  /* Make checkmark white */
}
.pricing-card.featured .btn-white {
  background-color: white !important;
  color: #0F172A !important;
  border: 1px solid white !important;
  transition: all 0.2s ease;
}
.pricing-card.featured .btn-white:hover {
  background-color: #F1F5F9 !important;
  color: #0F172A !important;
}
.pricing-card.featured .credits-badge {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}
.pricing-card.featured .support-info {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

/* Plan Header */
.plan-header {
  margin-bottom: 24px;
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  min-height: 42px;
  /* Alignment for varying description lengths */
  margin-bottom: 16px;
}

/* Pricing Details */
.price-block {
  margin-bottom: 24px;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.usage {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.credits-badge {
  display: inline-block;
  background: var(--bg-secondary);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

/* Features List */
.features-list {
  margin-bottom: 32px;
  flex-grow: 1;
}
.features-list li {
  font-size: 0.9rem;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  color: var(--text-main);
}
.features-list li::before {
  content: "";
  /* Checkmark Icon */
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.support-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-wrapper {
    flex-direction: column;
    gap: 60px;
    text-align: center;
  }
  .hero-content {
    align-items: center;
    max-width: 100%;
  }
  .hero-cta {
    align-items: center;
    margin-bottom: 0;
  }
  .hero-image-container {
    width: 100%;
    margin-right: 0;
    max-width: 800px;
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .tab-content {
    flex-direction: column;
    padding: 40px;
    flex-direction: column-reverse;
  }
  .tab-text-side h3 {
    font-size: 1.5rem;
  }
  .floating-card {
    display: none;
  }
  .features-icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .dark-cards-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .section-header h2,
  .tabs-header h2,
  .dark-header h2,
  .section-title-lg {
    font-size: 1.75rem;
  }
  .section-header p,
  .tabs-header p,
  .section-subtitle {
    font-size: 1.125rem;
  }
  .footer-container {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .footer-left {
    flex-direction: column;
    gap: 16px;
  }
  .footer-right {
    flex-direction: column;
    gap: 24px;
  }
  .tab-content {
    flex-direction: column;
    padding: 0px;
    flex-direction: column-reverse;
    gap: 40px;
  }
  .tab-text-side {
    padding: 0 40px 40px 40px;
  }
  .features-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .icon-grid-item {
    padding: 24px 12px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
}
