:root {
    --bg-white:  #f4f3ea;
    --bg-greenish: rgba(128,154,76, 0.2);
    --bg-greenish-solid: rgb(128,154,76);
    --bg-green: #112218;
}

html, body {
    display: grid;
    grid-template-rows: min-content 1fr;
    background-color: var(--bg-white);
    overflow-x: clip;

    font-family: "Instrument Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    font-size: 15px;
}

.above-the-fold-spacer {
  height: 100vh;
  grid-column: 1 / -1;
  grid-row: 1 / span 2;
}

header {
    position: -webkit-sticky;
    position: sticky;
    height: 70px;
    grid-column-start: 1;
    grid-row-start: 1;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 46px;
    padding-right: 46px;
    background-color: var(--bg-white);
}

nav ul li {
    display: inline-block;
}

nav.primary ul.primary-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 0;
}

nav.primary ul.primary-menu li {
    color: rgba(14, 34, 24, 0.85);
    cursor: pointer;
    font-size: 14px;
    margin: 0;
}

nav.primary ul.primary-menu li a {
    color: inherit;
    text-decoration: none;
}

nav.primary ul.primary-menu li a:hover {
    opacity: 0.7;
}

nav.primary ul.primary-menu li.has-dropdown::after {
    content: '\00A0\25BE';
    color: rgba(14, 34, 24, 0.6);
    font-size: 11px;
}

header > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

header button {
    border: none;
    border-radius: 1920px;
    padding: 10px 22px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
}

header button.btn-light {
    background-color: rgba(14, 34, 24, 0.06);
    color: rgb(14, 34, 24);
}

header button.btn-dark {
    background-color: var(--bg-green);
    color: #fff;
}

main {
    grid-column-start: 1;
    grid-row-start: 2;
}

main nav {
    position: -webkit-sticky;
    position: sticky;
    height: 60px;
    top: 70px;
    z-index: 99;
}

main section.hero {
    height: 676px;
}

/* ===== 3-Column with Cover Image ===== */
.columns.columns-stretch {
    align-items: stretch;
}

.col-cover-img {
    padding-left: 0;
    padding-right: 0;
    min-height: 420px;
}

.col-cover-img .cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* ===== Hero Slider ===== */
section.hero-slider-wrap {
    position: relative;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-color: var(--bg-green);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slider-content {
    position: relative;
    z-index: 2;
}

.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 36px;
    height: 4px;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
    border-radius: 2px;
    transition: background 0.3s ease, width 0.3s ease;
}

.hero-dot.active {
    background: rgba(255, 255, 255, 0.95);
    width: 52px;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

nav.secondary {
    background-color: var(--bg-white);
    border: 1px solid #EBEBE2;
}
nav.secondary ul {
    margin-top: 20px;
}
nav.secondary ul li {
    color: rgba(14,34,24, 0.7);
    margin: 0;
    padding-left: 30px;
}
nav.secondary ul li.active {
    color: rgb(14,34,24);
    background-image: url('../../images/main-secondary-bullet.webp');
    background-repeat: no-repeat;
    background-position-y: 3px;
}
nav.secondary ul li a {
    color: inherit !important;
}

footer {
    background: #112218 url('../../images/section-bg-tiger-v.webp') right -100px repeat-y;
}

footer .footer-section-divider {
    border-top: 1px dotted rgba(255, 255, 255, 0.42);
    padding-top: 44px;
    margin-top: 44px;
}

footer .footer-cta .column {
    text-align: center;
}

.anchor.dark {
    background-color: rgba(0, 0, 0, 0.22) !important;
    border: 1px solid var(--bg-greenish-solid) !important;
    color: #fff !important;
}

/* Koyu arka planlı bölümlerde anchor chip'ler daha belirgin görünsün */
section.bg-green-vtiger .anchor,
section.bg-hero-default .anchor,
footer .anchor {
    background-color: rgba(255, 255, 255, 0.13);
    color: #fff;
}
section.bg-green-vtiger .anchor.solid,
section.bg-hero-default .anchor.solid {
    background-color: var(--bg-greenish-solid);
    color: #fff;
}
/* article-card içindeki anchor chip'ler için boşluk ve flex wrap */
.article-card p > a.anchor {
    margin-right: 6px;
    margin-bottom: 6px;
}
/* Hashtag chip container'ı için flex wrap */
.text-line-30 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1;
}


footer .footer-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

footer .footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 1920px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

footer .footer-cta-btn--primary {
    background-color: var(--bg-green);
    border: 1px solid var(--bg-greenish-solid);
    color: #fff !important;
}

footer .footer-cta-btn--ghost {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.9);
    color: #fff !important;
}

footer .footer-cta-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

footer .footer-cta-btn--primary .footer-cta-btn-icon::before {
    content: '\25CE';
    font-size: 15px;
    line-height: 1;
    opacity: 0.95;
}

footer .footer-cta-btn--ghost .footer-cta-btn-icon--play::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 9px;
    border-color: transparent transparent transparent #fff;
    margin-left: 2px;
}

footer .footer-subscribe {
    max-width: 520px;
}

footer .footer-subscribe-label {
    position: relative;
    display: block;
    padding-left: 16px;
    margin-bottom: 10px;
}

footer .footer-subscribe-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--bg-greenish-solid);
}

footer .footer-subscribe-line {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

footer .footer-subscribe-line input[type="text"] {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    border: none;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
}

footer .footer-subscribe-line input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

footer .footer-subscribe-btn {
    padding: 12px 18px;
    border-radius: 0;
    border: none;
    background-color: rgb(196, 214, 168);
    color: var(--bg-green);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

footer .footer-contact-below {
    margin-top: 20px;
}

footer .footer-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 14px;
}

footer .footer-contact-icon {
    display: inline-flex;
    width: 1.1em;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.9;
}

footer .footer-contact-icon--phone::before {
    content: '\260E';
    font-size: 14px;
}

footer .footer-contact-icon--mail::before {
    content: '\2709';
    font-size: 14px;
}

footer .footer-links > .anchor {
    display: inline-block;
    margin-bottom: 8px;
}

footer .footer-links ul {
    margin-top: 4px;
}

footer .footer-links ul li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

footer .footer-links ul li a {
    color: inherit;
    text-decoration: none;
}

footer .footer-links ul li a:hover {
    text-decoration: underline;
}

footer .footer-legal-list {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1.9;
}

footer .footer-legal-list li {
    display: inline;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

footer .footer-legal-list li a {
    color: inherit;
    text-decoration: none;
}

footer .footer-legal-list li a:hover {
    text-decoration: underline;
}

footer .footer-legal-list li + li::before {
    content: '|';
    display: inline-block;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 10px;
}

footer .footer-lang {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

footer .footer-globe {
    font-size: 16px;
    line-height: 1;
    opacity: 0.85;
}

footer select {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
}

.dark {
    background-color: rgba(0, 0, 0, 0.22);
    border: 1px solid var(--bg-greenish-solid);
}

.content-teaser-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
}

.content-teaser-body {
    padding-top: 14px;
}

.content-teaser-type {
    font-size: 14px;
    color: rgba(14, 34, 24, 0.62);
}

.content-teaser-card h4 {
    margin-top: 8px;
}

.meta-inline {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(14, 34, 24, 0.8);
}

.meta-inline-sub {
    margin-top: 6px;
}

.meta-icon {
    opacity: 0.8;
    margin-right: 6px;
}

.media-gallery {
    position: relative;
    margin-top: 24px;
    text-align: center;
}

.media-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(14, 34, 24, 0.2);
    color: rgba(14, 34, 24, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.85);
}

.media-gallery-arrow.left { left: -14px; }
.media-gallery-arrow.right { right: -14px; }

.media-gallery-dots {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(14, 34, 24, 0.55);
}

.form-control {
    width: 100%;
    border: 1px solid rgba(14, 34, 24, 0.2);
    border-radius: 8px;
    padding: 12px 14px;
    background-color: #fff;
    font-family: inherit;
    font-size: 14px;
    color: rgba(14, 34, 24, 0.92);
    box-sizing: border-box;
}

.form-control + .form-control,
.form-checkline + .form-checkline {
    margin-top: 12px;
}

.form-checkline {
    text-align: left;
    color: rgba(14, 34, 24, 0.78);
    font-size: 14px;
}

.form-checkline input {
    margin-right: 8px;
}

.form-actions-inline {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.archive-year-nav {
    position: sticky;
    top: 140px;
}

.archive-year-nav ul li {
    margin: 10px 0;
    color: rgba(14, 34, 24, 0.72);
}

.archive-year-nav ul li.active {
    color: rgba(14, 34, 24, 1);
    font-weight: 600;
}

.article-card {
    margin-bottom: 54px;
}

.article-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-card .text-eyebrow {
    letter-spacing: 4px;
    font-size: 12px;
    color: rgba(14, 34, 24, 0.5);
}

.article-card h4 {
    margin-top: 10px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-card-meta .anchor {
    margin-right: 0;
    margin-bottom: 0;
}

.blog-card-date {
    font-size: 13px;
    color: rgba(14, 34, 24, 0.48);
}

.blog-readmore {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.blog-year-heading {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(128, 154, 76, 0.25);
    margin-bottom: 8px;
}

.blog-year-label {
    font-size: 22px;
    font-weight: 700;
    color: rgba(14, 34, 24, 0.88);
}

.blog-year-count {
    font-size: 13px;
    color: rgba(14, 34, 24, 0.45);
}

.mt-80 {
    margin-top: 80px;
}

/* Sidebar yıl nav linkleri */
#blogYearNav ul li a {
    display: block;
    padding: 6px 0;
    color: rgba(14, 34, 24, 0.65);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

#blogYearNav ul li a:hover {
    color: var(--bg-green);
}

#blogYearNav ul li.active a {
    color: var(--bg-green);
    font-weight: 600;
}

.content-sidebar-nav {
    position: sticky;
    top: 140px;
}

/* Alt ürün navigasyon sidebar (S2 tipi) */
.sidebar-subnav ul li::before {
    display: none !important;
    animation: none !important;
}

.sidebar-subnav p.text-14 {
    font-weight: 700;
    color: rgba(14, 34, 24, 0.9);
    margin-bottom: 6px;
}

.sidebar-subnav ul li {
    padding-left: 14px;
    border-left: 2px solid rgba(128, 154, 76, 0.3);
}

.sidebar-subnav ul li a {
    color: rgba(14, 34, 24, 0.65);
    text-decoration: none;
    cursor: pointer !important;
    pointer-events: auto !important;
    transition: color 0.2s;
}

.sidebar-subnav ul li a:hover {
    color: var(--bg-greenish-solid);
    text-decoration: none;
}

.content-sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-sidebar-nav ul li {
    display: block;
    position: relative;
    padding-left: 22px;
    margin: 10px 0;
    margin-left: 0;
    color: rgba(14, 34, 24, 0.72);
}

/* Animasyonlu yeşil dot */
.content-sidebar-nav ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background-color: var(--bg-greenish-solid);
    border-radius: 50%;
    animation: feature-dot-pulse 2s ease-out infinite;
}

@keyframes feature-dot-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(128, 154, 76, 0.65); }
    65%  { box-shadow: 0 0 0 7px rgba(128, 154, 76, 0); }
    100% { box-shadow: 0 0 0 0 rgba(128, 154, 76, 0); }
}

.content-sidebar-nav ul li.active {
    color: rgba(14, 34, 24, 1);
    font-weight: 600;
}
.content-sidebar-nav ul li a {
    color: inherit;
}

.accordion-group {
    margin-top: 34px;
}

.accordion-group-label {
    position: relative;
    display: inline-block;
    padding-left: 16px;
    color: rgba(14, 34, 24, 0.62);
    font-size: 13px;
}

.accordion-group-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--bg-greenish-solid);
}

.accordion-item {
    border-top: 1px dashed rgba(14, 34, 24, 0.18);
}

.accordion-item:last-child {
    border-bottom: 1px dashed rgba(14, 34, 24, 0.18);
}

.accordion-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 26px 18px 0;
    position: relative;
    font-weight: 600;
    color: rgba(14, 34, 24, 0.95);
    transition: color 0.2s ease;
    user-select: none;
}

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

.accordion-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    color: rgba(14, 34, 24, 0.6);
    font-size: 18px;
    line-height: 1;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.accordion-item[open] > summary::after {
    content: '×';
    transform: translateY(-50%) rotate(45deg);
    color: var(--bg-green);
}

.accordion-item[open] > summary {
    color: var(--bg-green);
}

.accordion-item-content {
    overflow: hidden;
    max-height: 0;
    padding: 0 26px 0 0;
    color: rgba(14, 34, 24, 0.84);
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.28s ease;
    opacity: 0;
}

.accordion-item[open] > .accordion-item-content {
    padding: 0 26px 18px 0;
    opacity: 1;
}


.logo-cloud-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 20px 24px;
    align-items: center;
}

/* ============================================================
   LOGO MARQUEE — Sonsuz kayan logo bandı
   ============================================================ */
.logo-marquee {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.logo-marquee__track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: logo-marquee-scroll 32s linear infinite;
    will-change: transform;
}

.logo-marquee__track:hover {
    animation-play-state: paused;
}

/* Her logo eşit boyutlu bir kutu içinde — slot */
.logo-marquee__slot {
    flex: 0 0 168px;
    width: 168px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 20px;
    box-sizing: border-box;
}

.logo-marquee__item {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.logo-marquee__slot:hover .logo-marquee__item {
    opacity: 1;
}

@keyframes logo-marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-cloud-item {
    text-align: center;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-cloud-item img {
    max-width: 100%;
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.2s ease;
}

.logo-cloud-item:hover img {
    filter: grayscale(0%);
}

.logo-cloud-item.hidden {
    display: none;
}

.pagination-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 48px;
}

.pagination-inline .page-btn {
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: rgba(14, 34, 24, 0.65);
    font-size: 14px;
    cursor: pointer;
    border: 1px solid transparent;
    background: transparent;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
    user-select: none;
    font-family: inherit;
    text-decoration: none;
}

.pagination-inline .page-btn:hover:not(.disabled):not(.active) {
    background: rgba(128, 154, 76, 0.10);
    border-color: rgba(128, 154, 76, 0.25);
    color: var(--bg-green);
}

.pagination-inline .page-btn.active {
    background-color: var(--bg-green);
    color: #fff;
    border-color: var(--bg-green);
    font-weight: 600;
}

.pagination-inline .page-btn.disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.pagination-inline .page-btn.nav-arrow {
    font-size: 16px;
    font-weight: 500;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.office-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.office-card {
    background-color: rgba(128, 154, 76, 0.12);
    border-radius: 12px;
    padding: 22px 20px;
}

section.bg-white {
    background-color: var(--bg-white);
}
section.bg-greenish {
    background-color: var(--bg-greenish);
}
section.bg-greenish-tiger {
    background: var(--bg-greenish) url('../../images/section-bg-tiger.webp') right top no-repeat;
}
section.bg-greenish-tiger-inverted {
    background: var(--bg-greenish) url('../../images/section-bg-tiger-inverted.webp') left top no-repeat;
}
section.bg-green-vtiger {
    background: var(--bg-green) url('../../images/section-bg-tiger-v.webp') right -100px repeat-y;
}
section.bg-hero-default {
    background: var(--bg-green) url('../../images/hero-default.webp') center top;
    background-size: cover;
}
/* ===== Hero Media Stack ===== */
.columns:has(.hero-media-stack) {
    align-items: center;
}

.hero-media-stack {
    position: relative;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.hero-media-primary {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    border-left: 8px solid var(--bg-green);
    border-bottom: 8px solid var(--bg-green);
}

.hero-media-secondary {
    position: absolute;
    left: -50px;
    bottom: 0;
    width: 58%;
    z-index: 1;
}

/* ===== Hero Split Section ===== */
section.hero-split {
    overflow: hidden;
}

section.hero-split > .columns.w-1440 {
    align-items: center;
}

section.hero-split > .columns.w-1440 > .column:last-child {
    padding-left: 0;
    padding-right: 0;
    margin-right: calc((100vw - 100%) / -2);
}

section.hero-split > .columns.w-1440 > .column:last-child img {
    display: block;
    width: 100%;
    height: auto;
}

/* ===== Article Card Grid ===== */
.columns.article-card-grid {
    row-gap: 48px;
    column-gap: 32px;
}

.columns.article-card-grid > .column {
    flex: 0 0 calc(50% - 16px);
    max-width: calc(50% - 16px);
    box-sizing: border-box;
}

/* ===== img-logo (logo cloud) ===== */
.img-logo {
    max-width: 100%;
    height: auto;
    opacity: 0.65;
    filter: grayscale(100%);
    transition: opacity 0.2s ease, filter 0.2s ease;
}

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

/* ============================================================
   AUTH MODAL
   ============================================================ */
.auth-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    padding: 16px;
    box-sizing: border-box;
}
.auth-modal-backdrop.is-open {
    opacity: 1;
    pointer-events: all;
}
.auth-modal {
    background: #fff;
    border-radius: 16px;
    padding: 44px 38px 38px;
    width: 100%;
    max-width: 424px;
    position: relative;
    max-height: 92vh;
    overflow-y: auto;
    transform: translateY(18px);
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}
.auth-modal-backdrop.is-open .auth-modal {
    transform: translateY(0);
}
.auth-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: rgba(14, 34, 24, 0.42);
    padding: 6px 8px;
    transition: color 0.15s;
}
.auth-modal-close:hover { color: rgba(14, 34, 24, 0.85); }

/* Screen switching */
.auth-screen { display: none; }
.auth-screen.is-active { display: block; }

/* Logo */
.auth-logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #0e2218;
    margin-bottom: 16px;
    font-family: inherit;
}

/* Heading */
.auth-heading {
    font-size: 22px;
    font-weight: 600;
    color: #0e2218;
    line-height: 1.35;
    margin: 0 0 28px;
}
.auth-heading span {
    display: block;
    font-weight: 400;
    font-size: 20px;
}

/* Fields */
.auth-field {
    margin-bottom: 12px;
}
.auth-field label {
    display: block;
    font-size: 12px;
    color: rgba(14, 34, 24, 0.52);
    margin-bottom: 5px;
}
.auth-field input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgba(14, 34, 24, 0.18);
    border-radius: 8px;
    font-size: 14px;
    color: #0e2218;
    background: #fff;
    box-sizing: border-box;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s;
}
.auth-field input:focus { border-color: rgb(128, 154, 76); }
.auth-field input::placeholder { color: rgba(14, 34, 24, 0.32); }

/* Remember me + Forgot link row */
.auth-check-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 14px 0 22px;
}
.auth-check-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(14, 34, 24, 0.72);
    cursor: pointer;
}
.auth-check-label input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: rgb(128, 154, 76);
    cursor: pointer;
    flex-shrink: 0;
}
.auth-link-forgot {
    font-size: 13px;
    color: rgb(128, 154, 76);
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    padding: 0;
}
.auth-link-forgot:hover { text-decoration: underline; }

/* Error message */
.auth-error-msg {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    font-size: 13px;
    border-radius: 6px;
    padding: 10px 14px;
    margin-bottom: 12px;
}

/* Primary button */
.auth-btn-primary {
    display: block;
    width: 100%;
    padding: 13px;
    background: rgb(128, 154, 76);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    transition: background 0.15s;
}
.auth-btn-primary:hover { background: rgb(108, 132, 60); }

/* Switch text */
.auth-switch-text {
    text-align: center;
    font-size: 13px;
    color: rgba(14, 34, 24, 0.62);
    margin: 14px 0;
}
.auth-link {
    color: rgb(128, 154, 76);
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
    font-size: inherit;
    font-family: inherit;
    padding: 0;
}
.auth-link:hover { text-decoration: underline; }

/* OR divider */
.auth-or-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(14, 34, 24, 0.36);
    font-size: 12px;
    letter-spacing: 0.5px;
    margin: 4px 0 14px;
}
.auth-or-divider::before,
.auth-or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(14, 34, 24, 0.13);
}

/* Google button */
.auth-btn-google {
    width: 100%;
    padding: 11px 14px;
    background: #fff;
    border: 1.5px solid rgba(14, 34, 24, 0.18);
    border-radius: 8px;
    font-size: 14px;
    color: #0e2218;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.15s, border-color 0.15s;
}
.auth-btn-google:hover {
    background: rgba(14, 34, 24, 0.03);
    border-color: rgba(14, 34, 24, 0.28);
}

/* Forgot password */
.auth-forgot-icon { margin-bottom: 18px; }
.auth-forgot-title {
    font-size: 20px;
    font-weight: 600;
    color: #0e2218;
    line-height: 1.38;
    margin-bottom: 24px;
}
.auth-sent-display {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgba(14, 34, 24, 0.14);
    border-radius: 8px;
    font-size: 14px;
    color: rgba(14, 34, 24, 0.65);
    background: rgba(14, 34, 24, 0.03);
    box-sizing: border-box;
    margin-bottom: 8px;
}
.auth-helper-text {
    font-size: 12px;
    color: rgba(14, 34, 24, 0.5);
    line-height: 1.55;
    margin-bottom: 20px;
}
.auth-btn-link {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: rgba(14, 34, 24, 0.62);
    margin-top: 14px;
    cursor: pointer;
    text-decoration: underline;
    background: none;
    border: none;
    font-family: inherit;
    padding: 0;
}
.auth-btn-link:hover { color: #0e2218; }

/* Policy text (register) */
.auth-policy {
    font-size: 12px;
    color: rgba(14, 34, 24, 0.5);
    line-height: 1.55;
    margin-bottom: 18px;
}
.auth-policy a {
    color: rgb(128, 154, 76);
    text-decoration: none;
}
.auth-policy a:hover { text-decoration: underline; }

/* ============================================================
   HEADER: ACCOUNT DROPDOWN (Logged-in state)
   ============================================================ */
.header-account-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.header-account-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid rgba(14, 34, 24, 0.18);
    border-radius: 24px;
    padding: 6px 12px 6px 10px;
    font-size: 14px;
    color: #0e2218;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: background 0.15s;
}
.header-account-btn:hover { background: rgba(14, 34, 24, 0.05); }
.header-account-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
    min-width: 160px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 600;
}
.header-account-dropdown.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.header-account-dropdown a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #0e2218;
    text-decoration: none;
    transition: background 0.1s;
}
.header-account-dropdown a:hover { background: rgba(14, 34, 24, 0.04); }
.header-account-dropdown .acct-logout { color: #d93025; }

/* ============================================================
   USER ACCOUNT PAGES
   ============================================================ */

/* Page hero */
.user-page-hero {
    background: linear-gradient(135deg, #0e2218 0%, #1a4a2e 100%);
    padding: 48px 46px;
    color: #fff;
}
.user-page-hero-inner { max-width: 1400px; margin: 0 auto; }
.user-page-hero h1 {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 10px;
}
.user-breadcrumb {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    flex-wrap: wrap;
}
.user-breadcrumb li + li::before { content: "/"; margin-right: 4px; }
.user-breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.user-breadcrumb a:hover { color: #fff; }

/* Layout container */
.user-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 36px 46px 56px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

/* Survey sayfalarındaki eski wrapper div'leri flex layout'u bozmayacak şekilde şeffaf yap */
.user-area > section.column,
.user-area section.column > div.inner,
.user-area div.inner > div.layout:not([class*="layout--"]) {
    display: contents;
}

/* Sidebar */
.user-area .layout--sidebar {
    width: 240px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 12px;
    padding: 20px 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.user-area .layout--sidebar small {
    display: block;
    padding: 0 18px 14px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}
.user-area .layout--sidebar .layout--menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.user-area .layout--sidebar .layout--menu li a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.18s;
    font-weight: 400;
}
.user-area .layout--sidebar .layout--menu li a:hover,
.user-area .layout--sidebar .layout--menu li a.active {
    border-left-color: #6c843c;
    color: #6c843c;
    background: rgba(108,132,60,0.07);
    font-weight: 500;
}
.user-area .layout--sidebar .layout--menu li a.logout { color: #dc2626; }
.user-area .layout--sidebar .layout--menu li a.logout:hover {
    border-left-color: #dc2626;
    background: rgba(220,38,38,0.06);
}

/* Content area */
.user-area .layout--content {
    flex: 1;
    min-width: 0;
}
.user-area .layout--content.box {
    background: #fff;
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.user-area .layout--header {
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}
.user-area .layout--header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #0e2218;
    margin: 0;
}

/* Form styling */
.cge--form small {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6c843c;
    margin: 20px 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.cge--form .row {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}
.cge--form label {
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 5px;
}
.cge--form input[type="text"],
.cge--form input[type="email"],
.cge--form input[type="password"],
.cge--form input[type="tel"],
.cge--form select,
.cge--form textarea {
    width: 100%;
    padding: 9px 13px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
    background: #f9fafb;
    transition: border-color 0.15s, background 0.15s;
    box-sizing: border-box;
}
.cge--form input:focus,
.cge--form select:focus,
.cge--form textarea:focus {
    outline: none;
    border-color: #6c843c;
    background: #fff;
}
.cge--form input[disabled],
.cge--form input:disabled {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}
.cge--form input[type="submit"] {
    background: #6c843c;
    color: #fff;
    border: none;
    padding: 11px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    width: auto;
}
.cge--form input[type="submit"]:hover { background: #5a6e31; }
.cge--form .demo-hint {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 5px;
}
.cge--form .messages { margin-bottom: 16px; }
.cge--form .row.remember { flex-direction: row; align-items: center; gap: 8px; }

/* Product list */
.product--list .category {
    list-style: none;
    padding: 0;
    margin: 0;
}
.product--list .category li {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}
.product--list .category li a {
    text-decoration: none;
    color: #374151;
    flex-direction: column;
}
.product--list .category li a small {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 3px;
}
.product--list .category li a p {
    font-size: 14px;
    font-weight: 500;
    color: #0e2218;
    margin: 0 0 4px;
}
.product--list .category li a .row {
    display: flex;
    gap: 12px;
    flex-direction: row;
    margin-top: 4px;
}
.product--list .category li a:last-child:not(:first-child) {
    margin-left: auto;
    background: #6c843c;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    text-align: center;
}
.product--list .category li a:last-child:not(:first-child) span {
    display: block;
    text-align: center;
}

/* Reports grid */
ul.three--column.category {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.three--column.category li a {
    display: block;
    text-decoration: none;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 18px;
    transition: box-shadow 0.18s, border-color 0.18s;
    height: 100%;
    box-sizing: border-box;
}
ul.three--column.category li a:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-color: #6c843c;
}
ul.three--column.category li a small {
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    display: block;
    margin-bottom: 6px;
}
ul.three--column.category li a p {
    font-size: 14px;
    font-weight: 600;
    color: #0e2218;
    margin: 0 0 4px;
}
ul.three--column.category li a span {
    display: inline-block;
    margin-top: 10px;
    background: #6c843c;
    color: #fff;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

/* Messages */
.messages p.success,
.messages p.error {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 10px;
}
.messages p.success { color: #059669; background: #ecfdf5; border: 1px solid #a7f3d0; }
.messages p.error   { color: #dc2626; background: #fef2f2; border: 1px solid #fecaca; }
.messages b span { font-size: 14px; color: #374151; }

/* Password row eye icon */
.cge--form .row.password { position: relative; }
.cge--form .row.password .eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 18px;
    height: 18px;
    background: url('/Content/images/eye.svg') center/contain no-repeat;
    opacity: 0.5;
}

/* Kendo grid wrapper */
.user-area .layout--content [id^="user-"] {
    border-radius: 8px;
    overflow: hidden;
}

/* Profile logo input */
.cge--form input[type="file"] { background: #fff; padding: 6px; }

/* Tabs (FirmInfo) */
#firma-tabs { border-radius: 8px; overflow: hidden; }

/* ============================================================
   Survey Form (.serveyform) - GreenHome panel styling
   ============================================================ */
.serveyform {
    padding: 0 28px 12px;
    max-width: 760px;
}
.serveyform .row {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    padding: 12px 0 !important;
    border-bottom: 1px solid #f3f4f6;
}
.serveyform .row:last-child {
    border-bottom: none;
}
.serveyform label {
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 6px;
    line-height: 1.45;
}
.serveyform input[type="text"],
.serveyform input[type="email"],
.serveyform textarea,
.serveyform select {
    width: 100%;
    padding: 9px 13px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
    background: #f9fafb;
    transition: border-color 0.15s, background 0.15s;
    box-sizing: border-box;
    font-family: inherit;
}
.serveyform input[type="text"]:focus,
.serveyform textarea:focus,
.serveyform select:focus {
    outline: none;
    border-color: #6c843c;
    background: #fff;
}
.serveyform input[type="text"][readonly],
.serveyform input[readonly] {
    background: #f3f4f6;
    color: #6b7280;
    cursor: default;
}
/* Kendo datepicker inputs */
.serveyform .k-datepicker,
.serveyform span.k-datepicker {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #f9fafb;
}
/* Checkbox rows — label + checkbox on same line */
.serveyform .row:has(input[type="checkbox"]) {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 0 !important;
}
.serveyform .row:has(input[type="checkbox"]) label {
    margin-bottom: 0;
    flex: 1;
    cursor: pointer;
    font-size: 13.5px;
    color: #374151;
}
.serveyform input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid #d1d5db;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: border-color 0.15s, background 0.15s;
    order: -1;
}
.serveyform input[type="checkbox"]:checked {
    background: #6c843c;
    border-color: #6c843c;
}
.serveyform input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}
/* Kaydet / action buttons */
.serveyform .row > button,
.serveyform .row > input[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 26px;
    background: #6c843c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    font-family: inherit;
    margin-top: 4px;
}
.serveyform .row > button:hover,
.serveyform .row > input[type="submit"]:hover {
    background: #5a6e31;
}
/* Secondary / helper buttons (e.g. "Seç") */
.serveyform button[type="button"] {
    padding: 8px 18px;
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
    font-family: inherit;
}
.serveyform button[type="button"]:hover {
    background: #e5e7eb;
}
.serveyform textarea {
    min-height: 180px;
    resize: vertical;
}

/* ============================================================
   HAMBURGER MENÜ
   ============================================================ */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.15s;
}
.hamburger-btn:hover { background: rgba(14,34,24,0.06); }
.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #112218;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.is-open span:nth-child(2) { opacity: 0; }
.hamburger-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobil Nav Drawer ---- */
.mobile-nav-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 490;
    background: var(--bg-white);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav-drawer.is-open {
    transform: translateX(0);
}
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 70px;
    border-bottom: 1px solid rgba(14,34,24,0.08);
}
.mobile-nav-close {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    color: #112218;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.mobile-nav-close:hover { background: rgba(14,34,24,0.06); }
.mobile-nav-links {
    padding: 16px 20px 40px;
    list-style: none;
    margin: 0;
}
.mobile-nav-links li { margin: 0; }
.mobile-nav-links li a,
.mobile-nav-links li button.mobile-nav-group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(14,34,24,0.07);
    font-size: 15px;
    font-weight: 500;
    color: #112218;
    text-decoration: none;
    background: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}
.mobile-nav-links li a:hover,
.mobile-nav-links li button.mobile-nav-group-toggle:hover { opacity: 0.7; }
.mobile-nav-sub {
    list-style: none;
    margin: 0;
    padding: 0 0 8px 16px;
    display: none;
}
.mobile-nav-sub.is-open { display: block; }
.mobile-nav-sub li { margin: 0; }
.mobile-nav-sub li a {
    display: block;
    padding: 9px 0;
    font-size: 14px;
    font-weight: 400;
    color: rgba(14,34,24,0.75);
    border-bottom: none !important;
    text-decoration: none;
}
.mobile-nav-sub li a:hover { color: #112218; }
.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-top: 1px solid rgba(14,34,24,0.08);
}
.mobile-nav-actions a,
.mobile-nav-actions button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    border-radius: 1920px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
}
.mobile-nav-actions .mob-btn-light {
    background: rgba(14,34,24,0.06);
    color: #112218;
    border: none;
}
.mobile-nav-actions .mob-btn-dark {
    background: #112218;
    color: #fff;
    border: none;
}
/* ---- Drawer overlay ---- */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 489;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-nav-overlay.is-visible { opacity: 1; }

/* ============================================================
   SÜRDÜRÜLEBILIRLIK DERECELENDİRME — Döküman İndirme Satırı
   ============================================================ */
.sr-download-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-greenish);
    border: 1px solid rgba(128,154,76,0.25);
    border-radius: 14px;
    padding: 20px 24px;
}
.sr-download-row__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    color: var(--bg-greenish-solid);
    box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}
.sr-download-row__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.sr-download-row__title {
    font-size: 14px;
    font-weight: 600;
    color: #112218;
    line-height: 1.3;
}
.sr-download-row__desc {
    font-size: 13px;
    color: rgba(26,26,23,0.6);
    line-height: 1.4;
}
.sr-download-row__btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #112218;
    border-radius: 8px;
    color: #fff;
    text-decoration: none !important;
    transition: background 0.2s;
}
.sr-download-row__btn:hover {
    background: var(--bg-greenish-solid);
    color: #fff;
}

/* ============================================================
   ÖLÇEKLEME — Laptop (1025px – 1440px)
   Tarayıcının %80 zoom yapmasıyla aynı etkiyi verir.
   Büyük ekranlar (>1440px) ve mobil (<1025px) etkilenmez.
   ============================================================ */
@media (min-width: 1025px) and (max-width: 1440px) {
    html { zoom: 0.80; }
}

/* ============================================================
   RESPONSIVE — NAV (yalnızca ≤1024px hamburger)
   ============================================================ */
@media (max-width: 1024px) {
    nav.primary        { display: none; }
    .hamburger-btn     { display: flex; }
    .mobile-nav-drawer { display: block; }
    .mobile-nav-overlay{ display: block; }
    nav.secondary      { display: none; }
}
