:root {
  --primary-blue: #0066ff;
  --primary-blue-dark: #0052cc;
  --primary-blue-light: #e6f0ff;
  --secondary-green: #00d084;
  --secondary-purple: #8b5cf6;
  --accent-orange: #ff6b35;
  --dark: #0f172a;
  --gray-900: #1e293b;
  --gray-800: #334155;
  --gray-700: #475569;
  --gray-600: #64748b;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00d084 100%);
  --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

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

body {
  font-family:
    "Plus Jakarta Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-text {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: baseline;
}

.brand-logo {
  display: inline-block;
  background: linear-gradient(135deg, #8be9ff 0%, #1a73ff 45%, #0037ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.brand-n2n {
  display: inline-block;
  background: linear-gradient(135deg, #8be9ff 0%, #1a73ff 45%, #0037ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.brand-commerce {
  display: inline-block;
  background: linear-gradient(135deg, #8be9ff 0%, #1a73ff 45%, #0037ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

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

.nav-menu a {
  text-decoration: none;
  color: var(--gray-800);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-blue);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s;
}

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

.cta-nav {
  background: var(--primary-blue);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
  white-space: nowrap;
}

.cta-nav:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 102, 255, 0.4);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--gray-200);
  background: white;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle-lines span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(92vw, 420px);
  height: 100%;
  background: white;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-nav-close {
  border: none;
  background: transparent;
  font-size: 44px;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-800);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.mobile-nav-links a {
  display: block;
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  color: var(--gray-900);
  border: 1px solid var(--gray-200);
}

.mobile-nav-links a:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.mobile-nav-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-cta .cta-nav {
  width: 100%;
  text-align: center;
}

body.nav-open .mobile-nav {
  pointer-events: auto;
}
body.nav-open .mobile-nav-overlay {
  opacity: 1;
}
body.nav-open .mobile-nav-panel {
  transform: translateX(0);
}

.hero {
  margin-top: 85px;
  padding: 5rem 2rem 4rem;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--secondary-green) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 208, 132, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hero-badge::before {
  content: "🚀";
  font-size: 1rem;
}

.hero h1 {
  font-family: "Inter", sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero h1 .highlight {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.hero-description {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--primary-blue);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.35);
}

.btn-primary:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.45);
}

.btn-secondary {
  background: white;
  color: var(--gray-800);
  padding: 1.25rem 2.5rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
  border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.hero-trust {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-300);
}

.hero-trust p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
  font-weight: 600;
}

.trust-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-stat {
  display: flex;
  flex-direction: column;
}

.trust-stat-number {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.trust-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.25rem;
}

.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.visual-card {
  background: white;
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  position: relative;
}

.hero-eco-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: contain;
}

.hero-eco-border {
  padding: 1px;
  border-radius: 17px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.18) 100%
  );
}

.visual-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 24px;
  z-index: -1;
  opacity: 0.15;
}

.products-section {
  padding: 6rem 2rem;
  background: white;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 5rem;
  text-align: center;
}

.section-label {
  display: inline-block;
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.section-description {
  font-size: 1.25rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.products-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.product-card {
  background: white;
  border-radius: 28px;
  padding: 3rem;
  border: 2px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 102, 255, 0.15);
}

.product-card.mybooks::before {
  background: var(--gradient-secondary);
}

.product-card.mybooks:hover {
  border-color: var(--secondary-purple);
  box-shadow: 0 24px 48px rgba(139, 92, 246, 0.15);
}

.product-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.product-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
  animation: pulse 3s ease-in-out infinite;
}

.product-card.mybooks .product-icon {
  background: var(--gradient-secondary);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.product-badge {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card.mybooks .product-badge {
  background: #f3e8ff;
  color: var(--secondary-purple);
}

.product-title {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  letter-spacing: -1px;
  color: var(--dark);
}

.product-tagline {
  font-size: 1.2rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.product-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.product-features li {
  padding: 1rem 0;
  color: var(--gray-800);
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 1px solid var(--gray-200);
  font-weight: 500;
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features li::before {
  content: "✓";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
}

.product-card.mybooks .product-features li::before {
  background: #f3e8ff;
  color: var(--secondary-purple);
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary-blue);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.product-cta:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(0, 102, 255, 0.4);
}

.product-card.mybooks .product-cta {
  background: var(--secondary-purple);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.product-card.mybooks .product-cta:hover {
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
}

.value-props {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.value-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.value-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-blue);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-blue-light);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark);
}

.value-card p {
  color: var(--gray-700);
  line-height: 1.7;
  font-size: 1.05rem;
}

.integration-section {
  padding: 6rem 2rem;
  background: var(--dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.integration-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.4;
}

.integration-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.integration-text h2 {
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.integration-text h2 .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.integration-text p {
  font-size: 1.25rem;
  line-height: 1.7;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;

  /* Add these to center the block itself */
  margin-left: auto;
  margin-right: auto;
  max-width: 600px; /* Optional: keeps line lengths readable */
}
.integration-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.integration-features li {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.integration-features li::before {
  content: "→";
  color: var(--secondary-green);
  font-size: 1.5rem;
  font-weight: 900;
}

.integration-visual {
  width: 100%; /* Take up full container width */
  max-width: 1200px; /* Limits how far they spread on giant screens */
  margin-left: 200px;
}
.integration-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.integration-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.integration-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.integration-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.integration-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.final-cta {
  padding: 6rem 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--secondary-green) 100%
  );
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.final-cta-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -1.5px;
}

.final-cta p {
  font-size: 1.35rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  line-height: 1.7;
}

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

.btn-white {
  background: white;
  color: var(--primary-blue);
  padding: 1.25rem 3rem;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
}

footer {
  background: var(--gray-900);
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--secondary-green);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

@media (max-width: 1200px) {
  .hero-container,
  .integration-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-description {
    max-width: 100%;
  }
  .hero-ctas {
    justify-content: center;
  }
  .trust-stats {
    justify-content: center;
  }
}

@media (max-width: 968px) {
  .products-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }
  .integration-visual {
    margin-left: 0; /* This removes the giant margin on small screens */
    margin: 0 auto; /* This perfectly centers the container instead */
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .nav-menu {
    display: none;
  }
  .cta-nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}
/* 5. The Active State (Stays highlighted on the current page) */
.nav-menu a.active {
  color: var(--primary-blue-dark);
}

.nav-menu a.active::after {
  width: 100%;
}
@media (max-width: 640px) {
  .hero {
    padding: 3.75rem 1.25rem 3.25rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-description {
    font-size: 1.15rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .product-title {
    font-size: 2rem;
  }
  .btn-primary,
  .btn-secondary,
  .btn-white {
    width: 100%;
    justify-content: center;
  }
  .hero-ctas,
  .final-cta-buttons {
    flex-direction: column;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap");

/* Root Container - Deep Dark Theme */
.n2n-footer-wrapper {
  background-color: #080808;
  color: #ffffff;
  padding: 60px 0 30px 0;
  font-family: "Inter", sans-serif;
  border-top: 1px solid #1a1a1a;
  line-height: 1.5;
}

.f-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo & Branding */
.f-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-n2n {
  font-weight: 800;
  font-size: 1.8rem;
  color: #ffffff;
  letter-spacing: -1px;
}
.logo-commerce {
  font-weight: 800;
  font-size: 1.8rem;
  color: #007bff;
}
.f-branding p {
  color: #666;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* App Buttons */
.f-app-group {
  display: flex;
  gap: 12px;
}
.app-btn {
  display: flex;
  align-items: center;
  background: #141414;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #222;
  text-decoration: none;
  transition: 0.3s;
}
.app-btn:hover {
  border-color: #007bff;
  background: #1a1a1a;
}
.app-ico {
  font-size: 1.4rem;
  margin-right: 10px;
}
.app-info span {
  display: block;
  font-size: 0.6rem;
  color: #777;
  text-transform: uppercase;
}
.app-info strong {
  font-size: 0.85rem;
  color: #eee;
}

/* Navigation Grid */
.f-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: 40px 0;
}
.nav-col h5 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.nav-col a {
  display: block;
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: 0.2s;
}
.nav-col a:hover {
  color: #007bff;
  padding-left: 5px;
}
.f-email {
  color: #fff !important;
  font-weight: 600;
  text-decoration: underline !important;
}

/* Bottom Bar */
.f-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
/* Base text color */
.f-legal-info p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 8px;
}

/* Base link state (Makinus) */
.f-legal-info p a {
  color: #888; /* Slightly lighter than the text */
  transition: color 0.3s ease;
  font-weight: 600;
}

/* Hover state - This will now work */
.f-legal-info p a:hover {
  color: #ffffff !important;
}
.legal-links {
  display: flex;
  align-items: center;
  gap: 15px;
}
.legal-links a {
  color: #777;
  text-decoration: none;
  font-size: 0.8rem;
}
.legal-links a:hover {
  color: #fff;
}
.dot {
  width: 3px;
  height: 3px;
  background: #333;
  border-radius: 50%;
}

/* Social Icons - CENTERED WHITE ICONS */
.f-socials {
  display: flex;
  gap: 10px;
}
.s-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.s-circle svg {
  width: 20px;
  height: 20px;
  fill: white;
} /* Forces white center icons */

.fb {
  background: #1877f2;
}
.ig {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}
.yt {
  background: #ff0000;
}
.li {
  background: #0077b5;
}
.s-circle:hover {
  transform: translateY(-3px);
  filter: brightness(1.2);
}

/* --- Professional Enterprise WhatsApp Float --- */
.wa-pro-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex; /* Ensures perfect SVG centering */
  align-items: center;
  justify-content: center;
  opacity: 0.9;

  /* Smooth easing curve for high-end feel */
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* Natural depth shadowing */
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1))
    drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

.wa-pro-float:hover {
  opacity: 1;
  /* Restrained lift—no cartoonish bouncing */
  transform: translateY(-4px) scale(1.03);

  /* Expanding shadow on hover to simulate floating */
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.15))
    drop-shadow(0 20px 25px rgba(0, 0, 0, 0.2));
}
/* Mobile Fix */
@media (max-width: 768px) {
  .f-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .f-header,
  .f-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .f-app-group,
  .f-socials {
    justify-content: center;
  }
}

/* --- Cinematic Video Hero Section --- */
.hero-video-section {
  position: relative;
  min-height: 100vh; /* Full screen height */
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  margin-top: -80px; /* Adjust this value to match your navbar height so the video goes behind the nav */
  padding-top: 80px;
}

/* The Background Video */
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures video fills the screen without stretching */
  z-index: 0;
}

/* Gradient Overlay - Dark on the left, fading to clear on the right */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(8, 8, 8, 0.95) 0%,
    rgba(8, 8, 8, 0.7) 40%,
    rgba(8, 8, 8, 0.2) 100%
  );
  z-index: 1;
}

/* Content Container */
.hero-container-cinematic {
  position: relative;
  z-index: 2; /* Keeps text above the video and overlay */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content-modern {
  max-width: 650px; /* Constrains text width for readability */
}

/* Typography */
.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
  backdrop-filter: blur(4px);
}

.hero-content-modern h1 {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1.5px;
}

.text-gradient {
  background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description-modern {
  font-size: 1.15rem;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 550px;
}

/* Glassmorphism Buttons */
.hero-ctas-modern {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

/* --- Modern Gradient Hover Buttons --- */
.hero-ctas-modern {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

/* Base button styling */
.btn-gradient-hover {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px; /* Adjusted from fixed height/width for better responsiveness */
  color: white;
  border: none;
  border-radius: 0.625em; /* Retained from your code */
  font-size: 1rem;
  font-weight: bold; /* Retained from your code */
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.4s ease; /* Smooth text color change */
}

/* Primary Button (Start-Up Red/Orange Gradient) */
.btn-gradient-hover.primary {
  background: linear-gradient(
    90deg,
    rgba(0, 8, 144, 1) 0%,
    rgba(16, 0, 255, 1) 22%,
    rgba(86, 255, 247, 1) 100%
  );
  box-shadow: 0 10px 20px rgba(16, 0, 255, 0.3); /* Subtle glow matching the blue */
}

/* Secondary Button (Ops Team Blue/Cyan Gradient) */
.btn-gradient-hover.secondary {
  background: linear-gradient(
    90deg,
    rgba(131, 58, 180, 1) 0%,
    rgba(253, 29, 29, 1) 50%,
    rgba(252, 176, 69, 1) 100%
  );
  box-shadow: 0 10px 20px rgba(253, 29, 29, 0.3); /* Subtle glow matching the red */
}

/* The Sliding White Background (Skew Effect) */
.btn-gradient-hover::after {
  content: "";
  background: white;
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: all 0.5s ease;
}

/* Hover States */
.btn-gradient-hover:hover {
  color: rgb(0, 0, 0);
  transform: translateY(-2px); /* Slight lift on hover */
}

.btn-gradient-hover:hover::after {
  transform: skewX(-45deg) scale(1, 1);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .hero-ctas-modern {
    flex-direction: column;
    width: 100%;
  }
  .btn-gradient-hover {
    width: 100%; /* Makes buttons full width on small screens */
  }
}

/* Trust Indicators */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #080808;
  margin-left: -10px;
}
.avatars img:first-child {
  margin-left: 0;
}

.hero-trust p {
  color: #a1a1aa;
  font-size: 0.9rem;
  margin: 0;
}
.hero-trust strong {
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content-modern h1 {
    font-size: 2.8rem;
  }
  .hero-ctas-modern {
    flex-direction: column;
  }
  .btn-primary-glass,
  .btn-secondary-glass {
    justify-content: center;
  }
  .hero-overlay {
    background: rgba(8, 8, 8, 0.85);
  } /* Darker on mobile for readability */
}
/* --- Dynamic Typing Cursor --- */
.typing-cursor {
  display: inline-block;
  width: 4px;
  height: 1em;
  background-color: #00f2fe; /* Matches the text gradient */
  vertical-align: text-bottom;
  margin-left: 4px;
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* --- Ultra Extraordinary Section Label --- */
.ultra-section-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px; /* Space between the ::before dot and the text */
  padding: 8px 24px;
  margin-bottom: 24px;

  /* Premium Soft Glass Background */
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
  border: 1px solid rgba(0, 123, 255, 0.2);
  border-radius: 50px;
  box-shadow:
    0 4px 15px rgba(0, 123, 255, 0.1),
    inset 0 2px 5px rgba(255, 255, 255, 0.8);

  /* Typography */
  color: #0056b3; /* Deep professional blue */
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;

  /* Crucial for the sweeping shine animation */
  overflow: hidden;
}

/* 1. The ::before Content - Pulsing "Live" Tech Dot */
.ultra-section-label::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #007bff;
  border-radius: 50%;
  box-shadow: 0 0 8px #007bff;
  animation: tech-pulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. The ::after Content - Sweeping Light Reflection */
.ultra-section-label::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    transparent
  );
  transform: skewX(-20deg);
  animation: shine-sweep 3s infinite;
}

/* --- Animations --- */

/* Makes the ::before dot pulse like a radar/recording light */
@keyframes tech-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(0, 123, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

/* Makes the ::after reflection sweep across the badge */
@keyframes shine-sweep {
  0% {
    left: -100%;
  }
  20% {
    left: 200%;
  }
  100% {
    left: 200%;
  } /* Pauses the sweep for a moment before repeating */
}

/* --- Base Skew-Pulse Button Structure (No Colors) --- */
.skew-pulse-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 28px;
  margin-top: 1.5rem;
  cursor: pointer;

  /* The Skew Effect */
  transform: skew(15deg);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-unskew-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: skew(-15deg);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-arrow {
  display: inline-flex;
  transition: transform 0.4s ease;
}

/* --- THEME 1: MyStore (Vibrant Blue) --- */
.mystore-theme {
  background-image: linear-gradient(to right top, #00c6ff, #0072ff);
}
.mystore-theme:hover {
  background-image: linear-gradient(to bottom, #0072ff, #00c6ff);
}

/* --- THEME 2: MyBooks (Deep Purple) --- */
.mybooks-theme {
  background-image: linear-gradient(to right top, #da22ff, #9733ee);
}
.mybooks-theme:hover {
  background-image: linear-gradient(to bottom, #9733ee, #da22ff);
}

/* --- Shared Hover & Pulse Animation --- */
.skew-pulse-btn:hover {
  transform: translateY(-3px) skew(0deg);
  border-radius: 26px;
  animation: pulsate-btn 1s infinite;
}

.skew-pulse-btn:hover .btn-unskew-text {
  transform: skew(0deg);
}

.skew-pulse-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.skew-pulse-btn:focus {
  outline: none;
  border-radius: 26px;
  animation: pulsate-btn 1s infinite;
}

@keyframes pulsate-btn {
  0% {
    transform: translateY(-3px) scale(1) skew(0deg);
    box-shadow: none;
  }
  50% {
    transform: translateY(-3px) scale(1.03) skew(0deg);
    box-shadow: 0 16px 20px rgba(0, 0, 0, 0.25);
  }
  100% {
    transform: translateY(-3px) scale(1) skew(0deg);
    box-shadow: none;
  }
}
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg-base: #f8fbff; /* Very soft blue-tinted white */
  --text-dark: #111827;
  --text-gray: #6b7280;
  --btn-blue: #2563eb;
  --btn-blue-hover: #1d4ed8;
  --card-bg: #ffffff;
}

* {
  box-sizing: border-box;
}

.integration-section {
  position: relative;
  background-color: var(--bg-base);
  padding: 100px 5% 120px;
  font-family: "Inter", sans-serif;
  overflow: hidden;
  z-index: 1;
}

/* --- Background Grid & Glow Effects --- */
.integration-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 80px 80px; /* Size of the grid squares */
  background-image:
    linear-gradient(to right, rgba(147, 197, 253, 0.2) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(147, 197, 253, 0.2) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, black 10%, transparent 90%);
  -webkit-mask-image: linear-gradient(to bottom, black 10%, transparent 90%);
  z-index: -2;
}

.bg-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(147, 197, 253, 0.45) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: -1;
  pointer-events: none;
}

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

/* --- Header & Typography --- */
.integration-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.integration-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.integration-header p {
  font-size: 1.15rem;
  color: var(--text-gray);
  margin-bottom: 30px;
}

/* --- The Blue Button --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--btn-blue);
  color: white;
  padding: 12px 28px;
  border-radius: 8px; /* Rounded corners like the image */
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background-color: var(--btn-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* --- The Card Grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.modern-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 12px; /* Smoother, modern corners */
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.03),
    0 1px 3px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align contents to the left like the image */
  text-align: left;
}

.modern-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.04);
}

/* --- Icon Alignment --- */
.lottie-container {
  width: 40px; /* Shrunk down to match the small icons in your reference */
  height: 40px;
  margin-bottom: 20px;
}

.lottie-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modern-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.modern-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .integration-section {
    padding: 80px 5%;
  }
  .integration-header h2 {
    font-size: 2.2rem;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .modern-card:hover {
    transform: translateY(-3px);
  }
}
/* --- Header & Typography --- */
.integration-header {
  text-align: center;
  max-width: 750px; /* Slightly wider to fit the paragraph nicely */
  margin: 0 auto 50px auto;
}

/* The light blue pill badge */
.badge-pill {
  display: inline-block;
  color: #0ea5e9; /* Cyan/Blue text */
  background-color: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.integration-header h2 {
  font-size: 3.2rem;
  font-weight: 800; /* Extra bold like the image */
  color: #0f172a; /* Deep navy/black */
  margin-bottom: 20px;
  letter-spacing: -1px;
}

/* The Blue to Green gradient for "Grow Faster." */
.text-gradient {
  background: linear-gradient(to right, #0080ff, #00d084);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.integration-header p {
  font-size: 1.15rem;
  color: #64748b; /* Slate gray */
  line-height: 1.6;
  margin: 0 auto 30px auto;
  max-width: 600px;
}

.integration-header p strong {
  color: #0f172a;
  font-weight: 600;
}

/* Responsive adjustment for the heading */
@media (max-width: 768px) {
  .integration-header h2 {
    font-size: 2.2rem;
  }
}
/* --- Base Theme --- */
:root {
  --mystore-main: #6366f1;
  --mystore-gradient: linear-gradient(135deg, #6366f1, #a855f7);
  --mybooks-main: #10b981;
  --mybooks-gradient: linear-gradient(135deg, #10b981, #0ea5e9);

  --bg-dark: #050505;
  --card-surface: #0f0f12; /* Deep dark for card */
}

.premium-saas-section {
  background-color: var(--bg-dark);
  color: #fff;
  padding: 100px 5%;
  position: relative;
  font-family: "Inter", system-ui, sans-serif;
}

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

/* --- Section Header --- */
.saas-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.ultra-section-label {
  display: inline-block;
  color: #a855f7;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
}
.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.text-gradient {
  background: var(--mystore-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-description {
  color: #9ca3af;
  font-size: 1.15rem;
  line-height: 1.6;
}

/* --- Grid Layout --- */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* =========================================
   UIVERSE 3D CARD IMPLEMENTATION 
   ========================================= */

.uiverse-card {
  position: relative;
  width: 100%;
  height: 550px; /* Tall enough to fit all content */
  background-color: var(--card-surface);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
  /* Original Uiverse bounce transition */
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Front content wrapper */
.card-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base Card Hover Logic */
.uiverse-card:hover {
  transform: scale(1.02);
}

.mystore-card:hover {
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
  border-color: var(--mystore-main);
}
.mybooks-card:hover {
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
  border-color: var(--mybooks-main);
}

/* Hide front on hover */
.uiverse-card:hover .card-front {
  transform: scale(0.5);
  opacity: 0;
}

/* --- The 3D Flipping Content (Back of Card) --- */
.card__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 50px 40px 50px 40px;
  box-sizing: border-box;
  background-color: #141418; /* Solid dark color so front doesn't bleed through */
  border-radius: 24px;

  /* Start rotated down flat */
  transform: rotateX(-90deg);
  transform-origin: bottom;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* The Flip Trigger */
.uiverse-card:hover .card__content {
  transform: rotateX(0deg);
}

/* --- Internal Typography & Elements --- */
.product-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.mystore-icon {
  background: rgba(99, 102, 241, 0.1);
  color: var(--mystore-main);
}
.mybooks-icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--mybooks-main);
}

.product-badge {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.mystore-badge {
  border: 1px solid var(--mystore-main);
  color: var(--mystore-main);
}
.mybooks-badge {
  border: 1px solid var(--mybooks-main);
  color: var(--mybooks-main);
}

.product-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
}
.product-tagline {
  color: #9ca3af;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hover-prompt {
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
}

/* Back Panel Content */
.content-title {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
}
.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.product-features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #d1d5db;
  font-size: 1rem;
}
.check-icon {
  margin-right: 12px;
  font-size: 1.2rem;
}
.mystore-check {
  color: var(--mystore-main);
}
.mybooks-check {
  color: var(--mybooks-main);
}

/* Mobile view adjustments */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  /* 1. INCREASE CARD HEIGHT to fit wrapped text + bottom padding */
  .uiverse-card {
    height: 560px;
  }

  /* 2. ADJUST INNER PADDING for smaller screens */
  .card__content {
    padding: 40px 25px;
    justify-content: space-between;
  }

  /* --- NEW: Scroll Flip Logic --- */

  /* Disable standard hover on mobile to prevent sticky tap glitches */
  .uiverse-card:hover .card-front {
    transform: none;
    opacity: 1;
  }
  .uiverse-card:hover .card__content {
    transform: rotateX(-90deg);
  }

  /* Apply the flip when JS adds the 'is-scrolled' class */
  .uiverse-card.is-scrolled .card-front {
    transform: scale(0.5);
    opacity: 0;
  }
  .uiverse-card.is-scrolled .card__content {
    transform: rotateX(0deg);
  }
}

/* --- Tablets & Mobile View --- */
@media (max-width: 768px) {
  /* 1. INCREASE CARD HEIGHT to fit wrapped text + bottom padding */
  .uiverse-card {
    height: 560px; /* Increased from desktop height */
  }

  /* 2. ADJUST INNER PADDING for smaller screens */
  .card__content {
    padding: 40px 25px;
    justify-content: space-between;
  }
}

/* --- Extra Small Phones --- */
@media (max-width: 400px) {
  /* 1. INCREASE CARD HEIGHT EVEN MORE for heavy text wrapping */
  .uiverse-card {
    height: 580px;
  }

  /* 2. TIGHTEN PADDING slightly to maximize space */
  .card__content {
    padding: 35px 20px;
  }

  /* Slightly shrink text to help it fit */
  .product-features li {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
}

/* Styling for the new dashboard image mockups */
.product-mockup {
  width: 100%;
  margin: 20px 0;
  position: relative;
  border-radius: 8px;
  /* Adds the dark rim to make it look like a screen bezel */
  border: 4px solid #1a1d27;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-mockup img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  /* Slightly dim the image by default to match the dark theme */
  opacity: 0.9;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* Optional: Slight zoom and brighten effect when hovering over the card front */
.card-front:hover .product-mockup {
  transform: translateY(-5px);
}

.card-front:hover .product-mockup img {
  opacity: 1;
  transform: scale(1.02);
}

/* Specific glows for the mockups to match your theme */
.mystore-mockup {
  box-shadow: 0 10px 30px rgba(163, 36, 163, 0.2);
}

.mybooks-mockup {
  box-shadow: 0 10px 30px rgba(40, 180, 162, 0.2);
}

/* --- Base Section Setup --- */
.saas-hero-cta {
  position: relative;
  background-color: #05050a; /* Deep, dark SaaS background */
  padding: 120px 5%;
  overflow: hidden;
  font-family: "Inter", system-ui, sans-serif;
  color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10; /* Keeps content above the glow waves */
}

/* --- Animated Glowing Background Waves --- */
.glow-wave {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.6;
  z-index: 1;
  animation: pulseGlow 8s infinite alternate ease-in-out;
}

.wave-purple {
  background: #a855f7;
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
}

.wave-blue {
  background: #3b82f6;
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -50px;
  animation-delay: 2s;
}

.wave-pink {
  background: #ec4899;
  width: 400px;
  height: 400px;
  top: 30%;
  left: 40%;
  opacity: 0.3;
  animation-delay: 4s;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.1) translate(20px, 20px);
    opacity: 0.7;
  }
}

/* --- Base Light Theme Variables --- */
:root {
  /* Slightly deeper brand colors for better contrast on light backgrounds */
  --mystore-main: #4f46e5;
  --mystore-gradient: linear-gradient(135deg, #4f46e5, #9333ea);
  --mybooks-main: #059669;
  --mybooks-gradient: linear-gradient(135deg, #059669, #0284c7);

  --bg-light: #f8fafc; /* Professional soft slate/off-white */
  --card-surface: #ffffff; /* Pure white for cards */
  --text-dark: #0f172a; /* Deep charcoal for headings */
  --text-muted: #475569; /* Medium slate for paragraphs */
  --border-light: rgba(0, 0, 0, 0.06);
}

.premium-saas-section {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 100px 5%;
  position: relative;
  font-family: "Inter", system-ui, sans-serif;
  overflow: hidden;
}

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

/* --- Section Header --- */
.saas-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.ultra-section-label {
  display: inline-block;
  color: #7e22ce;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(147, 51, 234, 0.1);
  border: 1px solid rgba(147, 51, 234, 0.2);
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: var(--text-dark);
}

.text-gradient {
  background: var(--mystore-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.6;
}

/* --- Grid Layout --- */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* =========================================
   UIVERSE 3D CARD (LIGHT THEME)
   ========================================= */

.uiverse-card {
  position: relative;
  width: 100%;
  height: 550px;
  background-color: var(--card-surface);
  border-radius: 24px;
  border: 1px solid var(--border-light);
  /* Soft, elegant drop shadow for light themes */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Front content wrapper */
.card-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px;
  background-color: var(--card-surface);
  width: 100%;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover Logic - Upgraded Shadows for Light Mode */
.uiverse-card:hover {
  transform: scale(1.02);
}
.mystore-card:hover {
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.12);
  border-color: rgba(79, 70, 229, 0.3);
}
.mybooks-card:hover {
  box-shadow: 0 20px 40px rgba(5, 150, 105, 0.12);
  border-color: rgba(5, 150, 105, 0.3);
}

/* Hide front on hover */
.uiverse-card:hover .card-front {
  transform: scale(0.5);
  opacity: 0;
}

/* --- The 3D Flipping Content (Back of Card) --- */
.card__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 50px 40px;
  box-sizing: border-box;
  background-color: var(--card-surface); /* Keep it crisp white */
  border-radius: 24px;
  transform: rotateX(-90deg);
  transform-origin: bottom;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.uiverse-card:hover .card__content {
  transform: rotateX(0deg);
}

/* --- Internal Typography & Elements --- */
.product-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.mystore-icon {
  background: rgba(79, 70, 229, 0.1);
  color: var(--mystore-main);
}
.mybooks-icon {
  background: rgba(5, 150, 105, 0.1);
  color: var(--mybooks-main);
}

.product-badge {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 20px;
  background-color: #ffffff; /* Solid white background for the badge */
}
.mystore-badge {
  border: 1px solid var(--mystore-main);
  color: var(--mystore-main);
}
.mybooks-badge {
  border: 1px solid var(--mybooks-main);
  color: var(--mybooks-main);
}

.product-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.product-tagline {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hover-prompt {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
}

/* Back Panel Content */
.content-title {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 700;
}
.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.product-features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--text-muted);
  font-size: 1rem;
}
.check-icon {
  margin-right: 12px;
  font-size: 1.2rem;
}
.mystore-check {
  color: var(--mystore-main);
}
.mybooks-check {
  color: var(--mybooks-main);
}

/* --- Styling for the dashboard image mockups (Light Theme) --- */
.product-mockup {
  width: 100%;
  margin: 20px 0;
  position: relative;
  border-radius: 8px;
  /* Clean, light gray bezel instead of black */
  border: 4px solid #f1f5f9;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  background-color: #ffffff;
}

.product-mockup img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.95; /* Brightened up for light theme */
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.card-front:hover .product-mockup {
  transform: translateY(-5px);
}
.card-front:hover .product-mockup img {
  opacity: 1;
  transform: scale(1.02);
}

.mystore-mockup {
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
}
.mybooks-mockup {
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.15);
}

/* =========================================
   Responsive Adjustments
   ========================================= */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .uiverse-card {
    height: 560px;
  }
  .card__content {
    padding: 40px 25px;
    justify-content: space-between;
  }

  /* Mobile Scroll Flip Logic */
  .uiverse-card:hover .card-front {
    transform: none;
    opacity: 1;
  }
  .uiverse-card:hover .card__content {
    transform: rotateX(-90deg);
  }
  .uiverse-card.is-scrolled .card-front {
    transform: scale(0.5);
    opacity: 0;
  }
  .uiverse-card.is-scrolled .card__content {
    transform: rotateX(0deg);
  }
}

@media (max-width: 400px) {
  .uiverse-card {
    height: 580px;
  }
  .card__content {
    padding: 35px 20px;
  }
  .product-features li {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
}
/* --- Layout Grid --- */
.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta-content {
  flex: 1;
  max-width: 550px;
}

.cta-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  perspective: 1000px; /* Gives the laptop a 3D space to exist in */
}

/* --- Typography --- */
.cta-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.cta-description {
  font-size: 1.25rem;
  color: #94a3b8; /* Soft tech gray */
  line-height: 1.6;
  margin-bottom: 40px;
}

/* --- Premium Buttons --- */
.cta-button-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Vibrant Gradient Primary Button */
.btn-gradient-glow.primary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    #00f2fe 0%,
    #4facfe 100%
  ); /* Cyan to Blue gradient */
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(79, 172, 254, 0.5); /* Outer glow */
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-gradient-glow.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(79, 172, 254, 0.8); /* Stronger glow on hover */
}

/* Clean Outline Secondary Button */
.btn-outline-glow.secondary {
  display: flex;
  align-items: center;
  background: transparent;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.btn-outline-glow.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* --- Floating 3D Laptop Visual --- */
.floating-laptop {
  max-width: 100%;
  width: 650px;
  border-radius: 16px;
  /* Simulates a 3D isometric tilt */
  transform: rotateY(-15deg) rotateX(5deg);
  /* Smooth floating animation */
  animation: floatLaptop 6s ease-in-out infinite;
  /* Deep shadow to ground it */
  filter: drop-shadow(-20px 30px 40px rgba(0, 0, 0, 0.6));
}

@keyframes floatLaptop {
  0% {
    transform: translateY(0px) rotateY(-15deg) rotateX(5deg);
  }
  50% {
    transform: translateY(-20px) rotateY(-12deg) rotateX(8deg);
  }
  100% {
    transform: translateY(0px) rotateY(-15deg) rotateX(5deg);
  }
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .cta-grid {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .cta-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cta-button-group {
    justify-content: center;
  }

  .floating-laptop {
    transform: rotateY(0deg) rotateX(0deg); /* Remove 3D tilt on smaller screens */
    animation: floatLaptopMobile 6s ease-in-out infinite;
  }

  @keyframes floatLaptopMobile {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-15px);
    }
    100% {
      transform: translateY(0px);
    }
  }
}

@media (max-width: 768px) {
  .saas-hero-cta {
    padding: 80px 5%;
  }
  .cta-title {
    font-size: 2.5rem;
  }

  .cta-button-group {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
  }

  .btn-gradient-glow.primary,
  .btn-outline-glow.secondary {
    width: 100%;
    justify-content: center;
  }
}

/* --- Section Container --- */
.framer-theme-cta {
  background-color: #000000; /* Pure black background */
  position: relative;
  overflow: hidden;
  padding: 120px 5%;
  font-family: "Inter", system-ui, sans-serif;
  color: #ffffff;
}

/* --- The Intense Bottom Blue Glow --- */
.bottom-blue-glow {
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 100%;
  height: 50%;
  background: radial-gradient(
    ellipse at bottom,
    rgba(0, 102, 255, 0.6) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  filter: blur(60px);
  z-index: 1;
  pointer-events: none; /* So it doesn't block clicks */
}

/* --- Layout Grid --- */
.framer-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  z-index: 2; /* Keeps content above the glow */
}

/* --- Left Column: Content --- */
.framer-cta-content {
  flex: 1;
  max-width: 480px;
  text-align: left;
}

.framer-cta-content h2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.framer-cta-content p {
  font-size: 1.15rem;
  color: #a1a1aa; /* Light slate gray */
  line-height: 1.6;
  margin-bottom: 40px;
}

/* --- Buttons --- */
/* --- Buttons --- */
.framer-cta-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  position: relative; /* Required for z-index to take effect */
  z-index: 10; /* You can increase this number (e.g., 50 or 99) if it's still hidden behind something else */
}

/* Primary White Pill */
.framer-btn-primary {
  background-color: #ffffff;
  color: #000000;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.framer-btn-primary:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* Secondary Dark Pill */
.framer-btn-secondary {
  background-color: rgba(255, 255, 255, 0.08); /* Translucent dark fill */
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

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

/* --- Right Column: Visual & Mockup --- */
.framer-cta-visual {
  flex: 1.2;
  position: relative;
}

.dashboard-mockup-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  /* Slightly fades out the right edge like the screenshot */
  mask-image: linear-gradient(to right, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
}

/* --- Floating Collaborative Cursors --- */
.floating-cursor {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 10;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.cursor-label {
  background-color: #0066ff;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Position them to mimic the screenshot */
.cursor-claudia {
  top: 15%;
  left: -10%;
  animation: float1 6s ease-in-out infinite;
}

.cursor-alex {
  top: 45%;
  left: -5%;
  animation: float2 5s ease-in-out infinite reverse;
}

/* Subtle floating animation */
@keyframes float1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .framer-cta-container {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .framer-cta-content {
    max-width: 100%;
    text-align: center;
  }

  .framer-cta-content h2 {
    font-size: 3rem;
  }

  .framer-cta-buttons {
    justify-content: center;
    z-index: 999;
    position: relative;
  }

  .dashboard-mockup-img {
    mask-image: none; /* Remove fade on mobile */
    -webkit-mask-image: none;
  }

  .cursor-claudia {
    top: -20px;
    left: 10%;
  }
  .cursor-alex {
    top: 50%;
    left: -10px;
  }
}

@media (max-width: 480px) {
  .framer-cta-content h2 {
    font-size: 2.2rem;
  }
  .framer-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .framer-btn-primary,
  .framer-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
/* --- The 20% Bottom Blue Overlay --- */
.bottom-blue-glow {
  position: absolute;
  bottom: 0; /* Locks it to the very bottom edge */
  left: 0;
  width: 100%;
  height: 30%; /* Exactly 20% of the CTA section's height */

  /* Smooth gradient: Solid vibrant blue at the bottom fading to transparent at the top */
  background: linear-gradient(
    to top,
    rgba(0, 102, 255, 0.8) 0%,
    rgba(0, 102, 255, 0) 100%
  );

  z-index: 1; /* Increased z-index so it overlays on top of the bottom of the dashboard image */
  pointer-events: none; /* Ensures users can still click buttons underneath it */
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}