*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --navy: #253777;
  --navy-deep: #18275a;
  --navy-light: #2e4490;
  --teal: #2a9d8f;
  --teal-light: #3dbdad;
  --red: #e63946;
  --bg: #f5f7fc;
  --text: #111827;
  --muted: #6b7a99;
  --border: #e2e8f4;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 80px);
  max-width: 1140px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  height: 76px;
  transition: top 0.32s cubic-bezier(0.4,0,0.2,1),
              opacity 0.2s ease,
              width 0.35s ease,
              max-width 0.35s ease,
              border-radius 0.35s ease,
              background 0.35s ease,
              box-shadow 0.35s ease,
              height 0.32s ease;
}
nav.hidden {
  opacity: 0;
  pointer-events: none;
  top: 4px;
}
nav.sticky {
  top: 0;
  opacity: 1;
  pointer-events: all;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 24px rgba(37,55,119,0.09);
  border-bottom: 1px solid rgba(37,55,119,0.07);
  padding: 0 48px;
  height: 64px;
}
.nav-inner {
  width: 100%;
  max-width: 1180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img-wrap {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: height 0.32s ease, width 0.32s ease;
}
.nav-logo-img-wrap::before {
  content: '';
  position: absolute;
  inset: -6px;
  background: radial-gradient(ellipse at center,
    rgba(255,255,255,0.6) 0%,
    rgba(255,255,255,0.2) 45%,
    transparent 72%
  );
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.3s;
}
nav.sticky .nav-logo-img-wrap::before { opacity: 0; }
nav.sticky .nav-logo-img-wrap { height: 40px; width: 40px; }
.nav-logo-img-wrap img {
  height: 60px;
  width: auto;
  display: block;
  position: relative;
  z-index: 1;
  transition: height 0.32s ease;
}
nav.sticky .nav-logo-img-wrap img { height: 40px; }
.nav-logo-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(255,255,255,0.95);
  transition: color 0.3s;
}
nav.sticky .nav-logo-text { color: var(--navy); }
.nav-logo-text small {
  display: block;
  font-size: 9.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1.1px;
  text-transform: uppercase;
  transition: color 0.3s;
}
nav.sticky .nav-logo-text small { color: var(--teal); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}
.nav-phone:hover { color: white; }
nav.sticky .nav-phone { color: var(--navy); }
nav.sticky .nav-phone:hover { color: var(--teal); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  background: url('bg.webp') center center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(18,27,65,0.96) 0%, rgba(25,45,100,0.88) 50%, rgba(18,27,65,0.70) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
}
.hero-alert-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,57,70,0.15);
  border: 1px solid rgba(230,57,70,0.4);
  color: #ff8590;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: pulse-ring 2.5s ease infinite;
}
@keyframes pulse-ring {
  0%,100% { box-shadow: 0 0 0 0 rgba(230,57,70,0.2); }
  50% { box-shadow: 0 0 0 7px rgba(230,57,70,0); }
}
.chip-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.4s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6.5vw, 82px);
  color: white;
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero h1 .hw {
  display: inline-block;
  transform: translateY(40px);
  opacity: 0;
  animation: hwSlide 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes hwSlide {
  to { transform: translateY(0); opacity: 1; }
}
.hero h1 .hw.teal { color: var(--teal-light); }
@keyframes shimmer {
  0%   { filter: brightness(1) drop-shadow(0 0 0px transparent); }
  50%  { filter: brightness(1.8) drop-shadow(0 0 12px rgba(61,189,173,0.9)); }
  100% { filter: brightness(1) drop-shadow(0 0 0px transparent); }
}
.hero h1 .hw.teal.shine {
  transform: translateY(0);
  opacity: 1;
  animation: shimmer 0.7s ease forwards;
}

.float-cta {
  position: fixed;
  bottom: 56px;
  right: 28px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
}
.float-btn.wa { background: #25D366; }
.float-btn.tel { background: var(--navy); }
.float-btn svg { flex-shrink: 0; }

@keyframes jiggle {
  0%,100% { transform: translateY(0) rotate(0deg); }
  20%      { transform: translateY(-3px) rotate(-2deg); }
  40%      { transform: translateY(0) rotate(2deg); }
  60%      { transform: translateY(-2px) rotate(-1deg); }
  80%      { transform: translateY(0) rotate(1deg); }
}
.float-btn.jiggle { animation: jiggle 0.5s ease; }

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  font-weight: 500;
  max-width: 520px;
  margin-bottom: 40px;
  border-left: 3px solid var(--teal);
  padding-left: 16px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  transition: all 0.2s;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.45); }
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

.hero-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  padding: 32px 28px;
  animation: float 4.5s ease-in-out infinite;
}
@keyframes float {
  0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)}
}
.hero-card-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--teal-light);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-card-timer {
  background: rgba(230,57,70,0.1);
  border: 1.5px solid rgba(230,57,70,0.25);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  margin-bottom: 22px;
  position: relative;
  transition: border-color 0.4s;
}
.hero-card-timer .big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  color: white;
  line-height: 1;
}
.hero-card-timer .sub {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.card-checklist { display: flex; flex-direction: column; gap: 9px; }
.card-check { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 600; }
.check-ic {
  width: 26px; height: 26px;
  min-width: 26px;
  background: rgba(42,157,143,0.25);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes counterCount {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.7; }
}
.counter-counting { animation: counterCount 0.18s ease; }

@keyframes borderOrbit { 0% { --angle: 0deg; } 100% { --angle: 360deg; } }
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.hero-card-timer.glow { border: none; padding: 17.5px; }
.hero-card-timer.glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 15px;
  background: conic-gradient(
    from var(--angle),
    rgba(42,157,143,0) 0%, rgba(42,157,143,0) 40%,
    rgba(61,189,173,0.9) 50%,
    rgba(42,157,143,0) 60%, rgba(42,157,143,0) 100%
  );
  animation: borderOrbit 2.8s linear infinite;
  z-index: -1;
}
.hero-card-timer.glow::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: 13px;
  background: rgba(18,27,65,0.92);
  z-index: -1;
}

.urgency-band {
  background: var(--red);
  position: relative;
  overflow: hidden;
  padding: 22px 48px;
  text-align: center;
}
.urgency-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-55deg, transparent, transparent 12px, rgba(0,0,0,0.06) 12px, rgba(0,0,0,0.06) 24px);
  pointer-events: none;
}
.urgency-band::after {
  content: '';
  position: absolute;
  right: -40px; top: 0; bottom: 0;
  width: 220px;
  background: rgba(255,255,255,0.07);
  transform: skewX(-18deg);
  pointer-events: none;
}
.urgency-band-text {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.urgency-band-text strong { font-size: 16px; font-weight: 800; }

.section {
  padding: 96px 48px;
  max-width: 1180px;
  margin: 0 auto;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.section-title.center { text-align: center; }
.eyebrow.center { text-align: center; }
.section-lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 52px;
}
.section-lead.center { margin-left: auto; margin-right: auto; text-align: center; }




.ads-info-wrap{
  background:#ffffff;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.ads-info-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
  margin-top:28px;
}

.ads-info-card{
  background:var(--bg);
  border:1.5px solid var(--border);
  border-radius:16px;
  padding:22px 20px;
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ads-info-card:hover{
  border-color:var(--teal);
  box-shadow:0 10px 28px rgba(37,55,119,0.08);
  transform:translateY(-3px);
}

.ads-info-icon{
  width:64px;
  height:64px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--navy),var(--teal));
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  margin-bottom:16px;
  box-shadow:0 8px 20px rgba(37,55,119,0.12);
}

.ads-info-icon svg{
  width:30px;
  height:30px;
  display:block;
}

.ads-info-card h3{
  font-size:18px;
  font-weight:800;
  line-height:1.35;
  color:var(--navy);
  margin-bottom:12px;
}

.ads-info-card p{
  font-size:14px;
  color:var(--muted);
  line-height:1.7;
  margin-bottom:16px;
}

.ads-info-card ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px;
  margin:0;
  padding:0;
}

.ads-info-card li{
  position:relative;
  padding-left:16px;
  font-size:14px;
  line-height:1.65;
  color:var(--text);
}

.ads-info-card li::before{
  content:'';
  position:absolute;
  left:0;
  top:8px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--teal);
}




.isegiris-cta {
  background: linear-gradient(135deg, #18275a 0%, #253777 60%, #1a3a35 100%);
  position: relative;
  overflow: hidden;
}
.isegiris-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 80% 50%, rgba(42,157,143,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(61,189,173,0.08) 0%, transparent 45%);
  pointer-events: none;
}
.isegiris-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 64px 80px;
  max-width: 1180px;
  margin: 0 auto;
}
.isegiris-left {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
}
.isegiris-icon {
  width: 60px; height: 60px;
  background: rgba(61,189,173,0.15);
  border: 1.5px solid rgba(61,189,173,0.3);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.isegiris-text-block {}
.isegiris-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3dbdad;
  margin-bottom: 8px;
  display: block;
}
.isegiris-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 2.8vw, 36px);
  color: white;
  line-height: 1.1;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.isegiris-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 480px;
  margin: 0;
}
.isegiris-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.btn-isegiris-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: #25D366;
  color: white; text-decoration: none;
  font-size: 14px; font-weight: 700;
  padding: 14px 26px; border-radius: 10px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-isegiris-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.5); }
.btn-isegiris-tel {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 13px; font-weight: 600;
  padding: 12px 20px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-isegiris-tel:hover { background: rgba(255,255,255,0.08); color: white; }

@media (max-width: 900px) {
  .isegiris-inner { flex-direction: column; padding: 48px 32px; gap: 32px; }
  .isegiris-actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .isegiris-inner { padding: 40px 24px; }
  .isegiris-actions { flex-direction: column; }
  .btn-isegiris-wa, .btn-isegiris-tel { width: 100%; justify-content: center; }
}

.belgeler-wrap { background: white; }
.belgeler-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.belge-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: default;
  overflow: hidden;
  min-height: 58px;
}
.belge-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.belge-icon svg { width: 15px; height: 15px; }
.belge-title {
  transition: opacity 0.25s ease, transform 0.25s ease;
  opacity: 1;
  transform: translateY(0);
  pointer-events: none;
  position: relative;
  z-index: 2;
}
.belge-desc {
  position: absolute;
  left: 62px;
  right: 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: 2;
}
.belge-card:hover,
.belge-card.active {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(42,157,143,0.12);
  background: white;
}
.belge-card:hover .belge-title,
.belge-card.active .belge-title {
  opacity: 0;
  transform: translateY(-6px);
}
.belge-card:hover .belge-desc,
.belge-card.active .belge-desc {
  opacity: 1;
  transform: translateY(0);
}
.ceza-box {
  margin-top: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff5f5;
  border: 1px solid rgba(230,57,70,0.18);
  border-left: 4px solid var(--red);
  border-radius: 14px;
  padding: 20px 24px;
  font-size: 14px;
  color: #4a1a1e;
  line-height: 1.7;
  font-weight: 500;
}
.ceza-box strong { color: var(--red); font-weight: 700; }

.paket-wrap { background: var(--navy-deep); position: relative; overflow: hidden; }
.paket-wrap::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(42,157,143,0.13), transparent 70%);
  border-radius: 50%;
}
.paket-wrap::after {
  content: '';
  position: absolute;
  left: -80px; bottom: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(61,189,173,0.08), transparent 70%);
  border-radius: 50%;
}
.paket-wrap .section { position: relative; z-index: 1; }
.paket-wrap .eyebrow { color: var(--teal-light); }
.paket-wrap .section-title { color: white; }
.paket-wrap .section-lead { color: rgba(255,255,255,0.55); }

.flow-container { position: relative; }
.flow-line {
  position: absolute;
  left: 28px; top: 28px; bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), rgba(42,157,143,0.08));
}
.flow-steps { display: flex; flex-direction: column; gap: 0; padding-left: 76px; position: relative; }
.flow-step {
  position: relative;
  padding: 28px 32px 28px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  transition: background 0.22s, border-left-color 0.22s;
  border-left: 3px solid transparent;
}
.flow-step:last-child { border-bottom: none; }
.flow-step:hover { background: rgba(255,255,255,0.04); border-left-color: var(--teal); }
.flow-dot {
  position: absolute;
  left: -55px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  background: var(--teal);
  border-radius: 50%;
  border: 3px solid var(--navy-deep);
  box-shadow: 0 0 0 3px rgba(42,157,143,0.25);
  z-index: 1;
}
.fs-num { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--teal-light); text-transform: uppercase; margin-bottom: 8px; }
.fs-title { font-size: 17px; font-weight: 700; color: white; margin-bottom: 6px; }
.fs-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.fs-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(42,157,143,0.15);
  border: 1px solid rgba(42,157,143,0.25);
  color: var(--teal-light);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}

.periyodik-wrap { background: var(--bg); }
.periyodik-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.peri-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.22s;
  box-shadow: 0 2px 10px rgba(37,55,119,0.05);
}
.peri-card:hover { border-color: var(--navy); box-shadow: 0 8px 28px rgba(37,55,119,0.13); transform: translateY(-4px); }
.peri-ic {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 14px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.peri-ic svg { width: 24px; height: 24px; }
.peri-card h4 { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.35; }

.neden-wrap { background: white; }
.neden-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.neden-left p.intro { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 36px; }
.neden-bigline { font-size: clamp(14px,1.3vw,16px); font-weight: 700; color: var(--text); line-height: 1.6; margin-bottom: 16px; padding-left: 18px; border-left: 3px solid var(--teal); }
.neden-right { display: flex; flex-direction: column; gap: 0; }
.stat-row { display: flex; align-items: flex-start; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.stat-row:first-child { padding-top: 0; }
.stat-row:last-child { border-bottom: none; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--navy); line-height: 1; min-width: 90px; letter-spacing: 0.5px; }
.stat-num span { color: var(--teal); }
.stat-info h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.stat-info p { font-size: 13px; color: var(--muted); line-height: 1.55; }

.final { position: relative; overflow: hidden; }
.final-img {
  position: absolute;
  inset: 0;
  background: url('bg.webp') center center / cover no-repeat;
}
.final-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,27,65,0.97) 0%, rgba(37,55,119,0.93) 100%);
}
.final-content { position: relative; z-index: 2; text-align: center; padding: 108px 48px; max-width: 700px; margin: 0 auto; }
.final-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px,5vw,62px); color: white; line-height: 1.1; letter-spacing: 0.5px; margin-bottom: 18px; }
.final-content p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 44px; }
.final-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-final-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: #25D366; color: white; text-decoration: none;
  font-size: 16px; font-weight: 700; padding: 17px 34px; border-radius: 12px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.38); transition: all 0.2s;
}
.btn-final-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
.btn-final-tel {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: white; text-decoration: none;
  font-size: 16px; font-weight: 600; padding: 16px 30px; border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.28); transition: all 0.2s;
}
.btn-final-tel:hover { background: rgba(255,255,255,0.1); }

footer {
  background: #0f1830;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 28px; opacity: 0.75; }
.footer-logo span { color: rgba(255,255,255,0.35); font-size: 12px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 13px; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal-light); }
.footer-links svg { width: 13px; height: 13px; opacity: 0.6; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp 0.65s forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1024px) {
  .periyodik-grid { grid-template-columns: repeat(2, 1fr); }
  .neden-layout { gap: 48px; }
  .flow-step { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .belgeler-grid { grid-template-columns: 1fr 1fr; }
  .neden-layout { grid-template-columns: 1fr; }
  .periyodik-grid { grid-template-columns: repeat(2, 1fr); }
  .urgency-band { padding: 18px 24px; }
}
@media (max-width: 600px) {
  nav { width: calc(100% - 32px); padding: 0 20px; border-radius: 12px; top: 12px; height: 64px; }
  nav.sticky { width: 100%; border-radius: 0; padding: 0 20px; top: 0; }
  .nav-logo-img-wrap { height: 44px; width: 44px; }
  .nav-logo-img-wrap img { height: 44px; }
  .nav-phone { display: none; }
  .section { padding: 64px 24px; }
  .belgeler-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 110px 24px 60px; }
  footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .flow-line { left: 10px; }
  .flow-steps { padding-left: 48px; }
  .flow-dot { left: -40px; }
  .float-cta { right: 16px; bottom: 40px; }
  .float-btn { font-size: 13px; padding: 11px 14px; }
}