/* ============================================
   CHIPXPERT OÜ — Static Website CSS
   Design: Raw Power Industrial
   Colors: #0D0D0D (dark), #FACC15 (yellow)
   Fonts: Bebas Neue, IBM Plex Sans, IBM Plex Mono
   ============================================ */

/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0D0D0D;
    color: #F5F5F5;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.1em;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.75rem;
    line-height: 1.3;
}

h4 {
    font-size: 1.25rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

p {
    color: #AAAAAA;
    line-height: 1.8;
}

.accent {
    color: #FACC15;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: #FACC15;
    color: #0D0D0D;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

    .btn-primary:hover {
        background-color: #FDE047;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(250, 204, 21, 0.3);
    }

.btn-secondary {
    background-color: #1A1A1A;
    color: #FACC15;
    border: 2px solid #FACC15;
}

    .btn-secondary:hover {
        background-color: #FACC15;
        color: #0D0D0D;
    }

.btn-outline {
    background-color: transparent;
    color: #FACC15;
    border: 2px solid #FACC15;
}

    .btn-outline:hover {
        background-color: #FACC15;
        color: #0D0D0D;
    }

.btn-block {
    width: 100%;
}

/* ============ NAVBAR ============ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #0D0D0D;
    border-bottom: 1px solid #1E1E1E;
    backdrop-filter: blur(10px);
    background-color: rgba(13, 13, 13, 0.95);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-text {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.1em;
    color: #FACC15;
}

.brand-separator {
    color: #FACC15;
    margin: 0 0.25rem;
}

.navbar-menu {
    display: none;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .navbar-menu {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    color: #AAAAAA;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: #FACC15;
    }

.nav-cta {
    background-color: #FACC15;
    color: #0D0D0D;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

    .nav-cta:hover {
        background-color: #FDE047;
    }

.navbar-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .navbar-toggle {
        display: none;
    }
}

.navbar-toggle span {
    width: 24px;
    height: 2px;
    background-color: #FACC15;
    transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.navbar-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #0D0D0D;
    border-bottom: 1px solid #1E1E1E;
    padding: 1.5rem;
    gap: 1rem;
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.92) 0%, rgba(13, 13, 13, 0.88) 100%), 
                url('assets/images/bg/hero-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #888;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@media (max-width: 640px) {
    .hero-cta {
        flex-direction: column;
    }

        .hero-cta .btn {
            width: 100%;
        }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #FACC15;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.875rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-desc {
    font-size: 0.875rem;
    color: #888;
    margin-top: 0.5rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #FACC15;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ BRANDS STRIP ============ */
.brands-strip {
    background-color: #FACC15;
    padding: 1rem 0;
    overflow: hidden;
}

.ticker {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    color: #0D0D0D;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .ticker-item::after {
        content: '◆';
        color: rgba(13, 13, 13, 0.3);
        font-size: 0.5rem;
    }

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

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

/* ============ SECTION HEADER ============ */
.section-header {
    margin-bottom: 3rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: #FACC15;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

    .section-label::before {
        content: '';
        display: inline-block;
        width: 2rem;
        height: 0.125rem;
        background-color: #FACC15;
    }

/* ============ SERVICES SECTION ============ */
.services {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.92) 100%), 
                url('assets/images/bg/services-bg.jpg') center/cover no-repeat;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #1A1A1A;
    border: 1px solid #2E2E2E;
    padding: 2rem;
    transition: all 0.3s ease;
}

    .service-card:hover {
        border-color: rgba(250, 204, 21, 0.4);
        transform: translateY(-5px);
    }

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-link {
    color: #FACC15;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .service-link:hover {
        gap: 1rem;
    }

/* ============ WHY US SECTION ============ */
.why-us {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.93) 0%, rgba(13, 13, 13, 0.90) 100%), 
                url('assets/images/bg/about-bg.jpg') center/cover no-repeat;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.why-us-image {
    position: relative;
}

    .why-us-image img {
        width: 100%;
        height: auto;
        display: block;
    }

.stat-badge {
    position: absolute;
    padding: 1.5rem;
    background-color: #FACC15;
    color: #0D0D0D;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.stat-badge-primary {
    bottom: -1.5rem;
    right: -1.5rem;
}

.stat-badge-secondary {
    top: 1.5rem;
    left: -1.5rem;
    background-color: #1A1A1A;
    border: 1px solid #2E2E2E;
    color: #FACC15;
}

.badge-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.badge-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.why-us-content h2 {
    margin-bottom: 1.5rem;
}

.why-us-content > p {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 640px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

.reason {
    display: flex;
    gap: 1rem;
}

.reason-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.reason h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.reason p {
    font-size: 0.875rem;
    color: #888;
}

.brands-list {
    margin-top: 2rem;
}

.brands-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: #555;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.brands-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.brand-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: #888;
    border: 1px solid #2E2E2E;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

    .brand-tag:hover {
        border-color: rgba(250, 204, 21, 0.4);
        color: #FACC15;
    }

/* ============ PROCESS SECTION ============ */
.process {
    padding: 6rem 1rem;
    background-color: #111111;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
    margin-bottom: 3rem;
    border: 1px solid #2E2E2E;
}

.step {
    position: relative;
    border-right: 1px solid #2E2E2E;
    padding: 2rem;
    background-color: #1A1A1A;
    transition: all 0.3s ease;
}

    .step:last-child {
        border-right: none;
    }

    .step:hover {
        border-color: rgba(250, 204, 21, 0.4);
        background-color: #1A1A1A;
    }

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step p {
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .step {
        border-right: none;
        border-bottom: 1px solid #2E2E2E;
    }

        .step:last-child {
            border-bottom: none;
        }
}

.process-cta {
    background-color: #1A1A1A;
    border: 1px solid #2E2E2E;
    padding: 2rem;
    text-align: center;
}

    .process-cta h3 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .process-cta p {
        margin-bottom: 1.5rem;
        color: #888;
    }

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
    }

        .cta-buttons .btn {
            width: 100%;
        }
}

/* ============ TESTIMONIALS SECTION ============ */
.testimonials {
    padding: 6rem 1rem;
    background-color: #0D0D0D;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    background-color: #1A1A1A;
    border: 1px solid #2E2E2E;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

    .testimonial-card:hover {
        border-color: rgba(250, 204, 21, 0.4);
        transform: translateY(-5px);
    }

.stars {
    color: #FACC15;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: #AAAAAA;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    border-top: 1px solid #2E2E2E;
    padding-top: 1rem;
}

    .testimonial-author strong {
        display: block;
        color: #F5F5F5;
        margin-bottom: 0.25rem;
    }

    .testimonial-author span {
        display: block;
        font-size: 0.75rem;
        color: #555;
        font-family: 'IBM Plex Mono', monospace;
    }

    .testimonial-author .service {
        color: #FACC15;
        margin-top: 0.5rem;
    }

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

    .testimonials-link a {
        color: #888;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

        .testimonials-link a:hover {
            color: #FACC15;
        }

/* ============ FAQ SECTION ============ */
.faq {
    padding: 6rem 1rem;
    background-color: #111111;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-header h2 {
    margin-bottom: 1.5rem;
}

.faq-header p {
    margin-bottom: 1.5rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    border: 1px solid #2E2E2E;
    background-color: #1A1A1A;
    transition: all 0.3s ease;
}

    .faq-item.active {
        border-color: rgba(250, 204, 21, 0.4);
        background-color: #1A1A1A;
    }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    color: #CCCCCC;
    text-align: left;
    transition: color 0.3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
}

.faq-item.active .faq-question {
    color: #FACC15;
}

.faq-question:hover {
    color: #FACC15;
}

.faq-icon {
    font-size: 1.25rem;
    color: #555;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    color: #FACC15;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid #2E2E2E;
    color: #888;
    font-size: 0.9rem;
}

/* ============ CONTACT SECTION ============ */
.contact {
    padding: 6rem 1rem;
    background-color: #0D0D0D;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    background-color: #1A1A1A;
    border: 1px solid #2E2E2E;
    padding: 1rem;
    transition: all 0.3s ease;
}

    .contact-item:hover {
        border-color: rgba(250, 204, 21, 0.4);
    }

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    color: #555;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-value {
    color: #CCCCCC;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    flex: 1;
    padding: 0.75rem;
    text-align: center;
    border: 1px solid #2E2E2E;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

    .social-btn.whatsapp {
        background-color: rgba(37, 211, 102, 0.1);
        border-color: rgba(37, 211, 102, 0.3);
        color: #25D366;
    }

        .social-btn.whatsapp:hover {
            background-color: rgba(37, 211, 102, 0.2);
        }

    .social-btn.instagram {
        background-color: rgba(225, 48, 108, 0.1);
        border-color: rgba(225, 48, 108, 0.3);
        color: #E1306C;
    }

        .social-btn.instagram:hover {
            background-color: rgba(225, 48, 108, 0.2);
        }

    .social-btn.facebook {
        background-color: rgba(24, 119, 242, 0.1);
        border-color: rgba(24, 119, 242, 0.3);
        color: #1877F2;
    }

        .social-btn.facebook:hover {
            background-color: rgba(24, 119, 242, 0.2);
        }

.map-container {
    border: 1px solid #2E2E2E;
    overflow: hidden;
    margin-bottom: 2rem;
}

    .map-container iframe {
        width: 100%;
        height: 300px;
    }

/* Contact Form */
.contact-form-wrapper {
    background-color: #1A1A1A;
    border: 1px solid #2E2E2E;
    padding: 2rem;
}

    .contact-form-wrapper h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .contact-form-wrapper > p {
        margin-bottom: 1.5rem;
        color: #888;
    }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 0.7rem;
        color: #555;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        background-color: #111111;
        border: 1px solid #2E2E2E;
        color: #F5F5F5;
        padding: 0.75rem;
        font-family: 'IBM Plex Sans', sans-serif;
        font-size: 0.9rem;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #FACC15;
        }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

.form-note {
    font-size: 0.8rem;
    color: #555;
    text-align: center;
    margin-top: 1rem;
}

    .form-note a {
        color: #FACC15;
    }

#formSuccess,
#formError {
    display: none;
}

    #formSuccess.show,
    #formError.show {
        display: block;
    }

.form-message {
    margin-top: 16px;
    padding: 20px;
    border: 1px solid transparent;
    text-align: center;
}

.success-message {
    background: rgba(201, 169, 97, 0.12);
    border-color: rgba(201, 169, 97, 0.35);
    color: #f0c94a;
}

.error-message {
    background: rgba(180, 40, 40, 0.12);
    border-color: rgba(255, 80, 80, 0.35);
    color: #ff6b6b;
}

    .success-message strong,
    .error-message strong {
        display: block;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 8px;
        text-transform: uppercase;
    }

    .success-message p,
    .error-message p {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
        color: #b8b8b8;
    }

/* ============ FOOTER ============ */
.footer {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.91) 100%), 
                url('assets/images/bg/footer-bg.jpg') center/cover no-repeat;
    border-top: 1px solid #1E1E1E;
}

.footer-cta {
    background-color: #FACC15;
    color: #0D0D0D;
    padding: 2rem 1rem;
    text-align: center;
}

    .footer-cta h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .footer-cta p {
        color: rgba(13, 13, 13, 0.7);
        margin-bottom: 1.5rem;
    }

.footer-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .footer-cta-buttons {
        flex-direction: column;
    }

        .footer-cta-buttons .btn {
            width: 100%;
        }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 1rem;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border-left: 2px solid #FACC15;
    padding-left: 0.75rem;
}

.footer-section p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

.footer-section a {
    color: #888;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

    .footer-section a:hover {
        color: #FACC15;
    }

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border: 1px solid #2E2E2E;
        transition: all 0.3s ease;
    }

        .footer-social a:hover {
            border-color: #FACC15;
        }

.hours {
    font-size: 0.85rem;
}

    .hours li {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }

    .hours span:first-child {
        color: #888;
    }

    .hours span:last-child {
        color: #AAAAAA;
        font-family: 'IBM Plex Mono', monospace;
    }

.footer-bottom {
    border-top: 1px solid #1E1E1E;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: #444;
}

    .footer-bottom p {
        margin: 0.25rem 0;
    }

/* ============ MOBILE CTA BAR ============ */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    flex-direction: row;
    background-color: #0D0D0D;
    border-top: 1px solid #1E1E1E;
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
    }
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

    .mobile-cta-btn.phone {
        background-color: #FACC15;
        color: #0D0D0D;
    }

        .mobile-cta-btn.phone:active {
            background-color: #FDE047;
        }

    .mobile-cta-btn.whatsapp {
        background-color: #25D366;
        color: white;
    }

        .mobile-cta-btn.whatsapp:active {
            background-color: #1ea853;
        }

    .mobile-cta-btn span:first-child {
        font-size: 1.25rem;
    }

/* ============ UTILITIES ============ */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

/* ============ ANIMATIONS ============ */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll animations */
.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* ============ PRINT STYLES ============ */
@media print {
    .navbar,
    .mobile-cta-bar,
    .hero-scroll {
        display: none;
    }
}



/* ============ MOBILE PROPORTIONS FIX ============ */
@media (max-width: 1024px) {
    .navbar-container {
        padding: 0.9rem 1rem;
    }

    .navbar-menu.active {
        padding: 1rem;
        gap: 0.75rem;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    }

    .nav-link,
    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .nav-cta {
        padding: 0.9rem 1rem;
    }

    .hero {
        min-height: auto;
        padding: 5.5rem 1rem 3rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.6rem;
        line-height: 1.02;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        margin-bottom: 2rem;
    }

        .hero-cta .btn {
            min-height: 52px;
        }

    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .stat {
        background-color: #141414;
        border: 1px solid #232323;
        padding: 1rem 0.75rem;
    }

    .stat-value {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.72rem;
    }

    .stat-desc {
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .services,
    .why-us,
    .process,
    .testimonials,
    .faq,
    .contact {
        padding: 4.5rem 1rem;
    }

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

    .service-card {
        padding: 1.35rem;
    }

        .service-card h3 {
            font-size: 1.25rem;
        }

        .service-card p {
            font-size: 0.9rem;
            line-height: 1.65;
        }

    .why-us-grid {
        gap: 2.5rem;
    }

    .why-us-content h2,
    .section-header h2 {
        line-height: 1.05;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .reason {
        padding: 1.25rem;
    }

    .brands-tags {
        gap: 0.5rem;
    }

    .brand-tag {
        font-size: 0.72rem;
        padding: 0.45rem 0.65rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step {
        padding: 1.4rem 1.2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .contact-grid {
        gap: 1.5rem;
    }

    .social-links {
        flex-direction: column;
    }

    .map-container {
        margin-bottom: 1.25rem;
    }

        .map-container iframe {
            height: 260px;
        }

    .contact-form-wrapper {
        padding: 1.25rem;
    }

        .contact-form-wrapper h3 {
            font-size: 1.3rem;
            line-height: 1.1;
        }

    .form-group input,
    .form-group select,
    .form-group textarea,
    .btn,
    .mobile-cta-btn {
        border-radius: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
        font-size: 16px;
    }

    .form-group textarea {
        min-height: 110px;
    }

    .form-success {
        padding: 1.25rem;
    }

    .footer-cta {
        padding: 1.5rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem 5.5rem;
    }

    .back-to-top {
        bottom: 5.5rem !important;
        right: 1rem !important;
    }
}

/* ===== MOBILE HERO FIX ===== */
@media (max-width: 768px) {
    .hero,
    .hero-section,
    .main-hero {
        min-height: auto;
        padding: 110px 0 40px;
    }

        .hero .container,
        .hero-section .container,
        .main-hero .container {
            padding-left: 16px;
            padding-right: 16px;
        }

    .hero-content,
    .hero-text,
    .hero-inner {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .hero h1,
    .hero-title,
    .main-title {
        font-size: 52px;
        line-height: 0.95;
        letter-spacing: 0;
        margin-bottom: 20px;
        max-width: 100%;
        word-break: break-word;
        overflow-wrap: anywhere;
        white-space: normal;
    }

        .hero h1 span,
        .hero-title span,
        .main-title span {
            display: inline;
            white-space: normal;
        }

    .hero p,
    .hero-description,
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.65;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .hero-buttons,
    .hero-actions,
    .cta-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

        .hero-buttons .btn,
        .hero-actions .btn,
        .cta-group .btn,
        .hero-buttons a,
        .hero-actions a {
            width: 100%;
            min-height: 56px;
            justify-content: center;
        }

    .hero-stats,
    .stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        margin-top: 26px;
    }

    .hero-stat,
    .stat-item {
        padding: 24px 14px;
        min-width: 0;
    }

    .hero-stat-number,
    .stat-value {
        font-size: 48px;
        line-height: 1;
    }

    .hero-stat-label,
    .stat-label {
        font-size: 14px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .hero,
    .hero-section,
    .main-hero {
        padding: 100px 0 34px;
    }

        .hero .container,
        .hero-section .container,
        .main-hero .container {
            padding-left: 14px;
            padding-right: 14px;
        }

        .hero h1,
        .hero-title,
        .main-title {
            font-size: 44px;
            line-height: 0.94;
        }

        .hero p,
        .hero-description,
        .hero-subtitle {
            font-size: 15px;
            line-height: 1.55;
        }

    .hero-stat-number,
    .stat-value {
        font-size: 42px;
    }

    .hero-stat,
    .stat-item {
        padding: 20px 12px;
    }
}

/* ============ FINAL MOBILE ALIGNMENT FIX ============ */
html, body {
    width: 100%;
    max-width: 100%;
}

img, iframe {
    max-width: 100%;
}

.hero-content,
.section-header,
.faq-header,
.process-cta,
.footer-cta,
.contact-form-wrapper {
    margin-left: auto;
    margin-right: auto;
}

    .footer-cta .btn-outline {
        border-color: #0D0D0D;
        color: #0D0D0D;
    }

        .footer-cta .btn-outline:hover {
            background-color: #0D0D0D;
            color: #FACC15;
            border-color: #0D0D0D;
        }

    .footer-cta .btn-secondary {
        background-color: #0D0D0D;
        color: #FACC15;
        border-color: #0D0D0D;
    }

        .footer-cta .btn-secondary:hover {
            background-color: #1A1A1A;
            color: #FACC15;
        }

@media (max-width: 1024px) {
    .container,
    .navbar-container,
    .footer-content {
        width: 100%;
        max-width: 100%;
    }

    .section-header,
    .footer-cta,
    .faq-header,
    .process-cta {
        text-align: center;
    }

    .section-label {
        justify-content: center;
    }

    .why-us-content,
    .faq-header,
    .contact-form-wrapper,
    .contact-info,
    .footer-section {
        width: 100%;
    }

        .contact-form-wrapper,
        .contact-info,
        .footer-section,
        .footer-section p,
        .footer-section ul,
        .footer-section li {
            text-align: center;
        }

            .footer-section h4 {
                border-left: none;
                padding-left: 0;
            }

    .footer-social,
    .social-links,
    .footer-cta-buttons,
    .cta-buttons,
    .hero-cta {
        justify-content: center;
    }

    .contact-item {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.35rem;
    }

    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.1;
        margin-bottom: 1rem;
        letter-spacing: 0.02em;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        gap: 10px;
        flex-direction: column;
    }

        .hero-cta .btn,
        .cta-buttons .btn,
        .footer-cta-buttons .btn {
            width: 100%;
            max-width: 100%;
            min-height: 48px;
            margin-left: 0;
            margin-right: 0;
            padding: 0.6rem 1rem;
        }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        gap: 1rem;
        margin-top: 2rem;
    }

    .stat {
        width: 100%;
        text-align: center;
        padding: 0.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-grid,
    .process-steps,
    .faq-grid,
    .contact-grid,
    .why-us-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card,
    .testimonial-card,
    .step,
    .contact-form-wrapper,
    .contact-item,
    .faq-item,
    .footer-section {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 1rem;
    }

    .service-card,
    .testimonial-card,
    .step,
    .contact-form-wrapper {
        padding: 1rem;
    }

    .why-us-image {
        max-width: 100%;
        overflow: hidden;
    }

    .stat-badge-primary {
        right: 0.75rem;
        bottom: 0.75rem;
    }

    .stat-badge-secondary {
        left: 0.75rem;
        top: 0.75rem;
    }

    .badge-value {
        font-size: 1.8rem;
    }

    .badge-label {
        font-size: 0.62rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-btn {
        width: 100%;
    }

    .footer-content {
        padding-bottom: 6rem;
    }

    .mobile-cta-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .mobile-cta-btn {
        min-width: 0;
        padding: 0.95rem 0.5rem;
        font-size: 0.68rem;
        text-align: center;
    }

        .mobile-cta-btn span:last-child {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0.85rem 0.9rem;
    }

    .hero-content {
        padding: 0 14px;
    }

    .hero-title {
        font-size: clamp(2rem, 11vw, 2.45rem);
        line-height: 1;
    }

    .hero-subtitle,
    .service-card p,
    .testimonial-card p,
    .step p,
    .faq-answer p,
    .contact-value,
    .footer-section p,
    .footer-section a {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .section-header h2,
    .why-us-content h2,
    .faq-header h2,
    .footer-cta h3,
    .contact-form-wrapper h3,
    .process-cta h3 {
        font-size: clamp(1.7rem, 8vw, 2.1rem);
        line-height: 1.02;
    }

    .footer-cta {
        padding: 1.4rem 0.9rem;
    }

    .footer-cta-buttons {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .mobile-cta-btn {
        font-size: 0.64rem;
        gap: 0.35rem;
        padding: 0.9rem 0.4rem;
    }

        .mobile-cta-btn span:first-child {
            font-size: 1rem;
        }
}

/* ==== FIX ДЛЯ iPhone / мобильного блока услуг ==== */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem 1rem;
        min-width: 0;
        width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .service-card h3 {
        font-size: 1.2rem;
        line-height: 1.25;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.6;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .service-link {
        white-space: normal;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* ==================================================
   FINAL IPHONE LAYOUT FIXES — CHIPXPERT
   ================================================== */

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

img,
svg,
iframe,
video {
    max-width: 100%;
    height: auto;
}

.container,
.navbar-container,
.hero-content,
.section-header,
.service-card,
.contact-form-wrapper,
.process-cta,
.testimonial-card,
.faq-item,
.contact-item,
.footer-section {
    min-width: 0;
}

.section-header h2,
.why-us-content h2,
.faq-header h2,
.footer-cta h3,
.contact-form-wrapper h3,
.process-cta h3,
.hero-title,
.service-card h3,
.step h3,
.reason h4 {
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: none;
}

@media (max-width: 768px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .navbar,
    .navbar-container {
        width: 100%;
        max-width: 100%;
    }

    .brand-text {
        font-size: 1.65rem;
        line-height: 1;
    }

    .hero {
        padding: 5.8rem 0 3rem;
        min-height: auto;
        background-attachment: scroll;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 2px;
    }

    .hero-title {
        font-size: clamp(2.1rem, 10vw, 2.85rem);
        line-height: 0.98;
        letter-spacing: 0.04em;
        margin-bottom: 0.9rem;
    }

    .hero-subtitle {
        width: 100%;
        max-width: 100%;
        font-size: 0.98rem;
        line-height: 1.65;
        padding: 0 6px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        width: 100%;
        gap: 0.85rem;
    }

    .hero-cta .btn,
    .cta-buttons .btn,
    .footer-cta-buttons .btn {
        width: 100%;
        min-height: 52px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.7rem;
        width: 100%;
    }

    .stat {
        min-width: 0;
        padding: 0.95rem 0.55rem;
    }

    .stat-value {
        font-size: clamp(2rem, 8vw, 2.4rem);
    }

    .stat-label {
        font-size: 0.72rem;
        line-height: 1.2;
    }

    .stat-desc {
        font-size: 0.82rem;
        line-height: 1.35;
    }

    .brands-strip {
        overflow: hidden;
    }

    .ticker {
        gap: 1.4rem;
    }

    .ticker-item {
        font-size: 0.78rem;
        letter-spacing: 0.08em;
    }

    .services,
    .why-us,
    .process,
    .testimonials,
    .faq,
    .contact {
        padding: 4rem 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .section-label {
        justify-content: center;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        gap: 0.6rem;
        letter-spacing: 0.18em;
    }

    .section-label::before {
        width: 1.8rem;
    }

    .services .section-header h2 {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
        line-height: 1.02;
        letter-spacing: 0.02em;
        max-width: 100%;
        padding: 0 4px;
        word-break: keep-all;
        overflow-wrap: normal;
        hyphens: none;
    }

    .why-us-content h2,
    .faq-header h2,
    .footer-cta h3,
    .contact-form-wrapper h3,
    .process-cta h3,
    .section-header h2 {
        font-size: clamp(1.75rem, 8vw, 2.2rem);
        line-height: 1.04;
        letter-spacing: 0.03em;
    }

    .services-grid,
    .testimonials-grid,
    .reasons-grid,
    .contact-grid,
    .faq-grid,
    .why-us-grid,
    .process-steps,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .service-card,
    .testimonial-card,
    .contact-form-wrapper,
    .process-cta,
    .faq-item,
    .contact-item {
        width: 100%;
        max-width: 100%;
    }

    .service-card {
        padding: 1.35rem 1rem;
    }

    .service-card h3 {
        font-size: 1.15rem;
        line-height: 1.25;
        letter-spacing: 0.03em;
    }

    .service-card p,
    .testimonial-card p,
    .step p,
    .faq-answer p,
    .contact-value,
    .footer-section p,
    .footer-section a,
    .reason p {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .service-link,
    .contact-value,
    .social-btn,
    .mobile-cta-btn,
    .nav-link,
    .nav-cta {
        overflow-wrap: anywhere;
    }

    .why-us-image,
    .why-us-image img {
        width: 100%;
        max-width: 100%;
    }

    .stat-badge {
        padding: 1rem;
    }

    .stat-badge-primary {
        right: 0.5rem;
        bottom: 0.5rem;
    }

    .stat-badge-secondary {
        top: 0.5rem;
        left: 0.5rem;
    }

    .badge-value {
        font-size: 1.9rem;
    }

    .reason {
        align-items: flex-start;
        padding: 1rem;
    }

    .process-steps {
        border-right: 1px solid #2E2E2E;
        border-left: 1px solid #2E2E2E;
    }

    .step {
        padding: 1.25rem 1rem;
    }

    .step-number {
        font-size: 2.2rem;
        top: 0.8rem;
        right: 0.8rem;
    }

    .faq-question {
        gap: 1rem;
        padding: 1rem;
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 0 1rem 1rem;
    }

    .social-links,
    .cta-buttons,
    .footer-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .social-btn {
        width: 100%;
    }

    .map-container iframe {
        height: 240px;
    }

    .contact-form-wrapper {
        padding: 1.2rem 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        min-height: 48px;
        font-size: 16px;
    }

    .footer-content {
        padding: 2rem 14px 5.8rem;
        gap: 1.3rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .mobile-cta-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .mobile-cta-btn {
        min-width: 0;
        padding: 0.95rem 0.45rem;
        font-size: 0.66rem;
        letter-spacing: 0.07em;
        text-align: center;
        gap: 0.35rem;
    }

    .mobile-cta-btn span:first-child {
        font-size: 1rem;
        flex-shrink: 0;
    }

    .mobile-cta-btn span:last-child {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .navbar-container {
        padding: 0.85rem 0.8rem;
    }

    .brand-text {
        font-size: 1.5rem;
    }

    .hero {
        padding-top: 5.5rem;
    }

    .hero-title {
        font-size: clamp(1.95rem, 10.5vw, 2.35rem);
    }

    .hero-subtitle {
        font-size: 0.94rem;
        line-height: 1.6;
        padding: 0 2px;
    }

    .hero-stats {
        gap: 0.55rem;
    }

    .stat {
        padding: 0.9rem 0.4rem;
    }

    .stat-value {
        font-size: clamp(1.85rem, 8vw, 2.2rem);
    }

    .stat-label {
        font-size: 0.66rem;
    }

    .stat-desc {
        font-size: 0.76rem;
        line-height: 1.3;
    }

    .services .section-header h2,
    .why-us-content h2,
    .faq-header h2,
    .footer-cta h3,
    .contact-form-wrapper h3,
    .process-cta h3,
    .section-header h2 {
        font-size: clamp(1.55rem, 7.5vw, 1.95rem);
        line-height: 1.04;
    }

    .services .section-header h2 {
        padding: 0 2px;
        word-break: keep-all;
        overflow-wrap: normal;
    }

    .section-label {
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

    .service-card {
        padding: 1.2rem 0.9rem;
    }

    .service-card h3 {
        font-size: 1.05rem;
    }

    .service-card p,
    .testimonial-card p,
    .step p,
    .faq-answer p,
    .contact-value,
    .footer-section p,
    .footer-section a,
    .reason p {
        font-size: 0.88rem;
        line-height: 1.58;
    }

    .faq-question {
        font-size: 0.86rem;
        padding: 0.95rem;
    }

    .contact-item {
        padding: 0.9rem;
    }

    .mobile-cta-btn {
        font-size: 0.62rem;
        padding: 0.85rem 0.35rem;
    }

    .map-container iframe {
        height: 220px;
    }
}
