:root {
  --main-color: #4C7182;
  --main-hover: #3a5663;
  --bg-color: #f6f8fd;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --white: #ffffff;
  --border-color: #e5e7eb;
  --font: 'Inter', sans-serif;
  
  --hero-bg: #4C7182;
  --hero-bg-gradient: linear-gradient(135deg, #4C7182, #304a57);
}

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

body {
  font-family: var(--font);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding-bottom: 3rem;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.ms-auto { margin-left: auto; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.text-center { text-align: center; }

/* Header */
.header {
  background: var(--white);
  padding: 1.2rem 0;
  border-bottom: 2px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--main-color);
  letter-spacing: -0.5px;
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-outline {
  border-color: var(--border-color);
  color: var(--text-dark);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--main-color);
  color: var(--main-color);
}

.btn-primary {
  background: var(--white);
  color: var(--main-color);
}

.btn-primary:hover {
  background: #f3f4f6;
}

.btn-lg {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
}

.btn-go-panel {
  border: 2px solid var(--main-color);
  color: var(--main-color);
  background: transparent;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  padding: 0.6rem 1.5rem;
  border-radius: 14px;
}

.btn-go-panel:hover {
  background: var(--main-color);
  color: var(--white);
}

/* Hero Banner (Coupon style) */
.hero-banner {
  background: var(--hero-bg-gradient);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(76, 113, 130, 0.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.badge-top {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(5px);
}

.hero-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

/* Coupon Box */
.coupon-box {
  background: rgba(0, 0, 0, 0.15);
  border: 1px dashed rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  gap: 1rem;
  backdrop-filter: blur(5px);
}

.coupon-text {
  display: flex;
  flex-direction: column;
}

.coupon-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.coupon-code {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.btn-copy {
  background: var(--white);
  color: var(--main-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.btn-copy:hover {
  transform: scale(1.05);
}

.hero-image {
  position: absolute;
  right: -5%;
  bottom: -5%;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  height: 110%;
}

.hero-girl {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
}

.float-icon {
  font-size: 12rem;
  color: rgba(255, 255, 255, 0.1);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Platform List Grid */
.platform-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

@media (max-width: 1024px) {
  .platform-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .platform-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .platform-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.platform-item {
  background: var(--p);
  border: none;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--white);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.platform-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
  z-index: 0;
}

.platform-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.platform-item i {
  font-size: 2.5rem;
  color: var(--white);
  transition: transform 0.3s ease;
  z-index: 1;
}

.platform-item:hover i {
  transform: scale(1.1);
}

.platform-item span {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

/* FAQ Section */
.faq-section {
  background: var(--white);
  margin-top: 3rem;
  padding: 3rem 1.5rem 3rem 1.5rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  box-shadow: inset 0 4px 20px rgba(76, 113, 130, 0.05);
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}

.faq-section .faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid var(--border-color);
  padding: 1.5rem 1.8rem;
  transition: all 0.3s ease;
}

.faq-item summary {
  list-style: none;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  position: relative;
  padding-right: 2rem;
}

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

.faq-item summary i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dark);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item[open] summary i {
  transform: translateY(-50%) rotate(180deg);
}

.faq-content {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Compact Footer */
.compact-footer {
  padding: 0 1rem;
  margin-top: auto;
  padding-bottom: 0;
}

.compact-footer-inner {
  background: var(--hero-bg-gradient);
  border-radius: 30px 30px 0 0;
  padding: 2.5rem 2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.compact-footer-inner .footer-logo {
  height: 40px;
  width: auto;
}

.footer-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
}

.social-box {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.2s, background 0.2s;
}

.social-box:hover {
  transform: translateY(-3px);
  background: var(--white);
  color: var(--main-color);
}

.footer-bottom-row p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-align: center;
  margin: 0;
}



/* =============================================
   HERO FLOATING ICONS
   ============================================= */
.hero-floats {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hf {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.8);
  animation: floatIcon 6s ease-in-out infinite;
}

.hf i { font-size: inherit; }

.hf-1 { width: 52px; height: 52px; font-size: 1.5rem; top: 10%;    right: 52%; animation-delay: 0s;   }
.hf-2 { width: 44px; height: 44px; font-size: 1.3rem; top: 32%;    right: 44%; animation-delay: 0.8s; }
.hf-3 { width: 48px; height: 48px; font-size: 1.4rem; top: 55%;    right: 50%; animation-delay: 1.6s; }
.hf-4 { width: 38px; height: 38px; font-size: 1.1rem; bottom: 12%; right: 42%; animation-delay: 0.4s; }
.hf-5 { width: 42px; height: 42px; font-size: 1.25rem; top: 20%;   right: 38%; animation-delay: 1.2s; }
.hf-6 { width: 36px; height: 36px; font-size: 1.0rem; bottom: 28%; right: 54%; animation-delay: 2.0s; }

@keyframes floatIcon {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(4deg); }
  66%       { transform: translateY(6px) rotate(-3deg); }
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 1.8rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.6rem 3rem;
  gap: 0.1rem;
}

.stat-number-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--main-color);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.stat-suffix {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--main-color);
  margin-left: 2px;
  line-height: 1;
  display: inline;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.2rem;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border-color);
  flex-shrink: 0;
}

/* =============================================
   NEDEN TURKPANELI — EDITORIAL LAYOUT
   ============================================= */
.why-section {
  padding: 4rem 0 2rem;
}

.why-editorial {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.why-visual {
  background: var(--bg-color);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 480px;
  overflow: hidden;
}

.why-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

.why-content {
  padding: 2.5rem 2.5rem 2.5rem 0;
}

.why-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin-bottom: 0.5rem;
}

.why-title span {
  color: var(--main-color);
}

.why-separator {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.8rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.why-block {
  margin-bottom: 1.4rem;
}

.why-block h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.why-block h4 i {
  color: var(--main-color);
  font-size: 0.9rem;
}

.why-block p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.why-list li i {
  color: var(--main-color);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.why-closing {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-color);
  font-style: italic;
}

/* =============================================
   FINAL CTA SECTION — LIGHT THEME
   ============================================= */
.cta-section {
  margin-top: 3rem;
}

.cta-light-inner {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  overflow: hidden;
}

/* Sol: Metin */
.cta-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.cta-light-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(76, 113, 130, 0.1);
  color: var(--main-color);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.cta-light-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.cta-light-title strong {
  color: var(--main-color);
}

.cta-light-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.8rem;
  max-width: 400px;
}

.cta-light-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-cta-filled {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--main-color);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(76,113,130,0.3);
}

.btn-cta-filled:hover {
  background: var(--main-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(76,113,130,0.4);
}

.btn-cta-line {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.2rem;
  border-radius: 50px;
  border: 1.5px solid var(--main-color);
  transition: all 0.2s ease;
}

.btn-cta-line:hover {
  background: rgba(76,113,130,0.08);
}

.cta-light-trust {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.cta-light-trust span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.cta-light-trust i {
  color: var(--main-color);
  font-size: 0.85rem;
}

/* Sağ: Mozaik Grid */
.cta-mosaic-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 280px;
}

.mosaic-item {
  width: 80px;
  height: 80px;
  background: var(--mc);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  animation: mosaicPulse 3s ease-in-out infinite;
}

.mosaic-item:nth-child(1) { animation-delay: 0s; }
.mosaic-item:nth-child(2) { animation-delay: 0.2s; }
.mosaic-item:nth-child(3) { animation-delay: 0.4s; }
.mosaic-item:nth-child(4) { animation-delay: 0.6s; }
.mosaic-item:nth-child(5) { animation-delay: 0.8s; }
.mosaic-item:nth-child(6) { animation-delay: 1.0s; }
.mosaic-item:nth-child(7) { animation-delay: 1.2s; }
.mosaic-item:nth-child(8) { animation-delay: 1.4s; }
.mosaic-item:nth-child(9) { animation-delay: 1.6s; }

@keyframes mosaicPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-5px) scale(1.04); }
}

.mosaic-item:hover {
  transform: scale(1.12) rotate(3deg) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}


  transition: all 0.2s ease;
}

.btn-cta-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.cta-trust i {
  color: rgba(255,255,255,0.9);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .hero-banner {
    padding: 2rem 1.5rem;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-image {
    display: none;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-divider {
    width: 100%;
    height: 1px;
  }
  .why-editorial {
    grid-template-columns: 1fr;
  }
  .why-visual {
    min-height: 260px;
  }
  .why-content {
    padding: 0 1.5rem 2rem 1.5rem;
  }
  .stat-item {
    padding: 0.6rem 1.5rem;
  }
  .stat-divider {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 0.5rem;
  }
  .hf { display: none; }

  /* CTA mobile */
  .cta-light-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }
  .cta-light-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
  }
  .cta-light-title {
    font-size: 1.8rem;
  }
  .cta-mosaic-col {
    justify-content: center;
  }
  .mosaic-grid {
    max-width: 240px;
    gap: 0.7rem;
  }
  .mosaic-item {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
    border-radius: 16px;
  }
  .cta-light-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-cta-filled, .btn-cta-line {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .cta-light-trust {
    gap: 0.8rem;
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .platform-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
