/* Shared foundation extracted from meta.asp */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #cc0000;
    --secondary-color: #1a1a1a;
    --dark: #0f0f0f;
    --light: #f5f5f5;
    --white: #ffffff;
    --gray: #666666;
    --border: #e1e1e1;
    --shadow: rgba(0, 0, 0, 0.2);
    --shadow-hover: rgba(204, 0, 0, 0.4);
    --accent-red: #ff0000;
    --noble-black: #121212;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    overflow-x: clip !important;
    overscroll-behavior-x: none;
}

html.lightbox-open {
    overflow: hidden !important;
}

body.lightbox-open {
    padding-right: var(--lightbox-scrollbar-gap, 0px) !important;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    color: var(--white);
    padding: 0;
    font-size: 14px;
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.top-bar::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.top-bar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
}

.top-bar-item {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    transition: all 0.3s;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.top-bar-item:last-child {
    border-right: none;
}

.top-bar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(204, 0, 0, 0.3), transparent);
    transition: left 0.5s;
}

.top-bar-item:hover::before {
    left: 100%;
}

.top-bar-item:hover {
    background: var(--primary-color);
}

.top-bar-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 4px solid var(--primary-color);
}

header.scrolled {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 95px;
}

.logo {
    position: relative;
    z-index: 10;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.logo:hover::after {
    width: 100%;
}

.logo img {
    height: 45px;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 8px rgba(204, 0, 0, 0.3));
}

.logo:hover img {
    transform: scale(1.05);
}

/* Navigation */
nav {
    display: flex;
    gap: 0;
    flex: 1;
    justify-content: center;
}

nav > ul {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

nav > ul > li {
    position: relative;
}

nav > ul > li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 24px;
    width: 1px;
    background: rgba(204, 0, 0, 0.15);
}

nav > ul > li > a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

nav > ul > li > a div {
    font-size: 14px;
    font-weight: 700;
}

nav > ul > li > a span {
    font-size: 10px;
    font-weight: 400;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav > ul > li > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

nav > ul > li > a:hover::before,
nav > ul > li.active > a::before {
    width: 80%;
}

nav > ul > li > a:hover {
    color: var(--primary-color);
}

nav > ul > li > a:hover span {
    color: var(--primary-color);
}

/* Dropdown Menu */
nav > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-color);
    border-radius: 0 0 8px 8px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    z-index: 1000;
}

nav > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

nav > ul > li > ul li {
    border-bottom: 1px solid var(--border);
    list-style: none;
    margin: 0;
    padding: 0;
}

nav > ul > li > ul li:last-child {
    border-bottom: none;
}

nav > ul > li > ul li a {
    padding: 14px 24px;
    font-size: 14px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    text-decoration: none;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

nav > ul > li > ul li a:hover {
    background: var(--light);
    padding-left: 34px;
    color: var(--primary-color);
}

nav > ul > li > ul li a i {
    font-size: 12px;
    transition: transform 0.3s;
    color: var(--primary-color);
}

nav > ul > li > ul li a:hover i {
    transform: translateX(5px);
}

/* Mobile Menu - Hamburger İkon */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    background: linear-gradient(135deg, var(--white), #f8f8f8);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--border);
}

.menu-toggle:hover {
    background: linear-gradient(135deg, var(--primary-color), #ff0000);
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.3);
}

.menu-toggle:hover span {
    background: var(--white);
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
    position: absolute;
}

.menu-toggle span:nth-child(1) {
    top: 14px;
}

.menu-toggle span:nth-child(2) {
    top: 22px;
}

.menu-toggle span:nth-child(3) {
    top: 30px;
}

.menu-toggle.active {
    background: linear-gradient(135deg, var(--primary-color), #ff0000);
    border-color: var(--primary-color);
}

.menu-toggle.active span {
    background: var(--white);
}

.menu-toggle.active span:nth-child(1) {
    top: 22px;
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    top: 22px;
    transform: rotate(-45deg);
}

/* Content */
.content-section {
    padding: 80px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 6px 35px rgba(37, 211, 102, 0.8);
    }
}

/* Resim */
.content-box img#resimx {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 5px auto;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #990000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--shadow-hover);
    z-index: 998;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Footer */
footer {
    background: #000000;
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(204, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 40%, rgba(255, 0, 0, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(204, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 90%, rgba(255, 0, 0, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #000000 50%, #0a0a0a 100%);
    opacity: 1;
    z-index: 0;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 25%, 
        #ff0000 50%, 
        var(--primary-color) 75%, 
        transparent 100%
    );
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.5);
    z-index: 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-section h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    text-shadow: 0 2px 8px rgba(204, 0, 0, 0.3);
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff0000);
    box-shadow: 0 0 10px rgba(204, 0, 0, 0.5);
}

.footer-logo {
    max-width: 240px;
    margin-bottom: 25px;
    filter: brightness(1.2) drop-shadow(0 4px 12px rgba(204, 0, 0, 0.3));
}

.footer-info {
    line-height: 2;
    font-size: 14px;
}

.footer-info svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-color);
    vertical-align: middle;
    margin-right: 8px;
    filter: drop-shadow(0 2px 4px rgba(204, 0, 0, 0.4));
}

.footer-info a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-info a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(204, 0, 0, 0.6);
}

.quick-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(204, 0, 0, 0.6);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 10px;
    text-shadow: 0 0 8px rgba(204, 0, 0, 0.5);
}

.footer-section ul li a::before {
    content: '▸';
    color: var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(204, 0, 0, 0.4));
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.copyright-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-methods span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.payment-icon {
    width: 48px;
    height: 32px;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .header-content {
        padding: 0 20px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 95px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    nav.active {
        max-height: 1000px;
        overflow-y: auto;
    }
    
    nav > ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    nav > ul > li::after {
        display: none;
    }
    
    nav > ul > li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }
    
    nav > ul > li:last-child {
        border-bottom: none;
    }
    
    nav > ul > li > a {
        padding: 15px 10px;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    nav > ul > li > a div {
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    nav > ul > li > a span {
        font-size: 11px;
    }
    
    nav > ul > li > ul {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
        margin-top: 0;
        border-radius: 8px;
        margin-left: -20px;
        margin-right: -20px;
    }
    
    nav > ul > li.submenu-open > ul {
        max-height: 1200px;
        padding: 15px 0 15px 25px;
        margin-top: 10px;
    }
    
    nav > ul > li > ul li {
        border-bottom: 1px solid rgba(204, 0, 0, 0.1);
    }
    
    nav > ul > li > ul li:last-child {
        border-bottom: none;
    }
    
    nav > ul > li > ul li a {
        padding: 14px 20px;
        font-size: 13px;
        font-weight: 500;
        color: var(--secondary-color);
    }
    
    nav > ul > li > ul li a:hover {
        background: rgba(204, 0, 0, 0.08);
        padding-left: 30px;
        color: var(--primary-color);
    }
    
    nav > ul > li.has-submenu > a::after {
        content: '▼';
        font-size: 12px;
        margin-left: auto;
        transition: transform 0.3s ease;
        color: var(--primary-color);
        font-weight: bold;
    }
    
    nav > ul > li.has-submenu.submenu-open > a::after {
        transform: rotate(180deg);
    }

    /* Mobil Nav Başlık Stili */
    nav > ul > li > a span {
        display: none;
    }

    nav > ul > li > a {
        padding: 16px 15px;
        font-size: 13px;
    }

    nav > ul > li > a div {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    /* Mobil Top Bar Optimize */
    .top-bar .container {
        padding: 0 12px;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .top-bar-item {
        padding: 10px 12px;
        font-size: 11px;
        gap: 6px;
        border-right: none;
        flex: 0 1 auto;
        min-width: fit-content;
    }

    .top-bar-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .top-bar-icon {
        width: 16px;
        height: 16px;
    }
}

/* Responsive - Mobil */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }

    /* Mobil Top Bar */
    .top-bar .container {
        padding: 10px 8px;
        gap: 0;
    }
    
    .top-bar-item {
        padding: 8px 10px;
        font-size: 10px;
        gap: 5px;
        flex: 1;
        justify-content: center;
        min-width: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .top-bar-item:last-child {
        border-right: none !important;
    }

    .top-bar-icon {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
    }

    .top-bar-item:nth-child(1),
    .top-bar-item:nth-child(3) {
        display: flex;
        white-space: nowrap;
    }

    /* Mobil Menü - Alt başlıkları gizle */
    nav > ul > li > a span {
        display: none !important;
    }
}

/* Responsive - Küçük Mobil */
@media (max-width: 480px) {
    /* Top Bar - Icon Only */
    .top-bar .container {
        padding: 8px 4px;
        gap: 0;
    }
    
    .top-bar-item {
        padding: 8px 8px;
        font-size: 0;
        gap: 0;
        flex: 1;
        justify-content: center;
        align-items: center;
        min-width: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .top-bar-item:last-child {
        border-right: none !important;
    }

    .top-bar-icon {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }

    /* Tooltip Text on Hover for Mobile */
    .top-bar-item::after {
        content: attr(data-label);
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--primary-color);
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 11px;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s;
        z-index: 1001;
    }

    .content-box img#resimx {
        max-width: 100%;
        height: auto;
    }

    .container {
        padding: 0 15px;
    }

    /* Mobil Nav - Başlıkları ve Açıklamaları Gizle */
    nav > ul > li > a {
        padding: 14px 12px;
        font-size: 12px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 0;
    }

    nav > ul > li > a div {
        font-size: 12px;
        font-weight: 600;
    }

    nav > ul > li > a span {
        display: none;
    }
}

/* Rota Reklam — ortak kurumsal tasarım sistemi */
:root {
  --rr-red: #e21d2f;
  --rr-red-dark: #b70f1f;
  --rr-ink: #101114;
  --rr-ink-soft: #202227;
  --rr-muted: #686b73;
  --rr-line: #e7e8eb;
  --rr-surface: #f5f6f8;
  --rr-white: #fff;
  --rr-radius-sm: 10px;
  --rr-radius: 18px;
  --rr-radius-lg: 28px;
  --rr-shadow: 0 18px 50px rgba(16, 17, 20, .08);
  --rr-shadow-hover: 0 24px 70px rgba(16, 17, 20, .14);
  --primary-color: var(--rr-red);
  --secondary-color: var(--rr-ink);
  --dark: var(--rr-ink);
  --light: var(--rr-surface);
  --gray: var(--rr-muted);
  --border: var(--rr-line);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  color: var(--rr-ink);
  background: var(--rr-white);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(226, 29, 47, .32);
  outline-offset: 3px;
}

/* İçerik JS çalışmasa veya tam sayfa render alınsa da görünür kalır. */
.fade-in-up {
  opacity: 1 !important;
  transform: none !important;
}

.skip-link {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--rr-ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container,
.header-content,
.footer-content {
  width: min(1180px, calc(100% - 48px));
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 0;
}

/* Üst bilgi ve navigasyon */
.top-bar {
  min-height: 38px;
  background: var(--rr-ink);
  border-bottom: 0;
}

.top-bar .container {
  min-height: 38px;
  justify-content: flex-end;
}

.top-bar-item {
  min-height: 38px;
  padding: 0 14px;
  color: rgba(255, 255, 255, .82);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .01em;
  border-color: rgba(255, 255, 255, .1);
}

.top-bar-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.top-bar-icon {
  width: 15px;
  height: 15px;
  color: var(--rr-red);
}

#header {
  min-height: 82px;
  height: 82px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--rr-line);
  box-shadow: none;
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}

#header.scrolled {
  box-shadow: 0 10px 30px rgba(16, 17, 20, .08);
}

.header-content {
  min-height: 82px;
  height: 82px;
}

.logo img {
  width: 207px;
  max-height: 48px;
  filter: none;
}

nav > ul {
  gap: 2px;
}

nav > ul > li::after {
  display: none;
}

nav > ul > li > a {
  position: relative;
  min-height: 82px;
  padding: 0 14px;
  justify-content: center;
  border-radius: 0;
}

nav > ul > li > a::before {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 0;
  left: 14px;
  height: 3px;
  background: var(--rr-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

nav > ul > li:hover > a::before,
nav > ul > li > a:focus-visible::before {
  transform: scaleX(1);
}

nav > ul > li > a div {
  color: var(--rr-ink);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .055em;
}

nav > ul > li > a span {
  margin-top: 3px;
  color: #92949a;
  font-size: 8px;
  letter-spacing: .12em;
}

nav > ul > li > ul {
  top: 75px;
  min-width: 255px;
  padding: 8px;
  background: rgba(17, 18, 21, .98);
  border: 1px solid rgba(255, 255, 255, .08);
  border-top: 3px solid var(--rr-red);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .22);
}

nav > ul > li > ul li a {
  padding: 11px 12px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  border-radius: 8px;
}

nav > ul > li > ul li a:hover {
  padding-left: 16px;
  color: #fff;
  background: rgba(226, 29, 47, .16);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff;
}

/* Ana hero — kasıtlı olarak daha kısa */
.hero-slider {
  height: clamp(250px, 25vw, 360px) !important;
  min-height: 250px !important;
  max-height: 360px !important;
  background: #111319;
  border-bottom: 0 !important;
}

.hero-slider::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, .18), transparent 34%, transparent 72%, rgba(0, 0, 0, .08));
}

.hero-slider .slider-wrapper,
.hero-slider .slide,
.hero-slider .slide a {
  height: 100% !important;
  min-height: 100% !important;
}

.hero-slider .slider-wrapper,
.hero-slider .slide {
  position: absolute !important;
  inset: 0 !important;
}

.hero-slider .slide img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

.slider-controls {
  display: none !important;
}

.hero-brandline {
  position: absolute;
  z-index: 6;
  left: max(24px, calc((100vw - 1180px) / 2));
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(610px, calc(100% - 160px));
  padding: 10px 14px;
  color: #fff;
  background: rgba(15, 16, 19, .88);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 11px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .24);
  backdrop-filter: blur(10px);
}

.hero-brandline::before {
  content: "";
  width: 4px;
  height: 34px;
  flex: 0 0 4px;
  background: var(--rr-red);
  border-radius: 10px;
}

.hero-brandline h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(15px, 1.55vw, 21px);
  font-weight: 720;
  line-height: 1.25;
  letter-spacing: -.02em;
  text-transform: none;
}

.hero-brandline span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, .66);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.slider-arrow {
  z-index: 7;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(16, 17, 20, .78);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: none;
}

.slider-arrow.prev { left: 18px; }
.slider-arrow.next { right: 18px; }

.slider-arrow:hover {
  background: var(--rr-red);
  border-color: var(--rr-red);
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 10px 30px rgba(226, 29, 47, .3);
}

/* Güven göstergeleri */
.trust-section {
  padding: 30px 0 !important;
  background: var(--rr-ink) !important;
}

.trust-section::before,
.trust-section::after {
  display: none;
}

.trust-grid {
  gap: 0 !important;
}

.trust-item {
  min-height: 92px;
  padding: 12px 22px !important;
  display: grid !important;
  grid-template-columns: 34px 1fr;
  grid-template-rows: 1fr 1fr;
  column-gap: 12px;
  align-items: center;
  background: transparent !important;
  border: 0 !important;
  border-right: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.trust-item:last-child {
  border-right: 0 !important;
}

.trust-icon {
  grid-row: 1 / 3;
  width: 32px !important;
  height: 32px !important;
  margin: 0 !important;
  color: #fff;
  font-size: 14px !important;
  background: var(--rr-red) !important;
  box-shadow: none !important;
}

.trust-number {
  align-self: end;
  color: #fff !important;
  font-size: 22px !important;
  line-height: 1 !important;
  text-align: left;
  text-shadow: none !important;
}

.trust-label {
  align-self: start;
  color: rgba(255, 255, 255, .56) !important;
  font-size: 9px !important;
  letter-spacing: .1em !important;
  text-align: left;
}

/* Bölümler ve kartlar */
section:not(.trust-section),
.info-section,
.about-content,
.contact-content,
.category-content,
.product-content {
  padding-block: clamp(54px, 6vw, 84px) !important;
}

.section-title {
  margin-bottom: 36px !important;
  text-align: left !important;
}

.section-title h2,
.main-title {
  color: var(--rr-ink) !important;
  font-size: clamp(28px, 3vw, 42px) !important;
  font-weight: 760 !important;
  letter-spacing: -.045em !important;
  line-height: 1.08 !important;
}

.section-title h2::after {
  left: 0 !important;
  width: 46px !important;
  height: 3px !important;
  transform: none !important;
  background: var(--rr-red) !important;
  box-shadow: none !important;
}

.services-grid {
  gap: 22px !important;
}

.service-card,
.product-card,
.category-card {
  overflow: hidden;
  background: #fff !important;
  border: 1px solid var(--rr-line) !important;
  border-radius: var(--rr-radius) !important;
  box-shadow: 0 8px 30px rgba(16, 17, 20, .055) !important;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease !important;
}

.service-card:hover,
.product-card:hover,
.category-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(226, 29, 47, .22) !important;
  box-shadow: var(--rr-shadow-hover) !important;
}

.service-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .7, .2, 1);
}

.service-card:hover .service-image img {
  transform: scale(1.045);
}

.service-overlay {
  background: linear-gradient(180deg, transparent 58%, rgba(16, 17, 20, .42)) !important;
}

.overlay-text {
  display: none !important;
}

.service-content {
  padding: 20px !important;
}

.service-content h3 {
  min-height: 38px;
  color: var(--rr-ink) !important;
  font-size: 14px !important;
  letter-spacing: .01em;
}

.service-link {
  width: auto !important;
  padding: 0 !important;
  color: var(--rr-red) !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 10px !important;
  letter-spacing: .08em;
}

.service-link:hover {
  transform: none !important;
  color: var(--rr-red-dark) !important;
}

.info-section {
  background: #fff !important;
}

.info-section:nth-of-type(even) {
  background: var(--rr-surface) !important;
}

.info-content {
  max-width: 1040px !important;
  margin-inline: auto;
}

.agency-card,
.content-box,
.contact-card,
.map-container,
.product-detail {
  border: 1px solid var(--rr-line) !important;
  border-radius: var(--rr-radius-lg) !important;
  box-shadow: var(--rr-shadow) !important;
}

.agency-card {
  overflow: hidden;
  padding: 42px 46px !important;
  background: var(--rr-ink) !important;
}

.agency-card .top-accent {
  width: 56px !important;
  height: 3px !important;
  left: 46px !important;
  background: var(--rr-red) !important;
}

.agency-card h2 {
  font-size: clamp(25px, 3vw, 36px) !important;
  letter-spacing: -.035em !important;
}

.agency-card p {
  max-width: 760px;
  color: rgba(255, 255, 255, .62) !important;
}

.quote-box {
  border-left-color: var(--rr-red) !important;
  border-radius: 0 var(--rr-radius-sm) var(--rr-radius-sm) 0 !important;
  box-shadow: none !important;
}

/* İç sayfa hero alanı */
.page-header {
  min-height: 176px;
  padding: 48px 0 !important;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 15% 0, rgba(226, 29, 47, .18), transparent 34%),
    linear-gradient(120deg, #16171b, #0d0e10) !important;
}

.page-header::before {
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgba(255, 255, 255, .035) 50%, transparent 50.2%) !important;
  background-size: 54px 54px !important;
}

.page-title {
  font-size: clamp(32px, 4vw, 50px) !important;
  font-weight: 760 !important;
  letter-spacing: -.04em !important;
  text-shadow: none !important;
  text-transform: none !important;
}

.breadcrumb-nav {
  padding: 14px 0 !important;
  border-bottom: 1px solid var(--rr-line) !important;
  box-shadow: none !important;
}

.breadcrumb {
  gap: 10px !important;
  font-size: 12px;
}

.breadcrumb li {
  gap: 10px !important;
}

.breadcrumb li:not(:last-child)::after {
  content: "/" !important;
  color: #b3b5ba !important;
}

.content-box {
  padding: clamp(28px, 5vw, 62px) !important;
}

.content-box img#resimx {
  width: 100%;
  margin-bottom: 34px;
  border-radius: var(--rr-radius);
}

/* Footer ve sabit aksiyonlar */
footer {
  padding-top: 66px !important;
  background: #0e0f12 !important;
}

footer::before {
  opacity: .28 !important;
}

footer::after {
  height: 3px !important;
  background: var(--rr-red) !important;
  box-shadow: none !important;
}

.footer-grid {
  grid-template-columns: 1.25fr 1fr 1.2fr .8fr !important;
  gap: 42px !important;
  margin-bottom: 48px !important;
}

.footer-logo {
  max-width: 185px !important;
  filter: none !important;
}

.footer-section h4 {
  font-size: 14px !important;
  text-shadow: none !important;
}

.footer-section h4::after {
  width: 32px !important;
  height: 2px !important;
  box-shadow: none !important;
}

.footer-section ul li {
  margin-bottom: 9px !important;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, .6) !important;
  font-size: 12px !important;
}

.footer-section ul li a::before {
  content: "—" !important;
  filter: none !important;
}

.footer-bottom {
  padding: 24px 0 !important;
}

.whatsapp-btn {
  right: 22px !important;
  bottom: 22px !important;
}

.whatsapp-float {
  width: 52px !important;
  height: 52px !important;
  box-shadow: 0 10px 28px rgba(18, 140, 126, .3) !important;
  animation: none !important;
}

.whatsapp-float svg {
  width: 27px !important;
  height: 27px !important;
}

.scroll-top {
  left: 22px !important;
  bottom: 22px !important;
  width: 44px !important;
  height: 44px !important;
  background: var(--rr-ink) !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .18) !important;
}

@media (max-width: 1100px) {
  nav > ul > li > a {
    padding-inline: 9px;
  }

  nav > ul > li > a div {
    font-size: 11px;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 1fr 1fr !important;
  }

  .footer-section:last-child {
    display: none;
  }
}

@media (max-width: 991px) {
  .container,
  .header-content,
  .footer-content {
    width: min(100% - 36px, 1180px);
  }

  #header,
  .header-content {
    height: 70px;
    min-height: 70px;
  }

  .logo img {
    width: 175px;
  }

  nav {
    top: 70px !important;
    border-top: 1px solid var(--rr-line);
  }

  nav > ul {
    padding: 10px 18px 20px !important;
  }

  nav > ul > li > a {
    min-height: 0;
  }

  .top-bar-item:first-child,
  .top-bar-item:nth-child(2) {
    display: none;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0 !important;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .12) !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 700px) {
  .top-bar .container {
    width: 100%;
    padding: 0 10px;
  }

  .top-bar-item {
    padding-inline: 10px !important;
  }

  .hero-slider {
    height: 225px !important;
    min-height: 225px !important;
  }

  .hero-brandline {
    right: 64px;
    bottom: 12px;
    left: 64px;
    max-width: none;
    padding: 8px 10px;
  }

  .hero-brandline h1 {
    font-size: 13px;
  }

  .hero-brandline span {
    display: none;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
  }

  .slider-arrow.prev { left: 12px; }
  .slider-arrow.next { right: 12px; }

  .trust-section {
    padding-block: 20px !important;
  }

  .trust-item {
    min-height: 78px;
    padding: 10px 12px !important;
  }

  .trust-number {
    font-size: 18px !important;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .service-content {
    padding: 14px !important;
  }

  .service-content h3 {
    font-size: 11px !important;
  }

  .agency-card {
    padding: 32px 24px !important;
  }

  .agency-card .top-accent {
    left: 24px !important;
  }

  .page-header {
    min-height: 128px;
    padding: 34px 0 !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}

/* 2026-07-29: seamless media, luminous identity and refined footer */
.content-box--corporate img,
.content-box--production img,
.content-box--corporate img#resimx,
.content-box--production img#resimx {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  margin: 30px 0 !important;
  object-fit: contain !important;
  border-radius: clamp(16px, 2vw, 24px) !important;
}

.content-box--corporate p:has(img),
.content-box--production p:has(img) {
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
}

.hero-slider .slide {
  z-index: 0 !important;
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity;
  transition:
    opacity .68s cubic-bezier(.22, .61, .36, 1),
    visibility 0s linear .68s !important;
}

.hero-slider .slide.active {
  z-index: 2 !important;
  opacity: 1 !important;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity .68s cubic-bezier(.22, .61, .36, 1),
    visibility 0s linear 0s !important;
}

.hero-slider .slide img,
.hero-slider .slide.active img {
  transform: none !important;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.slider-arrow {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, .22), transparent 38%),
    rgba(12, 13, 16, .72) !important;
  border: 1px solid rgba(255, 255, 255, .62) !important;
  box-shadow:
    0 15px 38px rgba(0, 0, 0, .28),
    inset 0 0 0 1px rgba(226, 29, 47, .56),
    0 0 0 5px rgba(12, 13, 16, .14) !important;
}

.slider-arrow::after {
  inset: 6px !important;
  border-radius: 50% !important;
  border-color: rgba(255, 255, 255, .16) !important;
}

.slider-arrow svg {
  width: 25px !important;
  height: 25px !important;
  fill: none !important;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider-arrow:hover {
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, .28), transparent 40%),
    rgba(226, 29, 47, .94) !important;
  border-color: #fff !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .3),
    inset 0 0 0 1px rgba(255, 255, 255, .28),
    0 0 0 6px rgba(226, 29, 47, .14) !important;
}

.logo {
  overflow: visible;
}

.logo img {
  animation: none !important;
  transform: translateZ(0);
  filter: drop-shadow(0 5px 13px rgba(20, 21, 24, .08)) !important;
}

.logo::before {
  inset: 18% 3% !important;
  opacity: .12;
  transform: none !important;
  animation: logoGlowBreath 8s ease-in-out infinite !important;
}

.logo::after {
  content: "" !important;
  position: absolute !important;
  z-index: 2;
  inset: 0 !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(108deg,
      transparent 31%,
      rgba(255, 255, 255, .05) 40%,
      rgba(255, 255, 255, .92) 49%,
      rgba(255, 86, 101, .72) 54%,
      transparent 66%) 180% 50% / 230% 100% no-repeat !important;
  -webkit-mask: url("../../upload/logo/rota-logo-black.svg") center / contain no-repeat;
  mask: url("../../upload/logo/rota-logo-black.svg") center / contain no-repeat;
  animation: logoLightSweep 8s cubic-bezier(.4, 0, .2, 1) infinite 1.2s;
}

@keyframes logoLightSweep {
  0%, 58%, 100% { opacity: 0; background-position: 180% 50%; }
  63% { opacity: .2; }
  72% { opacity: .82; }
  82% { opacity: 0; background-position: -80% 50%; }
}

@keyframes logoGlowBreath {
  0%, 58%, 100% { opacity: .08; filter: blur(14px); }
  72% { opacity: .44; filter: blur(18px); }
  84% { opacity: .1; filter: blur(14px); }
}

.product-image,
.gallery-image {
  background:
    linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, .82) 44%, transparent 60%) -180% 0 / 55% 100% no-repeat,
    linear-gradient(145deg, #eceef1, #f7f8fa);
}

img[data-lazy-src] {
  opacity: 0 !important;
}

.product-image img,
.gallery-image img {
  transition:
    opacity .32s ease,
    transform .55s var(--rr-ease) !important;
}

.product-image img.is-loaded,
.gallery-image img.is-loaded {
  opacity: 1 !important;
}

.product-card:not(.visible),
.gallery-item:not(.visible) {
  pointer-events: none;
}

footer {
  padding-top: 76px !important;
  background:
    radial-gradient(circle at 12% 10%, rgba(226, 29, 47, .14), transparent 23%),
    radial-gradient(circle at 88% 80%, rgba(226, 29, 47, .07), transparent 28%),
    linear-gradient(145deg, #111216 0%, #090a0d 58%, #101116 100%) !important;
}

footer::before {
  opacity: .16 !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px) !important;
  background-size: 54px 54px !important;
}

.footer-content {
  max-width: 1480px !important;
}

.footer-grid {
  gap: 20px !important;
  align-items: stretch;
}

footer .footer-section {
  min-width: 0;
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .014));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

footer .footer-section:first-child {
  background:
    radial-gradient(circle at 14% 8%, rgba(226, 29, 47, .12), transparent 40%),
    linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
}

footer .footer-section h4 {
  margin-bottom: 22px !important;
  color: rgba(255, 255, 255, .94) !important;
  letter-spacing: .015em;
}

footer .footer-section ul li a {
  min-height: 25px;
  line-height: 1.45;
}

.quick-stats {
  gap: 10px !important;
}

.quick-stats .stat-item {
  min-width: 105px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  background: rgba(255, 255, 255, .025);
}

.footer-bottom {
  margin-bottom: 22px;
  padding: 20px 22px !important;
  border: 1px solid rgba(255, 255, 255, .075) !important;
  border-radius: 18px;
  background: rgba(255, 255, 255, .025);
}

@media (max-width: 1100px) {
  footer .footer-section {
    padding: 25px 22px;
  }
}

@media (max-width: 700px) {
  .slider-arrow {
    width: 42px !important;
    height: 42px !important;
  }

  footer {
    padding-top: 54px !important;
  }

  footer .footer-section {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .footer-bottom {
    margin-bottom: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo::before,
  .logo::after {
    animation: none !important;
  }
}

/* Mobile navigation: keep long labels inside the menu card. */
@media (max-width: 991px) {
  #mainNav > ul > li > a {
    position: relative !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  #mainNav > ul > li.has-submenu > a {
    gap: 8px !important;
    padding-right: 42px !important;
    padding-left: 14px !important;
  }

  #mainNav > ul > li > a div {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    line-height: 1.2 !important;
    white-space: normal !important;
  }

  #mainNav > ul > li > a span {
    flex: 0 1 112px !important;
    min-width: 0 !important;
    max-width: 112px !important;
    margin: 0 !important;
    overflow-wrap: anywhere;
    text-align: right !important;
    line-height: 1.25 !important;
    white-space: normal !important;
  }

  #mainNav > ul > li.has-submenu > a span {
    flex-basis: 88px !important;
    max-width: 88px !important;
  }

  #mainNav > ul > li.has-submenu > a::after {
    right: 12px !important;
    width: 22px !important;
    text-align: center !important;
  }
}

@media (max-width: 430px) {
  #mainNav > ul > li.has-submenu > a div {
    font-size: 12px !important;
    letter-spacing: .025em !important;
  }
}

@media (max-width: 380px) {
  #mainNav > ul > li > a {
    gap: 9px !important;
    padding-left: 14px !important;
  }

  #mainNav > ul > li > a div {
    font-size: 12px !important;
    letter-spacing: .025em !important;
  }

  #mainNav > ul > li > a span {
    flex-basis: 88px !important;
    max-width: 88px !important;
    font-size: 8px !important;
  }

  #mainNav > ul > li.has-submenu > a span {
    flex-basis: 78px !important;
    max-width: 78px !important;
  }
}

/* App-like mobile navigation: one calm list with clear, inset separators. */
@media (max-width: 991px) {
  #mainNav > ul {
    gap: 0 !important;
    padding: 10px 14px 18px !important;
  }

  #mainNav > ul > li {
    position: relative;
    margin: 0 !important;
    border: 0 !important;
  }

  #mainNav > ul > li + li {
    border-top: 1px solid #e7e8ec !important;
  }

  #mainNav > ul > li > a {
    min-height: 66px !important;
    padding: 14px 12px !important;
    border: 0 !important;
    border-radius: 12px !important;
    -webkit-tap-highlight-color: transparent;
  }

  #mainNav > ul > li > a:active {
    color: var(--rr-red) !important;
    background: #fff4f5 !important;
    transform: scale(.988);
  }

  #mainNav > ul > li.submenu-open {
    padding-bottom: 8px;
  }

  #mainNav > ul > li.submenu-open + li {
    border-top-color: rgba(226, 29, 47, .16) !important;
  }
}

/* Cards are never hidden while their images are being loaded lazily. */
.products-grid .product-card,
.product-gallery .gallery-item,
.products-grid .product-card.visible,
.product-gallery .gallery-item.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Interaction reliability: closed mobile navigation must never be overridden. */
@media (max-width: 991px) {
  #header,
  .header-content {
    position: relative;
  }

  #mainNav {
    top: calc(100% + 1px) !important;
    right: 8px !important;
    left: 8px !important;
    width: auto !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    background: rgba(255, 255, 255, .985) !important;
    border: 1px solid rgba(16, 17, 20, .1);
    border-top: 2px solid var(--rr-red);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 24px 64px rgba(16, 17, 20, .18) !important;
    transition:
      max-height .38s cubic-bezier(.2, .7, .2, 1),
      opacity .22s ease,
      transform .32s cubic-bezier(.2, .7, .2, 1),
      visibility 0s linear .38s !important;
  }

  #mainNav.active {
    max-height: calc(100dvh - 112px) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      max-height .42s cubic-bezier(.2, .7, .2, 1),
      opacity .22s ease,
      transform .32s cubic-bezier(.2, .7, .2, 1),
      visibility 0s linear 0s !important;
  }

  body.menu-is-open {
    overflow: hidden;
  }

  #mainNav > ul > li > ul {
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
  }

  #mainNav > ul > li.submenu-open > ul {
    max-height: min(62dvh, 980px) !important;
    overflow-y: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
  }
}

/* Content remains readable even if observers are delayed or unavailable. */
.fade-in-up,
.motion-enabled .motion-item,
.motion-enabled .motion-item.is-visible {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.content-box--corporate p:has(img),
.content-box--production p:has(img) {
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
}

@media (max-width: 430px) {
  .container,
  .header-content,
  .footer-content {
    width: min(100% - 28px, 1180px);
  }

  .top-bar-item {
    font-size: 9px !important;
  }

  .top-bar-item:nth-child(3) {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
  }
}

/* 2026 premium responsive correction layer */
@media (min-width: 992px) {
  .container,
  .footer-content {
    width: min(1400px, calc(100% - 72px)) !important;
    max-width: 1400px !important;
  }

  .header-content {
    width: min(1480px, calc(100% - 64px)) !important;
    max-width: 1480px !important;
  }

  #header,
  .header-content {
    height: 92px !important;
    min-height: 92px !important;
  }

  .logo img {
    width: 225px !important;
    max-height: 54px !important;
  }

  #mainNav > ul {
    gap: 0 !important;
  }

  #mainNav > ul > li {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
  }

  #mainNav > ul > li:not(:last-child)::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    z-index: 3 !important;
    top: 50% !important;
    right: 0 !important;
    width: 1px !important;
    height: 34px !important;
    background: linear-gradient(180deg, transparent, #d9dade 24%, #d9dade 76%, transparent) !important;
    transform: translateY(-50%) !important;
  }

  #mainNav > ul > li > a {
    min-height: 92px !important;
    padding: 0 22px !important;
  }

  #mainNav > ul > li > a::before {
    right: 22px !important;
    left: 22px !important;
  }

  #mainNav > ul > li > a div {
    color: #16171a !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: .045em !important;
    line-height: 1.2 !important;
  }

  #mainNav > ul > li > a span {
    display: block !important;
    margin-top: 6px !important;
    color: #777a82 !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    letter-spacing: .13em !important;
    line-height: 1 !important;
  }

  #mainNav > ul > li > ul {
    top: 86px !important;
  }

  .hero-slider {
    height: min(26.0416667vw, 500px) !important;
    min-height: 280px !important;
    max-height: 500px !important;
  }

  .hero-slider .slide img {
    object-fit: cover !important;
  }

  .hero-brandline {
    left: max(36px, calc((100vw - 1400px) / 2)) !important;
    bottom: 24px !important;
    padding: 13px 17px !important;
    border-radius: 13px !important;
  }

  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .info-content {
    max-width: 1180px !important;
  }
}

@media (min-width: 992px) and (max-width: 1260px) {
  .header-content {
    width: calc(100% - 36px) !important;
  }

  .logo img {
    width: 190px !important;
  }

  #mainNav > ul > li > a {
    padding-inline: 13px !important;
  }

  #mainNav > ul > li > a::before {
    right: 13px !important;
    left: 13px !important;
  }

  #mainNav > ul > li > a div {
    font-size: 11px !important;
  }

  #mainNav > ul > li > a span {
    font-size: 8px !important;
  }
}

@media (max-width: 991px) {
  body.menu-is-open {
    overflow: hidden !important;
  }

  .top-bar {
    min-height: 36px !important;
  }

  .top-bar .container {
    min-height: 36px !important;
  }

  #header {
    position: sticky !important;
    z-index: 1000 !important;
    top: 0 !important;
    height: 74px !important;
    min-height: 74px !important;
    background: rgba(255, 255, 255, .98) !important;
    border-bottom: 1px solid #e4e5e8 !important;
    box-shadow: 0 8px 26px rgba(16, 17, 20, .08) !important;
  }

  .header-content {
    width: calc(100% - 28px) !important;
    height: 74px !important;
    min-height: 74px !important;
    padding: 0 !important;
  }

  .logo img {
    width: clamp(158px, 42vw, 190px) !important;
    max-height: 48px !important;
  }

  .menu-toggle {
    position: relative !important;
    display: flex !important;
    flex: 0 0 46px !important;
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    background: #131418 !important;
    border: 1px solid #131418 !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 22px rgba(16, 17, 20, .16) !important;
  }

  .menu-toggle span {
    left: 10px !important;
    width: 24px !important;
    height: 2px !important;
    background: #fff !important;
  }

  .menu-toggle span:nth-child(1) { top: 14px !important; }
  .menu-toggle span:nth-child(2) { top: 21px !important; }
  .menu-toggle span:nth-child(3) { top: 28px !important; }
  .menu-toggle.active span:nth-child(1) { top: 21px !important; }
  .menu-toggle.active span:nth-child(3) { top: 21px !important; }

  #mainNav {
    position: absolute !important;
    z-index: 999 !important;
    top: 74px !important;
    right: 12px !important;
    left: 12px !important;
    width: auto !important;
    max-height: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    visibility: hidden !important;
    background: rgba(255, 255, 255, .99) !important;
    border: 1px solid rgba(16, 17, 20, .09) !important;
    border-radius: 18px !important;
    box-shadow: 0 28px 80px rgba(16, 17, 20, .28) !important;
    transform: translateY(-10px) !important;
    transition: opacity .25s ease, transform .25s ease, max-height .35s ease, visibility .25s ease !important;
  }

  #mainNav.active {
    max-height: calc(100dvh - 92px) !important;
    overflow-y: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  #mainNav > ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
    padding: 10px !important;
  }

  #mainNav > ul > li {
    display: block !important;
    width: 100% !important;
    border: 0 !important;
    border-bottom: 1px solid #eceef1 !important;
  }

  #mainNav > ul > li:last-child {
    border-bottom: 0 !important;
  }

  #mainNav > ul > li::after {
    display: none !important;
  }

  #mainNav > ul > li > a {
    display: flex !important;
    width: 100% !important;
    min-height: 58px !important;
    padding: 12px 14px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    border-radius: 11px !important;
  }

  #mainNav > ul > li > a::before {
    display: none !important;
  }

  #mainNav > ul > li > a:hover,
  #mainNav > ul > li.submenu-open > a {
    background: #f5f6f8 !important;
  }

  #mainNav > ul > li > a div {
    color: #15161a !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: .04em !important;
  }

  #mainNav > ul > li > a span {
    display: block !important;
    margin: 0 26px 0 auto !important;
    color: #8a8d94 !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    letter-spacing: .09em !important;
  }

  #mainNav > ul > li.has-submenu > a::after {
    content: "+" !important;
    position: absolute !important;
    right: 16px !important;
    color: var(--rr-red) !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    transform: none !important;
  }

  #mainNav > ul > li.has-submenu.submenu-open > a::after {
    content: "−" !important;
  }

  #mainNav > ul > li.has-submenu:not(.submenu-open) > ul {
    display: none !important;
  }

  #mainNav > ul > li.has-submenu.submenu-open > ul {
    position: static !important;
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    max-height: none !important;
    margin: 0 8px 10px !important;
    padding: 7px !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: #f4f5f7 !important;
    border: 0 !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    transform: none !important;
  }

  #mainNav > ul > li > ul li {
    border-bottom: 1px solid #e5e7ea !important;
  }

  #mainNav > ul > li > ul li:last-child {
    border-bottom: 0 !important;
  }

  #mainNav > ul > li > ul li a {
    padding: 11px 12px !important;
    color: #51545b !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    border-radius: 8px !important;
  }

  #mainNav > ul > li > ul li a:hover {
    padding-left: 16px !important;
    color: var(--rr-red) !important;
    background: #fff !important;
  }

  .hero-slider {
    height: clamp(205px, 54vw, 250px) !important;
    min-height: 205px !important;
    max-height: 250px !important;
    background: #0f1013 !important;
  }

  .hero-slider .slider-wrapper,
  .hero-slider .slide,
  .hero-slider .slide a {
    height: min(26.0416667vw, 130px) !important;
    min-height: 0 !important;
  }

  .hero-slider .slide img {
    object-fit: contain !important;
    background: #0f1013 !important;
  }

  .hero-brandline {
    top: min(calc(26.0416667vw + 18px), 148px) !important;
    right: 54px !important;
    bottom: auto !important;
    left: 54px !important;
    max-width: none !important;
    padding: 10px 12px !important;
    background: #17181c !important;
    border-color: rgba(255, 255, 255, .1) !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2) !important;
  }

  .hero-brandline h1 {
    font-size: 13px !important;
    white-space: normal !important;
  }

  .hero-brandline span {
    display: none !important;
  }

  .slider-arrow {
    top: min(13.0208333vw, 65px) !important;
    width: 34px !important;
    height: 34px !important;
  }
}

@media (max-width: 560px) {
  .top-bar .container {
    justify-content: center !important;
  }

  .top-bar-item {
    display: none !important;
  }

  .top-bar-item:last-child {
    display: flex !important;
    max-width: none !important;
    font-size: 10px !important;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .trust-item {
    grid-template-columns: 28px 1fr !important;
    column-gap: 9px !important;
  }
}

/* Apple esintili açık kurumsal yüzey sistemi */
.hero-brandline {
  position: relative !important;
  z-index: 5 !important;
  inset: auto !important;
  display: flex !important;
  width: min(1400px, calc(100% - 72px)) !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 27px 0 25px !important;
  color: #15161a !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.hero-brandline::before {
  width: 4px !important;
  height: 48px !important;
  background: var(--rr-red) !important;
  box-shadow: none !important;
}

.hero-brandline h1 {
  color: #16171a !important;
  font-size: clamp(22px, 2.1vw, 32px) !important;
  font-weight: 750 !important;
  letter-spacing: -.035em !important;
  line-height: 1.12 !important;
}

.hero-brandline span {
  display: block !important;
  margin-top: 7px !important;
  color: #777a82 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .16em !important;
}

.trust-section {
  padding: 24px 0 !important;
  background: #f5f5f7 !important;
  border-top: 1px solid #e6e6e9 !important;
  border-bottom: 1px solid #e6e6e9 !important;
}

.trust-grid {
  overflow: hidden !important;
  background: rgba(255, 255, 255, .88) !important;
  border: 1px solid #e3e4e7 !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 38px rgba(16, 17, 20, .055) !important;
}

.trust-item {
  min-height: 100px !important;
  border-right: 1px solid #e5e6e9 !important;
}

.trust-item:last-child {
  border-right: 0 !important;
}

.trust-icon {
  color: #fff !important;
  background: linear-gradient(145deg, #ef3345, #c91425) !important;
  box-shadow: 0 8px 20px rgba(226, 29, 47, .2) !important;
}

.trust-number {
  color: #15161a !important;
  text-shadow: none !important;
}

.trust-label {
  color: #777a82 !important;
}

#mainNav > ul > li > ul {
  background: rgba(255, 255, 255, .97) !important;
  border: 1px solid rgba(16, 17, 20, .1) !important;
  border-top: 3px solid var(--rr-red) !important;
  box-shadow: 0 24px 65px rgba(16, 17, 20, .16) !important;
  backdrop-filter: blur(22px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(160%) !important;
}

#mainNav > ul > li > ul li {
  border-bottom-color: #eceef1 !important;
}

#mainNav > ul > li > ul li a {
  color: #4f5259 !important;
}

#mainNav > ul > li > ul li a:hover {
  color: #111216 !important;
  background: #f3f4f6 !important;
}

#mainNav > ul > li > ul li a i {
  color: var(--rr-red) !important;
}

.page-header {
  color: #15161a !important;
  background:
    radial-gradient(circle at 16% 0, rgba(226, 29, 47, .11), transparent 33%),
    radial-gradient(circle at 84% 100%, rgba(16, 17, 20, .055), transparent 32%),
    linear-gradient(135deg, #fafafa, #f1f2f4) !important;
  border-bottom: 1px solid #e2e3e6 !important;
}

.page-header::before {
  opacity: .46 !important;
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgba(16, 17, 20, .04) 50%, transparent 50.2%) !important;
  background-size: 54px 54px !important;
}

.page-title {
  color: #16171a !important;
}

.breadcrumb-nav {
  background: rgba(255, 255, 255, .92) !important;
}

.about-content,
.contact-content,
.category-content,
.product-content {
  background: #f7f7f9 !important;
}

.content-box,
.contact-card,
.map-container,
.product-detail {
  background: rgba(255, 255, 255, .94) !important;
  border-color: #e3e4e7 !important;
  box-shadow: 0 18px 60px rgba(16, 17, 20, .065) !important;
}

.agency-card {
  color: #16171a !important;
  background:
    radial-gradient(circle at 100% 0, rgba(226, 29, 47, .07), transparent 31%),
    #fff !important;
  border-color: #e2e3e6 !important;
  box-shadow: 0 18px 58px rgba(16, 17, 20, .07) !important;
}

.agency-card h2,
.agency-card .text-area h2 {
  color: #16171a !important;
  text-shadow: none !important;
}

.agency-card p,
.agency-card .text-area p {
  color: #686b73 !important;
}

.agency-card .text-area strong {
  color: #16171a !important;
}

.service-card,
.product-card,
.category-card {
  border-color: #e4e5e8 !important;
  box-shadow: 0 12px 42px rgba(16, 17, 20, .055) !important;
}

.service-card:hover,
.product-card:hover,
.category-card:hover {
  box-shadow: 0 24px 64px rgba(16, 17, 20, .12) !important;
}

.info-section:nth-of-type(even) {
  background: #f5f5f7 !important;
}

@media (max-width: 991px) {
  .hero-slider {
    height: min(26.0416667vw, 130px) !important;
    min-height: 0 !important;
    max-height: 130px !important;
  }

  .hero-brandline {
    width: calc(100% - 32px) !important;
    margin: 0 auto !important;
    padding: 21px 0 20px !important;
  }

  .hero-brandline::before {
    height: 43px !important;
  }

  .hero-brandline h1 {
    font-size: clamp(18px, 5.2vw, 23px) !important;
  }

  .hero-brandline span {
    display: block !important;
    margin-top: 6px !important;
    font-size: 8px !important;
    letter-spacing: .12em !important;
  }

  .trust-section {
    padding: 14px 0 !important;
  }

  .trust-grid {
    border-radius: 16px !important;
  }

  .trust-item {
    border-right: 1px solid #e5e6e9 !important;
    border-bottom-color: #e5e6e9 !important;
  }

  .trust-item:nth-child(2) {
    border-right: 0 !important;
  }

  #mainNav {
    background: rgba(250, 250, 252, .98) !important;
    border-color: rgba(16, 17, 20, .1) !important;
    box-shadow: 0 28px 80px rgba(16, 17, 20, .2) !important;
  }

  #mainNav > ul > li > ul {
    background: #f1f2f4 !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .menu-toggle {
    background: #fff !important;
    border-color: #d9dade !important;
    box-shadow: 0 8px 24px rgba(16, 17, 20, .09) !important;
  }

  .menu-toggle span {
    background: #15161a !important;
  }

  .menu-toggle.active {
    background: #15161a !important;
    border-color: #15161a !important;
  }

  .menu-toggle.active span {
    background: #fff !important;
  }
}

/* Rota Prestige — bütünleşik görsel ritim ve mikro hareketler */
:root {
  --rr-ease: cubic-bezier(.22, 1, .36, 1);
  --rr-red-glow: rgba(226, 29, 47, .16);
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 18%, rgba(226, 29, 47, .035), transparent 25%),
    radial-gradient(circle at 92% 62%, rgba(16, 17, 20, .03), transparent 28%);
}

.route-progress {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, #a90c1b, #f52d42 50%, #b70f1f);
  box-shadow: 0 0 16px rgba(226, 29, 47, .28);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

#header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(226, 29, 47, .55) 28%, rgba(226, 29, 47, .55) 72%, transparent);
  opacity: .55;
}

#mainNav > ul > li > a {
  transition: color .3s var(--rr-ease), background .3s var(--rr-ease) !important;
}

#mainNav > ul > li > a div,
#mainNav > ul > li > a span {
  transition: color .3s ease, transform .3s var(--rr-ease) !important;
}

@media (min-width: 992px) {
  #mainNav > ul > li:hover > a div {
    color: var(--rr-red) !important;
    transform: translateY(-1px);
  }

  #mainNav > ul > li:hover > a span {
    color: #4f5157 !important;
  }

  #mainNav > ul > li > ul {
    transform-origin: top center !important;
    transition: opacity .24s ease, visibility .24s ease, transform .34s var(--rr-ease) !important;
  }
}

.hero-slider {
  isolation: isolate;
}

.hero-slider::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: -22%;
  width: 16%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .17), transparent);
  transform: skewX(-14deg);
  animation: heroSheen 9s ease-in-out infinite 2.5s;
}

.hero-slider .slide {
  transition: opacity .72s ease-in-out !important;
}

.hero-slider .slide img {
  transform: scale(1.008);
  transition: transform 6.5s cubic-bezier(.2, .65, .28, 1) !important;
}

.hero-slider .slide.active img {
  transform: scale(1);
}

.slider-arrow {
  overflow: hidden;
}

.slider-arrow::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: inherit;
  transition: inset .3s var(--rr-ease), opacity .3s ease;
}

.slider-arrow:hover::after {
  inset: 2px;
  opacity: .45;
}

.hero-brandline {
  position: relative !important;
  min-height: 132px;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px !important;
  padding-left: 30px !important;
}

.hero-brandline::before {
  position: absolute !important;
  top: 50% !important;
  left: 0 !important;
  margin: 0 !important;
  transform: translateY(-50%);
}

.hero-brandline::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--rr-red) 0 8%, #e5e6e9 8% 100%);
  transform-origin: left center;
}

.hero-brand-copy {
  position: relative;
}

.brand-kicker {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--rr-red) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase;
}

.brand-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.brand-disciplines {
  display: block !important;
}

.hero-brand-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-action {
  position: relative;
  min-height: 46px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #16171a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .035em;
  text-decoration: none;
  border: 1px solid #dfe0e3;
  border-radius: 999px;
  transition: transform .3s var(--rr-ease), box-shadow .3s ease, color .3s ease, border-color .3s ease;
}

.brand-action::after {
  content: "↗";
  margin-left: 9px;
  font-size: 13px;
  transition: transform .3s var(--rr-ease);
}

.brand-action:hover {
  transform: translateY(-3px);
}

.brand-action:hover::after {
  transform: translate(2px, -2px);
}

.brand-action-primary {
  color: #fff;
  background: #15161a;
  border-color: #15161a;
  box-shadow: 0 10px 26px rgba(16, 17, 20, .16);
}

.brand-action-primary:hover {
  background: var(--rr-red);
  border-color: var(--rr-red);
  box-shadow: 0 16px 34px rgba(226, 29, 47, .22);
}

.brand-action-secondary {
  background: rgba(255, 255, 255, .84);
}

.brand-action-secondary:hover {
  color: var(--rr-red);
  border-color: rgba(226, 29, 47, .35);
  box-shadow: 0 12px 30px rgba(16, 17, 20, .08);
}

.trust-grid {
  position: relative;
}

.trust-grid::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 26%;
  height: 2px;
  background: linear-gradient(90deg, var(--rr-red), rgba(226, 29, 47, 0));
}

.trust-item {
  position: relative;
  transition: background .35s ease, transform .35s var(--rr-ease) !important;
}

.trust-item::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 13px;
  width: 5px;
  height: 5px;
  background: #d8dade;
  border-radius: 50%;
  transition: background .3s ease, transform .3s var(--rr-ease);
}

.trust-item:hover {
  z-index: 2;
  background: #fff !important;
  transform: translateY(-4px) !important;
}

.trust-item:hover::after {
  background: var(--rr-red);
  transform: scale(1.6);
}

#hizmetler {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 89% 10%, rgba(226, 29, 47, .055), transparent 22%),
    #fff;
}

#hizmetler::before {
  content: "ROTA";
  position: absolute;
  top: 32px;
  right: -18px;
  color: rgba(16, 17, 20, .022);
  font-size: clamp(120px, 18vw, 290px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.08em;
  pointer-events: none;
}

.section-title {
  position: relative;
  z-index: 2;
}

.section-title::before {
  content: "01 / SEÇKİ";
  display: block;
  margin-bottom: 12px;
  color: var(--rr-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.services-grid {
  position: relative;
  z-index: 2;
}

.service-card,
.product-card,
.category-card,
.agency-card,
.content-box {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  isolation: isolate;
}

.service-card::before,
.product-card::before,
.category-card::before,
.agency-card::before,
.content-box::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(380px circle at var(--pointer-x) var(--pointer-y), rgba(226, 29, 47, .085), transparent 43%);
  transition: opacity .35s ease;
}

.service-card:hover::before,
.product-card:hover::before,
.category-card:hover::before,
.agency-card:hover::before,
.content-box:hover::before {
  opacity: 1;
}

.service-card::after {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 15px;
  width: 34px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(16, 17, 20, .76);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  backdrop-filter: blur(8px);
}

.service-card:nth-child(1)::after { content: "01"; }
.service-card:nth-child(2)::after { content: "02"; }
.service-card:nth-child(3)::after { content: "03"; }
.service-card:nth-child(4)::after { content: "04"; }

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 54%, rgba(226, 29, 47, .12));
  opacity: 0;
  transition: opacity .45s ease;
}

.service-card:hover .service-image::after {
  opacity: 1;
}

.service-link svg {
  transition: transform .3s var(--rr-ease);
}

.service-link:hover svg {
  transform: translateX(4px);
}

.info-section {
  position: relative;
  overflow: hidden;
}

.info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(20px, calc((100vw - 1400px) / 2));
  width: 1px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(226, 29, 47, .26) 18%, rgba(226, 29, 47, .1) 82%, transparent);
}

.info-section::after {
  content: "";
  position: absolute;
  top: 50%;
  left: max(17px, calc((100vw - 1400px) / 2 - 3px));
  width: 7px;
  height: 7px;
  background: var(--rr-red);
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(226, 29, 47, .18), 0 6px 18px rgba(226, 29, 47, .22);
  transform: translateY(-50%);
}

.agency-card::after {
  content: "02 / MARKA FELSEFESİ";
  position: absolute;
  top: 23px;
  right: 28px;
  color: #b0b2b7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.page-header-content::before {
  content: "ROTA / KURUMSAL";
  display: block;
  margin-bottom: 11px;
  color: var(--rr-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.page-title {
  position: relative;
}

.page-title::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin: 18px auto 0;
  background: var(--rr-red);
  border-radius: 99px;
}

.content-box {
  overflow: hidden;
}

.content-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 58px;
  width: 76px;
  height: 3px;
  background: linear-gradient(90deg, var(--rr-red), #f25c6b);
  border-radius: 0 0 4px 4px;
}

footer .footer-section {
  position: relative;
}

footer::before {
  background:
    radial-gradient(circle at 18% 4%, rgba(226, 29, 47, .14), transparent 24%),
    radial-gradient(circle at 88% 84%, rgba(226, 29, 47, .07), transparent 28%),
    linear-gradient(145deg, #0c0d10, #121318) !important;
}

footer .footer-section ul li a::after {
  content: "";
  width: 0;
  height: 1px;
  margin-left: 2px;
  background: var(--rr-red);
  transition: width .3s var(--rr-ease);
}

footer .footer-section ul li a:hover::after {
  width: 18px;
}

.motion-enabled .motion-item {
  opacity: 0 !important;
  transform: translateY(28px) scale(.985) !important;
  filter: blur(3px);
  transition:
    opacity .75s var(--rr-ease) var(--motion-delay, 0ms),
    transform .75s var(--rr-ease) var(--motion-delay, 0ms),
    filter .7s ease var(--motion-delay, 0ms) !important;
}

.motion-enabled .motion-item.is-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: blur(0);
}

@keyframes heroSheen {
  0%, 62% { left: -22%; opacity: 0; }
  68% { opacity: .75; }
  84% { left: 112%; opacity: 0; }
  100% { left: 112%; opacity: 0; }
}

@media (max-width: 991px) {
  .route-progress {
    height: 2px;
  }

  .hero-slider::before {
    display: none;
  }

  .hero-brandline {
    min-height: 0;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 24px 0 24px 20px !important;
  }

  .hero-brandline::before {
    width: 3px !important;
    height: 36px !important;
  }

  .hero-brand-actions {
    width: 100%;
  }

  .brand-action {
    min-height: 43px;
    flex: 1;
    padding-inline: 12px;
    font-size: 10px;
  }

  .brand-kicker {
    margin-bottom: 8px;
    font-size: 8px !important;
  }

  .brand-kicker::before {
    width: 18px;
  }

  .trust-item:hover {
    transform: none !important;
  }

  .info-section::before,
  .info-section::after {
    display: none;
  }

  .agency-card::after {
    position: static;
    display: block;
    margin: 0 0 18px;
  }

  .page-header-content::before {
    font-size: 8px;
  }
}

@media (max-width: 430px) {
  .hero-brand-actions {
    flex-direction: column;
  }

  .brand-action {
    width: 100%;
  }

  .trust-item::after {
    right: 10px;
    bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Prestige refinement: header, compact inner heroes, catalogue and product detail */
#header {
  min-height: 90px !important;
  height: 90px !important;
  border-top: 1px solid rgba(226, 29, 47, .42) !important;
  border-bottom: 2px solid rgba(226, 29, 47, .76) !important;
  box-shadow: 0 7px 24px rgba(16, 17, 20, .055) !important;
  transition:
    background-color .35s var(--rr-ease),
    box-shadow .35s var(--rr-ease),
    border-color .35s ease !important;
}

#header::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: -1px;
  right: 0;
  left: 0;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0,
    rgba(226, 29, 47, .25) 12%,
    var(--rr-red) 50%,
    rgba(226, 29, 47, .25) 88%,
    transparent 100%
  );
}

#header::after {
  bottom: -2px !important;
  height: 2px !important;
  background: linear-gradient(
    90deg,
    transparent 0,
    rgba(226, 29, 47, .24) 8%,
    var(--rr-red) 28%,
    var(--rr-red) 72%,
    rgba(226, 29, 47, .24) 92%,
    transparent 100%
  ) !important;
  opacity: .82 !important;
}

#header.scrolled {
  background: rgba(255, 255, 255, .975) !important;
  border-bottom-color: rgba(226, 29, 47, .92) !important;
  box-shadow:
    0 20px 48px rgba(16, 17, 20, .16),
    0 7px 18px rgba(16, 17, 20, .08),
    0 2px 0 rgba(226, 29, 47, .13) !important;
}

.header-content {
  min-height: 88px !important;
  height: 88px !important;
}

.logo {
  display: inline-flex;
  align-items: center;
  isolation: isolate;
}

.logo::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 22% 8%;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(226, 29, 47, .12), transparent 68%);
  filter: blur(13px);
  opacity: 0;
  animation: logoAura 9s var(--rr-ease) infinite 1.8s;
}

.logo img {
  width: 238px !important;
  height: auto !important;
  max-height: 54px !important;
  transform-origin: left center;
  animation: logoSignature 9s var(--rr-ease) infinite 1.8s;
  transition: transform .35s var(--rr-ease), filter .35s ease !important;
}

.logo:hover img {
  transform: translateY(-1px) scale(1.018) !important;
  filter: drop-shadow(0 8px 18px rgba(226, 29, 47, .13)) !important;
}

#mainNav > ul > li > a {
  min-height: 88px !important;
}

#mainNav > ul > li.current > a div {
  color: var(--rr-red) !important;
}

#mainNav > ul > li.current > a::before {
  transform: scaleX(1) !important;
}

#mainNav > ul > li.current > a span {
  color: #55585f !important;
}

/* Compact, wide and legible inner-page masthead */
.page-header {
  min-height: 154px !important;
  height: auto !important;
  padding: 25px 0 24px !important;
  overflow: hidden;
}

.page-header-content {
  width: 100% !important;
  max-width: none !important;
}

.page-header-content > .container {
  width: min(1320px, calc(100% - 64px)) !important;
  max-width: 1320px !important;
  margin-inline: auto !important;
  padding-inline: 0 !important;
}

.page-header-content::before {
  content: attr(data-section) !important;
  margin-bottom: 9px !important;
  color: var(--rr-red) !important;
  font-size: 9px !important;
  line-height: 1.2 !important;
  letter-spacing: .2em !important;
}

.page-title {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  font-size: clamp(30px, 3.2vw, 46px) !important;
  line-height: 1.04 !important;
  letter-spacing: -.045em !important;
  white-space: nowrap;
  text-wrap: balance;
}

.page-title::after {
  width: 38px !important;
  height: 2px !important;
  margin-top: 13px !important;
}

.page-subtitle {
  display: block !important;
  margin-top: 9px !important;
  color: #777a82 !important;
  font-size: 10px !important;
  font-weight: 750 !important;
  line-height: 1.2 !important;
  letter-spacing: .17em !important;
}

.page-header--category .page-title::after {
  margin-bottom: 0;
}

.breadcrumb-nav {
  position: relative;
  z-index: 10;
  padding: 12px 0 !important;
  box-shadow: 0 9px 25px rgba(16, 17, 20, .035) !important;
}

.breadcrumb {
  min-height: 22px;
}

.breadcrumb a,
.breadcrumb .active {
  font-size: 11px !important;
  letter-spacing: .015em;
}

/* Catalogue rhythm and effortless navigation */
.products-section,
.product-section {
  padding: clamp(50px, 5vw, 72px) 0 !important;
  background:
    radial-gradient(circle at 8% 4%, rgba(226, 29, 47, .045), transparent 22%),
    linear-gradient(180deg, #fafafb, #f4f5f7) !important;
}

.category-info {
  position: relative;
  max-width: 880px;
  margin: 0 auto 38px !important;
  padding-top: 17px;
}

.category-info::before {
  content: "SEÇİLİ UYGULAMALAR";
  display: block;
  margin-bottom: 9px;
  color: var(--rr-red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}

.category-info::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 42px;
  height: 2px;
  background: var(--rr-red);
  transform: translateX(-50%);
}

.category-info h2 {
  margin-bottom: 12px !important;
  color: var(--rr-ink) !important;
  font-size: clamp(27px, 2.7vw, 38px) !important;
  font-weight: 780 !important;
  line-height: 1.08 !important;
  letter-spacing: -.04em !important;
}

.category-description {
  color: #6c6f76 !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
}

.products-grid {
  counter-reset: rota-product;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

.products-grid .product-card {
  counter-increment: rota-product;
  min-width: 0;
  border-radius: 22px !important;
  box-shadow: 0 14px 42px rgba(16, 17, 20, .065) !important;
}

.products-grid .product-card::after {
  content: counter(rota-product, decimal-leading-zero);
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(16, 17, 20, .76);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  backdrop-filter: blur(10px);
}

.products-grid .product-image {
  height: auto !important;
  aspect-ratio: 4 / 3;
  background: #eceef1 !important;
}

.products-grid .product-image > a {
  display: block;
  width: 100%;
  height: 100%;
}

.products-grid .product-image img {
  transform: scale(1.002);
  transition: transform .7s var(--rr-ease), filter .5s ease !important;
}

.products-grid .product-card:hover .product-image img {
  transform: scale(1.045) !important;
  filter: saturate(1.04) contrast(1.025);
}

.products-grid .product-overlay {
  align-items: flex-end !important;
  justify-content: flex-end !important;
  padding: 17px !important;
  background: linear-gradient(180deg, transparent 44%, rgba(16, 17, 20, .74)) !important;
}

.products-grid .product-overlay svg {
  width: 38px !important;
  height: 38px !important;
  margin: 0 !important;
  padding: 10px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

.products-grid .overlay-text {
  display: none !important;
}

.products-grid .product-content {
  min-height: 184px;
  padding: 22px 22px 20px !important;
  text-align: left !important;
  background: #fff !important;
}

.products-grid .product-category {
  margin: 0 0 10px !important;
  padding: 0 !important;
  color: var(--rr-red) !important;
  background: transparent !important;
  border-radius: 0 !important;
  font-size: 9px !important;
  letter-spacing: .14em !important;
}

.products-grid .product-title {
  min-height: 48px !important;
  margin: 0 0 17px !important;
  justify-content: flex-start !important;
  color: var(--rr-ink) !important;
  font-size: 18px !important;
  line-height: 1.24 !important;
  letter-spacing: -.025em;
  text-align: left;
}

.products-grid .btn-detail {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  padding: 0 !important;
  color: #27292e !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 10px !important;
  letter-spacing: .09em !important;
}

.products-grid .btn-detail::after {
  content: "↗";
  color: var(--rr-red);
  font-size: 13px;
  transition: transform .3s var(--rr-ease);
}

.products-grid .btn-detail:hover {
  color: var(--rr-red) !important;
  transform: none !important;
}

.products-grid .btn-detail:hover::after {
  transform: translate(2px, -2px);
}

/* Product-detail editorial presentation */
.product-gallery {
  counter-reset: rota-gallery;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: 24px !important;
  margin: 0 !important;
}

.product-section > .container {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: start;
  gap: clamp(26px, 3vw, 42px);
}

.gallery-item {
  counter-increment: rota-gallery;
  position: relative;
  isolation: isolate;
  border: 1px solid var(--rr-line) !important;
  border-radius: 22px !important;
  box-shadow: 0 14px 42px rgba(16, 17, 20, .065) !important;
  transition: transform .35s var(--rr-ease), box-shadow .35s ease !important;
}

.gallery-item::after {
  content: counter(rota-gallery, decimal-leading-zero);
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(16, 17, 20, .76);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  backdrop-filter: blur(10px);
}

.gallery-item:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 25px 62px rgba(16, 17, 20, .13) !important;
}

.gallery-image {
  aspect-ratio: 4 / 3 !important;
  height: auto !important;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.045) !important;
}

.gallery-overlay {
  align-items: flex-end !important;
  justify-content: flex-end !important;
  padding: 18px;
  background: linear-gradient(180deg, transparent 48%, rgba(16, 17, 20, .66)) !important;
}

.gallery-overlay svg {
  width: 40px !important;
  height: 40px !important;
  padding: 10px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

.gallery-desc {
  padding: 17px 19px !important;
  text-align: left !important;
}

.gallery-category {
  padding: 0 !important;
  color: #5f6269 !important;
  background: transparent !important;
  font-size: 9px !important;
  line-height: 1.45;
  letter-spacing: .1em !important;
}

.product-description {
  overflow: hidden;
  position: sticky;
  top: 116px;
  padding: clamp(28px, 4vw, 52px) !important;
  border: 1px solid var(--rr-line) !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 60px rgba(16, 17, 20, .07) !important;
}

.product-description::before {
  content: "";
  position: absolute;
  top: 0;
  left: 48px;
  width: 78px;
  height: 3px;
  background: linear-gradient(90deg, var(--rr-red), #f05c6c);
}

.product-description-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rr-line);
}

.product-eyebrow {
  display: block;
  margin-bottom: 9px;
  color: var(--rr-red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .17em;
}

.product-description-head h2 {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--rr-ink) !important;
  border: 0 !important;
  font-size: clamp(27px, 3vw, 38px) !important;
  line-height: 1.05 !important;
  letter-spacing: -.04em;
}

.product-lead {
  max-width: 570px;
  margin: 13px 0 0 !important;
  color: #72757c;
  font-size: 14px;
  line-height: 1.65;
}

.product-service-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: -5px 0 28px;
}

.product-service-notes span {
  position: relative;
  min-height: 48px;
  padding: 11px 10px 10px 25px;
  display: flex;
  align-items: center;
  color: #55585f;
  background: #f6f7f8;
  border: 1px solid #eceef1;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.product-service-notes span::before {
  content: "";
  position: absolute;
  left: 11px;
  width: 6px;
  height: 6px;
  background: var(--rr-red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(226, 29, 47, .08);
}

.product-contact-link {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--rr-ink);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  transition: transform .3s var(--rr-ease), background .3s ease, box-shadow .3s ease;
}

.product-contact-link::after {
  content: "↗";
  margin-left: 9px;
  color: #ff5968;
  font-size: 13px;
}

.product-contact-link:hover {
  color: #fff;
  background: var(--rr-red);
  box-shadow: 0 14px 28px rgba(226, 29, 47, .22);
  transform: translateY(-2px);
}

.product-description .product-content {
  padding: 0 !important;
  color: #5f6269 !important;
  background: transparent !important;
  font-size: 16px !important;
  line-height: 1.85 !important;
}

@keyframes logoSignature {
  0%, 68%, 100% { transform: translateY(0) scale(1); }
  75% { transform: translateY(-1px) scale(1.012); }
  82% { transform: translateY(0) scale(1); }
}

@keyframes logoAura {
  0%, 67%, 85%, 100% { opacity: 0; transform: scale(.86); }
  75% { opacity: .72; transform: scale(1); }
}

@media (max-width: 1180px) {
  .logo img {
    width: 215px !important;
  }

  #mainNav > ul > li > a {
    padding-inline: 10px !important;
  }

  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 991px) {
  #header,
  .header-content {
    min-height: 76px !important;
    height: 76px !important;
  }

  .logo img {
    width: 184px !important;
    max-height: 46px !important;
  }

  .page-header {
    min-height: 136px !important;
    padding: 22px 0 !important;
  }

  .page-header-content > .container {
    width: calc(100% - 40px) !important;
  }

  .page-title {
    font-size: clamp(27px, 6vw, 39px) !important;
    white-space: normal;
  }

  .products-grid,
  .product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  .product-gallery {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  }

  .product-section > .container {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    margin-bottom: 28px !important;
  }

  .product-description {
    position: relative;
    top: auto;
  }
}

@media (max-width: 620px) {
  #header,
  .header-content {
    min-height: 72px !important;
    height: 72px !important;
  }

  .logo img {
    width: 166px !important;
    max-height: 42px !important;
  }

  .page-header {
    min-height: 122px !important;
    padding: 19px 0 !important;
  }

  .page-header-content > .container {
    width: calc(100% - 32px) !important;
  }

  .page-header-content::before {
    margin-bottom: 7px !important;
    font-size: 8px !important;
  }

  .page-title {
    font-size: clamp(25px, 8vw, 32px) !important;
    line-height: 1.08 !important;
  }

  .page-title::after {
    margin-top: 10px !important;
  }

  .page-subtitle {
    margin-top: 7px !important;
    font-size: 8px !important;
  }

  .breadcrumb-nav {
    padding: 9px 0 !important;
  }

  .breadcrumb {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .breadcrumb::-webkit-scrollbar {
    display: none;
  }

  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .products-grid .product-content {
    min-height: 0;
  }

  .product-gallery {
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr)) !important;
    gap: 12px !important;
  }

  .gallery-desc {
    padding: 13px !important;
  }

  .product-description-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .product-contact-link {
    width: 100%;
    justify-content: center;
  }

  .product-service-notes {
    grid-template-columns: 1fr;
  }
}

/* Final experience layer: four-column galleries, premium inner pages and mobile utility dock */
.page-header {
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 0, rgba(226, 29, 47, .13), transparent 31%),
    radial-gradient(circle at 88% 112%, rgba(16, 17, 20, .075), transparent 34%),
    linear-gradient(135deg, #fbfbfc 0%, #f1f2f4 58%, #f7f7f8 100%) !important;
}

.page-header::before {
  z-index: -1;
  opacity: .58 !important;
  background:
    linear-gradient(90deg, transparent 0 49.86%, rgba(16, 17, 20, .035) 50%, transparent 50.14%),
    linear-gradient(0deg, transparent 0 49.86%, rgba(16, 17, 20, .025) 50%, transparent 50.14%) !important;
  background-size: 58px 58px !important;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.page-header::after {
  content: "ROTA";
  position: absolute;
  z-index: -1;
  top: 50%;
  right: clamp(18px, 6vw, 100px);
  color: rgba(16, 17, 20, .028);
  font-size: clamp(70px, 10vw, 150px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.08em;
  pointer-events: none;
  transform: translateY(-48%);
}

.page-header-content > .container {
  position: relative;
}

.page-header-content > .container::before,
.page-header-content > .container::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(28px, 5vw, 74px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 29, 47, .5));
}

.page-header-content > .container::before {
  left: 0;
}

.page-header-content > .container::after {
  right: 0;
  transform: rotate(180deg);
}

.page-title {
  text-shadow: 0 14px 34px rgba(16, 17, 20, .055) !important;
}

/* Gallery uses the available desktop width instead of producing a two-column scroll tunnel */
.product-section > .container {
  display: flex !important;
  flex-direction: column;
  gap: 0 !important;
}

.product-description {
  position: relative !important;
  top: auto !important;
  order: -1;
  width: 100% !important;
  max-width: none !important;
  margin-bottom: 34px;
}

.gallery-section-head {
  order: 0;
  margin: 8px 0 24px;
}

.gallery-section-head span {
  display: block;
  margin-bottom: 8px;
  color: var(--rr-red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}

.gallery-section-head h2 {
  margin: 0;
  color: var(--rr-ink);
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.product-gallery {
  order: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

.product-gallery:has(.gallery-item:only-child) {
  grid-template-columns: minmax(0, 620px) !important;
  justify-content: center;
}

.gallery-image {
  aspect-ratio: 4 / 3 !important;
}

.gallery-item {
  border-radius: 18px !important;
}

.gallery-item:hover {
  transform: translateY(-4px) !important;
}

/* Editorial corporate surfaces */
.about-content,
.page-content,
.contact-content {
  position: relative;
  background:
    radial-gradient(circle at 6% 0, rgba(226, 29, 47, .045), transparent 23%),
    linear-gradient(180deg, #fafafb, #f4f5f7) !important;
}

.about-content::before,
.page-content::before,
.contact-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 29, 47, .28), transparent);
}

.about-content .content-box,
.page-content .content-box {
  max-width: 1240px;
  margin-inline: auto;
  padding: clamp(34px, 5vw, 68px) !important;
  background:
    radial-gradient(circle at 100% 0, rgba(226, 29, 47, .045), transparent 28%),
    rgba(255, 255, 255, .96) !important;
}

.content-box > :first-child {
  margin-top: 0 !important;
}

.content-box h2 {
  position: relative;
  padding: 0 0 0 20px !important;
  border: 0 !important;
  font-size: clamp(27px, 3vw, 38px) !important;
  line-height: 1.12 !important;
  letter-spacing: -.04em;
}

.content-box h2::before {
  content: "";
  position: absolute;
  top: .12em;
  bottom: .12em;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--rr-red), rgba(226, 29, 47, .22));
  border-radius: 99px;
}

.content-box h3 {
  font-size: clamp(21px, 2.2vw, 29px) !important;
  letter-spacing: -.025em;
}

.content-box p,
.content-box li {
  color: #62656c;
  line-height: 1.85;
}

.contact-grid {
  gap: 26px !important;
}

.map-container,
.contact-info {
  height: 520px !important;
  max-height: 520px !important;
  border: 1px solid var(--rr-line) !important;
  border-radius: 24px !important;
  box-shadow: 0 18px 56px rgba(16, 17, 20, .075) !important;
}

.contact-info {
  padding: clamp(28px, 3vw, 42px) !important;
  background:
    radial-gradient(circle at 100% 0, rgba(226, 29, 47, .05), transparent 28%),
    #fff !important;
}

.contact-item {
  min-height: 74px;
  padding: 14px 16px !important;
  background: #f7f8f9 !important;
  border: 1px solid #eceef1;
  border-radius: 15px !important;
}

.contact-item:hover {
  background: #fff !important;
  border-color: rgba(226, 29, 47, .2);
  box-shadow: 0 12px 26px rgba(16, 17, 20, .065);
  transform: translateX(4px) !important;
}

.contact-icon {
  background: var(--rr-ink) !important;
  border-radius: 13px !important;
  box-shadow: 0 9px 20px rgba(16, 17, 20, .15);
}

.bank-section {
  margin-top: clamp(42px, 5vw, 66px) !important;
}

.bank-section > .section-title {
  font-size: clamp(27px, 3vw, 38px) !important;
  letter-spacing: -.04em;
}

.bank-accounts {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: start;
  gap: 20px !important;
}

.bank-account-card {
  overflow: hidden;
  border: 1px solid var(--rr-line) !important;
  border-left: 0 !important;
  border-radius: 18px !important;
  box-shadow: 0 14px 40px rgba(16, 17, 20, .065) !important;
}

.bank-header {
  min-height: 62px;
  padding: 17px 19px !important;
  display: flex;
  align-items: center;
  color: #fff !important;
  background:
    linear-gradient(105deg, rgba(226, 29, 47, .2), transparent 42%),
    var(--rr-ink) !important;
  border-bottom: 2px solid var(--rr-red);
  font-size: 13px !important;
  line-height: 1.35;
}

.bank-content {
  padding: 18px !important;
}

.bank-row {
  align-items: flex-start !important;
  flex-direction: column;
  gap: 5px;
}

.bank-label {
  min-width: 0 !important;
  margin: 0 !important;
  color: #27292e !important;
  font-size: 10px;
  letter-spacing: .08em;
}

.bank-value {
  width: 100%;
  color: #676a71 !important;
  font-size: 12px;
}

.copy-btn {
  min-height: 34px;
  color: var(--rr-red) !important;
  background: #fff !important;
  border: 1px solid rgba(226, 29, 47, .24) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

/* Clearly communicate off-site navigation */
.external-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 7px;
  color: var(--rr-red);
  font-size: 12px;
  font-style: normal;
  line-height: 1;
  transition: transform .25s var(--rr-ease);
}

.is-external:hover .external-mark {
  transform: translate(2px, -2px);
}

.service-link.is-external {
  padding: 5px 10px !important;
  background: #f7f7f8 !important;
  border: 1px solid #e8e9ec !important;
  border-radius: 999px !important;
}

#mainNav > ul > li > ul a.is-external {
  padding-right: 16px !important;
}

#mainNav > ul > li > ul a.is-external .external-mark {
  margin-left: auto;
}

footer .footer-section a.is-external .external-mark {
  color: #ff5b6b;
}

/* Footer authorship and controls that remain visible on dark surfaces */
.copyright-text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.site-credit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.site-credit a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.site-credit a::after {
  content: "↗";
  margin-left: 5px;
  color: #ff5263;
}

.site-credit a:hover {
  color: #ff6877;
}

.scroll-top {
  color: var(--rr-red) !important;
  background: rgba(255, 255, 255, .96) !important;
  border: 1px solid rgba(226, 29, 47, .28);
  box-shadow:
    0 13px 32px rgba(0, 0, 0, .22),
    0 0 0 5px rgba(255, 255, 255, .09) !important;
  backdrop-filter: blur(12px);
}

.scroll-top svg {
  fill: var(--rr-red) !important;
}

.scroll-top:hover {
  background: #fff !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .28) !important;
}

.mobile-contact-dock {
  display: none;
}

/* Rendering work below the viewport is deferred without changing layout */
.products-section,
.product-section,
.about-content,
.page-content,
.contact-content,
footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

@media (max-width: 1100px) {
  .bank-accounts {
    grid-template-columns: 1fr !important;
  }

  .bank-row {
    flex-direction: row;
    align-items: center !important;
  }

  .bank-label {
    min-width: 140px !important;
  }
}

@media (max-width: 991px) {
  .page-header-content > .container::before,
  .page-header-content > .container::after {
    display: none;
  }

  #mainNav > ul {
    padding: 14px 14px 26px !important;
  }

  #mainNav > ul > li > a {
    min-height: 62px !important;
    padding: 13px 16px !important;
    border-bottom: 1px solid #eceef1;
  }

  #mainNav > ul > li > a div {
    font-size: 14px !important;
    line-height: 1.25 !important;
  }

  #mainNav > ul > li > a span {
    margin-top: 4px !important;
    font-size: 10px !important;
    line-height: 1.2 !important;
  }

  #mainNav > ul > li > ul li a {
    min-height: 52px !important;
    padding: 14px 17px !important;
    display: flex !important;
    align-items: center;
    font-size: 13px !important;
    line-height: 1.35 !important;
  }

  #mainNav > ul > li > ul li a i {
    margin-right: 8px;
  }

  .product-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .product-gallery:has(.gallery-item:only-child) {
    grid-template-columns: minmax(0, 620px) !important;
  }

  .map-container,
  .contact-info {
    height: auto !important;
    max-height: none !important;
  }

  .map-container {
    min-height: 360px;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .mobile-contact-dock {
    position: fixed;
    z-index: 9997;
    right: 10px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 10px;
    min-height: 58px;
    padding: 6px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(16, 17, 20, .11);
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(16, 17, 20, .2);
    backdrop-filter: blur(18px) saturate(170%);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
  }

  .mobile-contact-action {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #fff;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .025em;
    text-decoration: none;
  }

  .mobile-contact-action svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .mobile-contact-call {
    background: var(--rr-ink);
  }

  .mobile-contact-whatsapp {
    background: linear-gradient(135deg, #20bf6b, #0f9f72);
  }

  .whatsapp-btn {
    display: none !important;
  }

  .scroll-top {
    bottom: calc(78px + env(safe-area-inset-bottom)) !important;
    left: 14px !important;
    width: 46px !important;
    height: 46px !important;
  }

  .product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .product-gallery:has(.gallery-item:only-child) {
    grid-template-columns: 1fr !important;
  }

  .gallery-section-head {
    margin-top: 2px;
  }

  .map-container {
    min-height: 300px;
  }

  .bank-row {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .bank-label {
    min-width: 0 !important;
  }

  .site-credit {
    width: 100%;
    justify-content: center;
    padding: 8px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-left: 0;
  }
}

/* Refined information flow, cinematic controls and branded loading states */
.product-description {
  order: 2 !important;
  margin: 38px 0 0 !important;
}

.gallery-section-head {
  order: 0 !important;
}

.product-gallery {
  order: 1 !important;
}

.slider-arrow {
  width: 58px !important;
  height: 58px !important;
  color: #fff !important;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .16), transparent 40%),
    rgba(14, 15, 18, .78) !important;
  border: 1px solid rgba(255, 66, 83, .82) !important;
  border-radius: 18px !important;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, .28),
    0 0 0 5px rgba(255, 255, 255, .07) !important;
  backdrop-filter: blur(15px) saturate(145%) !important;
  -webkit-backdrop-filter: blur(15px) saturate(145%) !important;
  transition:
    transform .34s var(--rr-ease),
    background .3s ease,
    border-color .3s ease,
    box-shadow .3s ease !important;
}

.slider-arrow::after {
  inset: 5px !important;
  border-color: rgba(255, 255, 255, .16) !important;
  border-radius: 13px !important;
}

.slider-arrow svg {
  width: 25px !important;
  height: 25px !important;
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, .35));
  transition: transform .32s var(--rr-ease);
}

.slider-arrow:hover {
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, .2), transparent 42%),
    rgba(226, 29, 47, .93) !important;
  border-color: rgba(255, 255, 255, .68) !important;
  box-shadow:
    0 20px 42px rgba(0, 0, 0, .32),
    0 0 0 6px rgba(226, 29, 47, .12) !important;
}

.slider-arrow.prev:hover {
  transform: translateY(-50%) translateX(-3px) !important;
}

.slider-arrow.next:hover {
  transform: translateY(-50%) translateX(3px) !important;
}

.slider-arrow.prev:hover svg {
  transform: translateX(-2px);
}

.slider-arrow.next:hover svg {
  transform: translateX(2px);
}

.slider-arrow:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .92);
  outline-offset: 4px;
}

/* Corporate and production pages share quality, not sameness */
.content-box--corporate,
.content-box--production {
  background-color: #fff !important;
  background-repeat: no-repeat !important;
  background-size: auto, auto !important;
}

.about-content .content-box--corporate {
  background:
    radial-gradient(circle at 100% 0, rgba(226, 29, 47, .06), transparent 30%),
    linear-gradient(135deg, rgba(226, 29, 47, .018), transparent 42%),
    #fff !important;
}

.page-content .content-box--production {
  background:
    linear-gradient(90deg, transparent 0 49.88%, rgba(16, 17, 20, .025) 50%, transparent 50.12%),
    linear-gradient(0deg, transparent 0 49.88%, rgba(16, 17, 20, .02) 50%, transparent 50.12%),
    #fff !important;
  background-size: 64px 64px, 64px 64px, auto !important;
}

.content-box--corporate p:first-of-type,
.content-box--production p:first-of-type {
  max-width: 980px;
  color: #35373c;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.72;
  letter-spacing: -.012em;
}

.content-box--corporate img,
.content-box--production img {
  border: 1px solid #e7e8eb;
  box-shadow: 0 22px 58px rgba(16, 17, 20, .1) !important;
}

.content-box--production img {
  width: min(100%, 980px);
  margin: 28px auto !important;
  display: block;
}

.content-box--corporate ul,
.content-box--production ul {
  padding: 22px 24px 22px 44px !important;
  background: #f7f8f9;
  border: 1px solid #eceef1;
  border-radius: 16px;
}

/* Google Maps loads eagerly while a stable branded surface prevents layout flash */
.map-container {
  position: relative;
  isolation: isolate;
  background: #eef0f2 !important;
}

.map-placeholder {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: #2b2d32;
  background:
    linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, .68) 38%, transparent 54%) -120% 0 / 55% 100% no-repeat,
    radial-gradient(circle at 50% 34%, rgba(226, 29, 47, .11), transparent 24%),
    linear-gradient(135deg, #f5f6f7, #e9ebee);
  transition: opacity .45s ease, visibility .45s ease;
  animation: mapSurface 2.2s ease-in-out infinite;
}

.map-placeholder::before,
.map-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgba(16, 17, 20, .035) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 0 49.8%, rgba(16, 17, 20, .03) 50%, transparent 50.2%);
  background-size: 42px 42px;
  opacity: .6;
}

.map-placeholder-mark {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--rr-red);
  border: 6px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(226, 29, 47, .22);
  font-size: 22px;
  font-weight: 900;
}

.map-placeholder strong,
.map-placeholder small {
  position: relative;
  z-index: 2;
}

.map-placeholder strong {
  margin-top: 9px;
  font-size: 15px;
  letter-spacing: -.015em;
}

.map-placeholder small {
  color: #7a7d84;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.map-container iframe {
  position: relative;
  z-index: 2;
  opacity: 0;
  background: #eef0f2;
  transition: opacity .5s ease;
}

.map-container.map-loaded iframe {
  opacity: 1;
}

.map-container.map-loaded .map-placeholder {
  opacity: 0;
  visibility: hidden;
}

@keyframes mapSurface {
  0%, 100% { background-position: -120% 0, center, center; }
  65% { background-position: 260% 0, center, center; }
}

/* A larger footer signature with rare, gentle motion */
footer {
  content-visibility: visible !important;
}

.footer-grid {
  grid-template-columns: 1.55fr 1fr 1.15fr .75fr !important;
  gap: clamp(34px, 4vw, 64px) !important;
}

footer .footer-section:first-child {
  isolation: isolate;
}

footer .footer-section:first-child::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -38px;
  left: -58px;
  width: 330px;
  height: 190px;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(226, 29, 47, .13), transparent 67%);
  filter: blur(7px);
  opacity: .65;
}

.footer-logo {
  width: 255px !important;
  max-width: 100% !important;
  height: auto !important;
  margin-bottom: 34px !important;
  transform-origin: left center;
  animation: footerLogoSignature 11s var(--rr-ease) infinite 2s;
  transition: transform .35s var(--rr-ease), filter .35s ease !important;
}

.footer-logo:hover {
  transform: translateY(-2px) scale(1.018);
  filter: drop-shadow(0 10px 24px rgba(226, 29, 47, .2)) !important;
}

@keyframes footerLogoSignature {
  0%, 72%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 0 rgba(226, 29, 47, 0));
  }
  79% {
    transform: translateY(-1px) scale(1.012);
    filter: drop-shadow(0 9px 19px rgba(226, 29, 47, .16));
  }
  86% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 0 rgba(226, 29, 47, 0));
  }
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr !important;
  }
}

@media (max-width: 991px) {
  .slider-arrow {
    width: 46px !important;
    height: 46px !important;
    border-radius: 15px !important;
  }

  .slider-arrow.prev {
    left: 14px !important;
  }

  .slider-arrow.next {
    right: 14px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .footer-logo {
    width: 230px !important;
  }
}

@media (max-width: 700px) {
  .product-description {
    margin-top: 28px !important;
  }

  .slider-arrow {
    display: flex !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 13px !important;
    box-shadow:
      0 10px 25px rgba(0, 0, 0, .27),
      0 0 0 3px rgba(255, 255, 255, .07) !important;
  }

  .slider-arrow svg {
    width: 21px !important;
    height: 21px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-logo {
    width: 220px !important;
    margin-bottom: 28px !important;
  }
}

/* Final cascade lock for the premium media and footer treatment */
#header {
  height: auto !important;
  min-height: 98px !important;
}

#mainNav > ul > li > a {
  overflow: hidden !important;
}

#mainNav > ul > li > a::before {
  right: 18px !important;
  bottom: 6px !important;
  left: 18px !important;
  height: 2px !important;
  border-radius: 999px;
}

.header-content {
  min-height: 96px !important;
  height: 96px !important;
}

#mainNav > ul > li > a {
  min-height: 96px !important;
}

.logo img {
  width: 272px !important;
  max-height: 64px !important;
}

.content-box--corporate img,
.content-box--production img,
.content-box--corporate img#resimx,
.content-box--production img#resimx {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  margin: 30px 0 !important;
  object-fit: contain !important;
  border-radius: clamp(16px, 2vw, 24px) !important;
}

.content-box--corporate p:has(img),
.content-box--production p:has(img) {
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
}

.hero-slider .slide {
  z-index: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  will-change: opacity;
  transition: opacity .68s cubic-bezier(.22, .61, .36, 1), visibility 0s linear .68s !important;
}

.hero-slider .slide.active {
  z-index: 2 !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: opacity .68s cubic-bezier(.22, .61, .36, 1), visibility 0s linear 0s !important;
}

.hero-slider .slide img,
.hero-slider .slide.active img {
  transform: none !important;
  backface-visibility: hidden;
}

.slider-arrow {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle at 34% 24%, rgba(255,255,255,.22), transparent 38%), rgba(12,13,16,.72) !important;
  border: 1px solid rgba(255,255,255,.62) !important;
  box-shadow: 0 15px 38px rgba(0,0,0,.28), inset 0 0 0 1px rgba(226,29,47,.56), 0 0 0 5px rgba(12,13,16,.14) !important;
}

.slider-arrow::after {
  inset: 6px !important;
  border-radius: 50% !important;
}

.slider-arrow svg {
  width: 25px !important;
  height: 25px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo img {
  animation: none !important;
  transform: translateZ(0);
  filter: drop-shadow(0 5px 13px rgba(20,21,24,.08)) !important;
}

.logo::before {
  inset: 18% 3% !important;
  transform: none !important;
  animation: logoGlowBreath 8s ease-in-out infinite !important;
}

.logo::after {
  content: "" !important;
  position: absolute !important;
  z-index: 2;
  inset: 0 !important;
  width: auto !important;
  height: auto !important;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(108deg, transparent 31%, rgba(255,255,255,.05) 40%, rgba(255,255,255,.92) 49%, rgba(255,86,101,.72) 54%, transparent 66%) 180% 50% / 230% 100% no-repeat !important;
  -webkit-mask: url("../../upload/logo/rota-logo-black.svg") center / contain no-repeat;
  mask: url("../../upload/logo/rota-logo-black.svg") center / contain no-repeat;
  animation: headerLogoSheen 7.2s cubic-bezier(.4,0,.2,1) infinite 1.1s !important;
}

@keyframes headerLogoSheen {
  0%, 55%, 100% {
    opacity: 0;
    background-position: 185% 50%;
  }
  61% {
    opacity: .18;
  }
  69% {
    opacity: .95;
  }
  78% {
    opacity: .2;
    background-position: -85% 50%;
  }
  82% {
    opacity: 0;
    background-position: -85% 50%;
  }
}

footer {
  padding-top: 76px !important;
  background: radial-gradient(circle at 12% 10%, rgba(226,29,47,.14), transparent 23%), radial-gradient(circle at 88% 80%, rgba(226,29,47,.07), transparent 28%), linear-gradient(145deg,#111216 0%,#090a0d 58%,#101116 100%) !important;
}

.footer-content {
  max-width: 1480px !important;
}

.footer-grid {
  gap: 20px !important;
  align-items: stretch;
}

footer .footer-section {
  min-width: 0;
  padding: 28px 26px !important;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 22px;
  background: linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.014));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

footer .footer-section:first-child {
  background: radial-gradient(circle at 14% 8%,rgba(226,29,47,.12),transparent 40%), linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
}

.quick-stats .stat-item {
  min-width: 105px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}

.footer-bottom {
  margin-bottom: 22px;
  padding: 20px 22px !important;
  border: 1px solid rgba(255,255,255,.075) !important;
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}

@media (max-width: 700px) {
  #header {
    min-height: 86px !important;
  }

  .header-content {
    min-height: 84px !important;
    height: 84px !important;
  }

  .logo img {
    width: 190px !important;
    max-height: 50px !important;
  }

  .slider-arrow {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
  }

  footer {
    padding-top: 54px !important;
  }

  footer .footer-section {
    padding: 24px 20px !important;
    border-radius: 18px;
  }

  .footer-bottom {
    margin-bottom: 92px;
  }
}

@media (max-width: 380px) {
  .logo img {
    width: 168px !important;
  }
}

@media (max-width: 991px) {
  #mainNav {
    max-height: 0 !important;
    overscroll-behavior: contain;
  }

  #mainNav.active {
    max-height: calc(100dvh - 112px) !important;
  }

  #mainNav > ul {
    padding: 12px 12px 28px !important;
  }

  #mainNav > ul > li {
    margin: 3px 0 !important;
    border-bottom: 0 !important;
  }

  #mainNav > ul > li > a {
    min-height: 64px !important;
    padding: 14px 18px !important;
    border: 1px solid transparent;
    border-radius: 14px !important;
  }

  #mainNav > ul > li.submenu-open > a {
    color: var(--rr-red) !important;
    background: #fff7f8 !important;
    border-color: rgba(226, 29, 47, .16);
  }

  #mainNav > ul > li > ul {
    margin: 8px 0 4px !important;
    padding: 8px !important;
    background: #f5f6f8 !important;
    border: 1px solid #e7e8ec !important;
    border-radius: 16px !important;
  }

  #mainNav > ul > li.submenu-open > ul {
    padding: 8px !important;
  }

  #mainNav > ul > li > ul li {
    margin: 4px 0 !important;
    border: 0 !important;
  }

  #mainNav > ul > li > ul li a {
    width: 100% !important;
    min-height: 58px !important;
    padding: 15px 16px !important;
    gap: 12px !important;
    color: #27292e !important;
    background: #fff !important;
    border: 1px solid #e4e6ea;
    border-radius: 12px;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    box-shadow: 0 4px 12px rgba(16, 17, 20, .035);
  }

  #mainNav > ul > li > ul li a:active {
    color: #fff !important;
    background: var(--rr-red) !important;
    border-color: var(--rr-red);
    transform: scale(.985);
  }

  #mainNav > ul > li > ul li a i {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex: 0 0 24px;
    color: #fff !important;
    background: var(--rr-red);
    border-radius: 50%;
    font-size: 9px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo::before,
  .logo::after {
    animation: none !important;
  }
}
