:root {
  /* Digitürk Partner — mor & altın vurgu */
  --primary: #5b1a7a;
  --primary-dark: #3d114f;
  --secondary: #e8c547;
  --accent-red: #c8102e;
  --dark: #1a0f24;
  --light: #f6f2f9;
  --white: #ffffff;
  --success: #1e8f4a;
  --error: #dc3545;
  --text: #1a1a1a;
  --text-muted: #5c5563;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 15px 35px rgba(45, 20, 70, 0.08);
  --shadow-hover: 0 22px 50px rgba(45, 20, 70, 0.12);
  --font-main: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
}

.section-padding {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

/* Header Enhancements */
.topbar {
  background: var(--primary);
  border-bottom: 2px solid var(--secondary);
  padding: 0.65rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.topbar__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
  padding-left: clamp(12px, 3vw, 24px);
  padding-right: clamp(12px, 3vw, 24px);
}

.topbar .brand {
  flex-shrink: 0;
}

/* Menü taşmasını önle: tek satır + dar ekranda yatay kaydırma */
.topbar .nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: flex-end;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  min-width: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 2px;
}

.topbar .nav::-webkit-scrollbar {
  display: none;
}

.topbar .nav .nav-cta {
  flex-shrink: 0;
  white-space: nowrap;
}

.brand {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white) !important;
  text-decoration: none;
  letter-spacing: -0.4px;
  line-height: 1.15;
}

@media (max-width: 480px) {
  .brand {
    font-size: 1.32rem;
  }
}

.brand span {
  color: var(--secondary);
}

.nav a {
  color: var(--white);
  padding: 0.45rem 0.75rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  font-size: 0.84rem;
}

.nav a:hover {
  color: var(--secondary);
}

.nav-cta {
  background: var(--secondary);
  color: var(--primary-dark) !important;
  border-radius: 50px;
  padding: 0.6rem 1.8rem !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 20px rgba(232, 197, 71, 0.35);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 196, 12, 0.4);
}

.hero-premium {
  background: linear-gradient(135deg, #3d114f 0%, #5b1a7a 42%, #4a1565 70%, #2a0b3a 100%);
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Card & Form Premium Look */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
  width: 100%;
}

.form-group label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
  display: block;
  text-align: left;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 2px solid #edf2f7;
  border-radius: 10px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: all 0.3s;
  background: #fdfdfd;
  color: var(--text);
  line-height: normal;
  /* Fix vertical alignment in some browsers */
}

.form-control::placeholder {
  color: #adb5bd;
  opacity: 1;
}

.form-control:focus {
  border-color: var(--primary);
  background: var(--white);
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 79, 177, 0.08);
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-weight: 600;
  font-family: var(--font-main);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(0, 79, 177, 0.15);
}

.btn:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: var(--light);
  color: var(--primary);
}

/* Campaign Cards Ultra-Premium */
.campaign {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.campaign::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 79, 177, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.5s;
}

.campaign:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 79, 177, 0.12);
  border-color: rgba(0, 79, 177, 0.1);
}

.campaign:hover::before {
  opacity: 1;
}

.campaign__icon {
  width: 60px;
  height: 60px;
  background: var(--light);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all 0.5s;
}

.campaign:hover .campaign__icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(-5deg) scale(1.1);
}

.campaign__body {
  padding: 30px 17px !important;
  position: relative;
  z-index: 2;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pill {
  display: inline-block;
  background: rgba(0, 79, 177, 0.06);
  color: var(--primary);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  width: fit-content;
}

.campaign h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.price {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 800;
  color: var(--primary);
  margin: 1.5rem 0;
  display: flex;
  align-items: baseline;
}

.price small {
  font-size: 1.2rem;
  font-weight: 600;
  margin-left: 2px;
}

.price span {
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 8px;
}

.btn-premium {
  background: var(--primary);
  color: var(--white);
  padding: 0.8rem 0.5rem;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-shadow: 0 6px 15px rgba(0, 79, 177, 0.15);
  font-size: 0.85rem;
}

.btn-premium:hover {
  background: var(--dark);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}


.btn-detail {
  background: #f0f4f8;
  color: var(--primary);
  padding: 0.8rem 1.2rem;
  border-radius: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid rgba(0, 79, 177, 0.1);
  font-size: 0.85rem;
}


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

.btn-call {
  background: #f6c200;
  /* Brand Yellow */
  color: #0b2d57;
  /* Dark text for contrast */
  padding: 0.8rem 0.5rem;
  border-radius: 12px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-size: 0.82rem;
  transition: all 0.3s;
  border: none;
}

.btn-call:hover {
  background: #e5b300;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(246, 194, 0, 0.3);
}


.actions-row-stacked {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 1.2rem;
}

.btn-group-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.campaign-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.campaign-sidebar .card {
  position: relative !important;
  top: 0 !important;
  margin-bottom: 0;
}

/* Breadcrumbs */
.breadcrumbs {
  background: var(--white);
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 2rem;
}

.breadcrumbs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.breadcrumbs li {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs li::after {
  content: "/";
  color: #ccc;
}

.breadcrumbs li:last-child::after {
  display: none;
}

.breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .breadcrumbs {
    margin-bottom: 1.5rem;
    padding: 0.75rem 0;
  }

  .breadcrumbs ul {
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .breadcrumbs li {
    font-size: 0.8rem;
  }
}

/* Page Header */
.page-header {
  padding: 3rem 0;
  background: linear-gradient(to right, #f8faff, var(--white));
  border-bottom: 1px solid #eee;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}

/* Mobile Floating Button Refinement */
.call-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}

@media (min-width: 769px) {
  .call-btn {
    display: none;
  }
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

@media (max-width: 768px) {
  .call-btn {
    display: flex;
  }
}

/* Mobile Menu Premium Styles */
.navToggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.navToggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

.navToggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navToggle.active span:nth-child(2) {
  opacity: 0;
}

.navToggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.navPanel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1000;
  padding: 80px 24px 32px;
}

.navPanel[data-open="1"] {
  right: 0;
}

.navPanel a {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  padding: 10px 0;
  border: none !important;
  width: 100%;
  text-align: left;
}

.navPanel a:hover {
  color: var(--secondary);
}

@media (max-width: 980px) {
  .nav {
    display: none !important;
  }

  .navToggle {
    display: flex !important;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Refined Footer Styles */
footer {
  background: #f8fafc;
  padding: 5rem 0 0;
  border-top: 1px solid #eef2f6;
  margin-top: 50px;
}

.footer__brand-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__brand {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1.5px;
}

.footer__info {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.footer__section-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 15px;
}

.footer__section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  color: #475569;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.footer__links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 0.95rem;
  color: #475569;
}

.footer__contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.footer__contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__contact-info label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #94a3b8;
}

.footer__contact-info a,
.footer__contact-info span {
  color: #1e293b;
  font-weight: 600;
  text-decoration: none;
}

.footer__copyright {
  background: #f1f5f9;
  padding: 2rem 0;
  text-align: center;
  margin-top: 5rem;
  font-size: 0.85rem;
  color: #64748b;
  border-top: 1px solid #eef2f6;
}

@media (max-width: 991px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 50px;
  }

  .footer__section-title::after {
    left: 0;
  }

  .footer__contact-item {
    justify-content: flex-start;
    text-align: left;
    max-width: 100%;
    margin: 0;
  }

  .footer__links a:hover {
    transform: none;
  }

  footer {
    padding-top: 3.5rem;
  }

  .footer__info,
  .footer__contact {
    font-size: 0.9rem;
  }
}

/* Online application form responsiveness */
@media (max-width: 640px) {
  .section-padding .card {
    padding: 2rem 1.5rem;
  }

  /* Left-align the online application container on mobile */
  .section-padding .wrap>div {
    margin: 0 !important;
  }
}

/* Campaign detail pages mobile layout */
@media (max-width: 768px) {

  /* Ana layout grid'ini tek kolona dÃ¼ÅŸÃ¼r */
  .section-padding .wrap>div[style*="grid-template-columns: 400px 1fr"] {
    display: block !important;
  }

  .campaign {
    margin-top: 30px;
  }

  .campaign-sidebar {
    margin-bottom: 2rem;
  }

  .campaign-sidebar .card {
    padding: 1.75rem 1.5rem !important;
  }

  .campaign-detail h1 {
    font-size: 2rem !important;
  }

  .campaign-detail>div[style*="display: grid;"][style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .campaign-detail>div[style*="display: grid;"][style*="grid-template-columns: 1fr 1fr"]>div:last-child {
    border-left: none !important;
    padding-left: 0 !important;
  }
}

/* Homepage "Neden Fiber Internet" section responsiveness */
@media (max-width: 900px) {

  /* 1fr 1fr grid kullanan ana blok (homepage about section) */
  .section-padding .wrap>div[style*="grid-template-columns: 1fr 1fr"] {
    display: block !important;
  }

  .section-padding .wrap>div[style*="grid-template-columns: 1fr 1fr"]>div:first-child {
    margin-bottom: 2.5rem;
  }

  .section-padding .wrap>div[style*="grid-template-columns: 1fr 1fr"] h2 {
    font-size: 2rem !important;
  }

  .section-padding .wrap>div[style*="grid-template-columns: 1fr 1fr"] p {
    font-size: 1rem !important;
  }

  .section-padding .wrap>div[style*="grid-template-columns: 1fr 1fr"] ul {
    gap: 12px !important;
  }

  .section-padding .wrap>div[style*="grid-template-columns: 1fr 1fr"] li {
    align-items: flex-start !important;
  }

  .section-padding .wrap>div[style*="grid-template-columns: 1fr 1fr"] svg {
    flex-shrink: 0;
  }

  .section-padding .wrap>div[style*="grid-template-columns: 1fr 1fr"]>div:last-child {
    max-width: 480px;
    margin: 0 auto;
  }

  .section-padding .wrap>div[style*="grid-template-columns: 1fr 1fr"]>div:last-child>div[style*="position: absolute"] {
    right: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Digitürk Partner — ana sayfa grid */
.hero-digiturk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-form-card {
  position: relative;
  z-index: 2;
}

.hero-digiturk-visual {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  background: #ffffff;
  border: 1px solid rgba(91, 26, 122, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18), 0 2px 12px rgba(91, 26, 122, 0.06);
}

.hero-digiturk-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 55%, #c8102e 100%);
  border-radius: 23px 23px 0 0;
  z-index: 1;
}

.hero-digiturk-visual__inner {
  padding: 2.5rem 2rem;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

/* Hero — beyaz değer kartı (formun yanı) */
.hero-value-card {
  position: relative;
  z-index: 2;
  padding: 1.75rem 1.5rem 1.6rem;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  text-align: left;
}

.hero-value-card__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.hero-value-card__title {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.hero-value-card__lead {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.hero-value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-value-list__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.hero-value-list__mark {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(91, 26, 122, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-value-list__head {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.25;
}

.hero-value-list__text {
  display: block;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
}

/* Ana sayfa — alt CTA + süreç özeti */
.home-final-cta {
  background: linear-gradient(180deg, #f4eef9 0%, #ffffff 42%, #ffffff 100%);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.home-how,
.home-topics,
.home-faq {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.home-final-cta__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 1rem;
}

.home-final-cta__panel {
  background: linear-gradient(155deg, #4a1565 0%, #5b1a7a 48%, #3d114f 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: 0 20px 48px rgba(61, 17, 79, 0.28);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-final-cta__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
}

.home-final-cta__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 3.4vw, 1.85rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.home-final-cta__intro {
  margin: 0 0 1.35rem;
  font-size: 0.98rem;
  line-height: 1.62;
  opacity: 0.94;
}

.home-final-cta__tel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0.95rem 1.2rem;
  background: #fff;
  color: var(--primary-dark) !important;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: fit-content;
  max-width: 100%;
}

.home-final-cta__tel:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.home-final-cta__tel-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(91, 26, 122, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-final-cta__tel-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.home-final-cta__tel-lines small {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.75;
  color: inherit;
}

.home-final-cta__tel-lines strong {
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: inherit;
}

.home-final-cta__list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(91, 26, 122, 0.1);
  box-shadow: 0 8px 28px rgba(91, 26, 122, 0.06);
  overflow: hidden;
}

.home-final-cta__list > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.1rem;
  padding: 1.15rem 1.35rem;
  align-items: start;
  border-bottom: 1px solid rgba(91, 26, 122, 0.07);
}

.home-final-cta__list > li:last-child {
  border-bottom: none;
}

.home-final-cta__step {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--secondary);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  padding-top: 2px;
  min-width: 2ch;
}

.home-final-cta__list strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.25;
}

.home-final-cta__list p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.home-final-cta__legal {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
  background: rgba(91, 26, 122, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(91, 26, 122, 0.08);
}

@media (max-width: 900px) {
  .hero-digiturk-grid {
    grid-template-columns: 1fr;
  }

  .home-final-cta__layout {
    grid-template-columns: 1fr;
  }

  .home-final-cta__tel {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .iletisim-page-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Ana sayfa — ek içerik blokları */
.home-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.25rem;
}

.home-section-head__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.home-section-head__lead {
  margin: 0;
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.home-section-head__lead a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-section-head__lead a:hover {
  text-decoration: none;
}

.home-how {
  background: #fff;
}

.home-how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.home-how-step {
  position: relative;
  padding: 1.1rem 1rem;
  background: var(--light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(91, 26, 122, 0.08);
}

.home-how-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.home-how-step__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
}

.home-how-step__text {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.home-how-step__text a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-topics {
  background: linear-gradient(180deg, #f4eef9 0%, #fdfcfe 100%);
}

.home-topics__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.home-topic {
  padding: 1.25rem 1.35rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(91, 26, 122, 0.1);
  box-shadow: 0 4px 18px rgba(91, 26, 122, 0.05);
}

.home-topic__h {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
}

.home-topic__p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.home-topics__note {
  max-width: 820px;
  margin: 1.15rem auto 0;
  padding: 0 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
}

.home-faq {
  background: #fff;
  border-top: 1px solid rgba(91, 26, 122, 0.07);
}

.home-faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.home-faq__item {
  border-bottom: 1px solid rgba(91, 26, 122, 0.1);
}

.home-faq__item:first-of-type {
  border-top: 1px solid rgba(91, 26, 122, 0.1);
}

.home-faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 0.25rem 0.85rem 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.35;
}

.home-faq__item summary::-webkit-details-marker {
  display: none;
}

.home-faq__item summary::after {
  content: '+';
  float: right;
  font-weight: 900;
  color: var(--secondary);
  font-size: 1.15rem;
  line-height: 1;
}

.home-faq__item[open] summary::after {
  content: '–';
}

.home-faq__body {
  padding: 0 0 0.85rem;
}

.home-faq__body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 992px) {
  .home-how__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .home-how__steps {
    grid-template-columns: 1fr;
  }
}

/* Utilities */
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}