@font-face {
            font-family: 'Vazirmatn';
            src: url('/font/Vazirmatn-Thin.woff2');
            font-weight: 100;
            font-display: swap;
        }
        @font-face {
            font-family: 'Vazirmatn';
            src: url('/font/Vazirmatn-Light.woff2');
            font-weight: 300;
            font-display: swap;
        }
        @font-face {
            font-family: 'Vazirmatn';
            src: url('/font/Vazirmatn-Regular.woff2');
            font-weight: 400;
            font-display: swap;
        }
        @font-face {
            font-family: 'Vazirmatn';
            src: url('/font/Vazirmatn-Medium.woff2');
            font-weight: 500;
            font-display: swap;
        }
        @font-face {
            font-family: 'Vazirmatn';
            src: url('/font/Vazirmatn-SemiBold.woff2');
            font-weight: 600;
            font-display: swap;
        }
        @font-face {
            font-family: 'Vazirmatn';
            src: url('/font/Vazirmatn-Bold.woff2');
            font-weight: 700;
            font-display: swap;
        }
        @font-face {
            font-family: 'Vazirmatn';
            src: url('/font/Vazirmatn-ExtraBold.woff2');
            font-weight: 800;
            font-display: swap;
        }
        @font-face {
            font-family: 'Vazirmatn';
            src: url('/font/Vazirmatn-Black.woff2');
            font-weight: 900;
            font-display: swap;
        }
        * {
            font-family: 'Vazirmatn', sans-serif;
            direction: rtl;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a56db;
            --primary-dark: #1341a8;
            --primary-light: #e8f0fe;
            --secondary: #f59e0b;
            --secondary-dark: #d97706;
            --accent: #059669;
            --accent-light: #d1fae5;
            --surface: #ffffff;
            --surface-alt: #f9fafb;
            --text-primary: #1f2937;
            --text-secondary: #4b5563;
            --text-muted: #9ca3af;
            --border: #e5e7eb;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --radius: 12px;
            --radius-sm: 8px;
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            background: var(--surface);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            line-height: 1.4;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
        }
        .btn-primary:hover,
        .btn-primary:focus {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .btn-secondary {
            background: var(--secondary);
            color: #fff;
        }
        .btn-secondary:hover,
        .btn-secondary:focus {
            background: var(--secondary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        .btn-outline:hover,
        .btn-outline:focus {
            background: var(--primary);
            color: #fff;
        }
        .btn-call {
            background: var(--secondary);
            color: #fff;
            padding: 16px 40px;
            font-size: 1.1rem;
            border-radius: 50px;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }
        .btn-call::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            transition: left 0.6s ease;
        }
        .btn-call:hover::before {
            left: 100%;
        }
        .btn-call:hover {
            background: var(--secondary-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(245, 158, 11, 0.35);
        }
        .btn-call i {
            font-size: 1.2rem;
        }
        .section {
            padding: 80px 0;
        }
        .section-label {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 16px;
            line-height: 1.3;
        }
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 680px;
            margin: 0 auto 40px;
            text-align: center;
        }
        .text-center {
            text-align: center;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .card {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 32px 24px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }
        .card-icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 16px;
            background: var(--primary-light);
            color: var(--primary);
        }
        .card-title {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .card-text {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        .trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--accent-light);
            color: var(--accent);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* Header & Navigation */
        .header {
            background: var(--surface);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            background: rgba(255, 255, 255, 0.95);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
        }
        .logo {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo-icon {
            font-size: 1.6rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 28px;
            align-items: center;
        }
        .nav-list a {
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition);
            font-size: 0.95rem;
            position: relative;
        }
        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }
        .nav-list a:hover::after,
        .nav-list a:focus::after {
            width: 100%;
        }
        .nav-list a:hover {
            color: var(--primary);
        }
        .nav-cta {
            background: var(--primary);
            color: #fff !important;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
        }
        .nav-cta::after {
            display: none !important;
        }
        .nav-cta:hover {
            background: var(--primary-dark) !important;
            color: #fff !important;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }
        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--text-primary);
            border-radius: 3px;
            transition: var(--transition);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Hero */
        .hero {
            padding: 100px 0 80px;
            background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: rgba(26, 86, 219, 0.04);
            pointer-events: none;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(245, 158, 11, 0.04);
            pointer-events: none;
        }
        .hero .container {
            position: relative;
            z-index: 1;
        }
        .hero-content {
            max-width: 720px;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--text-primary);
            line-height: 1.3;
            margin-bottom: 16px;
        }
        .hero h1 span {
            color: var(--primary);
        }
        .hero p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            margin-bottom: 24px;
            max-width: 600px;
        }
        .hero-benefits {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 28px;
            margin-bottom: 28px;
        }
        .hero-benefits li {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            font-size: 0.95rem;
        }
        .hero-benefits li::before {
            content: '✓';
            color: var(--accent);
            font-weight: 700;
            font-size: 1.1rem;
        }
        .hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }
        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            margin-top: 8px;
        }
        .hero-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-primary);
        }
        .hero-phone a {
            color: var(--primary);
            direction: ltr;
            display: inline-block;
            transition: var(--transition);
        }
        .hero-phone a:hover {
            color: var(--primary-dark);
        }
        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-image img {
            max-width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
        }

        /* Services */
        .services {
            background: var(--surface-alt);
        }
        .service-item {
            text-align: center;
            padding: 32px 20px;
        }
        .service-item .card-icon {
            margin: 0 auto 16px;
        }

        /* Brands */
        .brands {
            background: var(--surface);
        }
        .brands-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px 36px;
            max-width: 900px;
            margin: 0 auto;
        }
        .brand-item {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-secondary);
            padding: 12px 24px;
            background: var(--surface-alt);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .brand-item:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
            transform: translateY(-2px);
        }
        .brand-item::before {
            content: '✦';
            color: var(--secondary);
            font-size: 0.8rem;
        }

        /* Why Us */
        .why-us {
            background: var(--surface-alt);
        }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .why-card {
            text-align: center;
            padding: 36px 24px;
        }
        .why-card .card-icon {
            margin: 0 auto 16px;
            background: var(--accent-light);
            color: var(--accent);
        }

        /* Process */
        .process {
            background: var(--surface);
        }
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            counter-reset: step;
        }
        .process-step {
            text-align: center;
            padding: 28px 16px;
            position: relative;
        }
        .process-step::before {
            counter-increment: step;
            content: counter(step);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            margin: 0 auto 16px;
        }
        .process-step .card-title {
            margin-bottom: 6px;
        }
        .process-step .card-text {
            font-size: 0.9rem;
        }
        .process-step:not(:last-child)::after {
            content: '←';
            position: absolute;
            top: 40px;
            left: -12px;
            font-size: 1.4rem;
            color: var(--border);
            transform: translateY(-50%);
        }

        /* Testimonials */
        .testimonials {
            background: var(--surface-alt);
        }
        .testimonial-card {
            padding: 32px 24px;
            position: relative;
        }
        .testimonial-card::before {
            content: '"';
            font-size: 3rem;
            color: var(--primary);
            opacity: 0.15;
            position: absolute;
            top: 12px;
            right: 20px;
            font-weight: 900;
            line-height: 1;
        }
        .testimonial-text {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 16px;
            font-style: italic;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testimonial-avatar {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
        }
        .testimonial-name {
            font-weight: 600;
            font-size: 0.95rem;
        }
        .testimonial-role {
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .testimonial-stars {
            color: var(--secondary);
            font-size: 0.9rem;
            letter-spacing: 2px;
            margin-top: 4px;
        }

        /* FAQ */
        .faq {
            background: var(--surface);
        }
        .faq-list {
            max-width: 780px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            overflow: hidden;
            transition: var(--transition);
        }
        .faq-item.active {
            border-color: var(--primary);
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 24px;
            background: var(--surface);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            text-align: right;
            transition: var(--transition);
            gap: 12px;
        }
        .faq-question:hover {
            background: var(--surface-alt);
        }
        .faq-question .faq-toggle {
            font-size: 1.2rem;
            transition: var(--transition);
            flex-shrink: 0;
            color: var(--primary);
        }
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 24px;
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 0.95rem;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 24px 20px;
        }

        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: #fff;
            text-align: center;
            padding: 80px 0;
        }
        .final-cta .section-title {
            color: #fff;
        }
        .final-cta .section-subtitle {
            color: rgba(255, 255, 255, 0.85);
        }
        .final-cta .btn-call {
            background: #fff;
            color: var(--primary);
            font-size: 1.2rem;
            padding: 18px 48px;
        }
        .final-cta .btn-call:hover {
            background: var(--secondary);
            color: #fff;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        .final-cta .trust-badge {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
        }
        .final-cta .hero-trust {
            justify-content: center;
        }

        /* Footer */
        .footer {
            background: var(--text-primary);
            color: rgba(255, 255, 255, 0.7);
            padding: 40px 0;
            text-align: center;
        }
        .footer a {
            color: rgba(255, 255, 255, 0.85);
            transition: var(--transition);
        }
        .footer a:hover {
            color: #fff;
        }
        .footer-phone {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff !important;
            direction: ltr;
            display: inline-block;
            margin: 8px 0;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 20px;
            font-size: 0.85rem;
        }

        /* Sticky Call Button - Desktop */
        .sticky-call-desktop {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 99;
            display: none;
        }
        .sticky-call-desktop .btn-call {
            padding: 16px 32px;
            font-size: 1.05rem;
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
            animation: pulse-ring 2s infinite;
        }
        @keyframes pulse-ring {
            0% {
                box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
            }
        }

        /* Sticky Bottom Bar - Mobile */
        .sticky-bottom-mobile {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 99;
            background: var(--surface);
            border-top: 1px solid var(--border);
            padding: 12px 16px;
            display: none;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
        }
        .sticky-bottom-mobile .btn-call {
            width: 100%;
            padding: 14px 24px;
            font-size: 1.05rem;
        }
        .sticky-bottom-mobile .btn-call i {
            font-size: 1.1rem;
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            z-index: 200;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .modal-overlay.active {
            display: flex;
        }
        .modal {
            background: var(--surface);
            border-radius: var(--radius);
            max-width: 480px;
            width: 100%;
            padding: 40px 32px;
            position: relative;
            box-shadow: var(--shadow-lg);
            animation: modalIn 0.3s ease;
        }
        @keyframes modalIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        .modal-close {
            position: absolute;
            top: 12px;
            left: 16px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-muted);
            transition: var(--transition);
            line-height: 1;
        }
        .modal-close:hover {
            color: var(--text-primary);
        }
        .modal-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .modal-text {
            color: var(--text-secondary);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        .modal-phone {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary);
            direction: ltr;
            display: inline-block;
            transition: var(--transition);
        }
        .modal-phone:hover {
            color: var(--primary-dark);
        }

        /* Toast Notification */
        .toast {
            position: fixed;
            top: 24px;
            left: 50%;
            transform: translateX(-50%) translateY(-100px);
            z-index: 300;
            background: var(--surface);
            border-radius: var(--radius-sm);
            padding: 16px 28px;
            box-shadow: var(--shadow-lg);
            border-right: 4px solid var(--accent);
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: transform 0.4s ease, opacity 0.4s ease;
            opacity: 0;
            pointer-events: none;
            max-width: 90vw;
        }
        .toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
            pointer-events: auto;
        }
        .toast.error {
            border-right-color: #ef4444;
        }
        .toast-icon {
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        /* Responsive */
        @media (min-width: 1024px) {
            .sticky-call-desktop {
                display: block;
            }
        }

        @media (max-width: 1023px) {
            .grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            .process-step:not(:last-child)::after {
                display: none;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-list {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--surface);
                flex-direction: column;
                padding: 20px;
                gap: 16px;
                border-bottom: 1px solid var(--border);
                box-shadow: var(--shadow-md);
                transform: translateY(-10px);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                z-index: 50;
            }
            .nav-list.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .nav-list a {
                width: 100%;
                padding: 10px 0;
                text-align: center;
            }
            .nav-list a::after {
                display: none;
            }
            .nav-cta {
                text-align: center;
                padding: 12px 20px;
            }

            .hero {
                padding: 60px 0 50px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .hero-benefits {
                gap: 10px 20px;
            }
            .hero-benefits li {
                font-size: 0.9rem;
            }

            .grid-2 {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .grid-3 {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .grid-4 {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .why-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .process-steps {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .section {
                padding: 50px 0;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .section-subtitle {
                font-size: 0.95rem;
                margin-bottom: 28px;
            }
            .brands-grid {
                gap: 12px 20px;
            }
            .brand-item {
                font-size: 0.9rem;
                padding: 8px 16px;
            }

            .final-cta {
                padding: 50px 0;
            }
            .final-cta .btn-call {
                padding: 14px 32px;
                font-size: 1rem;
            }

            .sticky-bottom-mobile {
                display: block;
            }
            .sticky-call-desktop {
                display: none !important;
            }

            .modal {
                padding: 28px 20px;
            }
            .modal-title {
                font-size: 1.2rem;
            }
            .modal-phone {
                font-size: 1.2rem;
            }

            .footer {
                padding: 28px 0;
            }
        }

        @media (max-width: 480px) {
            .header-inner {
                padding: 10px 0;
            }
            .logo {
                font-size: 1.1rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero-cta-group {
                flex-direction: column;
                align-items: stretch;
            }
            .hero-phone {
                justify-content: center;
            }
            .grid-4 {
                grid-template-columns: 1fr;
            }
            .brands-grid {
                gap: 8px 12px;
            }
            .brand-item {
                font-size: 0.8rem;
                padding: 6px 12px;
            }
            .btn-call {
                padding: 14px 24px;
                font-size: 0.95rem;
            }
            .btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
            .section-title {
                font-size: 1.3rem;
            }
            .card {
                padding: 24px 16px;
            }
            .faq-question {
                padding: 14px 16px;
                font-size: 0.9rem;
            }
            .faq-answer {
                font-size: 0.85rem;
            }
            .sticky-bottom-mobile .btn-call {
                font-size: 0.95rem;
                padding: 12px 20px;
            }
            .toast {
                font-size: 0.85rem;
                padding: 12px 20px;
                top: 16px;
            }
        }
