/* =================================================================
   Tutku Yazılım — Modern Tasarım Katmanı
   Bu dosya, eski şablonun (style.css / plugins-css.css) üzerine
   eklenir ve sadece "ty-" ön ekli sınıflarla çalışır. Böylece henüz
   yenilenmemiş sayfalar eski görünümlerini korumaya devam eder.
   ================================================================= */

:root {
    /* Logodan türetilen marka renkleri */
    --ty-navy: #1b1464;
    --ty-navy-light: #2c2186;
    --ty-blue: #29abe2;
    --ty-blue-dark: #1c8fc4;
    --ty-red: #ed1c24;
    --ty-yellow: #ffc72c;
    --ty-magenta: #ec1fa0;
    --ty-green: #39b54a;

    /* Nötr tonlar */
    --ty-ink: #16192b;
    --ty-body: #545b6e;
    --ty-muted: #8085a0;
    --ty-bg: #ffffff;
    --ty-bg-soft: #f6f8fc;
    --ty-border: #e6e9f4;

    --ty-font-heading: 'Manrope', 'Poppins', sans-serif;
    --ty-font-body: 'Inter', 'Montserrat', sans-serif;

    --ty-radius: 16px;
    --ty-radius-sm: 10px;
    --ty-shadow: 0 20px 45px -20px rgba(27, 20, 100, 0.25);
    --ty-shadow-sm: 0 8px 20px -12px rgba(27, 20, 100, 0.2);
    --ty-container: 1200px;
}

/* -----------------------------------------------------------------
   Genel
   ----------------------------------------------------------------- */
.ty-header, .ty-hero, .ty-section, .ty-footer {
    font-family: var(--ty-font-body);
    color: var(--ty-ink);
    box-sizing: border-box;
}
.ty-header *, .ty-hero *, .ty-section *, .ty-footer * { box-sizing: border-box; }

.ty-container {
    max-width: var(--ty-container);
    margin: 0 auto;
    padding: 0 24px;
}

.ty-hero h1, .ty-section h2, .ty-support h4, .ty-changelog h5 {
    font-family: var(--ty-font-heading);
    color: var(--ty-navy);
}

.ty-sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* -----------------------------------------------------------------
   Buttons
   ----------------------------------------------------------------- */
.ty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--ty-font-heading);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: 999px;
    padding: 13px 26px;
    border: 2px solid transparent;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
    cursor: pointer;
    line-height: 1.2;
}
.ty-btn--primary { background: var(--ty-blue); color: #ffffff; box-shadow: var(--ty-shadow-sm); }
.ty-btn--primary:hover { background: var(--ty-blue-dark); color: #fff; transform: translateY(-1px); }
.ty-btn--outline { background: transparent; color: var(--ty-navy); border-color: var(--ty-border); }
.ty-btn--outline:hover { border-color: var(--ty-navy); transform: translateY(-1px); }
.ty-btn--lg { padding: 15px 30px; font-size: 16px; }
.ty-btn--sm { padding: 9px 18px; font-size: 13px; }

/* -----------------------------------------------------------------
   Header
   ----------------------------------------------------------------- */
.ty-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
    border-bottom: 1px solid var(--ty-border);
}

.ty-topbar {
    background: var(--ty-navy);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
}
.ty-topbar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 24px;
    gap: 16px;
    flex-wrap: wrap;
}
.ty-topbar__contact { list-style: none; margin: 0; padding: 0; display: flex; gap: 20px; flex-wrap: wrap; }
.ty-topbar__contact li { display: flex; align-items: center; gap: 6px; }
.ty-topbar__contact a { color: rgba(255,255,255,0.85); text-decoration: none; }
.ty-topbar__contact a:hover { color: #ffffff; }
.ty-topbar__contact i { color: var(--ty-blue); }

.ty-navbar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 24px;
    gap: 24px;
}
.ty-navbar__logo { display: inline-flex; }
.ty-navbar__logo img { height: 69px; width: auto; display: block; }

.ty-nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.ty-nav__list a {
    font-family: var(--ty-font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--ty-ink);
    text-decoration: none;
    position: relative;
    padding: 6px 0;
}
.ty-nav__list a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--ty-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}
.ty-nav__list a:hover { color: var(--ty-navy); }
.ty-nav__list a:hover::after { transform: scaleX(1); }

.ty-navbar__actions { display: flex; align-items: center; gap: 14px; }

.ty-nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--ty-border);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    padding: 0;
}
.ty-nav__toggle span { display: block; width: 18px; height: 2px; background: var(--ty-navy); margin: 0 auto; transition: transform .2s ease, opacity .2s ease; }
.ty-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ty-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ty-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -----------------------------------------------------------------
   Hero
   ----------------------------------------------------------------- */
.ty-hero {
    background: linear-gradient(180deg, var(--ty-bg-soft) 0%, #ffffff 100%);
    padding: 72px 0 32px;
    overflow: hidden;
}
.ty-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 48px;
}
@keyframes ty-fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes ty-float-back {
    0%, 100% { transform: rotate(4deg) translateY(0); }
    50% { transform: rotate(4deg) translateY(-10px); }
}
@keyframes ty-float-front {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50% { transform: rotate(-3deg) translateY(-14px); }
}
@keyframes ty-float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.ty-hero h1 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    margin: 0 0 18px;
    animation: ty-fade-up .7s ease both;
}
.ty-hero__lead {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ty-body);
    max-width: 48ch;
    margin: 0 0 20px;
    animation: ty-fade-up .7s ease both;
    animation-delay: .12s;
}
.ty-hero__strong {
    font-family: var(--ty-font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--ty-navy);
    margin: 0 0 30px;
    animation: ty-fade-up .7s ease both;
    animation-delay: .22s;
}

.ty-hero__visual {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ty-fade-up .8s ease both;
    animation-delay: .18s;
}
.ty-hero__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(237,28,36,0.12), transparent 40%),
        radial-gradient(circle at 75% 15%, rgba(255,199,44,0.16), transparent 38%),
        radial-gradient(circle at 20% 80%, rgba(236,31,160,0.12), transparent 42%),
        radial-gradient(circle at 80% 80%, rgba(57,181,74,0.14), transparent 42%),
        radial-gradient(circle at 50% 50%, rgba(41,171,226,0.16), transparent 55%);
    border-radius: 50%;
    filter: blur(2px);
}
.ty-hero__box {
    position: relative;
    width: 62%;
    max-width: 300px;
    border-radius: 18px;
    box-shadow: var(--ty-shadow);
}
.ty-hero__box--back {
    position: absolute;
    right: 6%;
    top: 8%;
    width: 52%;
    max-width: 240px;
    opacity: .85;
    z-index: 1;
    animation: ty-float-back 6s ease-in-out infinite;
}
.ty-hero__box--front {
    z-index: 2;
    margin-left: -8%;
    animation: ty-float-front 5s ease-in-out infinite;
    animation-delay: .3s;
}
.ty-hero__badge {
    position: absolute;
    left: 4%;
    bottom: 6%;
    z-index: 3;
    background: #ffffff;
    color: var(--ty-navy);
    animation: ty-float-badge 4.5s ease-in-out infinite;
    animation-delay: .6s;
    font-family: var(--ty-font-heading);
    font-weight: 700;
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: var(--ty-shadow-sm);
    border: 1px solid var(--ty-border);
}

/* -----------------------------------------------------------------
   Sections / headings
   ----------------------------------------------------------------- */
.ty-section { padding: 76px 0; }
.ty-section--soft { background: var(--ty-bg-soft); }
.ty-section--programs { padding-top: 22px; padding-bottom: 44px; }
.ty-section--full { padding-top: 0; padding-bottom: 0; }
#programlarimiz { padding-top: 40px; padding-bottom: 46px; }
#bizden-haberler { padding-top: 46px; padding-bottom: 46px; }
.ty-section__head { text-align: center; margin-bottom: 44px; }
.ty-section__head--left { text-align: left; margin-bottom: 24px; }
.ty-section h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 0;
}

/* -----------------------------------------------------------------
   Programlarımız grid
   ----------------------------------------------------------------- */
.ty-programs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ty-program-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius);
    overflow: hidden;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.ty-program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ty-shadow);
    border-color: transparent;
}
.ty-program-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: var(--ty-bg-soft);
}
.ty-program-card__image img { max-width: 100%; height: 180px; object-fit: contain; }
.ty-program-card__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    font-family: var(--ty-font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--ty-navy);
    border-top: 1px solid var(--ty-border);
}
.ty-program-card__title i { color: var(--ty-blue); transition: transform .18s ease; }
.ty-program-card:hover .ty-program-card__title i { transform: translateX(4px); }

/* -----------------------------------------------------------------
   İç sayfa üst başlığı (Programlar, SSS, İletişim vb.)
   ----------------------------------------------------------------- */
.ty-page-header {
    background: var(--ty-bg-soft);
    padding: 26px 0 22px;
    border-bottom: 1px solid var(--ty-border);
}
.ty-page-header__crumb {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ty-muted);
    margin-bottom: 10px;
    animation: ty-fade-up .6s ease both;
}
.ty-page-header__crumb a { color: var(--ty-blue-dark); text-decoration: none; }
.ty-page-header__crumb a:hover { text-decoration: underline; }
.ty-page-header h1 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    animation: ty-fade-up .65s ease both;
    animation-delay: .08s;
}

/* -----------------------------------------------------------------
   Programlarımız — ürün listesi sayfası
   ----------------------------------------------------------------- */
.ty-programs-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.ty-product-row {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    gap: 28px;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius);
    padding: 18px 32px;
    margin-bottom: 22px;
    box-shadow: var(--ty-shadow-sm);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.ty-product-row:hover {
    transform: translateY(-3px);
    box-shadow: var(--ty-shadow);
    border-color: transparent;
}
.ty-product-row__image { display: flex; align-items: center; justify-content: center; }
.ty-product-row__image img { width: 100%; max-width: 160px; height: auto; display: block; filter: drop-shadow(0 10px 16px rgba(27,20,100,0.16)); }
.ty-product-row__info h3 {
    font-family: var(--ty-font-heading);
    font-size: 21px;
    font-weight: 800;
    color: var(--ty-navy);
    margin: 0 0 6px;
}
.ty-product-row__version {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ty-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0 0 14px;
}
.ty-product-row__price {
    display: inline-block;
    font-family: var(--ty-font-heading);
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, var(--ty-navy), var(--ty-navy-light));
    padding: 8px 20px;
    border-radius: 999px;
}
.ty-product-row__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}
.ty-product-row__action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 104px;
    padding: 16px 10px;
    background: var(--ty-bg-soft);
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius-sm);
    text-decoration: none;
    text-align: center;
    transition: border-color .15s ease, background-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.ty-product-row__action:hover { border-color: var(--ty-blue); background: #ffffff; box-shadow: var(--ty-shadow-sm); transform: translateY(-2px); }
.ty-product-row__action img { width: 30px; height: 30px; }
.ty-product-row__action span {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ty-navy);
    text-transform: uppercase;
    letter-spacing: .01em;
}

.ty-notes-card {
    background: #ffffff;
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius);
    padding: 26px 28px;
    margin-top: 22px;
    animation: ty-fade-up .7s ease both;
    animation-delay: .42s;
}
.ty-notes-card ul { list-style: none; margin: 0; padding: 0; }
.ty-notes-card li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ty-body);
    padding: 12px 0;
    border-top: 1px solid var(--ty-border);
}
.ty-notes-card li:first-child { border-top: none; padding-top: 0; }
.ty-notes-card li:last-child { padding-bottom: 0; }
.ty-notes-card strong { color: var(--ty-red); font-weight: 700; }

.ty-programs-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 96px; }
.ty-remote-btn {
    display: block;
    text-align: center;
    background: #ffffff;
    border-radius: var(--ty-radius-sm);
    overflow: hidden;
    border: 1px solid var(--ty-border);
    padding: 5px;
    line-height: 0;
    transition: transform .15s ease, box-shadow .15s ease;
}
.ty-remote-btn:hover { transform: translateY(-2px); box-shadow: var(--ty-shadow-sm); }
.ty-remote-btn img { width: auto; max-width: 100%; height: auto; display: inline-block; }
.ty-info-card {
    background: #ffffff;
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius);
    padding: 22px 24px;
}
.ty-info-card h4 {
    font-family: var(--ty-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--ty-navy);
    margin: 0 0 12px;
}
.ty-info-card p {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--ty-body);
    margin: 0 0 10px;
}
.ty-info-card p:last-child { margin-bottom: 0; }

/* -----------------------------------------------------------------
   Ürün detay sayfaları (tt.php, ttnet.php, gsm.php vb.)
   ----------------------------------------------------------------- */
.ty-detail-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 44px;
    align-items: start;
}

.ty-detail-sidebar { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 96px; }
.ty-detail-sidebar__image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ty-bg-soft);
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius);
    padding: 24px;
    animation: ty-fade-up .7s ease both;
}
.ty-detail-sidebar__image img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 22px rgba(27,20,100,0.18));
    animation: ty-float-badge 5s ease-in-out infinite;
    animation-delay: .9s;
}

.ty-detail-price-card {
    background: #ffffff;
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius);
    padding: 22px 20px;
    text-align: center;
    animation: ty-fade-up .7s ease both;
    animation-delay: .12s;
}
.ty-detail-price-card__price {
    display: block;
    font-family: var(--ty-font-heading);
    font-size: 19px;
    font-weight: 800;
    color: var(--ty-red);
    margin-bottom: 8px;
}
.ty-detail-price-card p {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--ty-body);
    margin: 0;
}

.ty-detail-sidebar__bank {
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius-sm);
    overflow: hidden;
    line-height: 0;
    animation: ty-fade-up .7s ease both;
    animation-delay: .2s;
}
.ty-detail-sidebar__bank img { width: 100%; display: block; }

.ty-detail-main__intro {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ty-body);
    margin: 0 0 8px;
    animation: ty-fade-up .7s ease both;
    animation-delay: .1s;
}
.ty-detail-main__intro a {
    color: var(--ty-navy);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--ty-blue);
}
.ty-detail-main__intro a:hover { color: var(--ty-blue-dark); }

.ty-detail-main h2 {
    font-family: var(--ty-font-heading);
    font-size: 19px;
    font-weight: 800;
    color: var(--ty-navy);
    margin: 28px 0 18px;
    animation: ty-fade-up .7s ease both;
    animation-delay: .18s;
}

.ty-feature-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 32px;
    animation: ty-fade-up .7s ease both;
    animation-delay: .26s;
}
.ty-feature-columns ul { list-style: none; margin: 0; padding: 0; }
.ty-feature-columns li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--ty-ink);
    padding: 9px 0;
    border-top: 1px solid var(--ty-border);
}
.ty-feature-columns li:first-child { border-top: none; }
.ty-feature-columns li i { color: var(--ty-green); margin-top: 3px; font-size: 13px; flex-shrink: 0; }

.ty-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 32px 0 40px;
    animation: ty-fade-up .7s ease both;
    animation-delay: .34s;
}

/* -----------------------------------------------------------------
   Sık Sorulan Sorular (akordiyon)
   ----------------------------------------------------------------- */
.ty-faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.ty-faq-col h2 {
    font-family: var(--ty-font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--ty-navy);
    margin: 0 0 22px;
}
.ty-faq-list { display: flex; flex-direction: column; gap: 14px; }

.ty-faq-item {
    background: #ffffff;
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius-sm);
    overflow: hidden;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.ty-faq-item:hover {
    border-color: var(--ty-blue);
    box-shadow: var(--ty-shadow-sm);
    transform: translateY(-2px);
}
.ty-faq-item.is-open { border-color: var(--ty-blue); box-shadow: var(--ty-shadow-sm); }

.ty-faq-item__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--ty-font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--ty-navy);
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease;
}
.ty-faq-item__toggle:hover { background: var(--ty-bg-soft); color: #124d6b; }

.ty-faq-item__toggle i {
    flex-shrink: 0;
    color: var(--ty-blue);
    font-size: 13px;
    transition: transform .2s ease, color .15s ease;
}
.ty-faq-item__toggle:hover i { color: #124d6b; transform: translateY(2px); }
.ty-faq-item.is-open .ty-faq-item__toggle i { transform: rotate(180deg); }
.ty-faq-item.is-open .ty-faq-item__toggle:hover i { transform: rotate(180deg) translateY(-2px); }

.ty-faq-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.ty-faq-item__body-inner {
    padding: 0 22px 22px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--ty-body);
}
.ty-faq-item__body-inner p { margin: 0 0 12px; }
.ty-faq-item__body-inner p:last-child { margin-bottom: 0; }
.ty-faq-item__body-inner > span[style*="bold"] {
    display: block;
    font-family: var(--ty-font-heading);
    color: var(--ty-navy);
    margin: 16px 0 8px;
}
.ty-faq-item__body-inner > span[style*="bold"]:first-child { margin-top: 0; }
.ty-faq-item__body-inner ul.list.list-unstyled.list-mark {
    list-style: none;
    margin: 0 0 4px;
    padding: 0;
}
.ty-faq-item__body-inner ul.list.list-unstyled.list-mark > li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 10px;
}
.ty-faq-item__body-inner ul.list.list-unstyled.list-mark > li::after { content: none; }
.ty-faq-item__body-inner ul.list.list-unstyled.list-mark > li::before {
    content: "";
    position: absolute;
    left: 0; top: 8px;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--ty-blue);
}
.ty-faq-item__body-inner ul.list.list-unstyled.list-mark > li > span[style*="bold"] {
    display: block;
    font-family: var(--ty-font-heading);
    color: var(--ty-navy);
    margin-bottom: 4px;
}
.ty-faq-item__body-inner a { color: var(--ty-blue-dark); }

/* -----------------------------------------------------------------
   Bizden Haberler (changelog) + Teknik Destek
   ----------------------------------------------------------------- */
.ty-split {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.ty-changelog {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius);
    padding: 32px;
    box-shadow: var(--ty-shadow-sm);
}
.ty-changelog .ty-section__head { margin-bottom: 0; }
.ty-changelog__scroll {
    position: absolute;
    top: 88px;
    left: 32px;
    right: 32px;
    bottom: 32px;
    overflow-y: auto;
    padding-right: 12px;
}
.ty-changelog__scroll::-webkit-scrollbar { width: 8px; }
.ty-changelog__scroll::-webkit-scrollbar-track { background: transparent; }
.ty-changelog__scroll::-webkit-scrollbar-thumb { background: var(--ty-border); border-radius: 999px; }
.ty-changelog__scroll::-webkit-scrollbar-thumb:hover { background: var(--ty-muted); }

/* Orijinal içerik yapısını (ul.scroll > li > ul.mt-20) bozmadan yeniden biçimlendiriyoruz */
.ty-changelog__scroll ul.scroll { list-style: none; margin: 0; padding: 0; height: auto; overflow-y: visible; }
.ty-changelog__scroll ul.mt-20 {
    list-style: none;
    margin: 0 0 20px;
    padding: 16px 20px;
    background: var(--ty-bg-soft);
    border-radius: var(--ty-radius-sm);
    border-left: 3px solid var(--ty-blue);
}
.ty-changelog__scroll ul.mt-20 + ul.mt-20 { margin-top: 0; }
.ty-changelog__scroll h5 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 6px;
    color: var(--ty-navy);
}
.ty-changelog__scroll h6 {
    font-size: 12px;
    font-weight: 700;
    color: var(--ty-blue-dark);
    margin: 0 0 8px;
}
.ty-changelog__scroll p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ty-body);
    margin: 0 0 6px;
    padding-left: 14px;
    position: relative;
}
.ty-changelog__scroll p::before {
    content: "";
    position: absolute;
    left: 0; top: 8px;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--ty-blue);
}
.ty-changelog__scroll > ul.scroll > li > h5 {
    font-size: 16px;
    margin-top: 28px;
    margin-bottom: 12px;
}
.ty-changelog__scroll ul.list.list-unstyled.list-mark {
    list-style: none;
    margin: 0 0 20px;
    padding: 16px 20px;
    background: var(--ty-bg-soft);
    border-radius: var(--ty-radius-sm);
    border-left: 3px solid var(--ty-green);
}
.ty-changelog__scroll ul.list.list-unstyled.list-mark > li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ty-body);
    margin-bottom: 10px;
    padding-left: 14px;
    position: relative;
}
.ty-changelog__scroll ul.list.list-unstyled.list-mark > li::after { content: none; }
.ty-changelog__scroll ul.list.list-unstyled.list-mark > li::before {
    content: "";
    position: absolute;
    left: 0; top: 8px;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--ty-green);
}
.ty-changelog__scroll ul.list.list-unstyled.list-mark span[style*="bold"] {
    display: inline-block;
    font-family: var(--ty-font-heading);
    color: var(--ty-navy);
    margin-bottom: 4px;
}
.ty-changelog__scroll a { color: var(--ty-blue-dark); }

/* Bizden Haberler (news) sayfası */
.ty-news-layout { max-width: 900px; margin: 0 auto; }
.ty-news-list { display: flex; flex-direction: column; gap: 22px; }
.ty-news-entry {
    background: #ffffff;
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius);
    padding: 28px 32px;
    box-shadow: var(--ty-shadow-sm);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.ty-news-entry:hover {
    transform: translateY(-3px);
    box-shadow: var(--ty-shadow);
    border-color: var(--ty-blue);
}
.ty-news-entry h5 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--ty-navy);
    margin: 0 0 8px;
}
.ty-news-entry h5 + h5 { margin-top: -2px; }
.ty-news-entry h6 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
    color: var(--ty-blue-dark);
    margin: 0 0 14px;
}
.ty-news-entry ul.list.list-unstyled.list-mark { list-style: none; margin: 14px 0 0; padding: 0; }
.ty-news-entry h5:last-of-type + ul.list.list-unstyled.list-mark,
.ty-news-entry h6 + ul.list.list-unstyled.list-mark { margin-top: 0; }
.ty-news-entry ul.list.list-unstyled.list-mark > li {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ty-body);
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
}
.ty-news-entry ul.list.list-unstyled.list-mark > li:last-child { margin-bottom: 0; }
.ty-news-entry ul.list.list-unstyled.list-mark > li::after { content: none; }
.ty-news-entry ul.list.list-unstyled.list-mark > li::before {
    content: "";
    position: absolute;
    left: 0; top: 9px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--ty-green);
}
.ty-news-entry ul.list.list-unstyled.list-mark span[style*="bold"] {
    display: inline-block;
    font-family: var(--ty-font-heading);
    color: var(--ty-navy);
    margin-bottom: 4px;
}
.ty-news-entry a { color: var(--ty-blue-dark); }

.ty-support {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius);
    padding: 32px;
    box-shadow: var(--ty-shadow-sm);
}
.ty-support__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ty-body);
    margin: 0 0 26px;
}
.ty-support__card {
    background: var(--ty-bg-soft);
    border-radius: var(--ty-radius-sm);
    padding: 20px 22px;
    margin-bottom: 24px;
}
.ty-support__card h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 12px;
}
.ty-support__card ul { list-style: none; margin: 0; padding: 0; }
.ty-support__card li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--ty-body);
    padding: 7px 0;
    border-top: 1px solid var(--ty-border);
}
.ty-support__card li:first-child { border-top: none; }
.ty-support__card li span:last-child { font-weight: 600; color: var(--ty-navy); }

.ty-support__contact { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.ty-support__contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ty-navy);
    text-decoration: none;
    padding: 10px 14px;
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius-sm);
    transition: border-color .15s ease, color .15s ease;
}
.ty-support__contact a:hover { border-color: var(--ty-blue); color: var(--ty-blue-dark); }
.ty-support__contact i { color: var(--ty-blue); }

/* -----------------------------------------------------------------
   Footer
   ----------------------------------------------------------------- */
.ty-footer {
    background: var(--ty-navy);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 26px;
    font-family: var(--ty-font-body);
}
.ty-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.ty-footer__logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 126px;
    height: 68px;
    background: #ffffff;
    border-radius: 14px;
    margin-bottom: 20px;
    overflow: hidden;
}
.ty-footer__logo { display: block; height: 69px; width: auto; }
.ty-footer__brand p { font-size: 14px; line-height: 1.75; max-width: 38ch; margin: 0; color: rgba(255,255,255,0.85); }
.ty-footer__col h4 {
    font-family: var(--ty-font-heading);
    color: #ffffff;
    font-size: 15px;
    margin: 0 0 18px;
}
.ty-footer__col ul { list-style: none; margin: 0 0 20px; padding: 0; }
.ty-footer__col ul:last-child { margin-bottom: 0; }
.ty-footer__col li { margin-bottom: 10px; font-size: 14px; }
.ty-footer__col a { color: rgba(255,255,255,0.82); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.ty-footer__col a:hover { color: #ffffff; }
.ty-footer__col i { color: var(--ty-blue); }

.ty-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    font-size: 13px;
}
.ty-footer__copyright a { color: rgba(255,255,255,0.85); text-decoration: none; }
.ty-footer__copyright a:hover { text-decoration: underline; }
.ty-footer__review {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ffffff;
    border-radius: 999px;
    padding: 5px 14px;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 8px 18px -12px rgba(0,0,0,0.5);
    transition: transform .18s ease, box-shadow .18s ease;
}
.ty-footer__review:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -12px rgba(0,0,0,0.55);
}
.ty-footer__review-icon { display: block; flex-shrink: 0; }
.ty-footer__review-stars { color: #fbbc04; font-size: 10px; letter-spacing: 1px; }
.ty-footer__review-label {
    font-size: 13px;
    font-weight: 600;
    color: #3c4043;
}

/* -----------------------------------------------------------------
   İletişim
   ----------------------------------------------------------------- */
.ty-contact-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.ty-contact-form-card,
.ty-contact-info-card {
    background: #ffffff;
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius);
    padding: 36px;
    box-shadow: var(--ty-shadow-sm);
}
.ty-contact-form-card h2,
.ty-contact-info-card h2 {
    font-family: var(--ty-font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--ty-navy);
    margin: 0 0 22px;
}
.ty-contact-info-card h2 + h2,
.ty-contact-info-card hr + h2 { margin-top: 8px; }

.ty-contact-form-card .alert {
    padding: 14px 18px;
    border-radius: var(--ty-radius-sm);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 22px;
}
.ty-contact-form-card .alert-success { background: #eafaf0; border: 1px solid #b7e8c8; color: #1f7a43; }
.ty-contact-form-card .alert-danger { background: #fdeceb; border: 1px solid #f5c2bd; color: #b3261e; }
.ty-contact-form-card .alert p { margin: 0; }
.ty-contact-form-card .alert p:empty { display: none; }
.ty-contact-form-card .alert a { color: inherit; font-weight: 600; }

.ty-contact-form { display: flex; flex-direction: column; gap: 16px; }
.ty-form-group {
    display: flex;
    align-items: center;
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius-sm);
    background: var(--ty-bg-soft);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.ty-form-group:focus-within { border-color: var(--ty-blue); box-shadow: 0 0 0 3px rgba(41,171,226,0.15); }
.ty-form-group--textarea { align-items: flex-start; }
.ty-form-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    flex-shrink: 0;
    color: var(--ty-blue);
    font-size: 15px;
}
.ty-form-group--textarea .ty-form-icon { padding-top: 14px; }
.ty-form-control {
    flex: 1;
    width: 100%;
    border: 0;
    background: transparent;
    padding: 13px 14px 13px 0;
    font-family: var(--ty-font-body);
    font-size: 14px;
    color: var(--ty-ink);
    outline: none;
    resize: vertical;
}
.ty-form-control::placeholder { color: var(--ty-muted); }
select.ty-form-control {
    height: auto !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%238085a0'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.293l3.71-4.06a.75.75 0 111.08 1.04l-4.25 4.65a.75.75 0 01-1.08 0l-4.25-4.65a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 36px;
    cursor: pointer;
}

.ty-form-captcha { display: flex; align-items: center; gap: 14px; }
.ty-form-captcha__img { border-radius: var(--ty-radius-sm); border: 1px solid var(--ty-border); }
.ty-form-captcha .ty-form-group { flex: 1; }

.ty-form-submit { margin-top: 4px; }
.ty-form-submit .ty-btn { width: 100%; }

.ty-contact-info-list, .ty-contact-hours-list { list-style: none; margin: 0 0 28px; padding: 0; }
.ty-contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--ty-body);
    padding: 11px 0;
    border-top: 1px solid var(--ty-border);
}
.ty-contact-info-list li:first-child { border-top: none; padding-top: 0; }
.ty-contact-info-list i { color: var(--ty-blue); width: 16px; text-align: center; margin-top: 3px; }
.ty-contact-info-list a { color: var(--ty-body); text-decoration: none; }
.ty-contact-info-list a:hover { color: var(--ty-blue-dark); }

.ty-contact-hours-list { margin-bottom: 0; }
.ty-contact-hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--ty-body);
    padding: 9px 0;
    border-top: 1px solid var(--ty-border);
}
.ty-contact-hours-list li:first-child { border-top: none; padding-top: 0; }
.ty-contact-hours-list li span:last-child { font-weight: 600; color: var(--ty-navy); }

/* -----------------------------------------------------------------
   Referanslar
   ----------------------------------------------------------------- */
.ty-ref-table-scroll { overflow-x: auto; }
.ty-ref-table { width: 100%; border-collapse: collapse; font-family: var(--ty-font-body); }
.ty-ref-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--ty-bg-soft);
    text-align: left;
    font-family: var(--ty-font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--ty-navy);
    padding: 16px 28px;
    border-bottom: 1px solid var(--ty-border);
}
.ty-ref-table tbody td {
    padding: 13px 28px;
    font-size: 14px;
    color: var(--ty-body);
    border-bottom: 1px solid var(--ty-border);
    white-space: nowrap;
}
.ty-ref-table tbody tr:last-child td { border-bottom: none; }
.ty-ref-table tbody tr:nth-child(even) { background: var(--ty-bg-soft); }
.ty-ref-table tbody tr:hover { background: #eaf6fd; }
.ty-ref-table tfoot th {
    background: var(--ty-bg-soft);
    text-align: left;
    font-family: var(--ty-font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--ty-navy);
    padding: 14px 28px;
    border-top: 1px solid var(--ty-border);
}

/* -----------------------------------------------------------------
   Satın Al
   ----------------------------------------------------------------- */
.ty-purchase-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: start;
}

.ty-purchase-form-card {
    background: #ffffff;
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius);
    padding: 36px;
    box-shadow: var(--ty-shadow-sm);
}
.ty-purchase-fieldset { display: block; width: 100%; min-width: 0; border: 0; margin: 0 0 30px; padding: 0; }
.ty-purchase-fieldset:last-of-type { margin-bottom: 0; }
.ty-purchase-legend {
    width: auto;
    border: 0;
    font-family: var(--ty-font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--ty-navy);
    margin: 0 0 20px;
    padding: 0 0 12px;
    border-bottom: 1px solid var(--ty-border);
}

.ty-purchase-field { margin-bottom: 16px; }
.ty-purchase-field__label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--ty-navy);
    margin-bottom: 6px;
}
.ty-purchase-field__control {
    display: flex;
    align-items: center;
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius-sm);
    background: var(--ty-bg-soft);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.ty-purchase-field__control:focus-within { border-color: var(--ty-blue); box-shadow: 0 0 0 3px rgba(41,171,226,0.15); }
.ty-form-note { font-size: 13px; font-weight: 600; color: var(--ty-red); margin: 2px 0 16px; }

.ty-purchase-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--ty-bg-soft);
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius-sm);
    padding: 14px 18px;
    margin-bottom: 16px;
}
.ty-purchase-total__label { font-size: 13px; font-weight: 700; color: var(--ty-navy); }
.ty-purchase-total__value { font-family: var(--ty-font-heading); font-size: 20px; font-weight: 800; color: var(--ty-blue-dark); }

.ty-terms-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.ty-terms-row img { border-radius: 6px; }
.ty-terms-row__link { font-size: 13px; color: var(--ty-body); text-decoration: underline; }
.ty-terms-row__link:hover { color: var(--ty-blue-dark); }
.ty-terms-check { margin-bottom: 20px; }
.ty-terms-check label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ty-body); cursor: pointer; }
.ty-terms-check a { color: var(--ty-blue-dark); }
.hide { display: none; }

.ty-form-submit { margin-top: 8px; }
.ty-form-submit .ty-btn { width: 100%; }
.ty-form-submit .ty-btn[disabled] { opacity: .6; cursor: not-allowed; }

.ty-ajaxloader__img { display: block; margin: 20px auto 0; }

.ty-purchase-bank-card {
    background: #ffffff;
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius);
    padding: 32px;
    box-shadow: var(--ty-shadow-sm);
}
.ty-purchase-bank-card__logos { display: block; max-width: 100%; margin: 0 auto 26px; }
.ty-purchase-bank { padding: 20px 0; border-top: 1px solid var(--ty-border); }
.ty-purchase-bank:first-of-type { border-top: 0; padding-top: 0; }
.ty-purchase-bank img { max-height: 34px; margin-bottom: 12px; }
.ty-purchase-bank ul { list-style: none; margin: 0; padding: 0; }
.ty-purchase-bank li { font-size: 13.5px; line-height: 1.6; color: var(--ty-body); }
.ty-purchase-bank li:first-child { font-weight: 600; color: var(--ty-navy); }

.modal1 {
    max-width: 640px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: var(--ty-radius);
    padding: 40px;
}
.modal1 h3 {
    font-family: var(--ty-font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--ty-navy);
    margin: 0 0 22px;
}
.modal1 ul.list-mark {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
}
.modal1 ul.list-mark > li {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ty-body);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}
.modal1 ul.list-mark > li::after { content: none; }
.modal1 ul.list-mark > li::before {
    content: "";
    position: absolute;
    left: 0; top: 8px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--ty-blue);
}
.modal1 .button.popup-modal-dismiss {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ty-font-heading);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 28px;
    background: var(--ty-blue);
    color: #ffffff;
    transition: background-color .15s ease, transform .15s ease;
}
.modal1 .button.popup-modal-dismiss:hover { background: var(--ty-blue-dark); transform: translateY(-1px); }

/* -----------------------------------------------------------------
   Responsive
   ----------------------------------------------------------------- */
@media (max-width: 991px) {
    .ty-hero__grid { grid-template-columns: 1fr; }
    .ty-hero__visual { min-height: 300px; order: -1; }
    .ty-hero h1 { font-size: 34px; }
    .ty-programs { grid-template-columns: repeat(2, 1fr); }
    .ty-split { grid-template-columns: 1fr; }
    .ty-changelog { height: 420px; }
    .ty-footer__grid { grid-template-columns: 1fr 1fr; }
    .ty-footer__brand { grid-column: 1 / -1; }

    .ty-programs-layout { grid-template-columns: 1fr; }
    .ty-programs-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
    .ty-programs-sidebar .ty-info-card { flex: 1 1 260px; }
    .ty-programs-sidebar .ty-remote-btn { width: 140px; }

    .ty-detail-layout { grid-template-columns: 1fr; }
    .ty-detail-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
    .ty-detail-sidebar__image { flex: 1 1 200px; }
    .ty-detail-price-card { flex: 1 1 220px; }
    .ty-detail-sidebar__bank { flex: 1 1 100%; }

    .ty-contact-layout { grid-template-columns: 1fr; }
    .ty-purchase-layout { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    .ty-topbar__contact--phones { display: none; }
    .ty-nav__toggle { display: flex; }

    .ty-nav {
        position: fixed;
        top: 0; right: 0;
        height: 100vh;
        width: min(320px, 84vw);
        background: #ffffff;
        box-shadow: -20px 0 40px rgba(16,19,43,0.15);
        padding: 90px 28px 28px;
        transform: translateX(100%);
        transition: transform .25s ease;
        z-index: 998;
    }
    .ty-nav.is-open { transform: translateX(0); }
    .ty-nav__list { flex-direction: column; align-items: flex-start; gap: 22px; }

    .ty-hero { padding: 44px 0 56px; }
    .ty-hero h1 { font-size: 28px; }

    .ty-programs { grid-template-columns: 1fr; }
    .ty-section { padding: 56px 0; }
    .ty-footer__grid { grid-template-columns: 1fr; }
    .ty-footer__bottom { flex-direction: column; align-items: flex-start; }

    .ty-page-header { padding: 18px 0 16px; }
    .ty-page-header h1 { font-size: 25px; }

    .ty-product-row {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
    .ty-product-row__actions { justify-content: center; }
    .ty-programs-sidebar { flex-direction: column; }
    .ty-programs-sidebar .ty-info-card { flex: 1 1 auto; }

    .ty-detail-sidebar { flex-direction: column; }
    .ty-feature-columns { grid-template-columns: 1fr; }
    .ty-cta-row { flex-direction: column; }
    .ty-cta-row .ty-btn { width: 100%; }

    .ty-faq-columns { grid-template-columns: 1fr; gap: 40px; }

    .ty-contact-form-card, .ty-contact-info-card { padding: 26px 22px; }
    .ty-form-captcha { flex-wrap: wrap; }

    .ty-ref-table thead th, .ty-ref-table tfoot th { padding: 13px 18px; }
    .ty-ref-table tbody td { padding: 11px 18px; }

    .ty-purchase-form-card, .ty-purchase-bank-card { padding: 26px 22px; }
    .modal1 { padding: 26px 20px; }
}

.ty-nav-open { overflow: hidden; }
.ty-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(16,19,43,0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 997;
}
.ty-nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

@media (prefers-reduced-motion: reduce) {
    .ty-hero h1,
    .ty-hero__lead,
    .ty-hero__strong,
    .ty-hero__visual,
    .ty-hero__box--back,
    .ty-hero__box--front,
    .ty-hero__badge,
    .ty-page-header__crumb,
    .ty-page-header h1,
    .ty-detail-sidebar__image,
    .ty-detail-sidebar__image img,
    .ty-detail-price-card,
    .ty-detail-sidebar__bank,
    .ty-detail-main__intro,
    .ty-detail-main h2,
    .ty-feature-columns,
    .ty-cta-row,
    .ty-notes-card {
        animation: none;
    }
}
