:root {
  --navy: #061a35;
  --navy2: #08264b;
  --deep: #03101f;
  --blue: #1268d6;
  --blue2: #0ea5e9;
  --cyan: #18c9e6;
  --green: #19b97b;
  --orange: #f59e0b;
  --red: #ef4444;
  --paper: #fff;
  --soft: #f3f7fb;
  --soft2: #eaf1f8;
  --text: #13263a;
  --muted: #637489;
  --line: #d8e3ee;
  --darkLine: rgba(255, 255, 255, .14);
  --radius: 22px;
  --max: 1240px;
  --shadow: 0 22px 60px rgba(13, 37, 69, .14);
  --shadow2: 0 34px 90px rgba(0, 0, 0, .32);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 44px));
  margin: auto;
}

.mono {
  font-family: "JetBrains Mono", monospace;
}

/* Topbar */
.topbar {
  background: #03101f;
  color: #c9d8e8;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

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

.top-links,
.top-contact,
.top-social {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.top-social {
  gap: 15px;
}

.top-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 18px;
  transition: .25s cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.top-social a:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(18, 104, 214, 0.3);
}

.top-contact span i {
  margin-right: 8px;
  color: var(--blue2);
}

.top-links a {
  opacity: .86;
}

.top-links a:hover {
  color: #fff;
  opacity: 1;
}

/* Main Nav */
.mainnav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(13, 37, 69, .06);
}

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

.brand-premium {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: .3s cubic-bezier(.4, 0, .2, 1);
  font-family: "Outfit", sans-serif;
}

.brand-premium:hover {
  transform: translateY(-1px);
}

.logo-container {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

.logo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 14px;
  transform: rotate(-3deg);
  box-shadow: 0 8px 24px rgba(18, 104, 214, 0.22);
}

.logo-main {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: .3s;
}

.brand-premium:hover .logo-main {
  transform: rotate(3deg);
  background: rgba(255, 255, 255, 0.2);
}

.logo-main svg {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.text-top {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
}

.text-top span {
  color: var(--blue);
  font-weight: 500;
}

.text-bottom {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -.04em;
  font-size: 23px;
  color: var(--navy);
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 18px 38px rgba(18, 104, 214, .25);
  position: relative;
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.brand-mark:after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #7cf7d4;
  box-shadow: 0 0 0 5px rgba(124, 247, 212, .2);
}

.brand small {
  display: block;
  font-size: 11px;
  letter-spacing: .08em;
  color: #6a7d92;
  margin-top: 1px;
}

.brand-text {
  line-height: 1.02;
}

.brand-text b {
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 850;
  color: #31455d;
  height: 100%;
}

.nav-item {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-item>a {
  padding: 13px 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-item:hover>a {
  background: var(--soft);
  color: var(--blue);
}

.mega {
  position: absolute;
  top: 76px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 840px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(13, 37, 69, .18);
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition: .18s;
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 18px;
}

.nav-item:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mega-link {
  display: flex;
  gap: 12px;
  padding: 14px;
  border: 1px solid #e6eef6;
  border-radius: 16px;
  background: #fbfdff;
  transition: .18s;
}

.mega-link:hover {
  border-color: #bddbf8;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(13, 37, 69, .08);
}

.mega-link span {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #edf7ff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.mega-link b {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.mega-link small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  margin-top: 4px;
}

.mega-card {
  border-radius: 18px;
  background: linear-gradient(135deg, #061a35, #1268d6);
  color: #fff;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
}

.mega-card p {
  color: #d7eaff;
  line-height: 1.6;
  font-size: 14px;
  margin: 10px 0 18px;
}

.mega-card .btn {
  height: 42px;
  width: max-content;
  background: #fff;
  color: var(--navy);
  border: 0;
}

.simple-link {
  padding: 13px 12px;
  border-radius: 12px;
  font-weight: 800;
}

.simple-link:hover {
  background: var(--soft);
  color: var(--blue);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-weight: 900;
  font-size: 14px;
  transition: .22s;
  white-space: nowrap;
  cursor: pointer;
  background: #fff;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(13, 37, 69, .12);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(18, 104, 214, .26);
}

.btn-orange {
  background: linear-gradient(135deg, #ffb545, #f97316);
  color: #fff;
  border: 0;
  box-shadow: 0 16px 34px rgba(249, 115, 22, .24);
}

.btn-dark {
  background: #061a35;
  color: #fff;
  border-color: #061a35;
}

.btn-light {
  background: #f6f9fc;
  color: var(--navy);
}

/* Sections */
section {
  padding: 78px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head>div {
  max-width: 760px;
}

.kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: -.06em;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

/* Grid Layouts */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  transition: .22s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

/* Hero Section */
.hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(24, 201, 230, .18), transparent 26%), linear-gradient(135deg, #071d39 0%, #082a55 54%, #0b356c 100%);
  color: #fff;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .1);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #dff8ff;
}

.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #39f7b4;
  box-shadow: 0 0 0 7px rgba(57, 247, 180, .15);
}

h1 {
  font-size: clamp(44px, 6.2vw, 78px);
  line-height: .94;
  letter-spacing: -.075em;
  margin-bottom: 22px;
}

.hero h1 span {
  color: #94efff;
}

.hero-lead {
  color: #d1e5f7;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 690px;
}

.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:28px}.hero-img{width:100%;max-width:580px;height:auto;filter:drop-shadow(0 30px 60px rgba(0,0,0,.2));animation:float 6s ease-in-out infinite}@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-20px)}}

/* Advanced Commerce Panel */
.commerce-panel{position:relative;border-radius:30px;background:#fff;color:var(--text);box-shadow:var(--shadow2);border:1px solid rgba(255,255,255,.22);overflow:hidden;transition:.3s ease;margin:0 auto}.standalone-finder{background:var(--soft);padding:100px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}.standalone-finder .commerce-panel{max-width:960px}.commerce-top{height:58px;background:linear-gradient(135deg,#0a2240,#0f3b6f);border-bottom:1px solid var(--line);display:flex;align-items:center;justify-content:space-between;padding:0 24px}

.dots {
  display: flex;
  gap: 8px;
}

.dots span {
  width: 11px;
  height: 11px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .25);
}

.secure-pill {
  font-size: 12px;
  font-weight: 900;
  color: #10b981;
  background: #ecfdf5;
  border: 1px solid #d1fae5;
  padding: 8px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.secure-pill:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, .2);
}

.search-box {
  padding: 32px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.consultant-label {
  font-size: 13px;
  font-weight: 900;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 15px;
  display: block;
}

.input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.input-group input {
  flex: 1;
  height: 54px;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 0 18px;
  font-weight: 700;
  transition: .2s;
  font-size: 15px;
}

.input-group input:focus {
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(18, 104, 214, .1);
}

.select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.select-grid select {
  height: 50px;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 0 15px;
  font-weight: 800;
  background: #fff;
  cursor: pointer;
  transition: .2s;
}

.select-grid select:focus {
  border-color: var(--blue);
  outline: 0;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
}

.product-table {
  border-top: 1px solid var(--line);
  background: #fff;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr .6fr;
  gap: 15px;
  align-items: center;
}

.table-head {
  background: #f1f5f9;
  color: #475569;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 16px 24px;
}

.table-row {
  padding: 18px 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  transition: .2s;
  position: relative;
}

.table-row:hover {
  background: #f8fbff;
}

.table-row.recommended {
  background: #eff6ff;
  border-left: 4px solid var(--blue);
}

.table-row.recommended:after {
  content: "EN UYGUN";
  position: absolute;
  right: 24px;
  top: -10px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 99px;
  box-shadow: 0 4px 12px rgba(18, 104, 214, .3);
}

.prod-name b {
  display: block;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 2px;
}

.prod-name small {
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
}

.price-col {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
}

.usage-tag {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.usage-web {
  background: #e0f2fe;
  color: #0369a1;
}

.usage-firma {
  background: #fef3c7;
  color: #92400e;
}

.usage-infra {
  background: #f1f5f9;
  color: #475569;
}

.usage-api {
  background: #ecfdf5;
  color: #065f46;
}

.action-btn {
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff9d2e, #f97316);
  color: #fff;
  font-weight: 900;
  padding: 0 20px;
  cursor: pointer;
  transition: .2s;
  box-shadow: 0 4px 12px rgba(249, 115, 22, .2);
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(249, 115, 22, .3);
}

.action-btn.btn-outline {
  background: transparent;
  border: 2px solid var(--line);
  color: var(--navy);
  box-shadow: none;
}

.action-btn.btn-outline:hover {
  background: var(--soft);
  border-color: var(--blue);
  color: var(--blue);
}

/* Lifespan Warning */
.lifespan-alert {
  background: #fff1f1;
  border: 1px solid #fee2e2;
  border-radius: 24px;
  padding: 32px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: center;
}

.lifespan-content h3 {
  color: #991b1b;
  font-size: 28px;
  margin-bottom: 12px;
  letter-spacing: -.04em;
}

.lifespan-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 200px;
  padding-bottom: 20px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, #f87171, #ef4444);
  border-radius: 8px 8px 0 0;
  position: relative;
  transition: .4s cubic-bezier(.4, 0, .2, 1);
}

.chart-bar span {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 900;
  font-size: 14px;
  color: var(--navy);
}

.chart-bar label {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  white-space: nowrap;
}

/* Pain Points */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.pain-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  transition: .2s;
}

.pain-item:hover {
  border-color: #fca5a5;
  background: #fff5f5;
}

.pain-item .icon {
  font-size: 36px;
  margin-bottom: 12px;
}

/* Who Is It For */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.audience-card {
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
  transition: .22s;
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

/* Trust Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  text-align: center;
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.stat-card b {
  font-size: 42px;
  color: var(--navy);
  letter-spacing: -.05em;
  display: block;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr) 1.4fr;
  gap: 26px;
}

@media(max-width:1120px) {
  .lifespan-alert {
    grid-template-columns: 1fr;
  }

  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .commerce-panel {
    margin-top: 30px;
  }

  .nav-menu {
    display: none;
  }

  .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:720px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .topbar {
    display: none;
  }

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

  .pain-grid,
  .audience-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .table-head {
    display: none;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px;
  }

  .input-group {
    flex-direction: column;
  }

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

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand,
  .footer-social,
  .cert-logos {
    justify-content: center;
  }
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 22px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  transition: .25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(18, 104, 214, 0.3);
  border-color: var(--blue);
}

/* Footer Certificates */
.footer-certs-box {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
}

.cert-logos {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cert-logos a {
  display: block;
  transition: .3s;
}

.cert-logos a:hover {
  transform: scale(1.05) translateY(-2px);
}

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


