/* 
   NORDS.KZ - PREMIUM LIGHT DESIGN SYSTEM
   Author: Antigravity AI
*/

/* ----------------------------------------------------
   1. Root Variables & Theme Tokens
---------------------------------------------------- */
:root {
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-header: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    
    /* Cool Blue Palette */
    --color-bg-main: #ffffff;
    --color-bg-subtle: #f8fafc;
    --color-bg-card: #ffffff;
    --color-border: #e2e8f0;
    --color-border-hover: #cbd5e1;
    
    /* Primary Colors */
    --color-primary: #0ea5e9;
    --color-primary-hover: #0284c7;
    --color-primary-dark: #0369a1;
    --color-secondary: #2563eb;
    --color-secondary-light: #eff6ff;
    
    /* Accent CTA Color - Vibrant Blue */
    --color-accent: #2563eb;
    --color-accent-hover: #1d4ed8;
    --color-accent-light: #eff6ff;
    
    /* Text Colors */
    --color-text-main: #0f172a;
    --color-text-muted: #475569;
    --color-text-light: #94a3b8;
    
    /* Status Colors */
    --color-success: #10b981;
    --color-success-light: #ecfdf5;
    --color-error: #ef4444;
    --color-error-light: #fef2f2;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(14, 165, 233, 0.04), 0 4px 6px -4px rgba(14, 165, 233, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
    --shadow-primary: 0 10px 25px -5px rgba(14, 165, 233, 0.25);
    --shadow-accent: 0 10px 25px -5px rgba(37, 99, 235, 0.25);
    --shadow-glass: 0 8px 32px 0 rgba(15, 23, 42, 0.04);
    
    /* Borders & Transitions */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------------------
   2. Reset & Base Styles
---------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    outline: none;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .logo-text, .nav-link, .rtb-price, .step-num, .calc-radio-card, .price-val {
    font-family: var(--font-header);
}

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

ul, ol {
    list-style: none;
}

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

/* ----------------------------------------------------
   3. Typography & Utility Classes
---------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

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

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

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background-color: var(--color-secondary-light);
    color: var(--color-secondary);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.badge-success {
    background-color: var(--color-success-light);
    color: var(--color-success);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px auto;
}

.section-tag {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text-main);
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
}

.w-full {
    width: 100%;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

@media (max-width: 768px) {
    .text-justify {
        text-align: left;
    }
}

/* ----------------------------------------------------
   4. Buttons
---------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-header);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #ffffff;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -5px rgba(14, 165, 233, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-accent {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    color: #ffffff;
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -5px rgba(249, 115, 22, 0.4);
}

.btn-accent:active {
    transform: translateY(0);
}

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

.btn-outline:hover {
    background-color: var(--color-bg-subtle);
    border-color: var(--color-border-hover);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 14px;
    border-radius: var(--radius-sm);
}

.btn svg {
    transition: transform var(--transition-fast);
}

.btn:hover svg.arrow {
    transform: translateX(4px);
}

/* ----------------------------------------------------
   5. Header & Navigation
---------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: all var(--transition-normal);
}

.header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-glass);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height var(--transition-normal);
}

.header.scrolled .header-container {
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text-main);
    letter-spacing: -0.5px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.logo-dot {
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: width var(--transition-fast);
    border-radius: var(--radius-full);
}

.nav-link:hover {
    color: var(--color-text-main);
}

.nav-link:hover::after {
    width: 100%;
}

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

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--color-text-main);
}

.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-main);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

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

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

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

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--transition-normal), visibility var(--transition-normal);
    visibility: hidden;
    pointer-events: none;
}

.mobile-nav.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 80%;
}

.mobile-nav-link {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-main);
}

.mobile-phone {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary);
    margin: 16px 0;
}

/* ----------------------------------------------------
   6. Hero Section
---------------------------------------------------- */
.hero-section {
    position: relative;
    padding-top: 160px;
    padding-bottom: 96px;
    background: radial-gradient(circle at 80% 20%, rgba(224, 242, 254, 0.6) 0%, rgba(255, 255, 255, 0) 50%);
    overflow: hidden;
}

.hero-content {
    max-width: 580px;
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--color-text-main);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-muted);
}

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background-color: var(--color-secondary-light);
    color: var(--color-primary);
    flex-shrink: 0;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-bg-blur {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0) 70%);
    z-index: -1;
    border-radius: var(--radius-full);
}

.hero-img {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 50px rgba(15, 23, 42, 0.08));
    animation: floatImage 8s ease-in-out infinite;
    max-height: 480px;
    object-fit: contain;
    border-radius: var(--radius-lg);
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

@keyframes floatImage {
    0% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -12px, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-xl);
    z-index: 2;
    transition: transform var(--transition-fast);
}

.floating-badge:hover {
    transform: scale(1.05);
}

.badge-1 {
    bottom: 30px;
    left: -20px;
}

.badge-2 {
    top: 50px;
    right: -10px;
}

.fb-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.fb-icon {
    font-size: 20px;
}

.fb-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.2;
}

/* ----------------------------------------------------
   7. Benefits
---------------------------------------------------- */
.benefits-grid {
    margin-top: 16px;
}

.benefit-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background-color: var(--color-secondary-light);
    color: var(--color-primary);
    margin-bottom: 24px;
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-main);
}

.benefit-description {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ----------------------------------------------------
   8. Services
---------------------------------------------------- */
.services-grid {
    margin-top: 100px;
}

.service-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all var(--transition-normal);
    transform: scale(0.93);
    opacity: 0.88;
}

.service-card .btn {
    padding: 12px 16px;
    font-size: 15px;
    white-space: nowrap;
}

.service-card:hover {
    transform: scale(0.93) translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(14, 165, 233, 0.25);
    opacity: 1;
    z-index: 12;
}

.service-card.featured {
    border: 2px solid var(--color-primary);
    box-shadow: 0 25px 50px -12px rgba(14, 165, 233, 0.25);
    transform: scale(1.08) translateY(-18px);
    z-index: 10;
    opacity: 1;
}

.service-card.featured:hover {
    transform: scale(1.08) translateY(-22px);
    box-shadow: 0 35px 70px -15px rgba(14, 165, 233, 0.38);
    border-color: var(--color-secondary);
    z-index: 12;
}

/* Service Cards Scroll Reveal Overrides to maintain correct sizes */
.service-card.scroll-reveal-up {
    transform: scale(0.93) translateY(20px);
}

.service-card.scroll-reveal-up.active {
    transform: scale(0.93) translateY(0);
}

.service-card.featured.scroll-reveal-up {
    transform: scale(1.08) translateY(10px);
}

.service-card.featured.scroll-reveal-up.active {
    transform: scale(1.08) translateY(-18px);
}

.service-image-wrapper {
    position: relative;
    height: 140px;
    overflow: hidden;
    background-color: var(--color-bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-svg-bg {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-svg-bg {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--color-accent);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.service-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.service-description {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.service-list {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-list li {
    font-size: 14px;
    color: var(--color-text-muted);
    position: relative;
    padding-left: 24px;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230ea5e9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.service-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
}

.price-val {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-text-main);
}

/* ----------------------------------------------------
   9. Interactive Calculator
---------------------------------------------------- */
.calculator-grid {
    align-items: flex-start;
    gap: 32px;
    margin-top: 16px;
}

.calculator-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.calculator-card-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -0.3px;
}

.calc-group {
    margin-bottom: 32px;
}

.calc-group:last-child {
    margin-bottom: 0;
}

.calc-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-main);
    display: block;
    margin-bottom: 14px;
}

.calc-label-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.calc-label-wrapper .calc-label {
    margin-bottom: 0;
}

.calc-slider-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    background-color: var(--color-secondary-light);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

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

.calc-radio-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px;
    cursor: pointer;
    position: relative;
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.calc-radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.calc-radio-card.checked {
    border-color: var(--color-primary);
    background-color: var(--color-secondary-light);
    box-shadow: 0 0 0 1px var(--color-primary);
}

.radio-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 4px;
}

.radio-desc {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* Custom Range Slider */
.calc-range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: var(--radius-full);
    background: var(--color-border);
    outline: none;
    margin: 16px 0;
}

.calc-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.2);
    transition: transform var(--transition-fast);
}

.calc-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-slider-steps {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-light);
    padding: 0 4px;
}

/* Custom Checkboxes */
.calc-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.calc-checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.calc-checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-box {
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
    background-color: #ffffff;
    margin-top: 1px;
}

.calc-checkbox-item input[type="checkbox"]:checked ~ .checkbox-box {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.calc-checkbox-item input[type="checkbox"]:checked ~ .checkbox-box::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.checkbox-label {
    line-height: 1.4;
}

/* Result Card */
.calculator-result-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: sticky;
    top: 100px;
}

.result-top-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 40px;
    text-align: center;
}

.rtb-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.rtb-price {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rtb-hint {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.rtb-discount {
    display: inline-block;
    background-color: rgba(249, 115, 22, 0.15);
    border: 1px dashed var(--color-accent);
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

.result-details {
    padding: 32px 40px;
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-bg-subtle);
}

.res-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
}

.res-row:last-child {
    margin-bottom: 0;
}

.res-row span {
    color: var(--color-text-muted);
}

.res-row strong {
    font-weight: 700;
    color: var(--color-text-main);
}

.calc-lead-form {
    padding: 32px 40px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 8px;
}

.form-input, .form-select {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--color-text-main);
    transition: all var(--transition-fast);
    background-color: #ffffff;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
}

.form-input:focus, .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.form-privacy {
    font-size: 11px;
    color: var(--color-text-light);
    text-align: center;
    margin-top: 14px;
    line-height: 1.4;
}

/* ----------------------------------------------------
   10. Timeline Steps
---------------------------------------------------- */
.steps-container {
    margin-top: 16px;
}

.step-item {
    position: relative;
    padding: 32px 0;
}

.step-num {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    color: var(--color-secondary-light);
    margin-bottom: 12px;
    position: relative;
}

.step-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.step-desc {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* ----------------------------------------------------
   11. Brands
---------------------------------------------------- */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.brand-item {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-weight: 800;
    color: var(--color-text-light);
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    user-select: none;
}

.brand-item:hover {
    color: var(--color-primary);
    border-color: rgba(14, 165, 233, 0.3);
    transform: scale(1.02);
    box-shadow: var(--shadow-sm);
}

/* ----------------------------------------------------
   12. Reviews
---------------------------------------------------- */
.reviews-grid {
    margin-top: 16px;
}

.review-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-border-hover);
}

.review-rating {
    color: #ff9800; /* Gold amber for stars */
    font-size: 16px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 15px;
    color: var(--color-text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--color-secondary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.user-name {
    display: block;
    font-weight: 700;
    color: var(--color-text-main);
    font-size: 15px;
}

.user-meta {
    font-size: 12px;
    color: var(--color-text-light);
}

/* ----------------------------------------------------
   13. FAQ Accordion
---------------------------------------------------- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--color-border-hover);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-header);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-main);
    cursor: pointer;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    transition: transform var(--transition-normal);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-content p {
    padding: 0 24px 24px 24px;
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.faq-item.active {
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-primary);
}

/* ----------------------------------------------------
   14. Contacts Section & Lead Form
---------------------------------------------------- */
.contacts-container {
    align-items: flex-start;
    gap: 48px;
}

.contacts-info {
    max-width: 540px;
}

.contacts-desc {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: var(--color-secondary-light);
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.c-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-light);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.c-val {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-main);
}

a.c-val:hover {
    color: var(--color-primary);
}

.messengers-buttons {
    display: flex;
    gap: 12px;
}

.msg-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
    transition: all var(--transition-fast);
}

.msg-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.msg-icon img,
.msg-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.msg-wa {
    background-color: #25d366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.msg-wa:hover {
    background-color: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.msg-tg {
    background-color: #0088cc;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.2);
}

.msg-tg:hover {
    background-color: #0077b5;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 136, 204, 0.3);
}

.contacts-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.contacts-card-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.contacts-card-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.direct-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.direct-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 56px;
    box-sizing: border-box;
}

.direct-btn:hover {
    transform: translateY(-2px);
}

.wa-direct-btn {
    background-color: #25d366;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.wa-direct-btn:hover {
    background-color: #20ba59;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.phone-direct-btn {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.25);
}

.phone-direct-btn:hover {
    background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-primary-dark) 100%);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.35);
}

.direct-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.direct-icon img,
.direct-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.work-hours-badge {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 16px 24px;
    background-color: var(--color-bg-subtle);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-muted);
    font-size: 15px;
    font-weight: 700;
    height: 56px;
    box-sizing: border-box;
}

.work-hours-badge svg {
    color: var(--color-primary);
}

/* ----------------------------------------------------
   15. Footer
---------------------------------------------------- */
.footer {
    background-color: #0f172a;
    color: #ffffff;
    padding: 80px 0 40px 0;
    border-top: 1px solid #1e293b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 48px;
}

.footer-logo {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    color: var(--color-primary);
}

.footer-about {
    font-size: 15px;
    color: #94a3b8;
    margin-bottom: 24px;
    max-width: 380px;
    line-height: 1.6;
}

.copyright {
    font-size: 13px;
    color: #64748b;
    margin-top: 32px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
    color: #ffffff;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: var(--radius-full);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.footer-divider {
    height: 1px;
    background-color: #1e293b;
    margin: 28px 0;
    max-width: 380px;
}

.footer-contacts-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 15px;
    color: #94a3b8;
    margin: 0;
}

.working-hours {
    color: #ffffff;
    font-weight: 600;
}

.footer-contact-link {
    font-size: 15px;
    color: #94a3b8;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-contact-link:hover {
    color: var(--color-primary);
}

.footer-address {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.5;
}

.footer-map-col {
    display: flex;
    flex-direction: column;
}

.footer-map-container {
    width: 100%;
    height: 350px;
    background-color: #1e293b;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* ----------------------------------------------------
   16. Modals
---------------------------------------------------- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
}

.modal-wrapper {
    position: relative;
    background-color: #ffffff;
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.modal.active .modal-wrapper {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-text-main);
}

.modal-body {
    padding: 40px;
}

.modal-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

/* Success modal specific */
.success-icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    background-color: var(--color-success-light);
    color: var(--color-success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

/* ----------------------------------------------------
   17. Floating Contact Widget
---------------------------------------------------- */
.contact-floating-widget {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.contact-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all var(--transition-normal);
    z-index: 2;
    padding: 0;
}

.contact-toggle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.6);
    animation: pulseCircle 2s infinite;
    z-index: -1;
    transition: all var(--transition-normal);
}

.contact-toggle-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.45);
}

.contact-toggle-btn .toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    transition: all var(--transition-normal);
}

.contact-toggle-btn .icon-close {
    opacity: 0;
    transform: rotate(-90deg);
}

/* Open/Active state of widget */
.contact-floating-widget.active .contact-toggle-btn {
    background: var(--color-text-main);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.contact-floating-widget.active .contact-toggle-btn::before {
    animation: none;
    box-shadow: none;
}

.contact-floating-widget.active .icon-phone {
    opacity: 0;
    transform: rotate(90deg);
}

.contact-floating-widget.active .icon-close {
    opacity: 1;
    transform: rotate(0);
}

/* Popover Menu */
.contact-menu-popover {
    position: absolute;
    bottom: 76px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(15px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.contact-menu-popover.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.contact-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-normal);
    white-space: nowrap;
    text-decoration: none;
}

.contact-menu-item:hover {
    transform: translateX(-4px) scale(1.03);
}

.whatsapp-item {
    background-color: #25d366;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-item:hover {
    background-color: #20ba59;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.phone-item {
    background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
    box-shadow: 0 6px 20px rgba(0, 114, 255, 0.3);
}

.phone-item:hover {
    background: linear-gradient(135deg, #0066e0 0%, #00b5e0 100%);
    box-shadow: 0 8px 25px rgba(0, 114, 255, 0.4);
}

.menu-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.menu-item-icon img,
.menu-item-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    margin: 0;
    padding: 0;
}

@keyframes pulseCircle {
    0% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(14, 165, 233, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
    }
}

@keyframes bounceWidget {
    0%, 100%, 20%, 50%, 80% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ----------------------------------------------------
   18. Scroll Animation Classes
---------------------------------------------------- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.active,
.scroll-reveal-right.active,
.scroll-reveal-up.active {
    opacity: 1;
    transform: translate(0);
}

/* ----------------------------------------------------
   19. Media Queries (Responsiveness)
---------------------------------------------------- */

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-map-col {
        grid-column: span 2;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .header-contacts {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .services-grid {
        margin-top: 40px;
    }
    
    .service-card {
        transform: none !important;
        opacity: 1 !important;
    }
    .service-card:hover {
        transform: translateY(-6px) !important;
    }
    .service-card.featured {
        transform: none !important;
        opacity: 1 !important;
    }
    .service-card.featured:hover {
        transform: translateY(-6px) !important;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-section {
        padding-top: 100px;
        padding-bottom: 64px;
    }
    
    .hero-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-content {
        display: contents;
    }
    
    .badge {
        order: 1;
        justify-self: center;
        margin-bottom: 0;
    }
    
    .hero-image-wrapper {
        order: 2;
        z-index: 1;
    }
    
    .hero-title {
        order: 3;
        font-size: 44px;
        text-align: center;
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        order: 4;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .hide-mobile {
        display: none !important;
    }
    
    .hero-actions {
        order: 5;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-features {
        order: 6;
        align-items: center;
    }
    
    .floating-badge {
        display: flex;
        padding: 8px 12px;
        border-radius: var(--radius-sm);
        gap: 8px;
        box-shadow: var(--shadow-md);
    }
    
    .badge-1 {
        bottom: 15px;
        left: -10px;
    }
    
    .badge-2 {
        top: 25px;
        right: -10px;
    }
    
    .fb-number {
        font-size: 18px;
    }
    
    .fb-icon {
        font-size: 16px;
    }
    
    .fb-text {
        font-size: 10px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .calc-radio-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-card, .contacts-card {
        padding: 24px;
    }
    
    .result-top-banner {
        padding: 30px 24px;
    }
    
    .result-details, .calc-lead-form {
        padding: 24px;
    }
    
    .rtb-price {
        font-size: 38px;
    }
    
    .contact-floating-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .contact-toggle-btn {
        width: 50px;
        height: 50px;
    }
    
    .contact-toggle-btn svg {
        width: 22px;
        height: 22px;
    }

    .contact-menu-popover {
        bottom: 64px;
    }
    
    .messengers-buttons {
        flex-direction: column;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Prevent horizontal overflow from animations and large backgrounds on mobile */
    .scroll-reveal-right {
        transform: translateY(20px);
    }
    .scroll-reveal-right.active {
        transform: translateY(0);
    }
    .hero-image-bg-blur {
        width: 100%;
        height: 100%;
    }
}
