/* =========================
   BASE COMPONENTS
========================= */

/* Base Card Component */
.card {
  border-radius: var(--r-xl);
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: -70% -35% auto -35%;
  height: 180%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(88, 115, 173, 0.14),
    transparent 56%
  );
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 66px rgba(15, 23, 42, 0.11);
  border-color: rgba(37, 99, 235, 0.22);
}

/* Shared Section Header */
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 42px;
  display: grid;
  gap: 12px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-600);
  background: rgba(219, 234, 254, 0.7);
  border: 1px solid rgba(37, 99, 235, 0.18);
  padding: 8px 12px;
  border-radius: 999px;
}

.section-title {
  margin: 14px 0 12px;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-900);
  line-height: 1.12;
}

.section-highlight {
  position: relative;
  display: inline-block;
  color: var(--primary-900);
}

.section-highlight::after {
  content: "";
  position: absolute;
  inset: 70% -6px -6px -6px;
  background: linear-gradient(
    90deg,
    rgba(37, 99, 235, 0.16),
    rgba(20, 184, 166, 0.18)
  );
  border-radius: 999px;
  z-index: -1;
}

.section-subtitle {
  margin: 0;
  color: var(--text-500);
  line-height: 1.7;
  font-size: 16px;
}

/* =========================
   BUTTON SYSTEM
========================= */

.btn {
  height: 48px;
  padding: 0 20px;
  border-radius: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;

  border: 1px solid transparent;
  cursor: pointer;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
  color: #fff;
  box-shadow: var(--orange-shadow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(255, 122, 24, 0.45);
}

.btn-primary:active {
  transform: scale(0.97);
  box-shadow: 0 10px 20px rgba(255, 122, 24, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.75);
  color: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.btn-lg {
  height: 54px;
  padding: 0 26px;
  font-size: 16px;
  border-radius: 16px;
}

@media (max-width: 520px) {
  .btn {
    width: 100%;
  }
}

/* =========================
   ANIMATIONS & UTILITIES
========================= */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(2px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    filter 0.55s ease;
  will-change: transform, opacity;
}

.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

/* =========================
   NAVIGATION
========================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-900);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link,
.nav-dd-btn {
  text-decoration: none;
  color: var(--text-700);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.nav-link:hover,
.nav-dd-btn:hover {
  background: rgba(15, 27, 51, 0.05);
  color: var(--text-900);
}

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

.nav-ghost {
  text-decoration: none;
  color: var(--text-700);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 27, 51, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

.nav-ghost:hover {
  background: rgba(15, 27, 51, 0.05);
}

.nav-dd {
  position: relative;
}

.nav-dd-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dd-caret {
  font-size: 12px;
  opacity: 0.7;
}

.nav-dd-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: var(--shadow);
  display: none;
}

.nav-dd-item {
  display: block;
  text-decoration: none;
  color: var(--text-900);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
}

.nav-dd-item:hover {
  background: rgba(15, 27, 51, 0.05);
}

@media (min-width: 981px) {
  .nav-dd:hover .nav-dd-menu {
    display: block;
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15, 27, 51, 0.12);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-700);
  border-radius: 999px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(12px);
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile-inner {
  padding: 14px 0 18px;
  display: grid;
  gap: 10px;
}

.nav-m-link {
  text-decoration: none;
  color: var(--text-900);
  font-weight: 800;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(15, 27, 51, 0.04);
  border: 1px solid rgba(15, 27, 51, 0.08);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 520px) {
  .nav-inner {
    height: 64px;
    gap: 10px;
  }

  .nav-brand {
    gap: 8px;
  }

  .nav-logo {
    width: 150px;
    height: auto;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-ghost {
    display: none;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    gap: 5px;
  }

  .nav-mobile-inner {
    padding: 12px 0 16px;
    gap: 10px;
  }

  .nav-m-link {
    padding: 12px 12px;
    border-radius: 14px;
    font-size: 14px;
  }
}

/* =========================
   HERO SECTION
========================= */

.hero.hero-tebra {
  position: relative;
  padding: 20px 0 56px;
  overflow: hidden;
}

.hero-tebra::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 170, 0.15), transparent 70%);
  top: -200px;
  right: -200px;
  z-index: 0;
}

.hero-top {
  position: relative;
  z-index: 2;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding-top: 10px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
  color: var(--text-700);
  font-size: 13px;
  font-weight: 600;
}

.pill-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--cta-600);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.16);
}

.pill-strong {
  color: var(--text-900);
}

.pill-muted {
  opacity: 0.5;
}

.hero-title {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.04;
  margin: 0;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.highlight {
  color: #2563eb;
}

.hero-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-700);
  max-width: 68ch;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

@media (max-width: 980px) {
  .hero.hero-tebra {
    padding: 78px 0 44px;
  }
  .hero-title {
    max-width: 20ch;
  }
}

@media (max-width: 520px) {
  .hero.hero-tebra {
    padding: 72px 0 40px;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}

/* =========================
   PRODUCT SHOWCASE
========================= */

.product-showcase {
  margin-top: 50px;
}

.container-product {
  width: 100%;
  position: relative;
  border-radius: 50px;
  overflow: visible;
  padding: 170px 34px 46px;
  background:
    radial-gradient(
      900px 380px at 70% 20%,
      rgba(12, 58, 149, 0.36),
      transparent 55%
    ),
    radial-gradient(
      760px 320px at 20% 30%,
      rgba(93, 128, 205, 0.24),
      transparent 55%
    ),
    linear-gradient(135deg, #2f284a 0%, #142a52 45%, #4b5656 100%);
}

.showcase-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.showcase-visual:hover .showcase-image {
  transform: translateY(-6px) scale(1.01);
}

.showcase-image {
  width: min(1100px, 92%);
  height: auto;
  display: block;
  border-radius: 30px;
  position: relative;
  top: -220px;
  z-index: 5;
  transition:
    transform 400ms ease,
    box-shadow 400ms ease;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1200px) {
  .container-product {
    padding: 130px 26px 42px;
    border-radius: 26px;
  }

  .showcase-image {
    width: min(980px, 94%);
    top: -200px;
    border-radius: 26px;
  }
}

@media (max-width: 980px) {
  .product-showcase {
    margin-top: 34px;
  }

  .container-product {
    padding: 110px 18px 34px;
    border-radius: 22px;
  }

  .showcase-image {
    width: 100%;
    top: -150px;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
  }
}

@media (max-width: 520px) {
  .container-product {
    padding: 78px 14px 22px;
    border-radius: 18px;
  }

  .showcase-image {
    top: -120px;
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  }
}

/* =========================
   FEATURES SECTION
========================= */

.features {
  padding: 50px;
}

.features-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 42px;
  display: grid;
  gap: 12px;
}

.features-kicker {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: whitesmoke;
}

.features-title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: white;
}

.features-highlight {
  color: rgb(35, 105, 180);
}

.features-subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: whitesmoke;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 22px 18px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 26px 70px rgba(37, 99, 235, 0.08);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.feature-icon img {
  width: 26px;
  height: 26px;
  display: block;
}

.feature-name {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.feature-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.66);
}

@media (max-width: 980px) {
  .features {
    padding: 70px 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-head {
    text-align: left;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 20px 16px;
  }
}

/* =========================
   CARD TYPES SECTION
========================= */

.card-types {
  padding: 92px 0;
  background:
    radial-gradient(
      900px 420px at 20% 10%,
      rgba(37, 99, 235, 0.08),
      transparent 55%
    ),
    radial-gradient(
      820px 360px at 80% 20%,
      rgba(20, 184, 166, 0.08),
      transparent 55%
    ),
    linear-gradient(180deg, #ffffff 0%, var(--bg-50) 100%);
}

.ct-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.ct-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(37, 99, 235, 0.9);
  margin: 0 0 12px;
}

.ct-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cta-600);
  box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.14);
}

.ct-title {
  font-size: clamp(30px, 3.3vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: var(--text-900);
}

.ct-highlight {
  color: var(--accent-600);
  position: relative;
}

.ct-highlight::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: 6px;
  height: 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.14);
  z-index: -1;
}

.ct-subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(15, 23, 42, 0.68);
  margin: 0;
}

.ct-layout {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 18px;
  align-items: start;
}

.ct-list {
  position: sticky;
  top: 96px;
  border-radius: 22px;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.ct-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: left;
  padding: 12px 12px;
  border-radius: 16px;
  background: transparent;
  color: rgba(15, 23, 42, 0.78);
  font-weight: 700;
  font-size: 14px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.ct-item:hover {
  background: rgba(37, 99, 235, 0.06);
  transform: translateY(-1px);
}

.ct-item.is-active {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.14),
    rgba(20, 184, 166, 0.08)
  );
  border-color: rgba(37, 99, 235, 0.18);
  color: var(--primary-800);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.12);
}

.ct-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.35);
}

.ct-item.is-active .ct-dot {
  background: var(--cta-600);
  box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.14);
}

.ct-badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: rgba(37, 99, 235, 0.95);
  border: 1px solid rgba(37, 99, 235, 0.18);
}

.ct-badge-dark {
  background: rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.ct-badge-red {
  background: rgba(239, 68, 68, 0.08);
  color: rgba(185, 28, 28, 0.95);
  border: 1px solid rgba(239, 68, 68, 0.16);
}

.ct-panel {
  border-radius: 26px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(
      700px 300px at 80% 10%,
      rgba(37, 99, 235, 0.06),
      transparent 55%
    ),
    radial-gradient(
      600px 260px at 10% 20%,
      rgba(20, 184, 166, 0.05),
      transparent 55%
    ),
    rgba(255, 255, 255, 0.92);
  padding: 26px;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.ct-panel-title {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  color: var(--text-900);
  letter-spacing: -0.02em;
}

.ct-panel-desc {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(15, 23, 42, 0.68);
}

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

.ct-bullets li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.75);
}

.ct-bullets li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cta-600), var(--accent-600));
  position: absolute;
  left: 0;
  top: 7px;
}

.ct-mini {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 12px;
}

.ct-mini-card {
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.ct-mini-title {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.6);
  margin-bottom: 6px;
}

.ct-mini-text {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.82);
}

.ct-content {
  display: none;
  opacity: 0;
  transform: translateY(8px);
}

.ct-content.is-visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: ctFadeUp 260ms ease both;
}

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

@media (max-width: 980px) {
  .ct-layout {
    grid-template-columns: 1fr;
  }

  .ct-list {
    position: relative;
    top: 0;
  }

  .ct-mini {
    grid-template-columns: 1fr;
  }
}

/* =========================
   WORKFLOW SECTION
========================= */

.wf {
  padding: 110px;
  border-radius: 50px;
  background:
    radial-gradient(
      900px 380px at 70% 20%,
      rgba(12, 58, 149, 0.36),
      transparent 55%
    ),
    radial-gradient(
      760px 320px at 20% 30%,
      rgba(93, 128, 205, 0.24),
      transparent 55%
    ),
    linear-gradient(135deg, #2f284a 0%, #142a52 45%, #4b5656 100%);
}

.wf-container {
  max-width: var(--container);
  margin: 0 auto;
}

.wf-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 70px;
}

.wf-head h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-900);
  margin: 0 0 12px;
  color: white;
}

.wf-head p {
  margin: 0;
  color: var(--text-500);
  line-height: 1.7;
  color: whitesmoke;
}

.wf-timeline {
  position: relative;
  padding: 8px 0;
}

.wf-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(37, 99, 235, 0.16),
    rgba(20, 184, 166, 0.32),
    rgba(37, 99, 235, 0.14)
  );
}

.wf-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 18px 0;
  opacity: 0.72;
  transform: translateY(10px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.wf-step:nth-child(odd) {
  justify-content: flex-end;
}

.wf-step:nth-child(even) {
  justify-content: flex-start;
}

.wf-card {
  width: min(520px, calc(50% - 80px));
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(226, 232, 240, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  padding: 18px 18px 16px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.wf-card::after {
  content: "";
  position: absolute;
  inset: -70% -35% auto -35%;
  height: 180%;
  background:
    radial-gradient(
      circle at 28% 32%,
      rgba(148, 164, 200, 0.14),
      transparent 56%
    ),
    radial-gradient(circle at 72% 40%, rgba(13, 46, 62, 0.12), transparent 60%);
  pointer-events: none;
}

.wf-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 66px rgba(15, 23, 42, 0.11);
  border-color: rgba(37, 99, 235, 0.22);
}

.wf-card h4 {
  margin: 2px 0 6px;
  font-size: 18px;
  font-weight: 950;
  color: var(--text-900);
}

.wf-card p {
  margin: 0 0 12px;
  color: var(--text-500);
  line-height: 1.7;
  font-size: 14.5px;
}

.wf-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wf-meta span {
  font-size: 12.5px;
  color: var(--primary-900);
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(241, 245, 249, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.92);
}

.wf-ring {
  --p: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: conic-gradient(
    from -90deg,
    rgb(183, 188, 200) calc(var(--p) * 0.65turn),
    rgb(89, 175, 167) calc(var(--p) * 1turn),
    rgb(189, 92, 40) 0
  );
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
  z-index: 2;
}

.wf-ring::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.92);
  backdrop-filter: blur(14px);
}

.wf-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  color: var(--primary-900);
  z-index: 2;
}

.wf-check {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transform: scale(0.82);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  color: var(--primary-900);
}

.wf-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.wf-step.is-done .wf-ring {
  --p: 1;
  background: conic-gradient(
    from -90deg,
    rgb(62, 210, 89) 1turn,
    rgb(116, 202, 192) 0
  );
  box-shadow: 0 18px 48px rgba(20, 184, 166, 0.22);
}

.wf-step.is-done .wf-num {
  opacity: 0;
}

.wf-step.is-done .wf-check {
  opacity: 1;
  transform: scale(1);
}

.wf-step.is-active .wf-ring {
  animation: wfFill 900ms cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}

@keyframes wfFill {
  from {
    --p: 0.12;
  }
  to {
    --p: 1;
  }
}

@media (max-width: 780px) {
  .wf {
    padding: 90px 18px;
  }
  .wf-head {
    margin-bottom: 50px;
  }

  .wf-timeline::before {
    left: 28px;
    transform: none;
  }

  .wf-step {
    justify-content: flex-start !important;
    padding-left: 72px;
  }

  .wf-ring {
    left: 28px;
    transform: none;
  }

  .wf-card {
    width: 100%;
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wf-step,
  .wf-card,
  .wf-check {
    transition: none !important;
  }
  .wf-step.is-active .wf-ring {
    animation: none !important;
    --p: 1;
  }
}

/* =========================
   REPORTS SECTION
========================= */

.reports {
  padding: 100px var(--gutter);
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.r-card {
  grid-column: span 6;
  padding: 18px 18px 16px;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.r-card::after {
  content: "";
  position: absolute;
  inset: -70% -35% auto -35%;
  height: 180%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(88, 115, 173, 0.14),
    transparent 56%
  );
  pointer-events: none;
}

.r-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 66px rgba(15, 23, 42, 0.11);
  border-color: rgba(7, 55, 50, 0.24);
}

.r-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.r-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(219, 234, 254, 0.55);
  border: 1px solid rgba(37, 99, 235, 0.16);
  font-size: 18px;
}

.r-card h3 {
  margin: 0;
  font-size: 16.5px;
  font-weight: 900;
  color: var(--text-900);
  letter-spacing: -0.015em;
}

.r-card p {
  margin: 0 0 12px;
  color: var(--text-500);
  line-height: 1.7;
  font-size: 14.5px;
}

.r-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-700);
  line-height: 1.7;
  font-size: 14px;
}

.reports-strip {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(226, 232, 240, 0.92);
  backdrop-filter: blur(14px);
}

.rs-pill {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: var(--primary-900);
  background: rgba(20, 184, 166, 0.14);
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.rs-dot {
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: rgba(100, 116, 139, 0.55);
}

.rs-text {
  font-size: 13px;
  color: var(--text-500);
  font-weight: 700;
}

@media (max-width: 980px) {
  .reports {
    padding: 80px 18px;
  }
  .r-card {
    grid-column: span 12;
  }
}

/* =========================
   WHY MINIMAL SECTION
========================= */

.why-min {
  padding: 90px var(--gutter);
  background: var(--bg-50);
}

.why-min-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: left;
}

.why-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.why-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.85;
}

.why-min-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-500);
}

.why-min-title {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 950;
  letter-spacing: -0.03em;
  color: var(--text-900);
  line-height: 1.12;
}

.why-min-title span {
  text-decoration: underline;
  text-decoration-thickness: 6px;
  text-underline-offset: 8px;
  text-decoration-color: rgba(37, 99, 235, 0.2);
}

.why-min-sub {
  margin: 0;
  color: var(--text-500);
  line-height: 1.7;
  font-size: 16px;
}

.why-min-list {
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid rgba(226, 232, 240, 0.92);
}

.why-item {
  display: block;
  text-decoration: none;
  padding: 18px 6px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.92);
  transition:
    transform 0.18s ease,
    background-color 0.18s ease;
}

.why-item-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.why-item h3 {
  margin: 0;
  font-size: 16.5px;
  font-weight: 900;
  color: var(--text-900);
  letter-spacing: -0.015em;
}

.why-item p {
  margin: 8px 0 0;
  color: var(--text-500);
  line-height: 1.7;
  font-size: 14.5px;
  max-width: 72ch;
}

.why-arrow {
  color: var(--text-500);
  font-weight: 900;
  transition:
    transform 0.18s ease,
    color 0.18s ease;
}

.why-item:hover {
  transform: translateX(4px);
  background: rgba(241, 245, 249, 0.55);
}

.why-item:hover .why-arrow {
  transform: translateX(4px);
  color: var(--accent-600);
}

@media (max-width: 900px) {
  .why-min {
    padding: 70px 18px;
  }
  .why-min-head {
    text-align: left;
  }
}

/* =========================
   BASE STYLES & UTILITIES
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

.wf *,
.wf .wf-card,
.wf .wf-meta span {
  word-break: break-word;
}
/* =========================
   CONTACT 
========================= */

.contact {
  position: relative;
  padding: clamp(64px, 6vw, 110px) 0;
  overflow: hidden;

  /* sade soft arka plan */
  background: #f6f8fc;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;

  /* çok hafif “ışık” (gradient değil gibi duran) */
  background: radial-gradient(
    900px 520px at 70% 25%,
    rgba(37, 99, 235, 0.08),
    transparent 60%
  );

  pointer-events: none;
}

.contact .container {
  position: relative;
  z-index: 2;
}

/* layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(20px, 3vw, 44px);
  align-items: start;
}

/* left side */
.contact-copy {
  padding: clamp(12px, 2vw, 18px);
}

.contact-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: rgba(30, 64, 175, 0.9);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.18);

  padding: 8px 12px;
  border-radius: 999px;
}

.contact-copy .title {
  margin-top: 14px;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;

  color: #0f172a;
}

.contact-copy .desc {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(15, 23, 42, 0.78);
  max-width: 58ch;
}

/* bullets */
.contact-copy .bullets {
  margin-top: 18px;
  padding: 0;
  list-style: none;

  display: grid;
  gap: 12px;
}

.contact-copy .bullets li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;

  font-size: 15px;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.78);
}

.contact-copy .bullets .dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 1),
    rgba(14, 165, 233, 1)
  );
  box-shadow: 0 10px 22px rgba(59, 130, 246, 0.25);
}

/* mini trust */
.mini-trust {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mini-card {
  padding: 14px 14px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.06);

  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.06);
  backdrop-filter: blur(12px);
}

.mini-title {
  font-size: 13px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.9);
}

.mini-sub {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.65);
}

/* right side wrapper */
.contact-formWrap {
  position: relative;
}

/* form card */
.contact-form {
  border-radius: 26px;
  padding: clamp(18px, 2.5vw, 26px);

  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(59, 130, 246, 0.12);

  box-shadow:
    0 18px 50px rgba(2, 6, 23, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;

  backdrop-filter: blur(14px);
}

.form-head {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  margin-bottom: 18px;
}

.form-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(15, 23, 42, 0.92);
}

.form-desc {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.65);
}

/* rows */
.contact-form .row {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-form .row.two {
  grid-template-columns: 1fr 1fr;
}

/* field */
.contact-form .field {
  display: grid;
  gap: 7px;
}

.contact-form label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.75);
}

/* inputs */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 16px;

  padding: 13px 14px;
  font-size: 14px;
  line-height: 1.4;

  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(248, 250, 252, 0.75);
  color: rgba(15, 23, 42, 0.92);

  outline: none;
  transition: 180ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* placeholder */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(15, 23, 42, 0.45);
}

/* focus */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.14);
  background: rgba(255, 255, 255, 0.92);
}

/* hover */
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(59, 130, 246, 0.22);
}

/* consent */
.consent {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;

  font-size: 13px;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.65);

  user-select: none;
}

.consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #3b82f6;
}

/* button */
.contact-form .btn {
  width: 100%;
  margin-top: 14px;

  border: 0;
  border-radius: 18px;
  padding: 14px 16px;

  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;

  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);

  box-shadow:
    0 18px 44px rgba(37, 99, 235, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;

  cursor: pointer;
  transition: 180ms ease;
}

.contact-form .btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 22px 52px rgba(37, 99, 235, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
}

.contact-form .btn:active {
  transform: translateY(0px);
}

.btn-arrow {
  margin-left: 10px;
  opacity: 0.95;
}

/* fineprint */
.fineprint {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.55);
}

/* responsive */
@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .mini-trust {
    grid-template-columns: 1fr;
  }

  .contact-form .row.two {
    grid-template-columns: 1fr;
  }
}
/* =========================
   FOOTER
========================= */

.footer {
  padding: 56px 0 26px;
  background:
    radial-gradient(
      900px 380px at 70% 20%,
      rgba(12, 58, 149, 0.36),
      transparent 55%
    ),
    radial-gradient(
      760px 320px at 20% 30%,
      rgba(93, 128, 205, 0.24),
      transparent 55%
    ),
    linear-gradient(135deg, #2f284a 0%, #142a52 45%, #4b5656 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 42px;
  align-items: start;
}

.footer-brand {
  max-width: 54ch;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
}

.logo-text {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.92);
  color: white;
}

.footer-desc {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.65);
  color: white;
}

.footer-contact {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: white;
}

.footer-link {
  font-weight: 800;
  color: rgba(163, 81, 62, 0.95);
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-muted {
  opacity: 0.8;
}

/* right columns */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.footer-title {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 12px;
}

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

.footer-col a {
  font-size: 14px;
  color: white;
  text-decoration: none;
  transition: 160ms ease;
}

.footer-col a:hover {
  color: rgba(15, 23, 42, 0.9);
}

/* bottom */
.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-copy {
  font-size: 13px;
  color: white;
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legalLink {
  font-size: 13px;
  color: white;
  text-decoration: none;
}

.footer-legalLink:hover {
  color: rgba(15, 23, 42, 0.9);
  text-decoration: underline;
}

/* responsive */
@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }
}
