:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --primary: #1e40af;
  --secondary: #7c3aed;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-size: 1.25rem;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, #2563eb, #06b6d4, #7c3aed);
  color: #fff;
  font-size: 1rem;
}

.brand strong {
  display: block;
  font-size: 1.15rem;
}

.brand small {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.desktop-nav a {
  text-decoration: none;
  color: #fff;
}

.menu-toggle {
  display: none;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 0.8rem 1rem 1rem;
  gap: 0.75rem;
  flex-direction: column;
}

.mobile-nav a {
  text-decoration: none;
  color: #1e293b;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #5674d8);
}
.btn-primary:hover {
  background:#3b82f6;
}


.btn-ghost {
  border-color: var(--line);
  color: #0f172a;
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, #e5e7eb 1px, transparent 1px),
    linear-gradient(to bottom, #e5e7eb 1px, transparent 1px);
  background-size: 4rem 4rem;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, #000 60%, transparent 100%);
}

.hero-content {
  position: relative;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(37, 99, 235, 0.25);
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 1.1;
}

.hero h1 span,
.section h2 span {
  background: linear-gradient(135deg, #2563eb, #06b6d4, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead,
.section-lead {
  margin: 1rem auto 0;
  max-width: 800px;
  color: var(--muted);
  text-align: center;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stats-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stats-grid article,
.card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
}

.stats-grid h3 {
  font-size: 1.5rem;
  color: #1d4ed8;
}

.stats-grid p {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 5rem 0;
}

.section h2 {
  margin-top: 1rem;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.15;
  text-align: center;
  font-weight: 400;
}

.section-alt {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.cards-grid {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card p,
.card li {
  color: #475569;
}

.plan {
  position: relative;
}

.popular {
  position: absolute;
  top: -0.6rem;
  right: 1rem;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  color: #fff;
  font-size: 0.75rem;
  border-radius: 999px;
  padding: 0.22rem 0.5rem;
  font-weight: 600;
}

.plan-popular {
  border: 2px solid #7c3aed;
  box-shadow: 0 14px 34px rgba(124, 58, 237, 0.16);
}

.muted {
  color: var(--muted);
}

.price {
  margin: 1rem 0;
  font-size: 2rem;
  font-weight: 700;
  color: #1d4ed8;
}

.price span,
.price small {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.4rem;
}

.plan li::before {
  content: '✓';
  color: #22c55e;
  margin-right: 0.5rem;
}

.about-layout {
  margin-top: 2.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.about-highlight {
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border: none;
  border-radius: 1rem;
  padding: 1.5rem;
}

.about-highlight p {
  color: rgba(255, 255, 255, 0.9);
}

.about-highlight-v3 {
  position: relative;
  margin-top: 2.4rem;
  overflow: visible;
  min-height: 21rem;
  border-radius: 1.4rem;
  box-shadow: 0 26px 48px rgba(59, 130, 246, 0.28);
}

.about-glow-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.32), transparent 46%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 45%);
  border-radius: inherit;
  pointer-events: none;
}

.about-highlight-content {
  position: relative;
  z-index: 1;
}

.about-highlight-v3 .about-highlight-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.22);
}

.about-highlight-v3 .about-highlight-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.about-highlight-v3 h3 {
  font-size: 2rem;
  margin-bottom: 0.55rem;
}

.about-highlight-v3 p {
  font-size: 1.02rem;
  line-height: 1.6;
}

.about-highlight-v3 ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.about-highlight-v3 li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.96);
}

.about-highlight-v3 li i {
  color: #dbeafe;
}

.about-floating-badge {
  position: absolute;
  right: -1.25rem;
  bottom: -1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.17);
  color: #0f172a;
}

.about-floating-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #22c55e, #10b981);
}

.about-floating-badge strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
}

.about-floating-badge p {
  margin: 0.2rem 0 0;
  color: #64748b;
  font-size: 0.78rem;
}

.contact-layout {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 0.75rem;
  font: inherit;
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(37, 99, 235, 0.2);
  border-color: var(--primary);
}

#formInfo {
  min-height: 1.2rem;
  font-size: 0.92rem;
  color: #16a34a;
}

#formInfo.is-error {
  color: #dc2626;
}

#formInfo.is-success {
  color: #16a34a;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f8fafc;
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}

.footer-grid a {
  display: block;
  margin-top: 0.4rem;
  color: #334155;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--primary), #06b6d4);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);
  display: none;
  cursor: pointer;
}

.scroll-top.is-visible {
  display: inline-grid;
  place-items: center;
}

.versions-bar {
  border-bottom: 1px solid var(--line);
  background: rgba(248, 250, 252, 0.9);
}

.versions-bar .container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.7rem 0;
}

.versions-bar a {
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  font-size: 0.92rem;
}

.chooser-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.chooser-wrap {
  text-align: center;
  padding: 2rem 0;
}

.chooser-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.chooser-card {
  text-decoration: none;
  text-align: left;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
  background: #fff;
}

.chooser-card span {
  color: var(--primary);
  font-weight: 600;
}

body.theme-v1 {
  --primary: #1e40af;
  --secondary: #2563eb;
}

body.theme-v1 .nav-wrap {
  min-height: 96px;
  padding: 0.35rem 0;
}

body.theme-v1 .brand {
  gap: 0.9rem;
  align-items: center;
}

body.theme-v1 .brand-mark {
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.theme-v1 .brand-mark img {
  display: block;
  height: 70px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

body.theme-v1 .brand strong {
  line-height: 1.2;
}

body.theme-v1 .brand small {
  margin-top: 0.15rem;
  line-height: 1.2;
}

body.theme-v1 .hero {
  padding-top: 3.8rem;
}

body.theme-v1 .v1-hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

body.theme-v1 .badge {
  display: flex;
  width: fit-content;
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

body.theme-v1 .v1-hero-left {
  text-align: left;
}

body.theme-v1 .v1-hero-left .badge {
  margin-bottom: 0.4rem;
}

body.theme-v1 .v1-hero-left .hero-actions {
  justify-content: flex-start;
}

body.theme-v1 .v1-hero-stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
}

body.theme-v1 .v1-hero-stats h2 {
  color: var(--primary);
  margin-bottom: 0.2rem;
  font-size: 1.99rem;
  font-weight: 400;
}

body.theme-v1 .v1-hero-right {
  position: relative;
}

body.theme-v1 .v1-hero-visual {
  background-image:
    linear-gradient(135deg, rgba(219, 234, 254, 0.55), rgba(255, 255, 255, 0.42), rgba(191, 219, 254, 0.55)),
    url('./banner.png');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  text-align: center;
  min-height: 24rem;
  display: grid;
  place-content: center;
  gap: 0.7rem;
}

body.theme-v1 .v1-hero-copy {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 0.7rem 1rem;
  display: grid;
  gap: 0.2rem;
}

body.theme-v1 .v1-hero-copy h3,
body.theme-v1 .v1-hero-copy p {
  margin: 0;
}

body.theme-v1 .v1-shield {
  width: 6rem;
  height: 6rem;
  border-radius: 999px;
  margin: 0 auto 0.5rem;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 2rem;
}

body.theme-v1 .v1-float {
  position: absolute;
  background: #fff;
  min-width: 10rem;
}

body.theme-v1 .v1-float p {
  margin-top: 0.2rem;
  color: #64748b;
}

body.theme-v1 .v1-float-a {
  left: -1rem;
  top: -1rem;
}

body.theme-v1 .v1-float-b {
  right: -1rem;
  bottom: -1rem;
}

body.theme-v1 .v1-feature-grid .card {
  border-radius: 1.2rem;
}

body.theme-v1 .v1-icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

body.theme-v1 .v1-icon-box.c1 { background: #dbeafe; color: #2563eb; }
body.theme-v1 .v1-icon-box.c2 { background: #f3e8ff; color: #9333ea; }
body.theme-v1 .v1-icon-box.c3 { background: #dcfce7; color: #16a34a; }
body.theme-v1 .v1-icon-box.c4 { background: #ffedd5; color: #ea580c; }
body.theme-v1 .v1-icon-box.c5 { background: #fce7f3; color: #db2777; }
body.theme-v1 .v1-icon-box.c6 { background: #fef9c3; color: #ca8a04; }

body.theme-v1 .v1-center-note {
  margin-top: 1rem;
  text-align: center;
  color: #64748b;
}

body.theme-v1 .v1-steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.theme-v1 .v1-step {
  width: 3rem;
  height: 3rem;
  border-radius: 0.8rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.7rem;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}

body.theme-v1 .v1-center-cta {
  margin-top: 1.3rem;
  text-align: center;
}

body.theme-v1 .v1-about-stats {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

body.theme-v1 .v1-about-stats h4 {
  margin: 0 0 0.2rem;
  color: var(--primary);
}

body.theme-v1 .v1-about-highlight ul {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0;
  display: grid;
  gap: 0.8rem;
}

body.theme-v1 .v1-about-highlight li {
  display: grid;
  grid-template-columns: 1.05rem minmax(0, 1fr);
  column-gap: 0.55rem;
  align-items: start;
  margin-bottom: 5px;
}

body.theme-v1 .v1-about-highlight li::before {
  content: '✓';
  color: #dbeafe;
  font-weight: 700;
  margin-top: 0.08rem;
}

body.theme-v1 .v1-about-highlight li strong {
  grid-column: 2;
  display: block;
  color: #ffffff;
  font-weight: 600;
}

body.theme-v1 .v1-about-highlight li span {
  grid-column: 2;
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  line-height: 1.45;
}

body.theme-v1 .v1-values-grid {
  margin-top: 1.2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.theme-v1 .v1-values-grid .card {
  text-align: center;
}

body.theme-v1 .v1-values-grid .v1-icon-box {
  margin: 0 auto 0.8rem;
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 0.75rem;
}

body.theme-v1 .v1-contact-layout {
  grid-template-columns: 0.9fr 1.1fr;
}

body.theme-v1 .v1-contact-only {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
}

body.theme-v1 .v1-contact-form {
  width: min(760px, 100%);
  border-radius: 1.2rem;
  border: 1px solid #dbe3f0;
  box-shadow: 0 24px 48px rgba(30, 64, 175, 0.08);
  padding: 1.4rem;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

body.theme-v1 .v1-contact-form label {
  font-weight: 600;
  color: #1e293b;
}

body.theme-v1 .v1-contact-form input,
body.theme-v1 .v1-contact-form textarea {
  background: #fff;
  border-color: #dbe3f0;
}

body.theme-v1 .v1-contact-form textarea {
  resize: vertical;
}

body.theme-v1 .v1-contact-form .btn {
  margin-top: 0.2rem;
}

body.theme-v1 .v1-hours {
  background: linear-gradient(135deg, #1e40af, #2563eb);
}

body.theme-v1 .v1-hours h4,
body.theme-v1 .v1-hours p {
  color: #fff;
}

body.theme-v1 .v1-footer {
  background: #0f172a;
  color: #fff;
}

body.theme-v1 .v1-footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

body.theme-v1 .v1-footer a,
body.theme-v1 .v1-footer p {
  color: #94a3b8;
}

body.theme-v1 .v1-footer .footer-bottom {
  border-top-color: #1e293b;
}

body.theme-v1 .legal-wrap {
  width: min(920px, 92vw);
}

body.theme-v1 .legal-title {
  margin-top: 1rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 400;
}

body.theme-v1 .legal-lead {
  margin: 0.8rem 0 0;
  max-width: none;
  text-align: left;
}

body.theme-v1 .legal-card {
  margin-top: 1.5rem;
  padding: 1.6rem;
  display: grid;
  gap: 1.15rem;
}

body.theme-v1 .legal-card h2 {
  font-size: 1.3rem;
  font-weight: 600;
}

body.theme-v1 .legal-card p,
body.theme-v1 .legal-card li {
  color: #475569;
}

body.theme-v1 .legal-card ul {
  margin: 0.2rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
}

@media (max-width: 980px) {
  body.theme-v1 .v1-hero-layout,
  body.theme-v1 .v1-contact-layout,
  body.theme-v1 .v1-footer-grid {
    grid-template-columns: 1fr;
  }

  body.theme-v1 .v1-steps-grid,
  body.theme-v1 .v1-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.theme-v1 .v1-float {
    position: static;
    margin-top: 0.7rem;
  }

  body.theme-v1 .legal-card {
    padding: 1.2rem;
  }
}

body.theme-v2 {
  --primary: #4338ca;
  --secondary: #7c3aed;
}

body.theme-v3 {
  --primary: #2563eb;
  --secondary: #7c3aed;
}

body.theme-v3 {
  background: #fff;
}

body.theme-v3 .site-header {
  background: rgba(255, 255, 255, 0.25);
  border-bottom-color: rgba(226, 232, 240, 0.3);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

body.theme-v3 .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.12);
}

body.theme-v3 .desktop-nav .nav-item,
body.theme-v3 .mobile-nav .nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: 0.7rem;
  background: rgba(59, 130, 246, 0.12);
  color: #1e3a8a;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

body.theme-v3 .desktop-nav .nav-item:hover,
body.theme-v3 .mobile-nav .nav-item:hover {
  transform: translateY(-1px);
  background: rgba(59, 130, 246, 0.2);
}

body.theme-v3 .desktop-nav .nav-item.is-active,
body.theme-v3 .mobile-nav .nav-item.is-active {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
}

body.theme-v3 .hero {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
}

body.theme-v3 .v3-hero {
  background: #fff;
}

body.theme-v3 .hero-content {
  z-index: 2;
}

.v3-hero::before,
.v3-hero::after {
  content: '';
  position: absolute;
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  filter: blur(72px);
  opacity: 0.35;
  pointer-events: none;
}

.v3-hero::before {
  top: 4rem;
  right: 4rem;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  animation: floatOrb 18s ease-in-out infinite;
}

.v3-hero::after {
  bottom: 1rem;
  left: 3rem;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  animation: floatOrb 21s ease-in-out infinite reverse;
}

.v3-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(56px);
  pointer-events: none;
  opacity: 0.2;
}

.orb-a {
  width: 20rem;
  height: 20rem;
  top: 5rem;
  right: 14%;
  background: radial-gradient(circle, #38bdf8 0%, transparent 70%);
  animation: floatOrb 15s ease-in-out infinite;
}

.orb-b {
  width: 22rem;
  height: 22rem;
  bottom: 2rem;
  left: 10%;
  background: radial-gradient(circle, #a855f7 0%, transparent 70%);
  animation: floatOrb 19s ease-in-out infinite reverse;
}

.orb-c {
  width: 16rem;
  height: 16rem;
  top: 3rem;
  right: 8%;
  background: radial-gradient(circle, #60a5fa 0%, transparent 70%);
  animation: floatOrb 12s ease-in-out infinite;
}

.v3-floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.v3-floating-icons span {
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
  animation: floatIcon 5.5s ease-in-out infinite;
}

.v3-floating-icons span:nth-child(1) {
  left: 11%;
  top: 25%;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.v3-floating-icons span:nth-child(2) {
  right: 10%;
  top: 38%;
  animation-delay: 0.7s;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.v3-floating-icons span:nth-child(3) {
  left: 14%;
  top: 52%;
  animation-delay: 1.3s;
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.v3-floating-icons span:nth-child(4) {
  right: 13%;
  top: 20%;
  animation-delay: 1.9s;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

.v3-section {
  position: relative;
  overflow: hidden;
}

.v3-radial {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.17;
}

.v3-radial-left {
  left: -9rem;
  top: -7rem;
  background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
}

.v3-radial-right {
  right: -8rem;
  bottom: -9rem;
  background: radial-gradient(circle, #a855f7 0%, transparent 70%);
}

.v3-radial-top {
  right: -10rem;
  top: -10rem;
  background: radial-gradient(circle, #38bdf8 0%, transparent 70%);
}

.v3-radial-bottom {
  left: -10rem;
  bottom: -12rem;
  background: radial-gradient(circle, #c084fc 0%, transparent 70%);
}

body.theme-v3 .card,
body.theme-v3 .stats-grid article {
  backdrop-filter: blur(8px);
  border-color: rgba(203, 213, 225, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

body.theme-v3 .features-grid .card,
body.theme-v3 .mini-stats-grid .card,
body.theme-v3 .value-grid .card,
body.theme-v3 .value-grid .stat-card {
  background: rgba(255, 255, 255, 0.9);
}

body.theme-v3 .feature-icon {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 0.8rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.9rem;
  color: #fff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
  position: relative;
  overflow: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease, filter 0.32s ease;
}

body.theme-v3 .feature-icon i {
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.32s ease;
}

body.theme-v3 .feature-icon::after {
  content: '';
  position: absolute;
  inset: -20% auto -20% -80%;
  width: 55%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(0) rotate(18deg);
  opacity: 0;
  transition: transform 0.42s ease, opacity 0.3s ease;
}

body.theme-v3 .features-grid .card:hover .feature-icon {
  transform: translateY(-4px) scale(1.08) rotate(-6deg);
  box-shadow: 0 16px 30px rgba(59, 130, 246, 0.4);
  filter: saturate(1.12);
}

body.theme-v3 .features-grid .card:hover .feature-icon i {
  transform: scale(1.08) rotate(6deg);
}

body.theme-v3 .features-grid .card:hover .feature-icon::after {
  opacity: 1;
  transform: translateX(320%) rotate(18deg);
}

body.theme-v3 .feature-icon.grad-1 { background: linear-gradient(135deg, #2563eb, #06b6d4); }
body.theme-v3 .feature-icon.grad-2 { background: linear-gradient(135deg, #7c3aed, #ec4899); }
body.theme-v3 .feature-icon.grad-3 { background: linear-gradient(135deg, #0ea5e9, #3b82f6); }
body.theme-v3 .feature-icon.grad-4 { background: linear-gradient(135deg, #ec4899, #a855f7); }
body.theme-v3 .feature-icon.grad-5 { background: linear-gradient(135deg, #22c55e, #10b981); }
body.theme-v3 .feature-icon.grad-6 { background: linear-gradient(135deg, #f97316, #f59e0b); }
body.theme-v3 .feature-icon.grad-7 { background: linear-gradient(135deg, #6366f1, #3b82f6); }
body.theme-v3 .feature-icon.grad-8 { background: linear-gradient(135deg, #14b8a6, #06b6d4); }
body.theme-v3 .feature-icon.grad-9 { background: linear-gradient(135deg, #ef4444, #ec4899); }

body.theme-v3 .card:hover,
body.theme-v3 .stats-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 20px 45px rgba(30, 64, 175, 0.14);
}

body.theme-v3 .btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

body.theme-v3 .btn:hover {
  transform: translateY(-2px);
}

body.theme-v3 .btn-primary:hover {
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.theme-v3 .hero .reveal {
  transition-duration: 0.75s;
}

.mini-stats-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mini-stats-grid h4,
.value-grid h4 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.pricing-note {
  margin-top: 1.3rem;
  padding: 1rem;
  border: 1px solid rgba(203, 213, 225, 0.8);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.75);
}

.pricing-note p {
  margin-bottom: 0.45rem;
}

.pricing-note div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  color: #64748b;
  font-size: 0.92rem;
}

.about-stats-grid {
  margin-top: 2rem;
}

body.theme-v3 .about-stats-grid .stat-card,
body.theme-v3 .value-grid .stat-card {
  position: relative;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(203, 213, 225, 0.85);
  overflow: hidden;
  text-align: center;
}

body.theme-v3 .about-stats-grid .stat-card::before,
body.theme-v3 .value-grid .stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.14;
  pointer-events: none;
}

body.theme-v3 .about-stats-grid .stat-icon,
body.theme-v3 .value-grid .stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.8rem;
  display: inline-grid;
  place-items: center;
  margin: 0 auto 0.75rem;
  color: #fff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.16);
  transition: transform 0.32s ease, box-shadow 0.32s ease, filter 0.32s ease;
}

body.theme-v3 .about-stats-grid .stat-icon i,
body.theme-v3 .value-grid .stat-icon i {
  font-size: 1.1rem;
  transition: transform 0.32s ease;
}

body.theme-v3 .stat-a .stat-icon { background: linear-gradient(135deg, #2563eb, #06b6d4); }
body.theme-v3 .stat-b .stat-icon { background: linear-gradient(135deg, #7c3aed, #ec4899); }
body.theme-v3 .stat-c .stat-icon { background: linear-gradient(135deg, #22c55e, #10b981); }
body.theme-v3 .stat-d .stat-icon { background: linear-gradient(135deg, #f97316, #f59e0b); }

body.theme-v3 .stat-a::before { background: linear-gradient(135deg, #2563eb, #06b6d4); }
body.theme-v3 .stat-b::before { background: linear-gradient(135deg, #7c3aed, #ec4899); }
body.theme-v3 .stat-c::before { background: linear-gradient(135deg, #22c55e, #10b981); }
body.theme-v3 .stat-d::before { background: linear-gradient(135deg, #f97316, #f59e0b); }

body.theme-v3 .about-stats-grid .stat-card:hover,
body.theme-v3 .value-grid .stat-card:hover {
  transform: translateY(-8px) scale(1.02);
}

body.theme-v3 .about-stats-grid .stat-card:hover .stat-icon,
body.theme-v3 .value-grid .stat-card:hover .stat-icon {
  transform: translateY(-3px) scale(1.08) rotate(-5deg);
  filter: saturate(1.15);
}

body.theme-v3 .about-stats-grid .stat-card:hover .stat-icon i,
body.theme-v3 .value-grid .stat-card:hover .stat-icon i {
  transform: scale(1.08) rotate(5deg);
}

body.theme-v3 .stat-a:hover { box-shadow: 0 24px 40px rgba(37, 99, 235, 0.28); }
body.theme-v3 .stat-b:hover { box-shadow: 0 24px 40px rgba(168, 85, 247, 0.28); }
body.theme-v3 .stat-c:hover { box-shadow: 0 24px 40px rgba(16, 185, 129, 0.28); }
body.theme-v3 .stat-d:hover { box-shadow: 0 24px 40px rgba(249, 115, 22, 0.28); }

.value-grid {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

body.theme-v3 .value-grid .stat-card {
  padding: 1.4rem;
  border-radius: 1rem;
}

body.theme-v3 .our-story-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0.3rem 0.2rem;
}

body.theme-v3 .our-story-card h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: #0f172a;
}

body.theme-v3 .our-story-card p {
  margin-top: 0.9rem;
  color: #475569;
  line-height: 1.75;
}

.map-card {
  min-height: 10rem;
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.25);
}

.map-card p,
.map-card strong {
  color: #fff;
}

.v3-footer {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.newsletter {
  margin-top: 1.2rem;
  padding: 1.2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.3rem;
}

.newsletter div {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.6rem;
}

.newsletter input {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.newsletter .btn {
  border-color: #fff;
  background: #fff;
  color: #1d4ed8;
}

.trust-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: #64748b;
}

.scroll-indicator {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(100, 116, 139, 0.45);
  border-radius: 1rem;
  display: grid;
  justify-items: center;
  padding-top: 0.25rem;
  z-index: 2;
}

.scroll-indicator span {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  animation: scrollPulse 1.6s ease-in-out infinite;
}

@keyframes floatOrb {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -22px, 0) scale(1.08);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes scrollPulse {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(14px);
    opacity: 0.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .v3-hero::before,
  .v3-hero::after,
  .v3-orb {
    transition: none;
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .cards-grid,
  .stats-grid,
  .about-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.6rem;
    border: 1px solid var(--line);
    background: #fff;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .cards-grid,
  .stats-grid,
  .about-layout,
  .contact-layout,
  .footer-grid,
  .chooser-grid {
    grid-template-columns: 1fr;
  }

  .mini-stats-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .about-highlight-v3 {
    min-height: auto;
    padding-bottom: 4.3rem;
  }

  .about-floating-badge {
    right: 1rem;
    bottom: -1.05rem;
  }

  .newsletter div {
    flex-direction: column;
  }

  .v3-hero::before,
  .v3-hero::after,
  .v3-orb,
  .v3-radial,
  .v3-floating-icons {
    opacity: 0.14;
  }

  .scroll-indicator {
    display: none;
  }
}
