/* Batuhan ALGUL - anatoliasapiens.net */

:root {
    --primary: #1C3A2B;
    --primary-light: #2A5240;
    --primary-dark: #0F2118;
    --accent: #C8922A;
    --accent-light: #DFA83A;
    --accent-pale: rgba(200, 146, 42, 0.10);
    --white: #FFFFFF;
    --off-white: #F6F8F5;
    --gray-50: #F9FAF8;
    --gray-100: #EFF2ED;
    --gray-200: #DDE3DA;
    --gray-300: #C4CEC0;
    --gray-400: #96A692;
    --gray-500: #687B64;
    --gray-600: #485748;
    --gray-700: #2C352B;
    --gray-800: #161C15;
    --text: #161C15;
    --text-light: #485748;
    --text-muted: #687B64;
    --border: #DDE3DA;
    --shadow-xs: 0 1px 2px rgba(12, 28, 18, 0.06);
    --shadow-sm: 0 2px 8px rgba(12, 28, 18, 0.08);
    --shadow-md: 0 4px 24px rgba(12, 28, 18, 0.10);
    --shadow-lg: 0 8px 48px rgba(12, 28, 18, 0.14);
    --shadow-xl: 0 16px 80px rgba(12, 28, 18, 0.18);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 100px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --duration: 0.26s;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-display: 'DM Serif Display', Georgia, serif;
    --container: 1240px;
    --ticker-h: 36px;
    --header-h: 72px;
    --top-h: calc(var(--ticker-h) + var(--header-h));
}

[data-theme="dark"] {
    --primary: #2A5240;
    --primary-light: #3A6852;
    --primary-dark: #1C3A2B;
    --white: #0C1210;
    --off-white: #111816;
    --gray-50: #141C18;
    --gray-100: #1A2420;
    --gray-200: #222E28;
    --gray-300: #324038;
    --gray-400: #546058;
    --gray-500: #869A88;
    --gray-600: #AABCAE;
    --gray-700: #CCDACE;
    --gray-800: #E8F0EA;
    --text: #E8F0EA;
    --text-light: #AABCAE;
    --text-muted: #869A88;
    --border: #222E28;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.25);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.55);
    --shadow-xl: 0 16px 80px rgba(0, 0, 0, 0.65);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration) var(--ease);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
}

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

.section {
    padding: 96px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    line-height: 1.12;
    color: var(--text);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 560px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--primary);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all var(--duration) var(--ease);
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 58, 43, 0.30);
}

.btn-primary .material-icons-round {
    font-size: 17px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: var(--primary);
    padding: 11px 22px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid currentColor;
    transition: all var(--duration) var(--ease);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--duration) var(--ease);
}

.btn-accent:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 146, 42, 0.32);
}

.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    padding: 11px 22px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    transition: all var(--duration) var(--ease);
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.45);
}

.site-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.ticker-bar {
    height: var(--ticker-h);
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    overflow: hidden;
    user-select: none;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 18px;
    background: var(--accent);
    height: 100%;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-label .material-icons-round {
    font-size: 14px;
}

.ticker-track-wrapper {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    align-items: center;
    animation: ticker 38s linear infinite;
    will-change: transform;
}

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

@keyframes ticker {
    from {
        transform: translateX(0);
    }

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

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.80);
    padding: 0 28px;
    white-space: nowrap;
}

.ticker-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.site-header {
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--duration) var(--ease);
}

[data-theme="dark"] .site-header {
    background: rgba(12, 18, 16, 0.96);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 24px;
}

.header-logo img {
    height: 46px;
    width: auto;
}

.header-nav ul {
    display: flex;
    align-items: center;
    gap: 2px;
}

.header-nav ul li a {
    display: block;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    transition: all var(--duration) var(--ease);
}

.header-nav ul li a:hover {
    color: var(--primary);
    background: var(--gray-100);
}

.header-nav ul li a.active {
    color: var(--primary);
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: var(--gray-100);
    transition: all var(--duration) var(--ease);
}

.theme-toggle:hover {
    background: var(--gray-200);
    color: var(--primary);
}

.theme-toggle .material-icons-round {
    font-size: 19px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    gap: 5px;
    border-radius: 50%;
    background: var(--gray-100);
    transition: background var(--duration) var(--ease);
}

.hamburger span {
    display: block;
    width: 17px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--duration) var(--ease);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    backdrop-filter: blur(3px);
}

.nav-overlay.active {
    display: block;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary-dark);
    overflow: hidden;
    padding-top: var(--top-h);
}

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

.hero-media video,
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(115deg, rgba(8, 18, 12, 0.94) 0%, rgba(20, 50, 34, 0.72) 50%, rgba(8, 18, 12, 0.50) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 72px 0 88px;
}

.hero-inner {
    max-width: 760px;
    padding-left: clamp(24px, 7vw, 108px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(200, 146, 42, 0.14);
    border: 1px solid rgba(200, 146, 42, 0.32);
    color: #E2B455;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 28px;
}

.hero-badge .material-icons-round {
    font-size: 14px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 82px);
    font-weight: 400;
    color: #fff;
    line-height: 1.06;
    margin-bottom: 22px;
}

.hero-title em {
    color: var(--accent-light);
    font-style: italic;
}

.hero-desc {
    font-size: clamp(15px, 1.6vw, 17px);
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-actions .btn-accent {
    font-size: 15px;
    padding: 14px 30px;
}

.hero-divider {
    width: 100%;
    max-width: 480px;
    height: 1px;
    background: rgba(255, 255, 255, 0.10);
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 400;
    color: var(--accent-light);
    line-height: 1;
}

.hero-stat span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.48);
    margin-top: 5px;
    letter-spacing: 0.04em;
}

.ticker-strip {
    background: var(--primary);
}

.ticker-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ticker-strip-item {
    padding: 28px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    transition: background var(--duration) var(--ease);
}

.ticker-strip-item:last-child {
    border-right: none;
}

.ticker-strip-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.ticker-strip-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.ticker-strip-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.48);
}

.products-section {
    background: var(--off-white);
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 20px;
    flex-wrap: wrap;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--duration) var(--ease);
    box-shadow: var(--shadow-xs);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--gray-100);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease);
}

.product-card:hover .product-card-img img {
    transform: scale(1.06);
}

.product-card-body {
    padding: 20px;
}

.product-card-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 7px;
}

.product-card-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 7px;
}

.product-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
}

.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 52px;
}

.service-card {
    padding: 36px 28px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon .material-icons-round {
    color: #fff;
    font-size: 24px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 18px;
}

.service-card ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-card ul li {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card ul li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.about-section {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
}

.about-img-wrapper img {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
}

.about-badge {
    position: absolute;
    bottom: 24px;
    left: -24px;
    background: var(--primary);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.about-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 400;
    color: var(--accent-light);
}

.about-badge span {
    font-size: 11px;
    opacity: 0.70;
    letter-spacing: 0.06em;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

.about-feature .material-icons-round {
    color: var(--primary);
    font-size: 17px;
}

.blog-section {
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.blog-card {
    background: var(--off-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--duration) var(--ease);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--gray-100);
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 26px;
}

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

.blog-card-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-pale);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.blog-card-date {
    font-size: 12px;
    color: var(--text-muted);
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.32;
    margin-bottom: 10px;
    transition: color var(--duration) var(--ease);
}

.blog-card:hover .blog-card-title {
    color: var(--primary);
}

.blog-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 18px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.blog-card-link .material-icons-round {
    font-size: 15px;
    transition: transform var(--duration) var(--ease);
}

.blog-card:hover .blog-card-link .material-icons-round {
    transform: translateX(4px);
}

.cta-section {
    background: var(--primary-dark);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 146, 42, 0.10) 0%, transparent 65%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -300px;
    left: -150px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 82, 64, 0.35) 0%, transparent 65%);
    pointer-events: none;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 400;
    color: #fff;
    line-height: 1.14;
    margin-bottom: 16px;
}

.cta-inner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.site-footer {
    background: var(--gray-800);
}

[data-theme="dark"] .site-footer {
    background: #080C0A;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.8fr;
    gap: 48px;
    padding: 72px 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.75;
    color: var(--gray-500);
    margin: 16px 0 22px;
    max-width: 250px;
}

.footer-contact-row {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.footer-contact-row a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-500);
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--duration) var(--ease);
}

.footer-contact-row a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.footer-contact-row a .material-icons-round {
    font-size: 15px;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: var(--gray-500);
    transition: all var(--duration) var(--ease);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: var(--gray-500);
}

.footer-contact-list li .material-icons-round {
    font-size: 16px;
    color: var(--accent);
    margin-top: 1px;
    flex-shrink: 0;
}

.footer-contact-list li a {
    color: var(--gray-500);
}

.footer-contact-list li a:hover {
    color: var(--accent);
}

.footer-middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 16px;
    flex-wrap: wrap;
}

.footer-apps {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-apps-label {
    font-size: 11px;
    color: var(--gray-600);
    margin-right: 4px;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--gray-400);
    padding: 7px 13px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--duration) var(--ease);
}

.app-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.app-btn .material-icons-round {
    font-size: 15px;
}

.footer-legal {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 12px;
    color: var(--gray-600);
    transition: color var(--duration) var(--ease);
}

.footer-legal a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--gray-700);
}

.footer-credit a {
    color: var(--accent);
    font-weight: 600;
}

.footer-credit a:hover {
    color: var(--accent-light);
}

.review-nudge {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 8000;
    transform: translateY(16px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.review-nudge.visible {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

.review-nudge-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    width: 300px;
    overflow: hidden;
    position: relative;
}

.review-nudge-top {
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

.review-nudge-body {
    padding: 18px 18px 18px 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.review-nudge-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--accent-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-nudge-icon .material-icons-round {
    color: var(--accent);
    font-size: 22px;
}

.review-nudge-text {
    flex: 1;
}

.review-nudge-stars {
    display: flex;
    gap: 1px;
    margin-bottom: 6px;
}

.review-nudge-stars .material-icons-round {
    font-size: 14px;
    color: var(--accent);
}

.review-nudge-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.review-nudge-text p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.review-nudge-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    transition: all var(--duration) var(--ease);
}

.review-nudge-btn:hover {
    background: var(--primary-light);
}

.review-nudge-btn .material-icons-round {
    font-size: 13px;
    color: #fff;
}

.review-nudge-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    transition: background var(--duration) var(--ease);
}

.review-nudge-close:hover {
    background: var(--gray-200);
}

.review-nudge-close .material-icons-round {
    font-size: 13px;
    color: var(--text-muted);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--white);
    border-top: 2px solid var(--primary);
    box-shadow: 0 -6px 32px rgba(0, 0, 0, 0.10);
    padding: 16px 0;
}

.cookie-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 240px;
}

.cookie-text .material-icons-round {
    color: var(--accent);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 1px;
}

.cookie-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.cookie-text p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.btn-cookie-manage,
.btn-cookie-reject,
.btn-cookie-accept {
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    transition: all var(--duration) var(--ease);
}

.btn-cookie-manage {
    border: 1.5px solid var(--border);
    color: var(--text);
}

.btn-cookie-manage:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-cookie-reject {
    border: 1.5px solid var(--border);
    color: var(--text-muted);
}

.btn-cookie-reject:hover {
    border-color: #dc2626;
    color: #dc2626;
}

.btn-cookie-accept {
    background: var(--primary);
    color: #fff;
}

.btn-cookie-accept:hover {
    background: var(--primary-light);
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.cookie-modal-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.cookie-modal-header h3 {
    font-size: 16px;
    font-weight: 700;
}

.cookie-modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    transition: background var(--duration) var(--ease);
}

.cookie-modal-close:hover {
    background: var(--gray-200);
}

.cookie-modal-close .material-icons-round {
    font-size: 16px;
}

.cookie-modal-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.cookie-option strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}

.cookie-option p {
    font-size: 12px;
    color: var(--text-muted);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch span {
    position: absolute;
    inset: 0;
    background: var(--gray-300);
    border-radius: 100px;
    cursor: pointer;
    transition: background var(--duration) var(--ease);
}

.toggle-switch span::before {
    content: '';
    position: absolute;
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform var(--duration) var(--ease);
}

.toggle-switch input:checked+span {
    background: var(--primary);
}

.toggle-switch input:checked+span::before {
    transform: translateX(18px);
}

.toggle-switch.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.cookie-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.60s var(--ease-out), transform 0.60s var(--ease-out);
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

.fade-in-delay-1 {
    transition-delay: 0.08s;
}

.fade-in-delay-2 {
    transition-delay: 0.16s;
}

.fade-in-delay-3 {
    transition-delay: 0.24s;
}

.fade-in-delay-4 {
    transition-delay: 0.36s;
}

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .about-grid {
        gap: 48px;
    }

    .ticker-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 60px;
        --ticker-h: 32px;
    }

    .hamburger {
        display: flex;
    }

    .header-actions .header-cta {
        display: none;
    }

    .header-nav {
        position: fixed;
        top: var(--top-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        z-index: 999;
        padding: 28px 20px;
        transform: translateX(-100%);
        transition: transform var(--duration) var(--ease);
        overflow-y: auto;
    }

    [data-theme="dark"] .header-nav {
        background: var(--white);
    }

    .header-nav ul li a {
        color: var(--text) !important;
        background: transparent;
    }

    .header-nav ul li a.active {
        color: var(--primary) !important;
        background: var(--gray-100);
    }

    .header-nav.active {
        transform: translateX(0);
    }

    .header-nav ul {
        flex-direction: column;
        gap: 3px;
    }

    .header-nav ul li a {
        padding: 13px 16px;
        font-size: 16px;
        border-radius: var(--radius-sm);
        display: block;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-badge {
        left: 14px;
    }

    .services-grid,
    .products-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 44px 0 28px;
    }

    .footer-middle {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats {
        gap: 24px;
    }

    .cookie-inner {
        flex-direction: column;
    }

    .review-nudge {
        right: 14px;
        left: 14px;
        bottom: 76px;
    }

    .review-nudge-card {
        width: 100%;
    }

    .ticker-strip-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .ticker-strip-inner {
        grid-template-columns: 1fr;
    }

    .cookie-actions {
        flex-wrap: wrap;
    }
}


.ust-serit {
    margin-top: var(--top-h);
    padding: 34px 0 30px;
    background: var(--gray-100);
    overflow: hidden;
    border-bottom: 1px solid rgba(200,146,42,0.18);
}

.ust-serit-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: ust-serit-akis 50s linear infinite;
}

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

.ust-serit-track img {
    flex: 0 0 auto;
    width: 250px;
    height: 168px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-md);
    margin-right: 18px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 14px rgba(0,0,0,0.10);
    background: var(--white);
}

@keyframes ust-serit-akis {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .ust-serit-track { animation: none; }
}

.dokum-3d {
    position: relative;
    height: 520px;
    background: var(--primary-dark);
    overflow: hidden;
}

.dokum-3d canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.dokum-3d-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 24px;
    pointer-events: none;
}

.dokum-3d-text {
    max-width: 460px;
    color: #fff;
}

.dokum-3d-text .section-label {
    color: rgba(200,146,42,0.95);
}

.dokum-3d-text h2 {
    font-size: clamp(28px, 4.5vw, 44px);
    margin: 10px 0 14px;
    color: #fff;
}

.dokum-3d-text p:last-child {
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .dokum-3d {
        height: 580px;
    }
    .dokum-3d-content {
        align-items: flex-start;
        padding-top: 44px;
        text-align: center;
        justify-content: center;
    }
    .ust-serit-track img {
        width: 200px;
        height: 134px;
    }
}
