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

    html {
      font-family: 'Poppins', sans-serif;
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    body {
      background: #F8F7FA;
      color: #0C003D;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      overflow-x: hidden;
      font-family: 'Poppins', sans-serif;
      padding-top: 85px;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

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

    button {
      font-family: inherit;
      cursor: pointer;
    }

    ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    /* ===== HEADER ===== */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1040;
      background: #ffffffc2;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .site-header.header-hidden {
      transform: translateY(-100%);
    }

    .header-nav {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem 2rem;
    }

    .header-logo img {
      width: 120px;
    }

    .header-center {
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    .header-center a {
      padding: 0.5rem 1rem;
      border-radius: 0.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: #0C003D;
      transition: background 0.2s;
    }

    .header-center a:hover {
      background: #f3f4f6;
    }

    .header-center .lgs-badge {
      background: #5c1a58;
      color: #fff;
      border-radius: 9999px;
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
      font-weight: 500;
    }

    .header-center .lgs-badge:hover {
      opacity: 0.9;
      background: #fff;
      color: #5c1a58;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .header-right .login-link {
      padding: 0.5rem 1rem;
      font-size: 1rem;
      font-weight: 500;
      color: #0C003D;
      transition: opacity 0.2s;
    }

    .header-right .login-link:hover {
      opacity: 0.8;
    }

    .header-right .buy-btn {
      background: #5c1a58;
      color: #fff;
      border-radius: 9999px;
      padding: 0.5rem 1rem;
      font-size: 1rem;
      font-weight: 500;
      transition: opacity 0.2s;
    }

    .header-right .buy-btn:hover {
      opacity: 0.9;
    }

    /* Bootstrap navbar toggler override */
    .navbar-toggler {
      border: none;
      padding: 0.5rem;
      border-radius: 0.5rem;
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }

    .navbar-toggler-icon {
      width: 24px;
      height: 24px;
    }

    .navbar-collapse {
      position: absolute;
      top: 85px;
      left: 0;
      right: 0;
      background: #f8f7fa;
      border-radius: 0 0 1.5rem 1.5rem;
      padding: 0;
      z-index: 1050;
    }

    .navbar-collapse.collapsing,
    .navbar-collapse.show {
      padding: 1rem 1.5rem 1.5rem;
    }

    .navbar-collapse .nav-link {
      display: block;
      padding: 0.75rem 1rem;
      border-radius: 0.5rem;
      font-size: 0.9375rem;
      font-weight: 500;
      color: #0C003D;
      transition: background 0.2s;
    }

    .navbar-collapse .nav-link:hover {
      background: #f3f4f6;
    }

    .navbar-collapse .lgs-badge {
      display: inline-block;
      width: fit-content;
      background: #C2574A;
      color: #fff;
      border-radius: 9999px;
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
      font-weight: 500;
    }

    .navbar-collapse .mobile-divider {
      height: 1px;
      background: rgba(12, 0, 61, 0.08);
      margin: 0.5rem 0;
    }

    .navbar-collapse .mobile-buy-btn {
      display: block;
      text-align: center;
      background: #5c1a58;
      color: #fff;
      border-radius: 9999px;
      padding: 0.75rem 1rem;
      font-size: 0.9375rem;
      font-weight: 600;
      margin-top: 0.25rem;
      transition: background 0.2s;
    }

    .navbar-collapse .mobile-buy-btn:hover {
      background: #5A37E6;
    }

    @media (min-width: 768px) {
      .navbar-collapse {
        display: none !important;
      }

      .navbar-toggler {
        display: none !important;
      }
    }

    @media (max-width: 1400px) {
      .header-center {
        display: none;
      }

      .header-nav {
        padding: 1rem 1.25rem;
      }

      .navbar-toggler {
        order: 1;
      }

      .header-logo {
        order: 2;
        flex: 1;
        display: flex;
        margin-left: 10px;
      }

      .header-logo img {
        width: 110px;
      }

      .header-right {
        order: 3;
        display: flex;
        gap: 0;
      }

      .header-right .login-link {
        display: none;
      }

      .header-right .buy-btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
      }

      .site-header {
        overflow: visible;
      }
    }

    /* ===== FOOTER ===== */
    .site-footer {
      display: flex;
      width: 100%;
      justify-content: center;
      padding: 0 1% 0.75rem;
    }

    .footer-card {
      position: relative;
      width: 98%;
      max-width: 3000px;
      overflow: hidden;
      border-radius: 1.5rem;
      background: #5c1a58;
      padding: 4rem 1.5rem 1rem;
    }

    @media (min-width: 640px) {
      .footer-card {
        padding: 4rem 3rem 1rem;
      }
    }

    @media (min-width: 768px) {
      .footer-card {
        padding: 4rem 6rem 1rem;
      }
    }

    .footer-heading {
      margin-bottom: 3rem;
      text-align: center;
      font-size: 30px;
      font-weight: 700;
      color: #fff;
      line-height: 1.3;
    }

    .footer-grid {
      max-width: 48rem;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 640px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

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

    .footer-col h3 {
      margin-bottom: 1rem;
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #fff;
    }

    .footer-col a {
      display: block;
      font-size: 0.875rem;
      line-height: 2;
      color: rgba(255, 255, 255, 0.7);
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: #fff;
    }

    .footer-apps {
      margin-top: 2.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }

    .footer-apps p {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.6);
    }

    .footer-apps .app-btns {
      display: flex;
      gap: 0.75rem;
    }

    .footer-apps .app-btns img {
      height: 40px;
      width: auto;
    }

    .footer-social {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }

    .footer-social p {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.6);
    }

    .footer-social .social-icons {
      display: flex;
      align-items: center;
      gap: 1rem;
      color: #fff;
    }

    .footer-social .social-icons a {
      transition: opacity 0.2s;
    }

    .footer-social .social-icons a:hover {
      opacity: 0.7;
    }

    .footer-social .social-icons svg {
      width: 24px;
      height: 24px;
    }

    .footer-bottom {
      margin-top: 2.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 1.5rem;
    }

    .footer-bottom .owl-icon {
      width: 32px;
      height: 32px;
    }

    .footer-bottom .payment img {
      max-width: 300px;
      width: auto;
      height: auto;
    }

    .footer-bottom .copyright {
      text-align: center;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.5);
    }

    /* ===== FLOATING ELEMENTS ===== */
    .whatsapp-float {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      z-index: 1050;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 56px;
      height: 56px;
      border-radius: 9999px;
      background: #25D366;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      transition: transform 0.2s;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
    }

    .whatsapp-float svg {
      width: 28px;
      height: 28px;
    }

    /* "Seni Arayalım" floating trigger — WhatsApp'ın yanında */
    .call-float {
      position: fixed;
      bottom: 1.5rem;
      right: 5.5rem;
      z-index: 1050;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, #7E5EFE, #5c1a58);
      color: #fff;
      border: 0;
      border-radius: 9999px;
      padding: 0.875rem 1.25rem;
      font-size: 0.9375rem;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 8px 20px -4px rgba(126, 94, 254, 0.45);
      transition: transform 0.2s, filter 0.2s;
    }

    .call-float:hover {
      transform: translateY(-1px);
      filter: brightness(1.05);
    }

    .call-float svg {
      width: 18px;
      height: 18px;
    }

    @media (max-width: 600px) {
      .call-float .label {
        display: none;
      }

      .call-float {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        right: 5.5rem;
      }

      .call-float svg {
        width: 24px;
        height: 24px;
      }
    }

    /* Lead modal — "Seni Arayalım" form'u */
    .lead-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .lead-modal.open {
      display: flex;
    }

    .lead-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(12, 0, 61, 0.6);
      backdrop-filter: blur(3px);
      cursor: pointer;
    }

    .lead-content {
      position: relative;
      width: 100%;
      max-width: 480px;
      background: #fff;
      border-radius: 1.25rem;
      padding: 2rem 1.75rem 1.75rem;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
      animation: lead-pop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      max-height: 92vh;
      overflow-y: auto;
    }

    @keyframes lead-pop {
      from {
        opacity: 0;
        transform: scale(0.92) translateY(12px);
      }

      to {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    .lead-close {
      position: absolute;
      top: 12px;
      right: 12px;
      background: transparent;
      border: 0;
      width: 32px;
      height: 32px;
      font-size: 1.375rem;
      line-height: 1;
      color: rgba(12, 0, 61, 0.4);
      cursor: pointer;
      border-radius: 50%;
      transition: background 0.15s, color 0.15s;
    }

    .lead-close:hover {
      background: rgba(12, 0, 61, 0.08);
      color: #0c003d;
    }

    .lead-content h2 {
      font-size: 1.5rem;
      font-weight: 800;
      margin: 0 0 0.375rem;
      color: #0c003d;
    }

    .lead-content .lead-lead {
      margin: 0 0 1.25rem;
      font-size: 0.9375rem;
      color: rgba(12, 0, 61, 0.65);
    }

    .lead-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.875rem;
      margin-bottom: 0.875rem;
    }

    @media (min-width: 480px) {
      .lead-row.two {
        grid-template-columns: 1fr 1fr;
      }
    }

    .lead-field label {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      color: rgba(12, 0, 61, 0.7);
      margin-bottom: 0.25rem;
    }

    .lead-field input,
    .lead-field select {
      width: 100%;
      background: #f8f7fa;
      border: 1px solid transparent;
      border-radius: 0.625rem;
      padding: 0.625rem 0.875rem;
      font-size: 0.9375rem;
      font-family: 'Poppins', sans-serif;
      color: #0c003d;
      transition: border-color 0.15s, background 0.15s;
    }

    .lead-field input:focus,
    .lead-field select:focus {
      outline: none;
      border-color: #7E5EFE;
      background: #fff;
    }

    .lead-field.has-error input,
    .lead-field.has-error select {
      border-color: #c2574a;
    }

    .lead-field .err {
      display: block;
      font-size: 0.6875rem;
      color: #c2574a;
      margin-top: 0.25rem;
    }

    .lead-submit {
      width: 100%;
      background: linear-gradient(135deg, #7E5EFE, #5c1a58);
      color: #fff;
      border: 0;
      border-radius: 9999px;
      padding: 0.875rem 1.5rem;
      font-size: 0.9375rem;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      margin-top: 0.625rem;
      transition: filter 0.15s;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .lead-submit:hover {
      filter: brightness(1.08);
    }

    .lead-submit:disabled {
      opacity: 0.7;
      cursor: progress;
    }

    .lead-spinner {
      display: inline-block;
      width: 14px;
      height: 14px;
      border: 2px solid rgba(255, 255, 255, 0.35);
      border-top-color: #fff;
      border-radius: 50%;
      animation: lead-spin 0.8s linear infinite;
    }

    @keyframes lead-spin {
      to {
        transform: rotate(360deg);
      }
    }

    /* Success state */
    .lead-success {
      text-align: center;
      padding: 1rem 0 0.5rem;
    }

    .lead-success .check {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #16C172, #0AA85E);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      margin-bottom: 1rem;
    }

    .lead-success h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin: 0 0 0.5rem;
      color: #0c003d;
    }

    .lead-success p {
      margin: 0;
      font-size: 0.9375rem;
      color: rgba(12, 0, 61, 0.65);
    }

    .lead-general-error {
      background: rgba(194, 87, 74, 0.1);
      color: #b94e3f;
      border: 1px solid rgba(194, 87, 74, 0.3);
      padding: 0.75rem 1rem;
      border-radius: 0.625rem;
      margin-bottom: 1rem;
      font-size: 0.875rem;
    }


    /* ===== HERO ===== */
    .hero-section {
      display: flex;
      justify-content: center;
      padding: 0rem 1%;
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    .hero-card {
      position: relative;
      width: 98%;
      max-width: 3000px;
      background: #420e3f;
      border-radius: 1.5rem;
      overflow: visible;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1rem 1.5rem;
      min-height: 420px;
    }

    @media (min-width: 1400px) {
      .hero-card {
        flex-direction: row;
        align-items: center;
        padding: 0 2rem;
        min-height: 480px;
      }
    }



    /* 3D blobs */
    .blob-left,
    .blob-right {
      position: absolute;
      pointer-events: none;
      z-index: 10;
      display: none;
    }

    .blob-left {
      left: -60px;
      top: 20%;
    }

    .blob-left img {
      width: 120px;
    }

    .blob-right {
      right: -40px;
      bottom: 10%;
    }

    .blob-right img {
      width: 100px;
    }

    @media (min-width: 768px) {

      .blob-left,
      .blob-right {
        display: block;
      }
    }

    /* Hero left content */
    .hero-left {

      display: flex;
      flex-direction: column;
      align-items: flex-start;
      /* justify-content: center; */
      /* gap: 1rem; */
      padding: 2rem 0;
    }

    @media (min-width: 768px) {
      .hero-left {
        padding: 4rem 0;
      }
    }

    .hero-left h1 {
      font-size: 1.8rem;
      line-height: 55px;
      font-weight: 700;
      color: #fff;
    }

    @media (min-width: 768px) {
      .hero-left h1 {
        font-size: 48px;
      }
    }


    @media (max-width: 768px) {
      .hero-left h1 {
        line-height: 37px !important;
      }
    }

    .hero-left p {
      max-width: 512px;
      font-size: 1rem;
      line-height: 1.75rem;
      color: rgba(255, 255, 255, 0.8);
    }

    .hero-cta {
      margin-top: 0.5rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #fff;
      color: #5c1a58;
      border-radius: 9999px;
      padding: 0.5rem 1.5rem;
      font-size: 0.875rem;
      font-weight: 600;
      transition: filter 0.2s;
    }

    .hero-cta:hover {
      filter: brightness(1.1);
      color: #fff;
    }

    .hero-cta svg {
      width: 16px;
      height: 16px;
    }



    .mentor-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
      margin: -1.5rem 0;
    }

    .mentor-grid .mentor-img {
      position: relative;
      aspect-ratio: 3/4;
      overflow: hidden;
      border-radius: 1rem;
    }

    .mentor-grid .mentor-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }




    /* Discover badge */
    .discover-badge {
      position: absolute;
      bottom: -40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 20;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .discover-badge .rotating-text {
      width: 80px;
      height: 80px;
      animation: spin 10s linear infinite;
    }

    .discover-badge .bounce-arrow {
      margin-top: -4px;
      animation: bounce 2s ease-in-out infinite;
    }

    .discover-badge .bounce-arrow img {
      width: 32px;
      height: 32px;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    @keyframes bounce {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(8px);
      }
    }

    /* ===== YKS COUNTDOWN ===== */
    .countdown-section {
      display: flex;
      width: 100%;
      justify-content: center;
      padding: 0 1% 0.75rem;
    }

    .countdown-inner {
      position: relative;
      width: 98%;
      max-width: 3000px;
      overflow: hidden;
      border-radius: 1.5rem;
      background: #0a0014;
      background-image:
        radial-gradient(at 20% 30%, rgba(92, 26, 88, 0.55) 0%, transparent 50%),
        radial-gradient(at 80% 70%, rgba(126, 94, 254, 0.35) 0%, transparent 50%);
      border-radius: 2rem;
      padding: 3rem 2rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 30px 80px -20px rgba(10, 0, 20, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    @media (min-width: 1024px) {
      .countdown-inner {
        padding: 4rem 4rem;
      }
    }

    .countdown-bg-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
      -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
      pointer-events: none;
    }

    .countdown-bg-glow {
      position: absolute;
      top: -25%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 184, 0, 0.18) 0%, transparent 60%);
      pointer-events: none;
      filter: blur(40px);
    }

    .countdown-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    @media (min-width: 1024px) {
      .countdown-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .countdown-left {
      text-align: center;
    }

    @media (min-width: 1024px) {
      .countdown-left {
        text-align: left;
      }
    }

    .countdown-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.625rem;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      color: #fff;
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pulse-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #FFB800;
      box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.7);
      animation: cdPulse 1.8s ease-out infinite;
    }

    @keyframes cdPulse {
      0% {
        box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.7);
      }

      70% {
        box-shadow: 0 0 0 10px rgba(255, 184, 0, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(255, 184, 0, 0);
      }
    }

    .countdown-title {
      font-size: 2.25rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.1;
      margin: 0 0 1rem;
      letter-spacing: -0.02em;
    }

    @media (min-width: 768px) {
      .countdown-title {
        font-size: 3rem;
      }
    }

    .countdown-title span {
      background: linear-gradient(135deg, #FFB800 0%, #FF6B6B 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }

    .countdown-desc {
      font-size: 1rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.7);
      margin: 0 0 2rem;
      max-width: 460px;
    }

    @media (min-width: 1024px) {
      .countdown-desc {
        margin-left: 0;
        margin-right: 0;
      }
    }

    @media (max-width: 1023px) {
      .countdown-desc {
        margin-left: auto;
        margin-right: auto;
      }
    }

    .countdown-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.625rem;
      background: #fff;
      color: #0a0014;
      padding: 0.95rem 1.75rem;
      border-radius: 9999px;
      font-size: 0.9375rem;
      font-weight: 700;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 10px 30px -10px rgba(255, 255, 255, 0.4);
    }

    .countdown-cta:hover {
      transform: translateY(-2px);
      color: #0a0014;
      box-shadow: 0 14px 40px -10px rgba(255, 255, 255, 0.5);
    }

    .countdown-cta svg {
      width: 18px;
      height: 18px;
      transition: transform 0.2s;
    }

    .countdown-cta:hover svg {
      transform: translateX(3px);
    }

    .countdown-right {
      display: flex;
      justify-content: center;
    }

    .countdown-timer {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.75rem;
      width: 100%;
      max-width: 480px;
    }

    @media (min-width: 640px) {
      .countdown-timer {
        gap: 1rem;
      }
    }

    .countdown-unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      aspect-ratio: 1;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 1.25rem;
      padding: 0.5rem;
      backdrop-filter: blur(12px);
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .countdown-unit::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    }

    .countdown-unit:hover {
      transform: translateY(-3px);
    }

    .countdown-unit .value {
      font-size: 2rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
      font-variant-numeric: tabular-nums;
      letter-spacing: -0.02em;
    }

    @media (min-width: 640px) {
      .countdown-unit .value {
        font-size: 3rem;
      }
    }

    @media (min-width: 1024px) {
      .countdown-unit .value {
        font-size: 3.25rem;
      }
    }

    .countdown-unit .label {
      margin-top: 0.5rem;
      font-size: 0.625rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.55);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    @media (min-width: 640px) {
      .countdown-unit .label {
        font-size: 0.75rem;
      }
    }

    /* ===== PRODUCT CARDS SECTION ===== */
    #productCards {
      scroll-margin-top: 100px;
      /* fixed header altında kalmasın */
    }

    .product-section {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: center;
      padding: 3rem 1%;
    }

    @media (min-width: 768px) {
      .product-section {
        padding: 4rem 1%;
      }
    }

    .product-wrapper {
      width: 98%;
      max-width: 3000px;
      background: rgba(232, 227, 245, 0.5);
      border-radius: 1.5rem;
      padding: 4rem 1.5rem;
    }

    @media (min-width: 640px) {
      .product-wrapper {
        padding: 4rem 2rem;
      }
    }

    @media (min-width: 768px) {
      .product-wrapper {
        padding: 4rem 3rem;
      }
    }

    .product-heading {
      max-width: 42rem;
      margin: 0 auto;
      text-align: center;
    }

    .product-heading h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #0C003D;
    }

    .product-heading p {
      margin-top: 0.5rem;
      color: rgba(12, 0, 61, 0.8);
    }

    /* Tab pills */
    .tab-pills-wrapper {
      display: flex;
      justify-content: center;
    }

    .tab-pills {
      position: relative;
      margin-top: 1.5rem;
      display: inline-flex;
      border-radius: 9999px;
      background: #fff;
      padding: 0.25rem;
    }

    .tab-pill-bg {
      position: absolute;
      top: 0.25rem;
      bottom: 0.25rem;
      background: #5c1a58;
      border-radius: 9999px;
      transition: left 0.3s ease-in-out, width 0.3s ease-in-out;
      z-index: 0;
    }

    .tab-pill-btn {
      position: relative;
      z-index: 1;
      border-radius: 9999px;
      padding: 0.75rem 3rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: #5c1a58;
      transition: color 0.2s;
      cursor: pointer;
      background: none;
      border: none;
    }

    .tab-pill-btn.active {
      color: #fff;
      background: #5c1a58;
    }

    .tab-pill-btn:hover:not(.active) {
      color: #5c1a58;
    }

    /* Info banner */
    .info-banner {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      border-radius: 1rem;
      padding: 1rem 1.25rem;
      margin-bottom: 2rem;
    }

    .info-banner svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: #FFA031;
    }

    .info-banner p {
      font-size: 0.875rem;
      font-weight: 500;
      color: #0C003D;
    }

    /* Cards grid */
    .cards-grid {
      max-width: 1280px;
      margin: 2.5rem auto 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
    }

    .cards-grid>.product-card {
      flex: 0 1 100%;
      max-width: 100%;
    }

    @media (min-width: 768px) {
      .cards-grid>.product-card {
        flex: 0 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
      }
    }

    @media (min-width: 1024px) {
      .cards-grid>.product-card {
        flex: 0 1 calc(33.333% - 1.334rem);
        max-width: 380px;
      }
    }

    .cards-grid.centered {
      max-width: 28rem;
      grid-template-columns: 1fr;
      margin-left: auto;
      margin-right: auto;
    }

    /* Product card */
    .product-card {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border-radius: 1.5rem;
      background: #fff;
      box-shadow: 0 2px 16px rgba(44, 44, 84, 0.08);
    }

    .product-card.maarif-style {
      position: relative;
    }

    .product-card.maarif-style::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image: url(assets/img/square.svg);
      background-size: 40px 40px;
      background-repeat: repeat;
      opacity: 0.1;
      pointer-events: none;
    }

    .card-banner {
      position: relative;
      z-index: 1;
      aspect-ratio: 16/7;
      width: 100%;
      overflow: hidden;
    }

    .card-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .card-body {
      position: relative;
      z-index: 1;
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 1.25rem 1.5rem 1.5rem;
    }

    .card-body.green-bg {
      background: #F3FAF7;
    }

    .card-badge {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      border-radius: 9999px;
      padding: 0.25rem 0.75rem;
      font-size: 0.75rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      background: rgba(10, 255, 148, 0.2);
      color: #0C003D;
    }

    .card-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: #0C003D;
    }

    .card-price {
      margin-top: 0.5rem;
      display: flex;
      align-items: baseline;
      gap: 0.25rem;
    }

    .card-price .amount {
      font-size: 2.25rem;
      font-weight: 700;
      color: #0C003D;
    }

    .card-price .amount.purple {
      color: #5c1a58;
    }

    .card-price .period {
      font-size: 0.875rem;
      color: rgba(12, 0, 61, 0.6);
    }

    .card-desc {
      margin-top: 0.75rem;
      font-size: 0.875rem;
      line-height: 1.625;
      color: rgba(12, 0, 61, 0.8);
    }

    .card-features {
      margin-top: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.625rem;
    }

    .card-feature {
      display: flex;
      align-items: flex-start;
      gap: 0.625rem;
    }

    .card-feature .dot {
      margin-top: 0.375rem;
      width: 0.5rem;
      height: 0.5rem;
      flex-shrink: 0;
      border-radius: 9999px;
      background: #5c1a58;
    }

    .card-feature span {
      font-size: 0.875rem;
      line-height: 1.4;
      color: #0C003D;
    }

    .card-expand-btn {
      margin-top: 0.25rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: #6C47FF;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      padding: 0;
    }

    .card-expand-btn:hover {
      text-decoration: underline;
    }

    .card-spacer {
      flex: 1;
    }

    /* Variant toggle (segmented control) */
    .variant-toggle {
      display: flex;
      gap: 0.25rem;
      padding: 0.25rem;
      background: #f4f4f4;
      border-radius: 9999px;
      margin-bottom: 1.25rem;
    }

    .variant-btn {
      flex: 1;
      border: none;
      background: transparent;
      padding: 0.55rem 0.5rem;
      border-radius: 9999px;
      font-size: 0.8125rem;
      font-weight: 600;
      color: rgba(12, 0, 61, 0.6);
      cursor: pointer;
      transition: background 0.2s, color 0.2s, box-shadow 0.2s;
      font-family: 'Poppins', sans-serif;
      white-space: nowrap;
    }

    .variant-btn:hover {
      color: #0C003D;
    }

    .variant-btn.active {
      background: #fff;
      color: #5c1a58;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    .card-cta {
      margin-top: 1.5rem;
      width: 100%;
      border-radius: 9999px;
      padding: 0.75rem;
      text-align: center;
      font-size: 0.875rem;
      font-weight: 600;
      color: #fff;
      background: #5c1a58;
      transition: background 0.2s;
      border: none;
      cursor: pointer;
      display: block;
      text-decoration: none;
    }

    .card-cta:hover {
      color: #fff;
    }

    .card-cta:hover {
      background: #5A37E6;
    }

    .card-secondary {
      margin-top: 0.75rem;
      width: 100%;
      text-align: center;
      font-size: 0.875rem;
      font-weight: 500;
      color: #6C47FF;
      background: none;
      border: none;
      cursor: pointer;
    }

    .card-secondary:hover {
      text-decoration: underline;
    }

    .card-rating {
      margin-top: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.375rem;
    }

    .card-rating .star {
      width: 16px;
      height: 16px;
      fill: #FFB800;
    }

    .card-rating .rating-num {
      font-size: 0.875rem;
      font-weight: 600;
      color: #0C003D;
    }

    .card-rating .rating-count {
      font-size: 0.75rem;
      color: rgba(12, 0, 61, 0.6);
    }

    /* Tab panel */
    .tab-panel {
      display: none;
    }

    .tab-panel.active {
      display: block;
    }

    /* ===== DISCOVERY (ÖN GÖRÜŞME) ===== */
    .discovery-section {
      background:
        radial-gradient(circle at 20% 30%, rgba(255, 184, 0, 0.10), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06), transparent 55%),
        linear-gradient(180deg, #5c1a58 0%, #420e3f 100%);
      color: #fff;
      padding: 5rem 1.5rem;
      position: relative;
      overflow: hidden;
    }

    .discovery-inner {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
      position: relative;
    }

    .discovery-eyebrow {
      display: inline-block;
      font-size: 0.6875rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: yellow;
      color: #1B004E;
      padding: 0.4rem 0.875rem;
      border-radius: 9999px;
      margin-bottom: 1.5rem;
      box-shadow: 0 4px 12px rgba(255, 255, 0, 0.35);
    }

    .discovery-section h2 {
      font-size: 2.25rem;
      font-weight: 800;
      line-height: 1.15;
      margin: 0 0 1.125rem;
      color: #fff;
    }

    .discovery-section h2 span {
      background: linear-gradient(90deg, #FFB800, #FF8A00);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .discovery-section>.discovery-inner>p {
      margin: 0 0 2rem;
      font-size: 1.0625rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.82);
    }

    .discovery-points {
      list-style: none;
      padding: 0;
      margin: 0 auto 2.25rem;
      max-width: 560px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.75rem;
      text-align: left;
    }

    @media (min-width: 600px) {
      .discovery-points {
        grid-template-columns: 1fr 1fr;
      }
    }

    .discovery-points li {
      display: flex;
      align-items: flex-start;
      gap: 0.625rem;
      font-size: 0.9375rem;
      color: rgba(255, 255, 255, 0.92);
      line-height: 1.45;
    }

    .discovery-points li svg {
      flex-shrink: 0;
      color: #ffffff;
      background: rgb(255 255 255 / 15%);
      width: 22px;
      height: 22px;
      padding: 2px;
      border-radius: 50%;
      margin-top: 1px;
    }

    .discovery-points li strong {
      color: #fff;
      font-weight: 700;
    }

    .discovery-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #ffffff;
      color: #521d4f;
      border: 0;
      border-radius: 9999px;
      padding: 1rem 1.75rem;
      font-size: 1rem;
      font-weight: 800;
      cursor: pointer;
      font-family: inherit;
      box-shadow: 0 12px 28px -8px rgba(255, 255, 255, 0.45);
      transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
    }

    .discovery-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 36px -8px rgba(255, 255, 255, 0.6);
      filter: brightness(0.98);
    }

    .discovery-cta svg {
      transition: transform 0.2s;
    }

    .discovery-cta:hover svg {
      transform: translateX(3px);
    }

    .discovery-note {
      margin: 1.75rem 0 0;
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.55);
    }

    @media (max-width: 600px) {
      .discovery-section {
        padding: 3.5rem 1.25rem;
      }

      .discovery-section h2 {
        font-size: 1.75rem;
      }

      .discovery-section>.discovery-inner>p {
        font-size: 0.9375rem;
      }

      .discovery-cta {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
        width: 100%;
        justify-content: center;
      }
    }

    /* ===== DENEME KULÜBÜ INTRO ===== */
    .deneme-intro {
      width: 100%;
      padding: 4rem 0 2rem;
    }

    .deneme-intro-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .deneme-intro-inner {
        flex-direction: row;
        gap: 3rem;
      }
    }

    .deneme-intro-image {
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .deneme-intro-image img {
      width: 100%;
      max-width: 480px;
      height: auto;
      animation: denemeFloat 4s ease-in-out infinite;
      will-change: transform;
    }

    @keyframes denemeFloat {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-14px);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .deneme-intro-image img {
        animation: none;
      }
    }

    @media (min-width: 768px) {
      .deneme-intro-image {
        flex: 1;
      }
    }

    .deneme-intro-content {
      width: 100%;
      text-align: center;
    }

    @media (min-width: 768px) {
      .deneme-intro-content {
        flex: 1;
        text-align: left;
      }
    }

    .deneme-intro-content h2 {
      font-size: 2rem;
      font-weight: 800;
      color: #0C003D;
      line-height: 1.2;
      margin: 0 0 1rem;
    }

    @media (min-width: 768px) {
      .deneme-intro-content h2 {
        font-size: 2.5rem;
      }
    }

    .deneme-intro-content p {
      font-size: 1rem;
      line-height: 1.7;
      color: rgba(12, 0, 61, 0.7);
      margin: 0 0 1.75rem;
    }

    .deneme-intro-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #5c1a58;
      color: #fff;
      border-radius: 9999px;
      padding: 0.875rem 1.75rem;
      font-size: 0.9375rem;
      font-weight: 600;
      transition: background 0.2s, transform 0.2s;
    }

    .deneme-intro-cta:hover {
      background: #4a1547;
      color: #fff;
      transform: translateY(-1px);
    }

    .deneme-intro-cta svg {
      width: 18px;
      height: 18px;
    }

    /* ===== PUBLISHERS MARQUEE ===== */
    .marquee-section {
      width: 100%;
      overflow: hidden;
      padding: 2rem 0;
      margin: 2rem 0;
      max-width: 100vw;
    }

    .marquee-section h2 {
      margin-bottom: 1rem;
      text-align: center;
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: rgba(12, 0, 61, 0.6);
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee 25s linear infinite;
    }

    .marquee-track:hover {
      animation-play-state: paused;
    }

    .marquee-set {
      display: flex;
      align-items: center;
      gap: 3rem;
      flex-shrink: 0;
      padding-right: 3rem;
    }

    .marquee-set img {
      height: 40px;
      width: auto;
      filter: grayscale(100%);
      opacity: 0.6;
      transition: filter 0.3s, opacity 0.3s;
    }

    .marquee-set img:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* ===== FEATURE SECTION ===== */
    .feature-section {
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: #fff;
      min-height: 100vh;
      margin-bottom: 1rem;
    }

    .feature-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0.5rem;
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      .feature-container {
        grid-template-columns: 1fr 1fr;
      }
    }

    .feature-left {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feature-circle {
      position: absolute;
      pointer-events: none;
      user-select: none;
    }

    .feature-circle img {
      width: 550px;
      max-width: 90vw;
    }

    .feature-phone {
      position: relative;
      z-index: 10;
      transition: opacity 1s ease-in-out;
    }

    .feature-phone img {
      max-height: 500px;
      width: auto;
      object-fit: contain;
    }

    .feature-right {
      position: relative;
      display: flex;
      align-items: center;
      gap: 1rem;
      min-height: 220px;
      padding: 1.5rem;
    }

    .feature-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: opacity 1s ease-in-out;
    }

    .feature-text h2 {
      font-size: 36px;
      font-weight: 700;
      color: #2C2C54;
    }

    .feature-text p {
      font-size: 18px;
      color: rgba(44, 44, 84, 0.6);
    }

    .feature-store-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 0.5rem;
    }

    .feature-store-buttons a {
      display: inline-block;
      transition: transform 0.2s, opacity 0.2s;
    }

    .feature-store-buttons a:hover {
      transform: translateY(-2px);
      opacity: 0.9;
    }

    .feature-store-buttons img {
      height: 49px;
      width: auto;
      display: block;
    }

    .feature-dots {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .feature-dot {
      border-radius: 9999px;
      border: none;
      padding: 0;
      cursor: pointer;
      transition: all 0.3s;
      background: rgba(92, 26, 88, 0.2);
      width: 10px;
      height: 10px;
    }

    .feature-dot.active {
      width: 8px;
      height: 32px;
      background: #5c1a58;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials-section {
      width: 100%;
      background: #fff;
      padding: 4rem 0;
    }

    .testimonials-inner {
      max-width: 80rem;
      margin: 0 auto;
      padding: 0 1rem;
    }

    @media (min-width: 640px) {
      .testimonials-inner {
        padding: 0 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .testimonials-inner {
        padding: 0 2rem;
      }
    }

    .testimonials-heading {
      margin-bottom: 2.5rem;
      text-align: center;
    }

    .testimonials-heading h2 {
      font-size: 30px;
      font-weight: 700;
      color: #0A083A;
    }

    .testimonials-heading p {
      margin-top: 0.5rem;
      color: rgba(10, 8, 58, 0.6);
    }

    .testimonials-slider {
      position: relative;
      overflow: hidden;
    }

    .testimonials-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }

    .testimonial-card {
      flex: 0 0 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 0 0.625rem;
      display: flex;
    }

    @media (min-width: 1024px) {
      .testimonial-card {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
      }
    }

    .testimonial-card-inner {
      display: flex;
      flex-direction: column;
      width: 100%;
      border-radius: 14px;
      border: 1px solid rgba(12, 0, 61, 0.06);
      background: linear-gradient(to bottom, #F8F7FA, #fff);
      padding: 1.5rem 2rem;
    }

    .testimonials-indicators {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.75rem;
    }

    .testimonials-indicators button {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: none;
      background: rgba(12, 0, 61, 0.2);
      cursor: pointer;
      padding: 0;
      transition: background 0.25s, width 0.25s;
    }

    .testimonials-indicators button.active {
      background: #5c1a58;
      width: 28px;
      border-radius: 5px;
    }

    .testimonial-card .quote-img {
      margin-bottom: 1rem;
      width: 32px;
    }

    .testimonial-card .text {
      margin-bottom: 1.25rem;
      font-size: 0.875rem;
      line-height: 22px;
      color: rgba(12, 0, 61, 0.8);
    }

    .testimonial-card .divider {
      height: 1px;
      width: 100%;
      background: rgba(12, 0, 61, 0.06);
      margin-bottom: 1rem;
    }

    .testimonial-card .bottom {
      margin-top: auto;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .testimonial-card .student-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }

    .testimonial-card .bottom-info {
      display: flex;
      flex-direction: column;
    }

    .testimonial-card .name {
      font-size: 0.875rem;
      font-weight: 600;
      color: #0C003D;
    }

    .testimonial-card .role-badge {
      display: inline-block;
      border-radius: 9999px;
      padding: 0.25rem 0.75rem;
      font-size: 0.75rem;
      font-weight: 600;
    }

    .role-parent {
      background: rgba(10, 255, 148, 0.15);
      color: #0C003D;
    }

    .role-student {
      background: rgb(92 26 88 / 7%);
      color: #5c1a58;
    }

    /* ===== FAQ SECTION ===== */
    .faq-section {
      width: 100%;
      background: #fff;
      padding: 4rem 0;
    }

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

    @media (min-width: 1024px) {
      .faq-inner {
        padding: 0 4rem;
      }
    }

    .faq-heading {
      margin-bottom: 3rem;
      text-align: center;
    }

    .faq-heading h2 {
      font-size: 30px;
      font-weight: 700;
      color: #0C003D;
    }

    .faq-heading p {
      margin-top: 0.5rem;
      color: rgba(12, 0, 61, 0.6);
    }

    .faq-layout {
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    @media (min-width: 1024px) {
      .faq-layout {
        flex-direction: row;
      }
    }

    .faq-left {
      width: 100%;
    }

    @media (min-width: 1024px) {
      .faq-left {
        width: 60%;
      }
    }

    .faq-right {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .faq-right {
        width: 40%;
        position: sticky;
        top: 2rem;
        align-self: flex-start;
      }
    }

    .faq-right .phone-mockup {
      max-width: 280px;
      width: 100%;
      border-radius: 2rem;
    }

    .faq-right .cta-block {
      margin-top: 2rem;
      text-align: center;
    }

    .faq-right .cta-block .title {
      font-size: 1rem;
      font-weight: 600;
      color: #0C003D;
    }

    .faq-right .cta-block .desc {
      margin-top: 0.5rem;
      max-width: 320px;
      font-size: 0.875rem;
      color: rgba(12, 0, 61, 0.6);
    }

    .faq-right .cta-block .cta-btn {
      margin-top: 1.5rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 9999px;
      background: #5c1a58;
      padding: 0.75rem 2rem;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #fff;
      transition: background 0.2s;
    }

    .faq-right .cta-block .cta-btn:hover {
      background: #5a38e0;
      color: #fff;
    }

    /* Bootstrap accordion overrides for FAQ */
    .faq-accordion .accordion-item {
      border: none;
      border-bottom: 1px solid rgba(12, 0, 61, 0.1);
      border-radius: 0 !important;
      background: transparent;
    }

    .faq-accordion .accordion-button {
      background: transparent;
      box-shadow: none;
      padding: 1rem 0;
      font-size: 1rem;
      font-weight: 600;
      color: #0C003D;
      font-family: 'Poppins', sans-serif;
    }

    .faq-accordion .accordion-button:not(.collapsed) {
      color: #0C003D;
      background: transparent;
    }

    .faq-accordion .accordion-button:focus {
      box-shadow: none;
    }

    .faq-accordion .accordion-button::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230C003D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      width: 20px;
      height: 20px;
      background-size: 20px;
    }

    .faq-accordion .accordion-button:not(.collapsed)::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230C003D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    }

    .faq-accordion .accordion-body {
      padding: 0 0 1rem 0;
      font-size: 0.875rem;
      color: rgba(12, 0, 61, 0.7);
    }

    /* ===== NASIL İLERLİYORUZ (6-STEP PROCESS) ===== */
    .process-section {
      padding: 4rem 1.5rem 5rem;
    }

    .process-inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    .process-heading {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 3.5rem;
    }

    .process-eyebrow {
      display: inline-block;
      padding: 0.375rem 1rem;
      background: rgba(92, 26, 88, 0.08);
      color: #5c1a58;
      border-radius: 9999px;
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .process-heading h2 {
      font-size: clamp(1.875rem, 3.5vw, 2.5rem);
      font-weight: 800;
      color: #0C003D;
      margin: 0 0 0.875rem;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }

    .process-heading p {
      font-size: 1rem;
      color: rgba(12, 0, 61, 0.6);
      line-height: 1.6;
      margin: 0;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .process-card {
      position: relative;
      background: #fff;
      border-radius: 1.25rem;
      border: 1px solid rgba(12, 0, 61, 0.06);
      padding: 2rem 1.75rem 1.75rem;
      box-shadow: 0 8px 24px -12px rgba(12, 0, 61, 0.08);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      /* overflow: hidden; — kaldırıldı, ::after connector dışarı taşabilsin */
    }

    /* Sol kenarda ince mor accent çubuğu — hover'da uzanır */
    .process-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 3px;
      height: 60px;
      background: #5c1a58;
      border-radius: 0 3px 3px 0;
      transition: height 0.3s ease;
    }

    /* Kartlar arası dashed bağlantı çizgisi — gap'in içinde uzanır.
       Aynı satırdaki kartları görsel olarak akış halinde bağlar. */
    .process-card::after {
      content: '';
      position: absolute;
      top: 50%;
      right: -1.5rem;          /* grid gap kadar dışarı taşar */
      width: 1.5rem;
      height: 2px;
      background: repeating-linear-gradient(
        to right,
        rgba(92, 26, 88, 0.45) 0 6px,
        transparent 6px 11px
      );
      transform: translateY(-50%);
      pointer-events: none;
    }

    /* Sağ kenardaki kartlarda connector gösterme (3. ve 6. — 3-col layout) */
    .process-card:nth-child(3n)::after {
      display: none;
    }

    .process-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 40px -18px rgba(92, 26, 88, 0.22);
      border-color: rgba(92, 26, 88, 0.16);
    }

    .process-card:hover::before {
      height: 100%;
    }

    .process-number {
      font-size: 3rem;
      font-weight: 800;
      line-height: 1;
      color: #5c1a58;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
      display: inline-block;
    }

    .process-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(92, 26, 88, 0.08);
      color: #5c1a58;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-left: 0.75rem;
      vertical-align: top;
      transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
    }

    .process-icon svg {
      width: 22px;
      height: 22px;
    }

    .process-card:hover .process-icon {
      background: #5c1a58;
      color: #fff;
      transform: scale(1.05);
    }

    .process-card h3 {
      font-size: 1.125rem;
      font-weight: 700;
      color: #0C003D;
      margin: 0.5rem 0 0.625rem;
      line-height: 1.35;
      letter-spacing: -0.005em;
    }

    .process-card p {
      font-size: 0.875rem;
      line-height: 1.65;
      color: rgba(12, 0, 61, 0.65);
      margin: 0;
    }

    /* Section sonu CTA — paketlere yönlendirir */
    .process-cta-wrap {
      display: flex;
      justify-content: center;
      margin-top: 3rem;
    }

    .process-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.625rem;
      background: #5c1a58;
      color: #fff;
      padding: 1rem 2rem;
      border-radius: 9999px;
      font-size: 0.9375rem;
      font-weight: 700;
      letter-spacing: 0.01em;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
      box-shadow: 0 12px 28px -10px rgba(92, 26, 88, 0.45);
    }

    .process-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 36px -10px rgba(92, 26, 88, 0.55);
      filter: brightness(1.05);
      color: #fff;
    }

    .process-cta svg {
      transition: transform 0.2s;
    }

    .process-cta:hover svg {
      transform: translateX(3px);
    }

    /* Tablet — 2 sütun. Connector hideout 3n'den 2n'ye geçer. */
    @media (max-width: 1024px) {
      .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
      }
      .process-card::after {
        right: -1.25rem;       /* yeni gap */
      }
      .process-card:nth-child(3n)::after {
        display: block;        /* 3-col override'ı sıfırla */
      }
      .process-card:nth-child(2n)::after {
        display: none;         /* sağ kenardakiler: 2, 4, 6 */
      }
    }

    /* Mobil — tek sütun, connector tamamen gizle (dikey akış yeterli) */
    @media (max-width: 640px) {
      .process-section {
        padding: 3rem 1rem 3.5rem;
      }

      .process-heading {
        margin-bottom: 2.5rem;
      }

      .process-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .process-card {
        padding: 1.5rem 1.25rem 1.375rem;
      }

      .process-card::after {
        display: none;
      }

      .process-number {
        font-size: 2.25rem;
      }

      .process-icon {
        width: 38px;
        height: 38px;
      }

      .process-card h3 {
        font-size: 1rem;
      }
    }
