
/*** T3SB identifier: t3sbsCSSassets_32045 */

/* t3sbs_assets_32045 */
:root {
  --lime: #a3d900;
  --lime-dark: #8ab800;
  --orange: #e85d04;
  --dark-blue: #1a2b4a;
  --dark-blue-light: #2a3d5c;
  --cream: #f5f0e8;
  --white: #fff;
  --shadow-soft: 0 4px 20px -2px rgb(0 0 0 / 0.1);
  --shadow-card: 0 8px 30px -4px rgb(0 0 0 / 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}



.header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s;
  background: transparent;
}

.header.scrolled {
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--dark-blue);
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-blue);
}

.logo-text span {
  color: var(--lime);
}

/* -----------------------------
   Navigation (Desktop)
----------------------------- */

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

.nav-desktop a {
  text-decoration: none;
  color: rgba(26, 43, 74, 0.8);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-desktop a:hover {
  color: var(--dark-blue);
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width 0.3s;
}

.nav-desktop a:hover::after {
  width: 100%;
}

/* -----------------------------
   Buttons
----------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-primary {
  background: var(--lime);
  color: var(--dark-blue);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--lime-dark);
  box-shadow: var(--shadow-card);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: #fff;
}

.btn-dark {
  background: var(--dark-blue);
  color: #fff;
}

.btn-dark:hover {
  background: var(--dark-blue-light);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* -----------------------------
   Mobile Menu Toggle
----------------------------- */

.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--dark-blue);
}

.nav-mobile {
  display: none;
  background: var(--cream);
  border-top: 1px solid rgba(26, 43, 74, 0.1);
  padding: 16px 24px;
}

.nav-mobile.active {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: var(--dark-blue);
  font-weight: 500;
  border-bottom: 1px solid rgba(26, 43, 74, 0.05);
}

.nav-mobile .btn {
  margin-top: 16px;
  width: 100%;
}

/* -----------------------------
   Hero
----------------------------- */

.hero {
  min-height: 100vh;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-triangle {
  position: absolute;
  left: -80px;
  top: 33%;
  width: 256px;
  height: 256px;
 /* background: rgba(232, 93, 4, 0.2);*/
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  transform: rotate(45deg);
}

.hero-bg-line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 384px;
  height: 8px;
  background: var(--dark-blue);
  transform: rotate(-12deg);
  transform-origin: left;
}

.hero-bg-circle {
  position: absolute;
  left: -40px;
  bottom: 80px;
  width: 128px;
  height: 128px;
  background: rgba(236, 72, 153, 0.4);
  border-radius: 50%;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    padding: 128px 24px;
  }
}

.hero-visual {
  order: 2;
}

@media (min-width: 1024px) {
  .hero-visual {
    order: 1;
  }
}

.hero-illustration {
  position: relative;
  width: 100%;
  max-width: 448px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.hero-circle-blue {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 75%;
  background: rgba(37, 99, 235, 0.9);
  border-radius: 50%;
}

.hero-circle-green {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 66%;
  height: 66%;
  background: rgba(5, 150, 105, 0.9);
  border-radius: 50%;
}

.hero-circle-orange {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 33%;
  height: 33%;
  background: var(--orange);
  border-radius: 50%;
}

.hero-icon-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.hero-icon-center-inner {
  width: 96px;
  height: 96px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-icon-center-inner svg {
  width: 48px;
  height: 48px;
  stroke: var(--lime);
}

.hero-icon-float {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-icon-float-1 {
  top: 40px;
  right: 40px;
  width: 64px;
  height: 64px;
}

.hero-icon-float-1 svg {
  width: 32px;
  height: 32px;
  stroke: rgb(5, 150, 105);
}

.hero-icon-float-2 {
  bottom: 64px;
  left: 40px;
  width: 56px;
  height: 56px;
}

.hero-icon-float-2 svg {
  width: 28px;
  height: 28px;
  stroke: rgb(37, 99, 235);
}

.hero-dot {
  position: absolute;
  border-radius: 50%;
}

.hero-dot-1 {
  top: 25%;
  right: 0;
  width: 16px;
  height: 16px;
  background: var(--lime);
}

.hero-dot-2 {
  bottom: 25%;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--orange);
}

.hero-dot-3 {
  top: 0;
  right: 25%;
  width: 8px;
  height: 8px;
  background: var(--dark-blue);
}

.hero-content {
  order: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    order: 2;
    text-align: left;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(163, 217, 0, 0.2);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-blue);
  margin-bottom: 24px;
}

.badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--lime-dark);
}

.hero h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--dark-blue);
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 56px;
  }
}

.hero h1 span {
  color: var(--lime);
}

.hero p {
  font-size: 18px;
  color: rgba(26, 43, 74, 0.7);
  margin-bottom: 32px;
  max-width: 576px;
}

@media (min-width: 1024px) {
  .hero p {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  color: rgba(26, 43, 74, 0.6);
}

@media (min-width: 1024px) {
  .hero-trust {
    justify-content: flex-start;
  }
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust-item svg {
  width: 16px;
  height: 16px;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* -----------------------------
   Sections
----------------------------- */

.section {
  padding: 80px 24px;
}

@media (min-width: 1024px) {
  .section {
    padding: 112px 24px;
  }
}

.section-inner {
  max-width: 1540px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.section-label-lime {
  background: rgba(163, 217, 0, 0.2);
  color: var(--lime-dark);
}

.section-label-orange {
  background: rgba(232, 93, 4, 0.1);
  color: var(--orange);
}

.section-label-blue {
  background: rgba(37, 99, 235, 0.1);
  color: rgb(37, 99, 235);
}

.section-label-purple {
  background: rgba(147, 51, 234, 0.1);
  color: rgb(147, 51, 234);
}

.section h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .section h2 {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .section h2 {
    font-size: 48px;
  }
}

.section-subtitle {
  font-size: 18px;
  color: rgba(26, 43, 74, 0.7);
  max-width: 768px;
  margin: 0 auto;
}

/* -----------------------------
   Problem Section
----------------------------- */

.problem-section {
  background: #fff;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .problem-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.problem-card {
  padding: 24px;
  background: var(--cream);
  border: 1px solid rgba(26, 43, 74, 0.05);
  border-radius: 16px;
  transition: all 0.3s;
}

.problem-card:hover {
  border-color: rgba(163, 217, 0, 0.3);
  box-shadow: var(--shadow-card);
}

.problem-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem-icon svg {
  width: 28px;
  height: 28px;
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 14px;
  color: rgba(26, 43, 74, 0.6);
  line-height: 1.6;
}

.problem-warning {
  margin-top: 48px;
  padding: 24px;
  background: rgba(232, 93, 4, 0.05);
  border: 1px solid rgba(232, 93, 4, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.problem-warning-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(232, 93, 4, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-warning-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
}

.problem-warning h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.problem-warning p {
  color: rgba(26, 43, 74, 0.7);
}

/* -----------------------------
   Solution Section
----------------------------- */

.solution-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.solution-bg-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(163, 217, 0, 0.1);
  border-radius: 50%;
  filter: blur(64px);
}

.solution-bg-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 256px;
  height: 256px;
  background: rgba(232, 93, 4, 0.1);
  border-radius: 50%;
  filter: blur(64px);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) {
  .solution-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.solution-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.solution-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-step-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

.solution-step-content span {
  font-size: 12px;
  font-weight: 700;
  color: rgba(26, 43, 74, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.solution-step-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-blue);
}

.solution-step-content p {
  font-size: 14px;
  color: rgba(26, 43, 74, 0.6);
}

.solution-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.solution-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(163, 217, 0, 0.2);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-blue);
}

.solution-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--lime-dark);
}

.solution-visual {
  display: flex;
  justify-content: center;
}

/* -----------------------------
   Phone Mockup
----------------------------- */

.phone-mockup {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 32px 40px;
  box-shadow: var(--shadow-card);
}

.phone-frame {
  width: 256px;
  height: 500px;
  background: var(--dark-blue);
  border-radius: 48px;
  padding: 12px;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--cream);
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-status {
  height: 32px;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-status span {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark-blue);
}

.phone-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.phone-call-icon {
  width: 80px;
  height: 80px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.phone-call-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--dark-blue);
}

.phone-content p {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 4px;
}

.phone-content .time {
  font-size: 14px;
  color: rgba(26, 43, 74, 0.6);
  margin-bottom: 32px;
}

.phone-keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 180px;
}

.phone-key {
  aspect-ratio: 1;
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  cursor: pointer;
  transition: all 0.2s;
}

.phone-key:hover {
  background: rgba(163, 217, 0, 0.2);
}

.phone-end {
  padding: 16px;
  display: flex;
  justify-content: center;
}

.phone-end-btn {
  width: 64px;
  height: 64px;
  background: #ef4444;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.phone-end-btn svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  transform: rotate(135deg);
}

.phone-float-badge {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-blue);
}

.phone-float-badge svg {
  width: 16px;
  height: 16px;
}

/* -----------------------------
   Benefits
----------------------------- */

.benefits-section {
  background: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  position: relative;
  padding: 32px;
  background: var(--cream);
  border: 1px solid rgba(26, 43, 74, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.benefit-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-card);
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:nth-child(1):hover::before {
  background: linear-gradient(135deg, rgb(16, 185, 129), rgb(5, 150, 105));
}

.benefit-card:nth-child(2):hover::before {
  background: linear-gradient(135deg, rgb(59, 130, 246), rgb(37, 99, 235));
}

.benefit-card:nth-child(3):hover::before {
  background: linear-gradient(135deg, rgb(249, 115, 22), var(--orange-dark));
}

.benefit-card:nth-child(4):hover::before {
  background: linear-gradient(135deg, rgb(168, 85, 247), rgb(147, 51, 234));
}

.benefit-card:nth-child(5):hover::before {
  background: linear-gradient(135deg, var(--lime), var(--lime-dark));
}

.benefit-card:nth-child(6):hover::before {
  background: linear-gradient(135deg, rgb(236, 72, 153), rgb(219, 39, 119));
}

.benefit-icon {
  position: relative;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--dark-blue);
}

.benefit-card h3 {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.benefit-card:hover h3 {
  color: #fff;
}

.benefit-card p {
  position: relative;
  font-size: 14px;
  color: rgba(26, 43, 74, 0.6);
  line-height: 1.6;
  transition: color 0.3s;
}

.benefit-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* -----------------------------
   Use Cases
----------------------------- */

.usecases-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.usecases-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: rgba(163, 217, 0, 0.05);
  border-radius: 50%;
  filter: blur(64px);
}

.usecases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}

@media (min-width: 1024px) {
  .usecases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.usecase-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(26, 43, 74, 0.05);
  transition: box-shadow 0.3s;
}

.usecase-card:hover {
  box-shadow: var(--shadow-card);
}

.usecase-header {
  padding: 32px 32px 0;
}

.usecase-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.usecase-icon svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
}

.usecase-subtitle {
  font-size: 12px;
  font-weight: 500;
  color: rgba(26, 43, 74, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.usecase-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 8px 0 16px;
}

.usecase-card > p {
  padding: 0 32px;
  color: rgba(26, 43, 74, 0.7);
  line-height: 1.6;
}

.usecase-features {
  padding: 24px 32px 32px;
}

.usecase-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  list-style: none;
}

.usecase-features li:last-child {
  margin-bottom: 0;
}

.usecase-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usecase-check svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  stroke-width: 3;
}

.usecase-features span {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-blue);
}

.usecase-accent {
  height: 4px;
}

.usecases-extra {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 64px;
  position: relative;
}

@media (min-width: 640px) {
  .usecases-extra {
    grid-template-columns: repeat(3, 1fr);
  }
}

.usecase-extra-item {
  text-align: center;
  padding: 24px;
}

.usecase-extra-item svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
}

.usecase-extra-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.usecase-extra-item p {
  font-size: 14px;
  color: rgba(26, 43, 74, 0.6);
}

/* -----------------------------
   Security
----------------------------- */

.security-section {
  background: var(--dark-blue);
  position: relative;
  overflow: hidden;
}

.security-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
  background-size: 40px 40px;
}

.security-bg-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(163, 217, 0, 0.1);
  border-radius: 50%;
  filter: blur(64px);
}

.security-bg-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 256px;
  height: 256px;
  background: rgba(232, 93, 4, 0.1);
  border-radius: 50%;
  filter: blur(64px);
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) {
  .security-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(163, 217, 0, 0.2);
  border-radius: 9999px;
  margin-bottom: 24px;
}

.security-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--lime);
}

.security-badge span {
  font-size: 14px;
  font-weight: 500;
  color: var(--lime);
}

.security-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .security-section h2 {
    font-size: 48px;
  }
}

.security-section h2 span {
  color: var(--lime);
}

.security-intro {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  line-height: 1.6;
}

.security-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.security-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: background 0.3s;
}

.security-feature:hover {
  background: rgba(255, 255, 255, 0.1);
}

.security-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(163, 217, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--lime);
}

.security-feature h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.security-feature p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.security-visual {
  display: flex;
  justify-content: center;
}

.security-shield {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px 40px;
}

.shield-center {
  position: relative;
  width: 192px;
  height: 192px;
  margin: 0 auto 32px;
}

.shield-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(163, 217, 0, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

.shield-ring {
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: rgba(163, 217, 0, 0.3);
}

.shield-core {
  position: absolute;
  inset: 32px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-core svg {
  width: 64px;
  height: 64px;
  stroke: var(--dark-blue);
}

.shield-orbit {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-orbit svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.shield-orbit-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(59, 130, 246);
}

.shield-orbit-2 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(16, 185, 129);
}

.shield-orbit-3 {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--orange);
}

.shield-orbit-4 {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(168, 85, 247);
}

.shield-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.shield-stat {
  text-align: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.shield-stat-value {
  font-size: 30px;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 4px;
}

.shield-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* -----------------------------
   Pricing
----------------------------- */

.pricing-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.pricing-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: rgba(163, 217, 0, 0.1);
  border-radius: 50%;
  filter: blur(64px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  padding: 32px;
  border-radius: 24px;
  transition: all 0.3s;
}

.pricing-card:not(.highlighted) {
  background: var(--cream);
  border: 1px solid rgba(26, 43, 74, 0.05);
}

.pricing-card:not(.highlighted):hover {
  box-shadow: var(--shadow-soft);
}

.pricing-card.highlighted {
  background: var(--dark-blue);
  color: #fff;
  box-shadow: var(--shadow-card);
  position: relative;
}

@media (min-width: 1024px) {
  .pricing-card.highlighted {
    transform: scale(1.05);
  }
}

.pricing-popular {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--lime);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-blue);
}

.pricing-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pricing-icon svg {
  width: 28px;
  height: 28px;
}

.pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card:not(.highlighted) h3 {
  color: var(--dark-blue);
}

.pricing-desc {
  font-size: 14px;
  margin-bottom: 24px;
}

.pricing-card:not(.highlighted) .pricing-desc {
  color: rgba(26, 43, 74, 0.6);
}

.pricing-card.highlighted .pricing-desc {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-price {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.pricing-card:not(.highlighted) .pricing-price {
  color: var(--dark-blue);
}

.pricing-card.highlighted .pricing-price {
  color: var(--lime);
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  list-style: none;
  font-size: 14px;
}

.pricing-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card:not(.highlighted) .pricing-check {
  background: rgba(163, 217, 0, 0.2);
}

.pricing-card.highlighted .pricing-check {
  background: var(--lime);
}

.pricing-check svg {
  width: 12px;
  height: 12px;
}

.pricing-card:not(.highlighted) .pricing-check svg {
  stroke: var(--lime-dark);
}

.pricing-card.highlighted .pricing-check svg {
  stroke: var(--dark-blue);
}

.pricing-card:not(.highlighted) .pricing-features li {
  color: rgba(26, 43, 74, 0.7);
}

.pricing-card.highlighted .pricing-features li {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-note {
  text-align: center;
  margin-top: 48px;
  position: relative;
}

.pricing-note p {
  color: rgba(26, 43, 74, 0.6);
}

.pricing-note strong {
  color: var(--dark-blue);
}

/* -----------------------------
   Audience
----------------------------- */

.audience-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.audience-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(232, 93, 4, 0.1);
  border-radius: 50%;
  filter: blur(64px);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}

@media (min-width: 640px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.audience-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 32px;
  background: #fff;
  border: 1px solid rgba(26, 43, 74, 0.05);
  border-radius: 16px;
  transition: all 0.3s;
}

.audience-card:hover {
  box-shadow: var(--shadow-card);
}

.audience-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.audience-card:hover .audience-icon {
  transform: scale(1.1);
}

.audience-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
}

.audience-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.audience-card:hover h3 {
  color: var(--lime-dark);
}

.audience-card p {
  font-size: 14px;
  color: rgba(26, 43, 74, 0.6);
  line-height: 1.6;
}

/* -----------------------------
   CTA
----------------------------- */

.cta-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: rgba(163, 217, 0, 0.1);
  border-radius: 50%;
  filter: blur(64px);
}

.cta-inner {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.cta-section h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .cta-section h2 {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .cta-section h2 {
    font-size: 48px;
  }
}

.cta-section > .section-inner > p {
  font-size: 18px;
  color: rgba(26, 43, 74, 0.7);
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
}

.cta-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
  color: rgba(26, 43, 74, 0.6);
  transition: color 0.3s;
}

.cta-contact a:hover {
  color: var(--lime-dark);
}

.cta-contact svg {
  width: 16px;
  height: 16px;
}

.cta-note {
  padding: 24px;
  background: var(--cream);
  border: 1px solid rgba(26, 43, 74, 0.05);
  border-radius: 16px;
}

.cta-note p {
  font-size: 14px;
  color: rgba(26, 43, 74, 0.7);
}

.cta-note strong {
  color: var(--dark-blue);
}

/* -----------------------------
   Footer
----------------------------- */

.footer {
  background: var(--dark-blue);
  color: #fff;
}

.footer-main {
  padding: 64px 24px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}

.footer-brand .logo {
  margin-bottom: 24px;
}

.footer-brand .logo-text {
  color: #fff;
}

.footer-brand > p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  max-width: 320px;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact a,
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--lime);
}

.footer-contact svg {
  width: 16px;
  height: 16px;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--lime);
}

/* -----------------------------
   Utility
----------------------------- */

.hidden-lg {
  display: none;
}

@media (min-width: 1024px) {
  .hidden-lg {
    display: inline-flex;
  }
}

.bg-lime {
  background: var(--lime);
}

.bg-orange {
  background: var(--orange);
}

.bg-blue {
  background: rgb(37, 99, 235);
}

.bg-emerald {
  background: rgb(5, 150, 105);
}

.bg-purple {
  background: rgb(147, 51, 234);
}
	

