:root {
    --navy: #0a2540;
    --navy-mid: #f0f6ff;
    --navy-light: #1a3a5c;
    --gold: #007aff;
    --gold-light: #3d9aff;
    --gold-pale: #e0eeff;
    --white: #ffffff;
    --off-white: #f8fafc;
    --grey: #6b7280;
    --light-grey: #e8edf2;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--navy);
    background: var(--off-white);
    overflow-x: hidden;
  }

  /* ── NAV (site header ile birebir uyumlu) ── */
  .lp-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    background: var(--navy);
    box-shadow: 0 2px 20px rgba(0,0,0,.4);
  }

  .lp-nav-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2%;
    height: 72px;
  }

  .lp-logo img { height: 38px; display: block; }
  .lp-logo { text-decoration: none; }

  .lp-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0; padding: 0;
  }

  .lp-menu > li { position: relative; }

  .lp-menu > li > a {
    display: flex;
    align-items: center;
    gap: .35rem;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .02em;
    padding: .5rem .85rem;
    transition: color .2s;
    white-space: nowrap;
  }

  .lp-menu > li > a:hover { color: var(--gold-light); }

  /* Mega menu */
  .lp-mega-wrap { position: static; }

  .lp-mega {
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e0eeff;
    border-top: 2px solid var(--gold);
    border-radius: 0 0 8px 8px;
    padding: 1.5rem;
    gap: 2rem;
    box-shadow: 0 16px 48px rgba(0,0,0,.12);
    min-width: 680px;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    z-index: 1000;
  }

  .lp-mega-wrap:hover .lp-mega { display: grid; }

  .lp-mega-col > span {
    display: block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid #e0eeff;
  }

  .lp-mega-col ul { list-style: none; margin: 0; padding: 0; }
  .lp-mega-col ul li { margin-bottom: .1rem; }

  .lp-mega-col ul li a {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #475569;
    text-decoration: none;
    font-size: .78rem;
    padding: .35rem .4rem;
    border-radius: 4px;
    transition: all .18s;
  }

  .lp-mega-col ul li a:hover {
    color: var(--gold-light);
    background: rgba(0,122,255,.07);
  }

  .lp-mega-col ul li a i { width: 14px; opacity: .6; font-size: .75rem; }

  /* Dil seçici */
  .lp-lang-wrap { position: relative; margin-left: .5rem; }

  .lp-lang-btn {
    display: flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.85);
    padding: .35rem .85rem;
    border-radius: 25px;
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
  }

  .lp-lang-btn:hover { background: rgba(0,122,255,.12); border-color: var(--gold); color: var(--gold-light); }

  .lp-lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border: 1px solid #e0eeff;
    border-radius: 6px;
    overflow: hidden;
    min-width: 70px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
  }

  .lp-lang-wrap:hover .lp-lang-dropdown { display: block; }

  .lp-lang-dropdown a {
    display: block;
    padding: .5rem .9rem;
    color: #334155;
    text-decoration: none;
    font-size: .78rem;
    font-weight: 700;
    transition: all .18s;
  }

  .lp-lang-dropdown a:hover { background: rgba(0,122,255,.10); color: var(--gold-light); }

  /* Mobil toggle */
  .lp-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    flex-direction: column;
    gap: 5px;
  }

  .lp-mobile-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: rgba(255,255,255,.85);
    border-radius: 2px;
    transition: all .3s;
  }

  /* Mobil menü */
  .lp-nav-mobile {
    display: none;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,.08);
    max-height: 80vh;
    overflow-y: auto;
  }

  .lp-nav-mobile.open { display: block; }

  .lp-mobile-ul {
    list-style: none;
    margin: 0; padding: .5rem 0;
  }

  .lp-mobile-ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 1.25rem;
    color: #1a1a2e;
    text-decoration: none;
    font-size: .875rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,.05);
  }

  .lp-mobile-ul li a:hover { background: #f5f5f5; }

  .lp-mobile-sub {
    list-style: none;
    margin: 0; padding: 0;
    background: #f8f8f8;
  }

  .lp-mobile-sub li a {
    padding: .6rem 1.25rem .6rem 2rem;
    font-weight: 500;
    font-size: .83rem;
    color: #444;
    border-bottom: 1px solid rgba(0,0,0,.04);
  }

  .lp-mobile-sub li a:hover { background: #f0f0f0; color: var(--navy); }

  .lp-mobile-parent .lp-mobile-sub { display: none; }
  .lp-mobile-parent.open .lp-mobile-sub { display: block; }
  .lp-mobile-parent > a .arrow { transition: transform .25s; display: inline-block; }
  .lp-mobile-parent.open > a .arrow { transform: rotate(90deg); }

  /* Breadcrumb margin-top güncelle */
  .breadcrumb-bar { margin-top: 72px; }

  @media (max-width: 960px) {
    .lp-nav-desktop .lp-menu,
    .lp-nav-desktop .lp-lang-wrap { display: none; }
    .lp-mobile-toggle { display: flex; }
  }

  @media (min-width: 961px) {
    .lp-nav-mobile { display: none !important; }
  }

  /* ── BREADCRUMB ── */
  .breadcrumb-bar {
    background: #f0f6ff;
    border-bottom: 1px solid #c2d9ff;
    padding: .6rem 2rem;
    margin-top: 68px;
  }

  .breadcrumb-bar ol {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: .5rem;
    list-style: none;
    font-size: .75rem;
    color: #64748b;
  }

  .breadcrumb-bar a {
    color: #475569;
    text-decoration: none;
    transition: color .2s;
  }

  .breadcrumb-bar a:hover { color: var(--gold); }

  .breadcrumb-bar li.active { color: var(--gold); font-weight: 600; }

  .breadcrumb-sep { opacity: .4; }

  /* ── HERO ── */
  .hero {
    min-height: calc(100vh - 92px);
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0,122,255,.06) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 10% 80%, rgba(0,122,255,.04) 0%, transparent 60%);
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,122,255,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,122,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 5rem;
    align-items: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0,122,255,.12);
    border: 1px solid rgba(0,122,255,.28);
    color: var(--gold);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .4rem .9rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
  }

  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.7); }
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }

  .hero h1 span { color: var(--gold-light); display: block; }

  .hero-lead {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 520px;
  }

  .hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .hero-stat-item {
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
  }

  .hero-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-light);
  }

  .hero-stat-label {
    font-size: .75rem;
    color: #64748b;
    margin-top: .1rem;
  }

  .hero-cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--gold);
    color: var(--white);
    padding: .875rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: all .25s;
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,122,255,.30);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid #d0d7e2;
    color: #0a2540;
    padding: .875rem 1.75rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: .95rem;
    text-decoration: none;
    transition: all .25s;
  }

  .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

  /* Hero Card */
  .hero-card {
    background: #fff;
    border: 1px solid #c2d9ff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,122,255,.08);
    animation: floatUp 1s ease-out .3s both;
  }

  @keyframes floatUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-card h3 {
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid #e0eeff;
  }

  .hero-card-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .7rem 0;
    border-bottom: 1px solid #f0f6ff;
  }

  .hero-card-item:last-child { border-bottom: none; }

  .check-icon {
    width: 22px; height: 22px;
    min-width: 22px;
    background: #e0eeff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: .75rem;
    margin-top: .1rem;
  }

  .hero-card-item span {
    color: #334155;
    font-size: .875rem;
    line-height: 1.45;
  }

  /* ── COMMONS ── */
  .section { padding: 6rem 2rem; }

  .container { max-width: 1200px; margin: 0 auto; }

  .section-label {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 2.8vw, 2.5rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .section-title.light { color: var(--white); }

  .section-lead {
    color: var(--grey);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 650px;
  }

  .section-lead.light { color: rgba(255,255,255,.6); }

  /* ── PROGRAMS STRIP ── */
  .programs-strip {
    background: #f0f6ff;
    padding: 2.25rem 2rem;
    border-top: 1px solid #c2d9ff;
  }

  .programs-strip .container {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .prog-pill {
    display: flex;
    align-items: center;
    gap: .5rem;
    white-space: nowrap;
    background: #fff;
    border: 1px solid #c2d9ff;
    padding: .55rem 1.15rem;
    border-radius: 100px;
    color: #475569;
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
  }

  .prog-pill:hover, .prog-pill.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    font-weight: 700;
  }

  .prog-divider { width: 1px; height: 22px; background: rgba(255,255,255,.12); flex-shrink: 0; }

  /* ── DESTEK CARDS ── */
  .destek-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .destek-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1.75rem;
    border: 1px solid var(--light-grey);
    position: relative;
    overflow: hidden;
    transition: all .3s;
  }

  .destek-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
  }

  .destek-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,27,42,.1); }
  .destek-card:hover::before { transform: scaleX(1); }

  .destek-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, rgba(0,122,255,.12), rgba(0,122,255,.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
  }

  .destek-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .45rem; }
  .destek-card p { font-size: .85rem; color: var(--grey); line-height: 1.6; }

  /* ── TABLE SECTION ── */
  .tables-section { background: var(--navy); padding: 6rem 2rem; }

  .table-tabs { display: flex; gap: .5rem; margin: 2rem 0 2rem; flex-wrap: wrap; }

  .tab-btn {
    padding: .55rem 1.15rem;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,.15);
    background: transparent;
    color: rgba(255,255,255,.6);
    font-family: 'DM Sans', sans-serif;
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
  }

  .tab-btn.active { background: var(--gold); color: var(--white); border-color: var(--gold); font-weight: 700; }
  .tab-btn:hover:not(.active) { border-color: var(--gold); color: var(--gold-light); }

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

  .tesvik-table-wrap {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    overflow: hidden;
  }

  .tesvik-table-header {
    background: rgba(0,122,255,.10);
    border-bottom: 1px solid rgba(0,122,255,.18);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
  }

  .tesvik-table-header h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-light);
    font-size: 1.05rem;
  }

  .badge-new {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--white);
    padding: .25rem .7rem;
    border-radius: 3px;
  }

  table.destek-tablo { width: 100%; border-collapse: collapse; }

  table.destek-tablo th {
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.45);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
    padding: .8rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  table.destek-tablo td {
    padding: .9rem 1.5rem;
    border-bottom: 1px solid #f0f6ff;
    color: rgba(255,255,255,.75);
    font-size: .875rem;
    vertical-align: middle;
  }

  table.destek-tablo tr:last-child td { border-bottom: none; }
  table.destek-tablo tr:hover td { background: rgba(255,255,255,.025); }

  .td-destek { font-weight: 600; color: var(--white) !important; }

  .td-deger {
    font-weight: 700;
    color: var(--gold-light) !important;
    font-family: 'Playfair Display', serif;
    font-size: .95rem !important;
  }

  .tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
    background: rgba(34,197,94,.15);
    border-radius: 50%;
    color: #4ade80;
    font-size: .8rem;
    font-weight: 700;
  }

  .min-tutar-box {
    background: rgba(0,122,255,.10);
    border: 1px solid rgba(0,122,255,.20);
    border-radius: 8px;
    padding: 1.1rem 1.4rem;
    margin-top: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: .9rem;
  }

  .min-tutar-box .icon { font-size: 1.25rem; margin-top: .05rem; }

  .min-tutar-box p {
    color: rgba(255,255,255,.68);
    font-size: .85rem;
    line-height: 1.6;
  }

  .min-tutar-box strong { color: var(--gold-light); }

  /* ── KRİTERLER ── */
  .kriterler-section { padding: 6rem 2rem; background: var(--off-white); }

  .kriterler-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
  }

  .kriter-list { display: flex; flex-direction: column; gap: 1rem; }

  .kriter-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    border-radius: 8px;
    padding: 1.1rem 1.25rem;
    border: 1px solid var(--light-grey);
    transition: all .25s;
  }

  .kriter-item:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(0,122,255,.10); }

  .kriter-num {
    width: 30px; height: 30px;
    background: var(--navy);
    color: var(--gold-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
  }

  .kriter-text h4 { font-size: .875rem; font-weight: 600; color: var(--navy); margin-bottom: .2rem; }
  .kriter-text p { font-size: .8rem; color: var(--grey); line-height: 1.55; }

  .kriter-note {
    background: var(--navy);
    border-radius: 10px;
    padding: 2rem;
    color: rgba(255,255,255,.75);
  }

  .kriter-note h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .kriter-note p { font-size: .875rem; line-height: 1.7; margin-bottom: 1rem; }

  .kriter-note .highlight-box {
    background: rgba(0,122,255,.10);
    border-left: 3px solid var(--gold);
    padding: 1rem 1.25rem;
    border-radius: 0 6px 6px 0;
    font-size: .85rem;
    color: rgba(255,255,255,.8);
    line-height: 1.6;
  }

  .highlight-box strong { color: var(--gold-light); display: block; margin-bottom: .3rem; }

  /* ── AÇIKLAMALAR ── */
  .aciklamalar-section { padding: 6rem 2rem; background: var(--white); }

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

  .aciklama-card {
    border-radius: 10px;
    padding: 1.6rem;
    background: var(--off-white);
    border: 1px solid var(--light-grey);
    transition: all .25s;
  }

  .aciklama-card:hover { border-color: var(--gold); background: #f0f6ff; }

  .aciklama-card-head { display: flex; align-items: center; gap: .7rem; margin-bottom: .7rem; }

  .aciklama-dot { width: 10px; height: 10px; background: var(--gold); border-radius: 2px; flex-shrink: 0; }

  .aciklama-card h3 { font-size: .9rem; font-weight: 700; color: var(--navy); }

  .aciklama-card p { font-size: .84rem; color: var(--grey); line-height: 1.65; padding-left: 1.6rem; }

  /* ── CTA ── */
  .cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,122,255,.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; text-align: center; }

  .cta-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    color: var(--white);
    margin-bottom: 1rem;
  }

  .cta-inner p {
    color: rgba(255,255,255,.65);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
  }

  .cta-form { display: flex; gap: .75rem; max-width: 460px; margin: 0 auto; }

  .cta-form input {
    flex: 1;
    padding: .85rem 1.2rem;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.07);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    outline: none;
    transition: border-color .2s;
  }

  .cta-form input::placeholder { color: rgba(255,255,255,.38); }
  .cta-form input:focus { border-color: var(--gold); }

  .cta-form button {
    padding: .85rem 1.4rem;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
  }

  .cta-form button:hover { background: var(--gold-light); transform: translateY(-1px); }

  .cta-note { margin-top: 1rem; font-size: .78rem; color: rgba(255,255,255,.38); }

  /* ── FOOTER ── */
  footer { background: #0a1628; padding: 3rem 2rem; }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .footer-brand { color: rgba(255,255,255,.45); font-size: .82rem; line-height: 1.7; }
  .footer-brand strong { color: rgba(255,255,255,.75); }

  .footer-links { display: flex; gap: 1.5rem; list-style: none; }

  .footer-links a {
    color: rgba(255,255,255,.4);
    text-decoration: none;
    font-size: .78rem;
    transition: color .2s;
  }

  .footer-links a:hover { color: var(--gold-light); }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
    .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-card { display: none; }
    .destek-grid { grid-template-columns: 1fr 1fr; }
    .kriterler-grid { grid-template-columns: 1fr; }
    .aciklama-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 580px) {
    .destek-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .cta-form { flex-direction: column; }
    table.destek-tablo th, table.destek-tablo td { padding: .75rem 1rem; }
  }

  /* ── FADE IN ── */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
  }

  .fade-in.visible { opacity: 1; transform: translateY(0); }
  /* ── TAREKS sayfasına özel stiller ─────────────────────────── */

/* Hero: makine landing'deki gibi ama farklı gradient tonu */
.tse-hero {
  min-height: calc(100vh - 92px);
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.tse-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 75% 40%, rgba(0,122,255,.07) 0%, transparent 65%),
    radial-gradient(ellipse 45% 50% at 15% 75%, rgba(14,116,144,.06) 0%, transparent 60%);
}

.tse-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 60px 60px;
}

.tse-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

/* İçerik bölümü */
.tse-content-section {
  padding: 5rem 2rem;
  background: #fff;
}

.tse-content-inner {
  max-width: 860px;
  margin: 0 auto;
}

/* Uyarı kutuları */
.tse-alert {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(0,122,255,.07);
  border: 1px solid rgba(0,122,255,.22);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.tse-alert .ico { font-size: 1.25rem; margin-top: .05rem; flex-shrink: 0; }

.tse-alert p {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--navy, #0d1b2a);
  margin: 0;
}

.tse-alert strong { color: var(--navy); }

/* Risk kutusu – farklı renk tonu */
.tse-alert-risk {
  background: rgba(14,116,144,.06);
  border-color: rgba(14,116,144,.2);
  border-left-color: #0e7490;
}

/* Paragraf stili */
.tse-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: #374151;
  margin-bottom: 1.5rem;
}

.tse-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

/* Adım kartları */
.tse-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.tse-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #f8f7f4;
  border: 1px solid #e8edf2;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  transition: all .25s;
}

.tse-step:hover {
  border-color: var(--gold);
  background: #f0f6ff;
  transform: translateX(4px);
}

.tse-step-num {
  width: 34px; height: 34px;
  min-width: 34px;
  background: var(--navy);
  color: var(--gold-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1rem;
  margin-top: .05rem;
}

.tse-step-body h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
}

.tse-step-body p {
  font-size: .875rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Bilgi kutusu – sağ taraf özet */
.tse-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation: floatUp 1s ease-out .3s both;
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tse-sidebar-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.tse-sidebar-card h3 {
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.tse-sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.tse-sidebar-item:last-child { border-bottom: none; }

.tse-sidebar-item .si-icon {
  width: 20px; height: 20px; min-width: 20px;
  background: rgba(0,122,255,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: .65rem;
  margin-top: .15rem;
}

.tse-sidebar-item span {
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  line-height: 1.45;
}

/* Sonuç kutusu */
.tse-result-box {
  background: var(--navy);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  margin-top: 2.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.tse-result-box .rb-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.tse-result-box h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.tse-result-box p {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  line-height: 1.7;
  margin: 0;
}

/* Fade */
.cs-fade { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.cs-fade.cs-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
  .tse-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .tse-sidebar { display: none; }
  .tse-result-box { flex-direction: column; gap: 1rem; padding: 1.5rem; }
}.consultsight-whatsapp-wrapper {
    position: fixed;
    bottom: 50px;
    left: 25px;
    z-index: 100;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.consultsight-whatsapp-icon {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 2;
}

.consultsight-whatsapp-icon img {
    transition: all 0.3s ease-in-out;
}

.consultsight-whatsapp-wrapper:hover .consultsight-whatsapp-icon {
    transform: scale(1.1);
}

.consultsight-whatsapp-text {
    margin-left: 10px;
    background-color: #fff;
    color: #25d366;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.consultsight-whatsapp-wrapper:hover .consultsight-whatsapp-text {
    opacity: 1;
    visibility: visible;
    margin-left: 15px;
}