:root {
  --bg: #f2f3ff;
  --surface: #ffffff;
  --surface-alt: #f8f9ff;
  --border: #e1e4f8;
  --primary: #3529ff;
  --primary-dark: #2015d6;
  --secondary: #ff7a59;
  --text: #101439;
  --muted: #5d6593;
  --muted-strong: #2f3365;
  --shadow: 0 20px 45px rgba(26, 36, 83, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(242, 243, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand img {
  width: 160px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.link-muted {
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

.link-muted:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  color: #fff;
  box-shadow: 0 12px 30px rgba(53, 41, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(32, 21, 214, 0.35);
}

.btn-secondary {
  background: rgba(53, 41, 255, 0.08);
  color: var(--primary-dark);
}

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

.btn-outline {
  border: 1px solid rgba(53, 41, 255, 0.35);
  color: var(--primary-dark);
  background: #fff;
}

.btn-outline:hover {
  border-color: var(--primary-dark);
  background: rgba(53, 41, 255, 0.05);
}

.hero {
  padding: 80px 0 80px;
  background: radial-gradient(circle at top right, rgba(53, 41, 255, 0.12), transparent 45%),
    radial-gradient(circle at bottom left, rgba(255, 122, 89, 0.14), transparent 55%);
}

.hero-inner {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: rgba(53, 41, 255, 0.08);
  color: var(--primary-dark);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 3.3rem);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--muted-strong);
}

.hero-copy p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 36px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.meta-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow);
  text-align: left;
}

.meta-card strong {
  font-size: 1.1rem;
  display: block;
  color: var(--primary-dark);
}

.meta-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  display: flex;
  justify-content: end;
}

.preview-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 25px 60px rgba(21, 24, 68, 0.2);
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.preview-card header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.preview-card h3 {
  font-size: 1.1rem;
  color: var(--muted-strong);
}

.preview-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.avatar {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #6c5eff);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.preview-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.preview-link {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(53, 41, 255, 0.08);
}

.preview-link span {
  font-size: 0.92rem;
  color: var(--muted-strong);
}

.preview-link button {
  border: none;
  background: rgba(53, 41, 255, 0.18);
  color: var(--primary-dark);
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.preview-link button:hover {
  background: rgba(53, 41, 255, 0.28);
}

.preview-card footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  padding: 7px 14px;
  border-radius: 12px;
  background: rgba(255, 122, 89, 0.15);
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.8rem;
}

.stats {
  padding: 48px 0;
}

.stat-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  text-align: left;
}

.stat-card strong {
  display: block;
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.stat-card span {
  font-size: 0.95rem;
  color: var(--muted);
}

section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 14px;
  color: var(--muted-strong);
  line-height: 48px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  background: rgba(53, 41, 255, 0.1);
}

.feature-card h3 {
  font-size: 1.2rem;
  color: var(--muted-strong);
}

.feature-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.how-it-works .step-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-card {
  background: var(--surface);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-index {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(53, 41, 255, 0.12);
  color: var(--primary-dark);
  font-weight: 700;
  display: grid;
  place-items: center;
}

.step-card h3 {
  color: var(--muted-strong);
  font-size: 1.15rem;
}

.step-card p {
  color: var(--muted);
}

.use-cases {
  background: var(--surface-alt);
}

.usecase-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.section-head--left {
  text-align: left;
  margin: 0 0 36px;
}

.section-head--left h2 {
  margin-bottom: 12px;
}

.section-head--left p {
  margin: 0;
}

.usecase-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.usecase-points h3 {
  font-size: 1.12rem;
  color: var(--muted-strong);
  margin-bottom: 6px;
}

.usecase-points p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}

.usecase-visual img {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: block;
  margin: 0 auto;
  background: #fff;
  padding: 30px 30px 0px;
}

@media (min-width: 768px) {
  .usecase-grid {
    grid-template-columns: minmax(320px, 1fr) minmax(360px, 1fr);
  }

  .usecase-visual img {
    margin: 0 0 0 auto;
  }
}

.testimonials {
  background: radial-gradient(circle at top left, rgba(53, 41, 255, 0.15), transparent 55%);
}

.testimonial-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-left: 5px solid rgba(53, 41, 255, 0.3);
}

.testimonial-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--muted-strong);
}

.testimonial-card footer span {
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing {
  background: var(--surface-alt);
}

.pricing-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.plan-card {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -16px;
  right: 24px;
  background: linear-gradient(135deg, var(--secondary), #ff9a73);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.plan-card h3 {
  font-size: 1.3rem;
  color: var(--muted-strong);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--muted-strong);
}

.price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 6px;
}

.plan-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.plan-card ul li::before {
  content: '•';
  color: var(--primary);
  margin-right: 8px;
  font-size: 1.2rem;
}

.plan-card .btn {
  width: fit-content;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list details {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--muted-strong);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary {
  color: var(--primary-dark);
}

.faq-list p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-inner {
  background: var(--surface);
  border: 1px solid rgba(47, 51, 101, 0.08);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 18px 42px rgba(16, 20, 57, 0.1);
}

.cta-copy {
  max-width: 520px;
  display: grid;
  gap: 16px;
}

.cta-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 0;
  color: var(--muted-strong);
}

.cta-inner p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta .btn-primary {
  background: var(--primary);
  box-shadow: none;
}

.cta .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: none;
  background: var(--primary-dark);
}

.cta .btn-outline {
  border-color: rgba(47, 51, 101, 0.2);
  color: var(--muted-strong);
  background: var(--surface);
}

.cta .btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(53, 41, 255, 0.08);
}

.site-footer {
  margin-top: 80px;
  padding: 60px 0 40px;
  background: #0b0e2e;
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
    width: 160px;
    margin-bottom: 16px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(275deg) brightness(106%) contrast(101%);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  font-size: 0.9rem;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-col address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-col address span {
  color: inherit;
}

.footer-col a {
  display: inline-flex;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-col a:hover,
.socials a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: #fff;
}

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

  .top-bar .container {
    justify-content: space-between;
  }
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
.nav-actions .link-muted{
  display: none;
}
  .hero-actions {
    justify-content: center;
  }

  .hero-meta {
    text-align: left;
  }

  .preview-card {
    margin: 0 auto;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  section {
    padding: 64px 0;
  }

  .top-bar .container {
    padding: 16px 0;
  }

  .hero {
    padding: 90px 0 60px;
  }

  .stat-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .cta-inner {
    padding: 36px 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}


.hero-visual img {
    max-width: 300px;
    margin-right: -30px;
}

section#contact {
    padding-top: 40px;
    padding-bottom: 60px;
}


    .cookie-consent {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 0 1rem 1rem;
        z-index: 1090;
        pointer-events: none;
        transform: translateY(100%);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .cookie-consent.is-visible {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .cookie-consent.is-hidden {
        transform: translateY(100%);
        opacity: 0;
        pointer-events: none;
    }

    .cookie-consent .cookie-card {
        backdrop-filter: blur(6px);
    }

    .cookie-consent__actions .theme-btn,
    .cookie-consent__actions .btn {
        white-space: nowrap;
    }

    .cookie-consent__preferences {
        border-radius: 14px;
        background: rgba(247, 249, 252, 0.95);
    }

    @media (max-width: 991.98px) {
        .cookie-consent__actions {
            width: 100%;
            flex-direction: column;
            align-items: stretch;
        }

        .cookie-consent__actions .theme-btn,
        .cookie-consent__actions .btn {
            width: 100%;
            text-align: center;
        }
    }

    .shadow-box {
        position: relative;
        border-radius: 16px;
        background: #FFFFFF;
        box-shadow: 0 -2px 0.5px 0 rgba(15, 76, 100, 0.04) inset, 0 -3px 3px 0 rgba(15, 76, 100, 0.04) inset, 0 0 0 1px rgba(15, 76, 100, 0.04), 0 1px 2px 0 rgba(15, 76, 100, 0.08), 0 6px 16px 0 rgba(15, 76, 100, 0.04);
    }

    .btn-primary {
      color: #fff;
      background-color: #261f87 !important;
      border-color: #261f87 !important;
  }

  section.use-cases.page-content {
    color: #000;
}

section.use-cases.page-content h1 {
    font-size: 35px;
    margin-top: 10px;
    margin-bottom: 10px;
}

section.use-cases.page-content h2 {
    font-size: 25px;
    margin-top: 10px;
    margin-bottom: 10px;
}