/* AYNX Premium Landing Page Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;700;900&display=swap');

:root {
  --bg-primary: #0a0b0d;
  --bg-secondary: #111214;
  --bg-tertiary: #1e1f22;
  --border-color: rgba(255, 255, 255, 0.05);
  --border-glow: rgba(88, 101, 242, 0.25);
  --text-normal: #dbdee1;
  --text-muted: #949ba4;
  --text-white: #ffffff;
  --accent: #5865f2;
  --accent-hover: #4752c4;
  --plus-color: #23a55a;
  --plus-hover: #1a7f45;
  --pro-color: #a458f2;
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-normal);
  font-family: var(--font-sans);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background Grid Pattern Overlay */
.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

/* Background Glow Effects */
.glow-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.glow-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.12;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -10%;
  right: -5%;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: var(--plus-color);
  bottom: 25%;
  left: -10%;
}

.glow-3 {
  width: 450px;
  height: 450px;
  background: var(--pro-color);
  top: 45%;
  right: 10%;
}

/* Common Layout Elements */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Glassmorphism Card Style */
.glass-panel {
  background: rgba(17, 18, 20, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 11, 13, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-white);
  text-decoration: none;
}

.logo-icon {
  color: var(--accent);
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: translateY(-2px);
}

.logo i {
  color: var(--accent);
  font-style: normal;
}

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

.nav-item {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.23s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.23s ease;
}

.nav-item:hover::after {
  width: 100%;
}

.nav-item:hover {
  color: var(--text-white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.user-auth-zone {
  display: inline-flex;
  align-items: center;
}

/* User Pill & Avatar in Navbar */
.user-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  background: rgba(30, 31, 34, 0.7);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.user-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
}

.user-avatar-placeholder {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-white);
}

.user-plan-badge {
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.badge-free {
  background: rgba(255,255,255,0.1);
  color: var(--text-muted);
}

.badge-plus {
  background: rgba(35, 165, 90, 0.15);
  color: var(--plus-color);
  border: 1px solid rgba(35, 165, 90, 0.2);
}

.badge-pro {
  background: rgba(164, 88, 242, 0.15);
  color: #bf8ef5;
  border: 1px solid rgba(164, 88, 242, 0.2);
}

.btn-logout {
  background: none;
  border: none;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
  cursor: pointer;
  margin-left: 6px;
  transition: color 0.2s ease;
}

.btn-logout:hover {
  color: #f23f43;
}

.btn-signin {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.btn-signin:hover {
  color: var(--text-white);
}

/* Interactive Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.65rem 1.5rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1.5px);
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s;
  pointer-events: none;
}

.btn-glow:hover::after {
  left: 125%;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Hero Section */
.hero {
  padding: 160px 0 90px 0;
  position: relative;
  text-align: center;
}

.version-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(88, 101, 242, 0.08);
  border: 1px solid rgba(88, 101, 242, 0.25);
  color: var(--text-white);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 2.2rem;
  font-family: var(--font-heading);
  box-shadow: 0 4px 12px rgba(88,101,242,0.06);
}

.version-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-ring 1.8s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
  letter-spacing: -1.2px;
}

.hero-title span {
  background: linear-gradient(135deg, #a458f2, #5865f2, #23a55a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2.8rem auto;
  font-weight: 500;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 4.5rem;
}

.hero-cta .btn {
  padding: 0.85rem 2.2rem;
  font-size: 0.92rem;
}

/* App Showcase Mockup */
.mockup-wrapper {
  background: rgba(17, 18, 20, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 10px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 35px;
  padding: 0 15px;
  background: #111214;
  border-radius: 14px 14px 0 0;
  border-bottom: 1px solid var(--border-color);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mockup-dot.red { background: #f23f43; }
.mockup-dot.yellow { background: #f0b232; }
.mockup-dot.green { background: #23a55a; }

.mockup-title {
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mockup-img {
  width: 100%;
  display: block;
  border-radius: 0 0 14px 14px;
}

/* Comparison Section */
.pain-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2.2px;
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  font-weight: 500;
}

/* Comparison Table (Slack-style layout) */
.compare-table-wrapper {
  max-width: 950px;
  margin: 0 auto;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  background: rgba(10, 11, 13, 0.45);
  backdrop-filter: blur(16px);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(88, 101, 242, 0.08);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.compare-table th {
  padding: 1.6rem 2.2rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-white);
  border-bottom: 1px solid var(--border-color);
  background: rgba(17, 18, 20, 0.8);
}

.compare-table td {
  padding: 1.4rem 2.2rem;
  font-size: 0.86rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-normal);
  transition: all 0.25s ease;
}

.compare-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table .aynx-col {
  background: rgba(88, 101, 242, 0.035);
  border-left: 1px solid rgba(88, 101, 242, 0.12);
  border-right: 1px solid rgba(88, 101, 242, 0.12);
}

.compare-table th.aynx-col {
  background: rgba(88, 101, 242, 0.07);
  color: #fff;
  border-top: 3px solid var(--accent);
  padding-top: 1.4rem;
}

.compare-table .feature-name {
  font-weight: 700;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 0.92rem;
}

.compare-table .bad {
  color: #f23f43;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.compare-table .bad svg {
  color: #f23f43;
  opacity: 0.7;
  width: 16px;
  height: 16px;
}

.compare-table .good {
  color: #23a55a;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.compare-table .good svg {
  color: #23a55a;
  width: 16px;
  height: 16px;
}

/* Features Grid */
.features-section {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  padding: 2.8rem 2.2rem;
  border-radius: 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card.f-blue:hover {
  border-color: rgba(88, 101, 242, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(88, 101, 242, 0.08);
}
.feature-card.f-teal:hover {
  border-color: rgba(35, 165, 90, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(35, 165, 90, 0.08);
}
.feature-card.f-pink:hover {
  border-color: rgba(225, 48, 108, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(225, 48, 108, 0.08);
}
.feature-card.f-purple:hover {
  border-color: rgba(164, 88, 242, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(164, 88, 242, 0.08);
}
.feature-card.f-orange:hover {
  border-color: rgba(255, 85, 0, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(255, 85, 0, 0.08);
}
.feature-card.f-red:hover {
  border-color: rgba(242, 63, 67, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(242, 63, 67, 0.08);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.05);
}

.feature-icon-wrapper.text-blue { color: var(--accent); border-color: rgba(88, 101, 242, 0.25); background: rgba(88, 101, 242, 0.06); }
.feature-icon-wrapper.text-teal { color: var(--plus-color); border-color: rgba(35, 165, 90, 0.25); background: rgba(35, 165, 90, 0.06); }
.feature-icon-wrapper.text-pink { color: #e1306c; border-color: rgba(225, 48, 108, 0.25); background: rgba(225, 48, 108, 0.06); }
.feature-icon-wrapper.text-purple { color: var(--pro-color); border-color: rgba(164, 88, 242, 0.25); background: rgba(164, 88, 242, 0.06); }
.feature-icon-wrapper.text-orange { color: #ff5500; border-color: rgba(255, 85, 0, 0.25); background: rgba(255, 85, 0, 0.06); }
.feature-icon-wrapper.text-red { color: #f23f43; border-color: rgba(242, 63, 67, 0.25); background: rgba(242, 63, 67, 0.06); }

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.8rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.55;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  position: relative;
}

.pricing-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.pricing-toggle {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 5px;
  border-radius: 14px;
  display: flex;
  gap: 5px;
}

.pricing-toggle button {
  background: transparent;
  color: var(--text-muted);
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pricing-toggle button.active {
  background: var(--accent);
  color: var(--text-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 480px;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.popular {
  border-color: rgba(35, 165, 90, 0.45);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(35, 165, 90, 0.05);
}

.pricing-card.premium {
  border-color: rgba(164, 88, 242, 0.45);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(164, 88, 242, 0.05);
}

.card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.63rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.8px;
}

.card-badge.bg-emerald {
  background: rgba(35, 165, 90, 0.1);
  color: var(--plus-color);
  border: 1px solid rgba(35, 165, 90, 0.2);
}

.card-badge.bg-purple {
  background: rgba(164, 88, 242, 0.1);
  color: #bf8ef5;
  border: 1px solid rgba(164, 88, 242, 0.2);
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 1.2rem;
}

.price-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
}

.price-currency {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-white);
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 5px;
}

.pricing-card p.description {
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-bottom: 2.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.8rem;
}

.pricing-features-list li {
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features-list li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.pricing-features-list li span {
  color: var(--text-normal);
}

.pricing-card .btn {
  width: 100%;
  padding: 0.8rem;
}

.btn-emerald {
  background: var(--plus-color);
  color: #fff;
}

.btn-emerald:hover {
  background: var(--plus-hover);
  box-shadow: 0 4px 15px rgba(35, 165, 90, 0.25);
  transform: translateY(-1.5px);
}

.btn-purple {
  background: var(--pro-color);
  color: #fff;
}

.btn-purple:hover {
  background: #903ded;
  box-shadow: 0 4px 15px rgba(164, 88, 242, 0.25);
  transform: translateY(-1.5px);
}

/* Footer */
.footer {
  padding: 70px 0;
  border-top: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 1.2rem;
}

.footer-logo span {
  color: var(--accent);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.2rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-white);
}

.footer-copy {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Keyframe Animations */
@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(88, 101, 242, 0.45); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(88, 101, 242, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(88, 101, 242, 0); }
}

@keyframes float-glow {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-30px) rotate(180deg) scale(1.1); }
  100% { transform: translateY(0) rotate(360deg) scale(1); }
}

.glow-1 { animation: float-glow 25s infinite ease-in-out; }
.glow-2 { animation: float-glow 30s infinite ease-in-out alternate; }
.glow-3 { animation: float-glow 35s infinite ease-in-out; }

/* Scroll-based Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Mouse Hover Enhancements */
.mockup-wrapper {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
}

.mockup-wrapper:hover {
  transform: scale(1.01) translateY(-3px);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.55), 
    0 0 45px rgba(88, 101, 242, 0.08);
}

/* Responsiveness */
@media (max-width: 900px) {
  .navbar-container {
    padding: 0 1.5rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .compare-table th, .compare-table td {
    padding: 1rem;
    font-size: 0.8rem;
  }
  
  .nav-links {
    display: none;
  }
}

/* Trust & Partners Section */
.trust-section {
  padding: 80px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 2;
}

.platforms-showcase {
  margin-top: 1.5rem;
}

.premium-sponsors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  max-width: 950px;
  margin: 0 auto;
}

.premium-logo-card {
  background: rgba(255, 255, 255, 0.012);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: default;
}

.premium-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.01);
}

/* Brand specific card outlines & highlights */
.premium-logo-card.youtube-card:hover { border-color: rgba(255, 0, 0, 0.35); background: rgba(255, 0, 0, 0.02); }
.premium-logo-card.spotify-card:hover { border-color: rgba(29, 185, 84, 0.35); background: rgba(29, 185, 84, 0.02); }
.premium-logo-card.instagram-card:hover { border-color: rgba(225, 48, 108, 0.35); background: rgba(225, 48, 108, 0.02); }
.premium-logo-card.soundcloud-card:hover { border-color: rgba(255, 85, 0, 0.35); background: rgba(255, 85, 0, 0.02); }
.premium-logo-card.tiktok-card:hover { border-color: rgba(0, 242, 254, 0.35); background: rgba(0, 242, 254, 0.02); }
.premium-logo-card.twitch-card:hover { border-color: rgba(145, 70, 255, 0.35); background: rgba(145, 70, 255, 0.02); }
.premium-logo-card.google-trust-card:hover { border-color: rgba(66, 133, 244, 0.35); background: rgba(66, 133, 244, 0.02); }
.premium-logo-card.razorpay-trust-card:hover { border-color: rgba(11, 114, 231, 0.35); background: rgba(11, 114, 231, 0.02); }

.premium-logo-card svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.55;
  transition: all 0.3s ease;
}

.premium-logo-card:hover svg {
  opacity: 1;
  filter: drop-shadow(0 0 8px currentColor);
}

.premium-logo-card.google-trust-card:hover svg {
  filter: drop-shadow(0 0 8px rgba(66, 133, 244, 0.35));
}

.premium-logo-card span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-white);
  opacity: 0.55;
  transition: all 0.3s ease;
}

.premium-logo-card:hover span {
  opacity: 0.95;
}

.trust-divider-heading {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-align: center;
  margin: 3.5rem 0 1.5rem 0;
  opacity: 0.65;
}

/* Trust Badges Card layout styles */
.trust-partners-row {
  grid-template-columns: repeat(2, 1fr);
  max-width: 540px;
  margin: 0 auto;
}

.premium-logo-card.google-trust-card,
.premium-logo-card.razorpay-trust-card {
  justify-content: flex-start;
  padding: 0.8rem 1.3rem;
  gap: 12px;
  border-radius: 12px;
}

.trust-badge-card-text {
  text-align: left;
}

.trust-badge-card-text h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.1rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.premium-logo-card:hover .trust-badge-card-text h4 {
  opacity: 1;
}

.trust-badge-card-text p {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .premium-sponsors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
  .compare-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
  }
  .compare-table {
    min-width: 650px;
  }
  .compare-table th, .compare-table td {
    padding: 0.8rem 1.2rem;
  }
  .features-section {
    padding: 60px 0;
  }
  .features-grid {
    gap: 1.25rem;
    margin-top: 2rem;
  }
  .feature-card {
    padding: 2rem 1.5rem;
  }
  .pricing-section {
    padding: 60px 0;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 2rem auto 0 auto;
    gap: 1.5rem;
  }
  .pricing-card {
    padding: 2.2rem 1.8rem;
  }
}

@media (max-width: 600px) {
  .premium-sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-partners-row {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0 1rem;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   AYNX v2.6.2 Trust, Conversion & UX Additions CSS
   ─────────────────────────────────────────────────────────────────────────── */

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 0.5rem;
  max-width: 600px;
  font-weight: 500;
}

/* Trust Indicator row near Hero download */
.trust-indicators-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
  opacity: 0.85;
}

.trust-indicator-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.trust-indicator-badge:hover {
  color: var(--text-white);
  border-color: var(--border-glow);
  transform: translateY(-1px);
}

.trust-indicator-badge i {
  color: var(--accent);
}

/* General layout sections spacing */
.trust-indicators-row i {
  width: 14px;
  height: 14px;
}

.reassurance-section,
.action-section,
.steps-section,
.specs-section,
.faq-section,
.stats-section,
.dev-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.03);
}

/* Grid columns for sections */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

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

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

/* Reassurance & Safety cards */
.reassurance-card {
  padding: 2.2rem 1.8rem;
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--border-color);
  height: 100%;
}

.reassurance-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 10px 30px -10px rgba(88, 101, 242, 0.15);
}

.reassurance-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(88, 101, 242, 0.1);
  border: 1px solid rgba(88, 101, 242, 0.2);
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.reassurance-icon.r-green {
  background: rgba(35, 165, 90, 0.1);
  border-color: rgba(35, 165, 90, 0.2);
  color: var(--plus-color);
}

.reassurance-icon.r-pink {
  background: rgba(235, 69, 158, 0.1);
  border-color: rgba(235, 69, 158, 0.2);
  color: var(--pro-color);
}

.reassurance-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.reassurance-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.reassurance-card ul {
  list-style: none;
  margin-top: 1.2rem;
  space-y: 0.5rem;
}

.reassurance-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-normal);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.reassurance-card ul li i {
  width: 14px;
  height: 14px;
}

/* See AYNX in Action section tabs */
.action-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  background: rgba(17, 18, 20, 0.5);
  border: 1px solid var(--border-color);
  padding: 0.35rem;
  border-radius: 14px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.action-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-sans);
}

.action-tab-btn.active {
  background: var(--accent);
  color: var(--text-white);
  box-shadow: 0 4px 12px rgba(88, 101, 242, 0.25);
}

.action-showcase-panel {
  display: none;
  animation: scaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.action-showcase-panel.active {
  display: block;
}

.showcase-media-box {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
  position: relative;
  aspect-ratio: 16/10;
  background: #151618;
}

.showcase-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-media-box svg {
  display: block;
  width: 100%;
  height: 100%;
}

.showcase-overlay-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10,11,13,0.95));
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: left;
}

.showcase-overlay-caption h4 {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
}

.showcase-overlay-caption p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 0.4rem;
  font-weight: 500;
}

/* 3-Step visual guide elements */
.step-card {
  text-align: center;
  padding: 2.5rem 2rem;
  position: relative;
}

.step-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 8px 20px -5px rgba(88, 101, 242, 0.45);
}

.step-card.s-teal .step-badge {
  background: var(--plus-color);
  box-shadow: 0 8px 20px -5px rgba(35, 165, 90, 0.45);
}

.step-card.s-pink .step-badge {
  background: var(--pro-color);
  box-shadow: 0 8px 20px -5px rgba(164, 88, 242, 0.45);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.step-arrow-divider {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -15px;
  color: var(--border-color);
  z-index: 10;
}

/* System specifications & requirements block */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.specs-table tr {
  border-bottom: 1px solid var(--border-color);
}

.specs-table td {
  padding: 0.95rem 0.5rem;
  font-size: 0.82rem;
}

.specs-table td.label-col {
  color: var(--text-muted);
  font-weight: 600;
  width: 35%;
}

.specs-table td.value-col {
  color: var(--text-white);
  font-weight: 700;
}

/* FAQ accordion layout styles */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 3rem auto 0 auto;
}

.faq-item-card {
  border-radius: 14px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question-bar {
  width: 100%;
  background: rgba(255,255,255,0.015);
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  outline: none;
}

.faq-question-bar h3 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-white);
  font-family: var(--font-sans);
}

.faq-toggle-icon {
  color: var(--text-muted);
  transition: transform 0.3s ease;
  width: 16px;
  height: 16px;
}

.faq-item-card.active {
  background: rgba(255,255,255,0.02);
  border-color: var(--border-glow);
}

.faq-item-card.active .faq-toggle-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.faq-answer-panel p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Stats metrics display with counters */
.stat-card {
  padding: 2.2rem 1.5rem;
  text-align: center;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  background: rgba(255,255,255,0.01);
}

.stat-number-val {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
}

.stat-card.st-accent .stat-number-val {
  color: var(--accent);
}

.stat-card.st-teal .stat-number-val {
  color: var(--plus-color);
}

.stat-card.st-purple .stat-number-val {
  color: var(--pro-color);
}

.stat-label-text {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 0.75rem;
}

/* Meet Developer layouts */
.dev-card-wrapper {
  max-width: 750px;
  margin: 3rem auto 0 auto;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.dev-avatar-box {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--pro-color));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--text-white);
  border: 3px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 25px -5px rgba(88, 101, 242, 0.35);
  flex-shrink: 0;
}

.dev-info {
  text-align: left;
}

.grid-2 > div,
.grid-3 > div,
.grid-4 > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dev-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-white);
}

.dev-info h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.15rem;
}

.dev-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 0.85rem;
}

.dev-socials-row {
  display: flex;
  gap: 12px;
  margin-top: 1.25rem;
}

.social-pill-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-normal);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  padding: 0.45rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-pill-btn:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text-white);
  border-color: var(--border-glow);
  transform: translateY(-1px);
}

.social-pill-btn i {
  width: 13px;
  height: 13px;
}

/* Version updates logs & roadmaps */
.roadmap-row-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.changelog-box {
  border-radius: 20px;
  border: 1px solid var(--border-color);
  padding: 2rem;
}

.changelog-box h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

.changelog-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  background: rgba(35, 165, 90, 0.15);
  border: 1px solid rgba(35, 165, 90, 0.25);
  color: var(--plus-color);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-left: 10px;
  vertical-align: middle;
}

.changelog-list {
  list-style: none;
  space-y: 0.75rem;
}

.changelog-list li {
  font-size: 0.82rem;
  color: var(--text-normal);
  margin-bottom: 0.75rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.changelog-list li i {
  color: var(--plus-color);
  flex-shrink: 0;
  margin-top: 3px;
  width: 13px;
  height: 13px;
}

.roadmap-side-card {
  border-radius: 20px;
  border: 1px solid var(--border-color);
  padding: 2rem;
  height: fit-content;
}

.roadmap-side-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

.roadmap-milestones {
  position: relative;
}

.roadmap-milestones::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 6px;
  bottom: 8px;
  width: 2px;
  background: var(--border-color);
}

.milestone-item {
  position: relative;
  padding-left: 24px;
  margin-bottom: 1.25rem;
}

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

.milestone-dot {
  position: absolute;
  top: 6px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  border: 2px solid var(--bg-secondary);
}

.milestone-item.done .milestone-dot {
  background: var(--plus-color);
}

.milestone-item.current .milestone-dot {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.milestone-item h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-white);
}

.milestone-item p {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Call-to-action bottom panel */
.final-cta-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 30px;
  padding: 4rem 3rem;
  text-align: center;
  border: 1px solid var(--border-glow);
  box-shadow: 0 20px 50px -25px rgba(88, 101, 242, 0.25);
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.05), rgba(164, 88, 242, 0.05));
  position: relative;
  overflow: hidden;
}

.final-cta-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.2;
}

.final-cta-wrapper p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 1rem auto 2.5rem auto;
  font-size: 1rem;
}

.final-cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.final-cta-reassurance {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  opacity: 0.7;
}

.final-reassure-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
}

.final-reassure-item i {
  color: var(--plus-color);
  width: 12px;
  height: 12px;
}

/* Responsive adjust rule overrides */
@media (max-width: 960px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .dev-card-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  .dev-info {
    text-align: center;
  }
  .dev-socials-row {
    justify-content: center;
  }
  .roadmap-row-grid {
    grid-template-columns: 1fr;
  }
  .step-arrow-divider {
    display: none;
  }
}

@media (max-width: 600px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .action-tabs-container {
    flex-direction: column;
    gap: 0.25rem;
  }
  .showcase-media-box {
    aspect-ratio: auto;
    height: auto;
  }
  .showcase-overlay-caption {
    position: relative !important;
    background: rgba(17, 18, 20, 0.8) !important;
    padding: 1.25rem 1rem !important;
    border-top: 1px solid var(--border-color);
  }
  .final-cta-wrapper {
    padding: 3rem 1.5rem;
  }
  .final-cta-wrapper h2 {
    font-size: 1.8rem;
  }
  .final-cta-btns {
    flex-direction: column;
    width: 100%;
  }
  .final-cta-btns .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem !important;
  }
  .section-subtitle {
    font-size: 0.85rem !important;
  }
  .reassurance-card {
    padding: 1.5rem !important;
  }
  .specs-table td {
    font-size: 0.75rem !important;
    padding: 0.75rem 0.25rem !important;
  }
  .dev-card-wrapper {
    padding: 1.5rem !important;
    gap: 1.5rem !important;
  }
  .dev-avatar-box {
    width: 90px !important;
    height: 90px !important;
    font-size: 1.8rem !important;
  }
  .dev-info h3 {
    font-size: 1.2rem !important;
  }
  .changelog-box {
    padding: 1.25rem !important;
  }
  .roadmap-side-card {
    padding: 1.25rem !important;
  }
  .final-cta-wrapper {
    padding: 2rem 1.25rem !important;
  }
  .final-cta-wrapper h2 {
    font-size: 1.5rem !important;
  }
  .trust-indicators-row {
    gap: 0.75rem !important;
  }
  .trust-indicator-badge {
    font-size: 0.68rem !important;
    padding: 0.25rem 0.5rem !important;
  }
}

