@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Neo-banking Fintech Theme */
    --color-bg-light: #f8fafc;
    --color-bg-dark: #0f172a;
    --color-bg-darker: #020617;
    
    --color-text-main: #1e293b;
    --color-text-muted: #64748b;
    --color-text-light: #f8fafc;
    --color-text-light-muted: #94a3b8;
    
    --color-accent: #3b82f6;
    --color-accent-hover: #2563eb;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    --gradient-glow: linear-gradient(90deg, #3b82f6, #8b5cf6);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-bg-dark: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-border-dark: rgba(255, 255, 255, 0.05);
    
    /* Shadows */
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.4);
    --shadow-card: 0 20px 40px rgba(0,0,0,0.05);
    
    /* Layout */
    --container-width: 1200px;
    --padding-section: 100px 0;
    --border-radius: 16px;
    --transition-base: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-main);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

.section {
    padding: var(--padding-section);
}

.bg-light {
    background-color: #ffffff;
}

.bg-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    text-align: center;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-title.left {
    text-align: left;
}

.text-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-main);
    border-color: var(--color-text-muted);
}

.bg-dark .btn-outline, .hero .btn-outline {
    color: var(--color-text-light);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background-color: var(--color-text-main);
    color: var(--color-bg-light);
    border-color: var(--color-text-main);
}

.bg-dark .btn-outline:hover, .hero .btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* Header */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-base);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--color-bg-dark);
}

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-list a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

.nav-list a:hover::after, .nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover, .nav-list a.active {
    color: var(--color-text-main);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    background: rgba(0,0,0,0.05);
    border-radius: 30px;
    padding: 4px;
}

.lang-btn {
    background: none;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--color-text-muted);
    padding: 6px 12px;
    border-radius: 20px;
    transition: var(--transition-base);
}

.lang-btn.active, .lang-btn:hover {
    color: var(--color-text-main);
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 2px;
    background-color: var(--color-text-main);
    transition: var(--transition-base);
}

/* Hero Sections */
.hero, .product-hero {
    background: var(--gradient-hero);
    color: var(--color-text-light);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before, .product-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
}

.hero::after, .product-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
}

.hero-inner, .product-hero-inner {
    position: relative;
    z-index: 2;
}

.hero-inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.product-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--color-text-light-muted);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-desc {
    color: var(--color-text-light-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.product-hero-text .hero-actions {
    justify-content: flex-start;
}

.product-hero-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.product-hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

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

.about-text p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Glass & Card Design */
.feature-box, .sphere-item, .product-link-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
    border: 1px solid rgba(0,0,0,0.03);
}

.bg-dark .feature-box, .bg-dark .sphere-item {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border-dark);
    color: var(--color-text-light);
}

.bg-dark .feature-box p {
    color: var(--color-text-light-muted);
}

.feature-box:hover, .sphere-item:hover, .product-link-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-dark .feature-icon {
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.feature-box h4, .feature-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-box p {
    color: var(--color-text-muted);
}

/* Product Link Cards (Main Page) */
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-link-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.card-image-wrapper {
    height: 320px;
    overflow: hidden;
    position: relative;
    background: var(--color-bg-dark);
}

.card-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-link-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-content {
    padding: 40px;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.card-content p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Spheres Grid */
.spheres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.sphere-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 24px;
    font-weight: 600;
    font-size: 1.1rem;
}

.sphere-item .icon {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* System Elements */
.element-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.element-block.reverse {
    direction: rtl;
}

.element-block.reverse > * {
    direction: ltr;
}

.element-image img, .element-image > div {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.element-text h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.element-text p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Swiper Admin Gallery */
.admin-swiper {
    padding: 20px 0 50px !important;
}

.admin-swiper img {
    max-height: 500px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    display: block;
}

.slide-caption {
    margin-top: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
}

.swiper-pagination-bullet-active {
    background: var(--color-accent) !important;
}

/* Comparison Table */
.table-responsive {
    overflow-x: auto;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.03);
}

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

.comparison-table th, .comparison-table td {
    padding: 24px;
    text-align: left;
    border-bottom: 1px solid var(--color-bg-light);
}

.comparison-table th {
    background-color: var(--color-bg-light);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-main);
}

.comparison-table td {
    color: var(--color-text-muted);
    font-weight: 500;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background-color: rgba(59, 130, 246, 0.02);
}

.comparison-table td:not(:first-child), .comparison-table th:not(:first-child) {
    text-align: center;
}

/* Pricing Info */
.pricing-info {
    display: flex;
    gap: 20px;
    align-items: center;
    background: rgba(59, 130, 246, 0.05);
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(59, 130, 246, 0.1);
    margin-top: 40px;
}

.pricing-info .icon {
    font-size: 2rem;
}

.pricing-info p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-main);
}

/* Footer */
.footer {
    background-color: var(--color-bg-darker);
    color: var(--color-text-light);
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer .logo {
    color: #fff;
}

.footer-desc {
    color: var(--color-text-light-muted);
    margin-top: 20px;
    font-size: 1.05rem;
    max-width: 350px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    font-weight: 700;
    color: #fff;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-list a {
    color: var(--color-text-light-muted);
    font-weight: 500;
}

.contact-list a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 24px 0;
    text-align: center;
    color: var(--color-text-light-muted);
    font-size: 0.95rem;
}

.legal-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .product-hero-inner, .element-block, .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .element-block.reverse {
        direction: ltr;
    }
    .product-hero-image img {
        transform: none;
    }
    .product-hero-image img:hover {
        transform: none;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    .nav.is-open {
        background: var(--glass-bg);
        border-bottom: 1px solid var(--glass-border);
        box-shadow: var(--shadow-soft);
        display: block;
        left: 0;
        padding: 20px;
        position: absolute;
        top: 80px;
        width: 100%;
    }
    .nav.is-open .nav-list {
        align-items: center;
        flex-direction: column;
    }
    .burger {
        display: flex;
    }
    .burger.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .burger.is-active span:nth-child(2) {
        opacity: 0;
    }
    .burger.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 60px 0;
    }
    .hero, .product-hero {
        padding: 120px 0 60px;
    }
    .spheres-grid {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        flex-direction: column;
    }
}

/* --------------------------------------------------------------------------
   Nordera home page — light editorial direction
   Scoped to .home-page to preserve product and contact pages.
   -------------------------------------------------------------------------- */

.home-page {
    --home-ink: #171714;
    --home-muted: #6d6c65;
    --home-paper: #f7f7f2;
    --home-white: #ffffff;
    --home-line: rgba(23, 23, 20, 0.14);
    --home-accent: #ff5c35;
    --home-accent-soft: #ffb83e;
    --home-display: 'Unbounded', sans-serif;
    font-family: 'Golos Text', sans-serif;
    background: var(--home-paper);
    color: var(--home-ink);
}

.home-page em {
    color: var(--home-accent);
    font-style: normal;
    font-weight: inherit;
}

.home-page .container {
    max-width: 1320px;
    padding-left: 32px;
    padding-right: 32px;
}

.home-page .eyebrow {
    color: var(--home-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-header {
    background: rgba(247, 247, 242, 0.82);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.home-header.scrolled {
    border-color: var(--home-line);
    box-shadow: 0 8px 35px rgba(23, 23, 20, 0.06);
}

.home-header .header-inner {
    height: 92px;
}

.home-header .logo,
.home-footer .logo {
    color: var(--home-ink);
    font-size: 1.55rem;
    letter-spacing: -0.08em;
}

.home-header .logo span,
.home-footer .logo span {
    color: var(--home-accent);
}

.home-header .nav-list {
    gap: 34px;
}

.home-header .nav-list a {
    color: var(--home-ink);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.home-header .nav-list a::after {
    background: var(--home-accent);
}

.home-header .header-right {
    gap: 18px;
}

.header-cta {
    align-items: center;
    background: var(--home-ink);
    border-radius: 999px;
    color: white;
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 700;
    gap: 14px;
    padding: 12px 17px 12px 20px;
}

.header-cta:hover {
    background: var(--home-accent);
    color: white;
    transform: translateY(-1px);
}

.home-page .burger {
    background: transparent;
    border: 0;
    padding: 8px;
}

.home-page .burger span {
    background: var(--home-ink);
    transform-origin: center;
}

.home-page .burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.home-page .burger.is-active span:nth-child(2) {
    opacity: 0;
}

.home-page .burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.home-hero {
    background:
        linear-gradient(110deg, rgba(255,255,255,0.76) 0%, rgba(255,255,255,0) 55%),
        var(--home-paper);
    min-height: 820px;
    overflow: hidden;
    padding: 160px 0 36px;
    position: relative;
}

.home-hero::before {
    background: linear-gradient(135deg, #ffc64c 0%, #ff663c 72%);
    border-radius: 46% 0 0 48%;
    content: '';
    height: 680px;
    position: absolute;
    right: -12%;
    top: 74px;
    transform: rotate(-4deg);
    width: 58%;
}

.home-hero-grid {
    align-items: center;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    min-height: 560px;
    position: relative;
    z-index: 2;
}

.home-hero-copy {
    max-width: 720px;
    min-width: 0;
    padding-right: 20px;
    position: relative;
    z-index: 5;
}

.home-hero-title {
    font-family: var(--home-display);
    font-size: clamp(2.9rem, 5vw, 5.2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.04;
    margin: 28px 0 30px;
    text-wrap: balance;
    max-width: 100%;
}

.home-hero-title em {
    display: inline-block;
    white-space: nowrap;
}

.home-hero-lead {
    color: #4f4e48;
    font-size: clamp(1.05rem, 1.5vw, 1.28rem);
    line-height: 1.55;
    max-width: 560px;
}

.home-product-slogan {
    border-left: 3px solid var(--home-accent);
    color: var(--home-ink);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.45;
    margin-top: 20px;
    max-width: 560px;
    padding: 3px 0 3px 14px;
}

.home-hero-actions {
    align-items: center;
    display: flex;
    gap: 28px;
    margin-top: 42px;
}

.home-btn {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 700;
    gap: 26px;
    justify-content: center;
    min-height: 56px;
    padding: 0 25px;
}

.home-btn > span[aria-hidden="true"] {
    font-size: 1.1rem;
}

.home-btn-primary {
    background: var(--home-accent);
    color: white;
    box-shadow: 0 12px 30px rgba(255, 92, 53, 0.24);
}

.home-btn-primary:hover {
    background: #e94924;
    color: white;
    transform: translateY(-3px);
}

.home-btn-link {
    border-bottom: 1px solid var(--home-ink);
    border-radius: 0;
    min-height: 42px;
    padding: 0 2px;
}

.home-btn-link:hover {
    border-color: var(--home-accent);
    color: var(--home-accent);
}

.hero-product-stage {
    align-self: stretch;
    min-height: 560px;
    position: relative;
}

.hero-glow {
    background: rgba(255, 255, 255, 0.56);
    border-radius: 50%;
    filter: blur(8px);
    height: 430px;
    left: 12%;
    position: absolute;
    top: 90px;
    width: 430px;
}

.hero-terminal {
    filter: drop-shadow(0 35px 30px rgba(53, 30, 15, 0.22));
    object-fit: contain;
    position: absolute;
    z-index: 2;
}

.hero-terminal-back {
    height: min(33vw, 440px);
    left: 0;
    opacity: 0.94;
    top: 54px;
    transform: rotate(-4deg) scale(0.92);
}

.hero-terminal-front {
    bottom: 6px;
    height: min(39vw, 520px);
    right: 1%;
    transform: rotate(3deg);
    z-index: 3;
}

.hero-chip {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(52, 31, 19, 0.12);
    color: var(--home-ink);
    font-size: 0.76rem;
    font-weight: 700;
    padding: 11px 17px;
    position: absolute;
    z-index: 4;
}

.hero-chip-top {
    right: 1%;
    top: 52px;
}

.hero-chip-top > span:first-child {
    background: #24b36b;
    border-radius: 50%;
    display: inline-block;
    height: 7px;
    margin-right: 8px;
    width: 7px;
}

.hero-exchange-card {
    background: rgba(28, 28, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    bottom: 8px;
    box-shadow: 0 22px 50px rgba(31, 20, 14, 0.24);
    color: white;
    display: grid;
    gap: 13px;
    grid-template-columns: 108px minmax(0, 1fr);
    left: 2%;
    padding: 12px;
    position: absolute;
    width: min(390px, 62%);
    z-index: 5;
}

.hero-exchange-preview {
    align-self: stretch;
    border-radius: 13px;
    min-height: 116px;
    overflow: hidden;
    position: relative;
}

.hero-exchange-preview::after {
    background: linear-gradient(135deg, rgba(255, 92, 53, 0.06), rgba(255, 184, 62, 0.22));
    content: '';
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.hero-exchange-preview img {
    height: 100%;
    object-fit: cover;
    object-position: left center;
    width: 100%;
}

.hero-exchange-content {
    min-width: 0;
}

.hero-exchange-heading {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.hero-exchange-heading strong {
    font-family: var(--home-display);
    font-size: 0.82rem;
    font-weight: 600;
}

.hero-exchange-heading > span {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: #d5d4cd;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 7px;
    text-transform: uppercase;
}

.hero-exchange-content > p {
    color: #c7c6bf;
    font-size: 0.66rem;
    line-height: 1.42;
    margin: 9px 0 10px;
}

.hero-exchange-content > a {
    align-items: center;
    color: #ff8b6f;
    display: inline-flex;
    font-size: 0.66rem;
    font-weight: 700;
    gap: 9px;
}

.hero-exchange-content > a:hover {
    color: white;
    gap: 13px;
}

.hero-orbit {
    border: 1px solid rgba(255, 92, 53, 0.38);
    border-radius: 50%;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.hero-orbit-one {
    height: 820px;
    right: 8%;
    top: -320px;
    width: 820px;
}

.hero-orbit-two {
    bottom: -400px;
    height: 760px;
    left: -110px;
    width: 760px;
}

.hero-bottom {
    align-items: center;
    border-top: 1px solid var(--home-line);
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    position: relative;
    z-index: 3;
}

.hero-bottom > p {
    color: var(--home-muted);
    font-size: 0.8rem;
    max-width: 300px;
}

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

.hero-stats span {
    color: var(--home-muted);
    font-size: 0.72rem;
}

.hero-stats strong {
    color: var(--home-ink);
    display: block;
    font-family: var(--home-display);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.1;
}

.hero-stats .hero-stat-languages {
    color: var(--home-ink);
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.35;
    max-width: 205px;
}

html[lang="ky"] .home-hero-title,
html[lang="kk"] .home-hero-title {
    font-size: clamp(2.7rem, 4.15vw, 4.45rem);
    letter-spacing: -0.035em;
}

.home-section {
    padding: 130px 0;
}

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

.section-heading {
    display: grid;
    gap: 24px;
    grid-template-columns: 0.55fr 1.45fr 0.85fr;
    margin-bottom: 70px;
}

.section-heading h2,
.approach-intro h2,
.company-copy h2,
.home-cta h2 {
    font-family: var(--home-display);
    font-size: clamp(2.1rem, 3.2vw, 3.4rem);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.14;
}

.section-heading > p:last-child {
    align-self: end;
    color: var(--home-muted);
    font-size: 0.96rem;
    line-height: 1.65;
}

.solution-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1.16fr 0.84fr;
}

.solution-card {
    border-radius: 30px;
    min-height: 660px;
    overflow: hidden;
    padding: 35px;
    position: relative;
}

.solution-card-queue {
    background: #edece5;
}

.solution-card-exchange {
    background: #20201d;
    color: white;
}

.solution-card-top {
    align-items: center;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.solution-number {
    font-family: var(--home-display);
    font-size: 1rem;
    font-weight: 600;
}

.solution-label {
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    opacity: 0.66;
    padding: 7px 12px;
    text-transform: uppercase;
}

.solution-card h3 {
    font-family: var(--home-display);
    font-size: clamp(1.9rem, 2.9vw, 2.9rem);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.12;
    margin: 68px 0 24px;
    position: relative;
    z-index: 2;
}

.solution-card > p {
    color: var(--home-muted);
    font-size: 0.88rem;
    line-height: 1.65;
    max-width: 370px;
    position: relative;
    z-index: 2;
}

.solution-card-exchange > p {
    color: #b6b5ae;
    max-width: 310px;
}

.solution-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 24px;
    position: relative;
    z-index: 2;
}

.solution-tags li {
    background: rgba(255,255,255,0.58);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 8px 12px;
}

.solution-card-exchange .solution-tags li {
    background: rgba(255,255,255,0.1);
}

.solution-link {
    align-items: center;
    bottom: 34px;
    display: flex;
    font-size: 0.82rem;
    font-weight: 700;
    gap: 18px;
    left: 35px;
    position: absolute;
    z-index: 4;
}

.solution-link:hover {
    color: var(--home-accent);
    gap: 24px;
}

.solution-visual {
    position: absolute;
}

.solution-visual-queue {
    bottom: -2%;
    right: -12%;
    transform: rotate(-4deg);
    width: 61%;
}

.solution-visual-queue::before {
    background: linear-gradient(135deg, var(--home-accent-soft), var(--home-accent));
    border-radius: 50%;
    content: '';
    height: 370px;
    left: 16%;
    position: absolute;
    top: 10%;
    width: 370px;
}

.solution-visual-queue img {
    border-radius: 18px;
    box-shadow: 0 26px 60px rgba(28, 24, 20, 0.2);
    display: block;
    position: relative;
    width: 100%;
}

.solution-visual-exchange {
    bottom: -13%;
    right: -8%;
    transform: rotate(8deg);
    width: 55%;
}

.solution-visual-exchange::before {
    background: radial-gradient(circle, rgba(255,92,53,0.9), rgba(255,184,62,0.18) 55%, transparent 72%);
    content: '';
    inset: -120px;
    position: absolute;
}

.solution-visual-exchange img {
    border: 6px solid #353530;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.55);
    display: block;
    position: relative;
    width: 100%;
}

.approach-section {
    background: var(--home-paper);
}

.approach-grid {
    display: grid;
    gap: 8%;
    grid-template-columns: 0.86fr 1.14fr;
}

.approach-intro {
    align-self: start;
    position: sticky;
    top: 140px;
}

.approach-intro h2 {
    margin: 30px 0 32px;
}

.approach-intro > p:not(.eyebrow) {
    color: var(--home-muted);
    font-size: 0.98rem;
    line-height: 1.75;
    max-width: 500px;
}

.home-btn-dark {
    background: var(--home-ink);
    color: white;
    margin-top: 38px;
}

.home-btn-dark:hover {
    background: var(--home-accent);
    color: white;
    transform: translateY(-3px);
}

.approach-list {
    counter-reset: none;
}

.approach-list li {
    align-items: center;
    border-top: 1px solid var(--home-line);
    display: grid;
    gap: 24px;
    grid-template-columns: 55px 1fr 44px;
    min-height: 150px;
}

.approach-list li:last-child {
    border-bottom: 1px solid var(--home-line);
}

.approach-step {
    color: var(--home-accent);
    font-family: var(--home-display);
    font-weight: 600;
    font-size: 0.8rem;
}

.approach-list h3 {
    font-family: var(--home-display);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.approach-list p {
    color: var(--home-muted);
    font-size: 0.82rem;
}

.approach-mark {
    align-items: center;
    border: 1px solid var(--home-line);
    border-radius: 50%;
    display: flex;
    height: 42px;
    justify-content: center;
    transition: var(--transition-base);
    width: 42px;
}

.approach-list li:hover .approach-mark {
    background: var(--home-accent);
    border-color: var(--home-accent);
    color: white;
    transform: rotate(-12deg);
}

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

.company-grid {
    display: grid;
    gap: 7%;
    grid-template-columns: 0.86fr 1.14fr;
}

.company-panel {
    background:
        radial-gradient(circle at 78% 17%, rgba(255,255,255,0.28), transparent 19%),
        linear-gradient(145deg, #ffbd42, #ff5c35 82%);
    border-radius: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 510px;
    overflow: hidden;
    padding: 38px;
    position: relative;
}

.company-panel::after {
    border: 1px solid rgba(255,255,255,0.38);
    border-radius: 50%;
    content: '';
    height: 450px;
    position: absolute;
    right: -200px;
    top: -170px;
    width: 450px;
}

.company-panel .eyebrow {
    color: white;
}

.company-quote {
    font-family: var(--home-display);
    font-size: clamp(1.5rem, 2.3vw, 2.4rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.28;
    position: relative;
    z-index: 2;
}

.company-quote em {
    color: #2b251f;
}

.company-signature {
    border-top: 1px solid rgba(255,255,255,0.4);
    font-size: 0.72rem;
    padding-top: 18px;
}

.company-copy {
    align-self: center;
}

.company-copy h2 {
    font-size: clamp(2rem, 3.1vw, 3.1rem);
}

.company-copy > p {
    color: var(--home-muted);
    line-height: 1.75;
    margin: 34px 0 44px;
    max-width: 650px;
}

.company-benefits {
    border-top: 1px solid var(--home-line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.company-benefits div {
    border-right: 1px solid var(--home-line);
    padding: 22px 22px 0 0;
}

.company-benefits div:not(:first-child) {
    padding-left: 22px;
}

.company-benefits div:last-child {
    border-right: 0;
}

.company-benefits span {
    color: var(--home-accent);
    display: block;
    font-size: 0.66rem;
    margin-bottom: 20px;
}

.company-benefits strong {
    font-family: var(--home-display);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.home-cta {
    background: var(--home-ink);
    color: white;
    overflow: hidden;
    padding: 120px 0;
    position: relative;
}

.home-cta::before {
    border: 1px solid rgba(255, 92, 53, 0.55);
    border-radius: 50%;
    content: '';
    height: 720px;
    position: absolute;
    right: -180px;
    top: -390px;
    width: 720px;
}

.home-cta::after {
    background: var(--home-accent);
    border-radius: 50%;
    content: '';
    filter: blur(90px);
    height: 220px;
    opacity: 0.28;
    position: absolute;
    right: 10%;
    top: 5%;
    width: 220px;
}

.home-cta-inner {
    position: relative;
    z-index: 2;
}

.home-cta .eyebrow {
    color: #a9a89f;
}

.home-cta h2 {
    font-size: clamp(2.2rem, 4.4vw, 4rem);
    margin: 24px 0 46px;
    max-width: 1000px;
}

.home-cta-actions {
    align-items: center;
    display: flex;
    gap: 34px;
}

.home-btn-light {
    background: white;
    color: var(--home-ink);
}

.home-btn-light:hover {
    background: var(--home-accent);
    color: white;
    transform: translateY(-3px);
}

.home-cta-actions > a:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.6);
    font-size: 0.9rem;
    padding-bottom: 5px;
}

.home-cta-actions > a:last-child:hover {
    border-color: var(--home-accent);
    color: var(--home-accent);
}

.home-footer {
    background: #0f0f0d;
    color: white;
    padding: 72px 0 28px;
}

.home-footer-grid {
    display: grid;
    gap: 34px;
    grid-template-columns: 1fr 1.4fr 1fr 1fr;
}

.home-footer .logo {
    color: white;
}

.home-footer-grid > p {
    color: #8f8e86;
    font-size: 0.78rem;
    line-height: 1.7;
}

.home-footer nav,
.home-footer-meta {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.home-footer nav a,
.home-footer-meta a {
    color: #c8c7bf;
    font-size: 0.76rem;
}

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

.home-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #6e6d67;
    display: flex;
    font-size: 0.68rem;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 24px;
}

@media (max-width: 1100px) {
    .home-header .nav-list {
        gap: 22px;
    }

    .home-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    }

    .home-hero::before {
        right: -24%;
        width: 65%;
    }

    .hero-terminal-back {
        left: -10%;
    }

    .hero-exchange-card {
        grid-template-columns: 94px minmax(0, 1fr);
        width: min(350px, 74%);
    }

    .section-heading {
        grid-template-columns: 0.45fr 1.35fr 0.8fr;
    }

    .solution-card {
        min-height: 610px;
    }

    .solution-visual-queue {
        right: -16%;
        width: 68%;
    }

    .company-grid,
    .approach-grid {
        gap: 5%;
    }
}

@media (max-width: 900px) {
    .home-page .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .home-header .header-inner {
        height: 78px;
    }

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

    .home-header .burger {
        display: flex;
    }

    .home-header .nav {
        background: rgba(247,247,242,0.98);
        border-bottom: 1px solid var(--home-line);
        display: none;
        left: 0;
        padding: 26px 24px 34px;
        position: absolute;
        top: 78px;
        width: 100%;
    }

    .home-header .nav.is-open {
        display: block;
    }

    .home-header .nav-list {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .home-header .nav-list a {
        font-family: var(--home-display);
        font-size: 1.15rem;
        font-weight: 600;
    }

    .home-hero {
        min-height: auto;
        padding-top: 130px;
    }

    .home-hero::before {
        border-radius: 44% 0 0 35%;
        height: 520px;
        right: -28%;
        top: 390px;
        width: 90%;
    }

    .home-hero-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-copy {
        max-width: 760px;
    }

    .home-hero-title {
        font-size: clamp(2.8rem, 7vw, 4.4rem);
        max-width: 780px;
    }

    .hero-product-stage {
        min-height: 520px;
        width: 76%;
        justify-self: end;
    }

    .hero-terminal-back {
        height: 430px;
        left: -6%;
    }

    .hero-terminal-front {
        height: 480px;
    }

    .hero-bottom {
        align-items: flex-start;
        gap: 28px;
    }

    .section-heading {
        grid-template-columns: 1fr 2fr;
    }

    .section-heading > p:last-child {
        grid-column: 2;
    }

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

    .solution-card {
        min-height: 640px;
    }

    .solution-card-exchange > p {
        max-width: 420px;
    }

    .approach-grid,
    .company-grid {
        gap: 70px;
        grid-template-columns: 1fr;
    }

    .approach-intro {
        position: static;
    }

    .company-panel {
        min-height: 470px;
    }

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

@media (max-width: 600px) {
    .home-page .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .home-header .logo {
        font-size: 1.35rem;
    }

    .home-hero {
        padding-top: 112px;
    }

    .home-hero::before {
        border-radius: 46% 0 0 34%;
        height: 430px;
        right: -48%;
        top: 470px;
        width: 125%;
    }

    .home-hero-title {
        font-size: clamp(3.15rem, 15vw, 4.45rem);
        margin-top: 22px;
    }

    .home-hero-title em {
        white-space: normal;
    }

    .home-hero-lead {
        font-size: 1rem;
    }

    .home-hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
    }

    .home-btn {
        gap: 18px;
        min-height: 52px;
    }

    .hero-product-stage {
        min-height: 430px;
        width: 100%;
    }

    .hero-glow {
        height: 300px;
        left: 4%;
        top: 100px;
        width: 300px;
    }

    .hero-terminal-back {
        height: 320px;
        left: -10%;
        top: 90px;
    }

    .hero-terminal-front {
        bottom: 2px;
        height: 370px;
        right: -8%;
    }

    .hero-chip-top {
        right: 0;
        top: 60px;
    }

    .hero-exchange-card {
        bottom: 4px;
        gap: 10px;
        grid-template-columns: 82px minmax(0, 1fr);
        left: 0;
        padding: 10px;
        width: min(330px, 92%);
    }

    .hero-exchange-preview {
        min-height: 108px;
    }

    .hero-exchange-content > p {
        font-size: 0.62rem;
        margin: 7px 0 8px;
    }

    .hero-bottom {
        display: block;
    }

    .hero-bottom > p {
        margin-bottom: 22px;
    }

    .hero-stats {
        display: grid;
        gap: 18px;
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-stats strong {
        font-size: 1.2rem;
    }

    .home-section {
        padding: 88px 0;
    }

    .section-heading {
        display: block;
        margin-bottom: 44px;
    }

    .section-heading h2,
    .approach-intro h2,
    .company-copy h2 {
        font-size: clamp(2rem, 9vw, 2.7rem);
        margin: 22px 0 26px;
    }

    .solution-card {
        border-radius: 22px;
        min-height: 650px;
        padding: 25px;
    }

    .solution-card h3 {
        font-size: 2.1rem;
        margin-top: 52px;
    }

    .solution-card > p {
        font-size: 0.82rem;
    }

    .solution-link {
        bottom: 24px;
        left: 25px;
    }

    .solution-visual-queue {
        bottom: 7%;
        right: -32%;
        width: 102%;
    }

    .solution-visual-queue::before {
        height: 280px;
        width: 280px;
    }

    .solution-visual-exchange {
        bottom: -4%;
        right: -18%;
        width: 68%;
    }

    .approach-grid,
    .company-grid {
        gap: 54px;
    }

    .approach-list li {
        gap: 14px;
        grid-template-columns: 34px 1fr 38px;
        min-height: 132px;
    }

    .approach-list h3 {
        font-size: 1.55rem;
    }

    .approach-list p {
        line-height: 1.5;
    }

    .approach-mark {
        height: 36px;
        width: 36px;
    }

    .company-panel {
        border-radius: 22px;
        min-height: 430px;
        padding: 26px;
    }

    .company-benefits {
        gap: 18px;
        grid-template-columns: 1fr;
    }

    .company-benefits div,
    .company-benefits div:not(:first-child) {
        border-bottom: 1px solid var(--home-line);
        border-right: 0;
        display: grid;
        grid-template-columns: 34px 1fr;
        padding: 18px 0;
    }

    .company-benefits span {
        margin-bottom: 0;
    }

    .home-cta {
        padding: 88px 0;
    }

    .home-cta h2 {
        font-size: clamp(2.7rem, 13vw, 4rem);
        margin: 25px 0 40px;
    }

    .home-cta-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

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

    .home-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page *,
    .home-page *::before,
    .home-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Shared language control and modern product pages */
.home-lang-switcher {
    background: rgba(23, 23, 20, 0.06);
    border: 1px solid rgba(23, 23, 20, 0.08);
    gap: 2px;
    padding: 3px;
}

.home-lang-switcher .lang-btn {
    color: var(--home-muted);
    font-family: 'Golos Text', sans-serif;
    font-size: 0.68rem;
    padding: 6px 8px;
}

.home-lang-switcher .lang-btn.active,
.home-lang-switcher .lang-btn:hover {
    background: var(--home-white);
    color: var(--home-ink);
    box-shadow: 0 2px 8px rgba(23, 23, 20, 0.08);
}

.google-language-picker {
    align-items: center;
    background: rgba(23, 23, 20, 0.06);
    border: 1px solid rgba(23, 23, 20, 0.08);
    border-radius: 999px;
    color: var(--home-ink);
    display: inline-flex;
    flex: 0 0 auto;
    gap: 6px;
    height: 38px;
    padding: 0 12px;
    position: relative;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    width: 132px;
}

.google-language-picker:hover,
.google-language-picker:focus-within {
    background: var(--home-white);
    border-color: rgba(23, 23, 20, 0.18);
}

.google-language-icon,
.google-language-arrow {
    flex: 0 0 auto;
    font-size: 0.72rem;
    line-height: 1;
    pointer-events: none;
}

.google-language-arrow {
    color: var(--home-muted);
    font-size: 0.82rem;
}

.google-language-select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 0;
    color: var(--home-ink);
    cursor: pointer;
    flex: 1 1 auto;
    font: 600 0.69rem/1 'Golos Text', sans-serif;
    min-width: 0;
    outline: 0;
    overflow: hidden;
    padding: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-page-modern {
    background: var(--home-paper);
    color: var(--home-ink);
}

.product-page-modern .product-hero {
    background: var(--home-paper);
    color: var(--home-ink);
    min-height: 720px;
    padding: 168px 0 92px;
}

.product-page-modern .product-hero::before {
    background: linear-gradient(145deg, var(--home-accent-soft), var(--home-accent));
    border-radius: 48% 0 0 44%;
    height: 650px;
    left: auto;
    opacity: 1;
    right: -16%;
    top: 64px;
    width: 54%;
}

.product-page-modern .product-hero::after {
    border: 1px solid rgba(255, 92, 53, 0.32);
    border-radius: 50%;
    bottom: auto;
    height: 700px;
    left: 28%;
    right: auto;
    top: -330px;
    width: 700px;
}

.product-page-modern .product-hero-inner {
    align-items: center;
    gap: 7%;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr) !important;
    position: relative;
    z-index: 2;
}

.product-page-modern .product-hero-text .eyebrow {
    margin-bottom: 24px;
}

.product-page-modern .product-hero .hero-title {
    color: var(--home-ink);
    font-family: var(--home-display);
    font-size: clamp(2.7rem, 4.5vw, 4.9rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin-bottom: 28px;
}

.product-page-modern .product-hero .text-accent,
.product-page-modern .section .text-accent {
    background: none;
    color: var(--home-accent);
    -webkit-text-fill-color: currentColor;
}

.product-page-modern .product-hero .hero-subtitle {
    color: var(--home-ink);
    font-size: 1.18rem !important;
    font-weight: 600 !important;
    line-height: 1.55;
    margin: 0 0 16px !important;
    max-width: 650px;
}

.product-page-modern .product-hero .hero-desc {
    color: var(--home-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 34px !important;
    max-width: 620px;
}

.product-page-modern .product-hero-image {
    align-items: center;
    display: flex;
    justify-content: center;
}

.product-page-modern .product-hero-image img {
    background: rgba(255,255,255,0.88);
    border: 8px solid rgba(255,255,255,0.7);
    border-radius: 24px !important;
    box-shadow: 0 34px 80px rgba(63, 32, 15, 0.22) !important;
    max-height: 520px;
    object-fit: contain;
    transform: rotate(3deg);
    width: 100%;
}

.product-page-modern .queue-product-hero .product-hero-image img {
    transform: rotate(-3deg);
}

.product-page-modern .btn {
    border-radius: 999px !important;
    font-family: 'Golos Text', sans-serif;
    min-height: 52px;
    padding: 13px 25px !important;
}

.product-page-modern .btn-primary {
    background: var(--home-accent);
    box-shadow: 0 12px 28px rgba(255, 92, 53, 0.22);
}

.product-page-modern .btn-primary::before {
    display: none;
}

.product-page-modern .btn-primary:hover {
    background: #e94924;
}

.product-page-modern .btn-outline,
.product-page-modern .product-hero .btn-outline {
    border-color: var(--home-line);
    color: var(--home-ink);
}

.product-page-modern .product-hero .btn-outline:hover {
    background: var(--home-ink);
    border-color: var(--home-ink);
    color: white;
}

.product-page-modern .section {
    background: var(--home-white);
    color: var(--home-ink);
    padding: 112px 0;
}

.product-page-modern .section.bg-light {
    background: var(--home-paper);
}

.product-page-modern .section.bg-dark {
    background: var(--home-ink);
    color: white;
}

.hardware-selection-eyebrow {
    color: var(--home-accent) !important;
    margin-bottom: 18px;
}

.hardware-selection-intro {
    color: var(--color-text-light-muted);
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 920px;
}

.product-page-modern .section.bg-dark .btn-outline {
    border-color: rgba(255, 255, 255, 0.34);
    color: white;
}

.product-page-modern .section.bg-dark .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.queue-software-heading {
    margin: 0 auto 56px;
    max-width: 850px;
    text-align: center;
}

.queue-software-heading .eyebrow {
    color: var(--home-accent);
    margin-bottom: 18px;
}

.queue-software-heading .section-title {
    margin-bottom: 18px;
}

.queue-software-heading > p:last-child {
    color: var(--home-muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.queue-role-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.queue-role-card {
    background: var(--home-white);
    border: 1px solid var(--home-line);
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(23, 23, 20, 0.07);
    overflow: hidden;
}

.queue-role-image {
    aspect-ratio: 16 / 9;
    background: #e9edf3;
    overflow: hidden;
}

.queue-role-image img {
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.45s ease;
    width: 100%;
}

.queue-role-card:hover .queue-role-image img {
    transform: scale(1.025);
}

.queue-role-body {
    padding: 26px 27px 30px;
}

.queue-role-number {
    color: var(--home-accent);
    display: block;
    font-family: var(--home-display);
    font-size: 0.68rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.queue-role-card h3 {
    font-family: var(--home-display);
    font-size: clamp(1.15rem, 1.55vw, 1.45rem);
    font-weight: 600;
    line-height: 1.22;
    margin-bottom: 22px;
}

.queue-role-card p,
.queue-role-list {
    color: var(--home-muted);
    font-size: 0.83rem;
    line-height: 1.65;
}

.queue-role-card .queue-role-lead {
    color: var(--home-ink);
    font-weight: 700;
    margin-bottom: 12px;
}

.queue-role-list {
    display: grid;
    gap: 8px;
}

.queue-role-list li {
    padding-left: 17px;
    position: relative;
}

.queue-role-list li::before {
    color: var(--home-accent);
    content: '—';
    left: 0;
    position: absolute;
}

.queue-role-card p + p {
    margin-top: 14px;
}

.queue-role-card .queue-role-note {
    border-top: 1px solid var(--home-line);
    margin-top: 20px;
    padding-top: 18px;
}

.queue-feature-stack {
    display: grid;
    gap: 24px;
    margin-top: 76px;
}

.queue-feature-showcase {
    background: var(--home-ink);
    border-radius: 30px;
    color: white;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    min-height: 500px;
    overflow: hidden;
}

.queue-feature-copy {
    align-self: center;
    padding: clamp(34px, 5vw, 64px);
}

.queue-feature-copy .eyebrow {
    color: #ff8b6f;
    margin-bottom: 20px;
}

.queue-feature-copy h3,
.queue-gallery-heading h3 {
    font-family: var(--home-display);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 600;
    line-height: 1.16;
}

.queue-feature-copy > p:not(.eyebrow) {
    color: #c8c7c0;
    font-size: 0.96rem;
    line-height: 1.7;
    margin-top: 22px;
}

.queue-feature-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.queue-feature-list li {
    color: #efeee8;
    font-size: 0.9rem;
    line-height: 1.5;
    padding-left: 24px;
    position: relative;
}

.queue-feature-list li::before {
    background: var(--home-accent);
    border-radius: 50%;
    content: '';
    height: 7px;
    left: 1px;
    position: absolute;
    top: 0.55em;
    width: 7px;
}

.queue-feature-copy .queue-feature-note {
    border-left: 2px solid var(--home-accent);
    color: white;
    font-weight: 600;
    margin-top: 30px;
    padding-left: 16px;
}

.queue-feature-media {
    min-height: 500px;
    overflow: hidden;
    position: relative;
}

.queue-dual-media {
    background: radial-gradient(circle at 60% 40%, #34435d, #101827 72%);
}

.queue-dual-media img {
    border: 5px solid rgba(255, 255, 255, 0.86);
    border-radius: 16px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
    object-fit: cover;
    object-position: top center;
    position: absolute;
}

.queue-media-main {
    height: 74%;
    left: 6%;
    top: 7%;
    width: 82%;
}

.queue-media-inset {
    bottom: 7%;
    height: 48%;
    right: 5%;
    width: 66%;
}

.queue-gallery-heading {
    margin: 86px auto 34px;
    max-width: 760px;
    text-align: center;
}

.queue-gallery-heading .eyebrow {
    color: var(--home-accent);
    margin-bottom: 16px;
}

.queue-software-section .product-swiper {
    margin-top: 0;
}

.product-page-modern .section-title {
    color: inherit;
    font-family: var(--home-display);
    font-size: clamp(2rem, 3.3vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.18;
    margin-bottom: 52px;
    text-transform: none;
}

.product-page-modern .features-grid {
    gap: 18px !important;
}

.product-page-modern .feature-box {
    background: var(--home-paper);
    border: 1px solid var(--home-line);
    border-radius: 22px;
    box-shadow: none;
    min-height: 190px;
    padding: 28px;
}

.product-page-modern .feature-box:hover {
    border-color: rgba(255, 92, 53, 0.5);
    box-shadow: 0 22px 50px rgba(23, 23, 20, 0.08);
    transform: translateY(-5px);
}

.product-page-modern .bg-dark .feature-box {
    background: rgba(255,255,255,0.06) !important;
    border-color: rgba(255,255,255,0.12) !important;
}

.product-page-modern .feature-box h3,
.product-page-modern .feature-box h4,
.product-page-modern .element-text h3 {
    font-family: var(--home-display);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.product-page-modern .feature-box h4 {
    font-size: 1.08rem;
}

.product-page-modern .feature-box p,
.product-page-modern .element-text p {
    color: var(--home-muted);
    line-height: 1.68;
}

.product-page-modern .spheres-grid {
    gap: 12px;
}

.product-page-modern .sphere-item {
    background: var(--home-white);
    border: 1px solid var(--home-line);
    border-radius: 18px;
    box-shadow: none;
    min-height: 104px;
    padding: 20px;
}

.product-page-modern .sphere-item:hover {
    border-color: var(--home-accent);
    box-shadow: 0 16px 35px rgba(23, 23, 20, 0.07);
    transform: translateY(-3px);
}

.product-page-modern .sphere-item .icon,
.product-page-modern .feature-icon {
    filter: grayscale(1);
}

.product-page-modern .element-block {
    align-items: center;
    gap: 7%;
    margin-bottom: 80px;
}

.call-display-group-heading {
    border-top: 1px solid var(--home-line);
    margin: 10px auto 62px;
    max-width: 860px;
    padding-top: 72px;
    text-align: center;
}

.call-display-group-heading .eyebrow {
    color: var(--home-accent);
    margin-bottom: 18px;
}

.call-display-group-heading h2 {
    font-family: var(--home-display);
    font-size: clamp(2rem, 3.4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.16;
}

.call-display-group-heading > p:last-child {
    color: var(--home-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 20px;
}

.product-page-modern .element-image img,
.product-page-modern .terminals-image img {
    border: 1px solid var(--home-line);
    border-radius: 22px !important;
    box-shadow: 0 24px 55px rgba(23, 23, 20, 0.1) !important;
}

.product-page-modern .element-text h3 {
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.product-page-modern .contact-list li {
    color: var(--home-ink);
}

.product-page-modern .admin-swiper {
    background: var(--home-white);
    border: 1px solid var(--home-line);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(23, 23, 20, 0.09);
    padding: 20px 20px 50px;
}

.product-page-modern .admin-swiper img {
    border-radius: 14px;
}

.product-page-modern .slide-caption {
    color: var(--home-ink);
}

.product-page-modern .swiper-button-prev,
.product-page-modern .swiper-button-next,
.product-page-modern .swiper-pagination-bullet-active {
    color: var(--home-accent);
}

.product-page-modern .pricing-info {
    background: var(--home-ink);
    border: 0;
    border-radius: 20px;
    color: white;
}

.product-page-modern .pricing-info p {
    color: #d2d1ca;
}

.product-page-modern .comparison-table {
    background: var(--home-white);
    border: 1px solid var(--home-line);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(23, 23, 20, 0.07);
    overflow: hidden;
}

.product-page-modern .comparison-table th {
    background: var(--home-ink);
    color: white;
}

.product-page-modern .comparison-table th,
.product-page-modern .comparison-table td {
    border-color: var(--home-line);
    padding: 18px 20px;
}

.product-page-modern .legal-note {
    border-color: var(--home-line);
    color: var(--home-muted) !important;
}

@media (max-width: 1180px) {
    .home-header .header-cta {
        display: none;
    }

    .home-header .nav-list {
        gap: 20px;
    }

    .google-language-picker {
        width: 120px;
    }
}

@media (max-width: 900px) {
    .product-page-modern .product-hero {
        min-height: auto;
        padding: 130px 0 76px;
    }

    .product-page-modern .product-hero::before {
        height: 470px;
        right: -35%;
        top: 450px;
        width: 95%;
    }

    .product-page-modern .product-hero-inner {
        gap: 52px;
        grid-template-columns: 1fr !important;
    }

    .product-page-modern .product-hero-image {
        justify-self: end;
        max-width: 680px;
        width: 88%;
    }

    .product-page-modern .product-hero-image img {
        max-height: 480px;
    }

    .product-page-modern .section {
        padding: 88px 0;
    }

    .queue-role-grid {
        grid-template-columns: 1fr;
    }

    .queue-role-card {
        display: grid;
        grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
    }

    .queue-role-image {
        aspect-ratio: auto;
        min-height: 100%;
    }

    .queue-feature-showcase {
        grid-template-columns: 1fr;
    }

    .queue-feature-media {
        min-height: 420px;
    }
}

@media (max-width: 600px) {
    .home-header .header-right {
        gap: 6px;
    }

    .home-header .home-lang-switcher {
        display: flex;
    }
    
    .home-lang-switcher .lang-btn {
        padding: 4px 5px;
        font-size: 0.62rem;
    }

    .google-language-picker {
        height: 36px;
        padding: 0 9px;
        width: 108px;
    }

    .google-language-icon {
        display: none;
    }

    .google-language-select {
        font-size: 0.65rem;
    }

    .product-page-modern .product-hero {
        padding-top: 112px;
    }

    .product-page-modern .product-hero::before {
        height: 360px;
        right: -48%;
        top: 520px;
        width: 125%;
    }

    .product-page-modern .product-hero .hero-title {
        font-size: clamp(2.15rem, 10vw, 3.1rem);
    }

    .product-page-modern .product-hero .hero-subtitle {
        font-size: 1.02rem !important;
    }

    .product-page-modern .product-hero-image {
        width: 100%;
    }

    .product-page-modern .section {
        padding: 72px 0;
    }

    .product-page-modern .section-title {
        font-size: clamp(1.8rem, 8.5vw, 2.5rem);
        margin-bottom: 36px;
    }

    .product-page-modern .features-grid {
        grid-template-columns: 1fr !important;
    }

    .product-page-modern .element-block {
        gap: 34px;
        margin-bottom: 58px;
    }

    .call-display-group-heading {
        margin-bottom: 44px;
        padding-top: 54px;
        text-align: left;
    }

    .product-page-modern .comparison-table th,
    .product-page-modern .comparison-table td {
        font-size: 0.72rem;
        padding: 12px 10px;
    }

    .queue-software-heading {
        margin-bottom: 40px;
        text-align: left;
    }

    .queue-role-card {
        display: block;
    }

    .queue-role-image {
        aspect-ratio: 16 / 9;
    }

    .queue-role-body {
        padding: 23px 22px 26px;
    }

    .queue-feature-stack {
        margin-top: 54px;
    }

    .queue-feature-showcase {
        border-radius: 22px;
        min-height: 0;
    }

    .queue-feature-copy {
        padding: 30px 24px 34px;
    }

    .queue-feature-media {
        min-height: 310px;
    }

    .queue-gallery-heading {
        margin-top: 62px;
        text-align: left;
    }
}

/* Contact page */
.contact-page-modern {
    background: var(--home-paper);
}

.contact-page-modern .home-header .nav-list a.active {
    color: var(--home-accent);
}

.contact-hero {
    background: var(--home-paper);
    min-height: 760px;
    overflow: hidden;
    padding: 176px 0 104px;
    position: relative;
}

.contact-hero::before {
    background: linear-gradient(135deg, #ffc64c 0%, #ff663c 76%);
    border-radius: 48% 0 0 46%;
    content: '';
    height: 690px;
    position: absolute;
    right: -18%;
    top: 70px;
    transform: rotate(-5deg);
    width: 58%;
}

.contact-orbit {
    border: 1px solid rgba(255, 92, 53, 0.38);
    border-radius: 50%;
    height: 760px;
    position: absolute;
    right: 6%;
    top: -360px;
    width: 760px;
}

.contact-hero-grid {
    align-items: center;
    display: grid;
    gap: 8%;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
    position: relative;
    z-index: 2;
}

.contact-hero-copy {
    min-width: 0;
}

.contact-hero h1 {
    font-family: var(--home-display);
    font-size: clamp(3rem, 5.2vw, 5.6rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.03;
    margin: 28px 0;
    max-width: 790px;
}

.contact-hero h1 .text-accent {
    background: none;
    color: var(--home-accent);
    -webkit-text-fill-color: currentColor;
}

.contact-hero-lead {
    color: var(--home-muted);
    font-size: clamp(1.05rem, 1.45vw, 1.25rem);
    line-height: 1.62;
    max-width: 660px;
}

.contact-hero-slogan {
    border-left: 3px solid var(--home-accent);
    font-weight: 700;
    line-height: 1.45;
    margin-top: 22px;
    padding: 3px 0 3px 14px;
}

.contact-hero-actions {
    align-items: center;
    display: flex;
    gap: 28px;
    margin-top: 38px;
}

.contact-hero-card {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 28px;
    box-shadow: 0 34px 90px rgba(65, 34, 16, 0.18);
    padding: 34px;
    position: relative;
}

.contact-card-index,
.contact-service-number {
    color: var(--home-accent);
    display: block;
    font-family: var(--home-display);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 46px;
}

.contact-hero-card .eyebrow {
    margin-bottom: 18px;
}

.contact-hero-card h2 {
    font-family: var(--home-display);
    font-size: clamp(1.55rem, 2.3vw, 2.3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-hero-card > p:not(.eyebrow) {
    color: var(--home-muted);
    line-height: 1.65;
    margin-top: 20px;
}

.contact-card-links {
    border-top: 1px solid var(--home-line);
    display: grid;
    gap: 0;
    margin-top: 28px;
}

.contact-card-links a {
    align-items: center;
    border-bottom: 1px solid var(--home-line);
    display: flex;
    font-size: 0.9rem;
    font-weight: 700;
    justify-content: space-between;
    padding: 16px 0;
}

.contact-card-links a:hover {
    color: var(--home-accent);
}

.contact-services .contact-section-heading {
    align-items: end;
    display: grid;
    gap: 7%;
    grid-template-columns: 0.45fr 1.55fr;
    margin-bottom: 54px;
}

.contact-services .section-title {
    margin-bottom: 0;
    max-width: 900px;
}

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

.contact-services-grid .feature-box {
    display: flex;
    flex-direction: column;
    min-height: 330px;
}

.contact-services-grid .contact-service-number {
    margin-bottom: auto;
}

.contact-services-grid h4 {
    font-size: 1.25rem;
    margin: 34px 0 14px;
}

.contact-details-section {
    overflow: hidden;
    position: relative;
}

.contact-details-section::before {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    content: '';
    height: 560px;
    position: absolute;
    right: -160px;
    top: -300px;
    width: 560px;
}

.contact-details-grid {
    display: grid;
    gap: 9%;
    grid-template-columns: 0.75fr 1.25fr;
    position: relative;
    z-index: 1;
}

.contact-details-copy .eyebrow {
    color: #aaa9a2;
    margin-bottom: 24px;
}

.contact-details-copy .section-title {
    margin-bottom: 24px;
}

.contact-details-copy > p:last-child {
    color: #aaa9a2;
    line-height: 1.65;
    max-width: 410px;
}

.contact-channels {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-channel {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: grid;
    gap: 24px;
    grid-template-columns: 0.6fr 1fr auto;
    min-height: 128px;
    padding: 22px 0;
}

.contact-channel span {
    color: #aaa9a2;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-channel strong {
    font-family: var(--home-display);
    font-size: clamp(1rem, 1.6vw, 1.45rem);
    font-weight: 600;
}

.contact-channel i {
    color: var(--home-accent);
    font-size: 1.4rem;
    font-style: normal;
    transition: transform 0.2s ease;
}

.contact-channel:hover {
    color: var(--home-accent-soft);
}

.contact-channel:hover i {
    transform: translate(4px, -4px);
}

.vertical-display-block .element-image {
    display: flex;
    justify-content: center;
}

.vertical-display-block .element-image img {
    background: #171714;
    max-height: 620px;
    object-fit: contain;
    width: 100%;
}

.vertical-display-block .eyebrow {
    margin-bottom: 18px;
}

.terminal-models-section {
    overflow: hidden;
}

.terminal-models-heading {
    align-items: end;
    display: grid;
    gap: 28px 7%;
    grid-template-columns: 0.42fr 1.08fr 0.72fr;
    margin-bottom: 54px;
}

.terminal-models-heading .section-title {
    margin: 0;
}

.terminal-models-heading > p:last-child {
    color: var(--home-muted);
    line-height: 1.65;
}

.terminal-models-section .terminals-image {
    margin-bottom: 28px;
    text-align: center;
}

.terminal-models-section .terminals-image img {
    aspect-ratio: 1.82 / 1;
    max-width: 100%;
    object-fit: cover;
    width: 100%;
}

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

.terminal-model-card {
    background: var(--home-paper);
    border: 1px solid var(--home-line);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    padding: 14px 24px 28px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.terminal-model-card:hover {
    border-color: rgba(255, 92, 53, 0.5);
    box-shadow: 0 24px 55px rgba(23, 23, 20, 0.09);
    transform: translateY(-5px);
}

.terminal-model-image {
    align-items: center;
    background: #fff;
    border-radius: 14px;
    display: flex;
    height: 430px;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
}

.terminal-model-image-dark {
    background: #111;
}

.terminal-model-image img {
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    width: 100%;
}

.terminal-model-number {
    color: var(--home-accent);
    font-family: var(--home-display);
    font-size: 0.74rem;
    font-weight: 600;
}

.terminal-model-card h3 {
    font-family: var(--home-display);
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    font-weight: 600;
    line-height: 1.3;
    margin: 24px 0 14px;
}

.terminal-model-card p {
    color: var(--home-muted);
    line-height: 1.62;
}

@media (max-width: 900px) {
    .contact-hero {
        min-height: auto;
        padding: 140px 0 84px;
    }

    .contact-hero::before {
        height: 520px;
        right: -34%;
        top: 510px;
        width: 96%;
    }

    .contact-hero-grid,
    .contact-details-grid {
        gap: 56px;
        grid-template-columns: 1fr;
    }

    .contact-hero-card {
        justify-self: end;
        max-width: 620px;
        width: 88%;
    }

    .contact-services .contact-section-heading {
        align-items: start;
        grid-template-columns: 1fr;
    }

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

    .terminal-models-heading {
        align-items: start;
        grid-template-columns: 1fr 2fr;
    }

    .terminal-models-heading > p:last-child {
        grid-column: 2;
    }

    .terminal-showcase-grid {
        grid-template-columns: 1fr;
    }

    .terminal-model-card {
        display: grid;
        gap: 0 30px;
        grid-template-columns: minmax(240px, 0.8fr) 1fr;
    }

    .terminal-model-image {
        grid-row: 1 / 5;
        height: 380px;
        margin: 0;
    }

    .terminal-model-number {
        margin-top: 22px;
    }

    .contact-services-grid .feature-box {
        min-height: 240px;
    }
}

@media (max-width: 600px) {
    .home-hero-title {
        font-size: clamp(2.45rem, 12.7vw, 3.65rem);
        letter-spacing: -0.035em;
    }

    html[lang="ky"] .home-hero-title,
    html[lang="kk"] .home-hero-title {
        font-size: clamp(2rem, 9.7vw, 2.75rem);
        letter-spacing: -0.045em;
    }

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

    .hero-stats .hero-stat-languages {
        max-width: none;
    }

    .contact-hero {
        padding-top: 116px;
    }

    .contact-hero::before {
        right: -58%;
        top: 560px;
        width: 140%;
    }

    .contact-hero h1 {
        font-size: clamp(2.55rem, 12vw, 3.7rem);
    }

    .contact-hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .contact-hero-card {
        border-radius: 22px;
        padding: 26px;
        width: 100%;
    }

    .contact-services .contact-section-heading {
        margin-bottom: 36px;
    }

    .contact-channel {
        align-items: start;
        gap: 10px;
        grid-template-columns: 1fr auto;
        min-height: 112px;
    }

    .contact-channel span {
        grid-column: 1 / -1;
    }

    .vertical-display-block .element-image img {
        max-height: 470px;
    }

    .terminal-models-heading {
        display: block;
    }

    .terminal-models-heading .section-title {
        margin: 20px 0 24px;
    }

    .terminal-model-card {
        display: flex;
        padding: 12px 18px 24px;
    }

    .terminal-model-image {
        height: 360px;
        margin-bottom: 22px;
    }

    .terminal-model-number {
        margin-top: 0;
    }
}
