@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-orange: #FF6B35;
    --primary-blue: #1E3A8A;
    --light-blue: #3B82F6;
    --dark-blue: #1E40AF;
    --accent-orange: #FF8C42;
    --light-orange: #FFB085;
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --medium-gray: #E2E8F0;
    --dark-gray: #334155;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    --gradient-blue: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(59, 130, 246, 0.8) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, .btn, .nav-links a {
    font-family: 'Poppins', sans-serif;
}

 .cookies-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(145deg, #131313 0%, #1a1a1a 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 3px solid #00A5E0;
}

.cookies-popup.show {
    transform: translateY(0);
}

.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookies-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.cookies-icon {
    font-size: 24px;
    color: #00A5E0;
}

.cookies-title {
    font-size: 18px;
    font-weight: 600;
    color: #00A5E0;
    margin: 0;
}

.cookies-text {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
    opacity: 0.9;
}

.cookies-details {
    background: rgba(0, 165, 224, 0.1);
    border-radius: 6px;
    padding: 15px;
    margin: 10px 0;
    border-left: 3px solid #00A5E0;
    display: none;
}

.cookies-details.show {
    display: block;
}

.cookies-category {
    margin-bottom: 12px;
}

.cookies-category h4 {
    margin: 0 0 6px 0;
    color: #00A5E0;
    font-size: 14px;
    font-weight: 600;
}

.cookies-category p {
    margin: 0;
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.5;
}

.cookies-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.cookies-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.cookies-btn-accept {
    background: #00A5E0;
    color: white;
}

.cookies-btn-accept:hover {
    background: #0077A0;
    transform: translateY(-2px);
}

.cookies-btn-reject {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
}

.cookies-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.cookies-btn-settings {
    background: transparent;
    color: #00A5E0;
    border: 1px solid #00A5E0;
}

.cookies-btn-settings:hover {
    background: rgba(0, 165, 224, 0.1);
}

.cookies-link {
    color: #00A5E0;
    text-decoration: underline;
    cursor: pointer;
    font-size: 13px;
}

.cookies-link:hover {
    color: #0077A0;
}

.cookies-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookies-toggle:last-child {
    border-bottom: none;
}

.cookies-toggle-info {
    flex: 1;
}

.cookies-toggle-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.cookies-toggle-desc {
    font-size: 12px;
    opacity: 0.7;
    margin: 0;
}

.cookies-switch {
    position: relative;
    width: 50px;
    height: 24px;
    background: #555;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookies-switch.active {
    background: #00A5E0;
}

.cookies-switch:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookies-switch.active:before {
    transform: translateX(26px);
}


@media (max-width: 768px) {
    .cookies-popup {
        padding: 15px;
    }

    .cookies-content {
        gap: 12px;
    }

    .cookies-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cookies-btn {
        width: 100%;
        min-width: unset;
    }

    .cookies-text {
        font-size: 13px;
    }

    .cookies-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cookies-popup {
        padding: 12px;
    }

    .cookies-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-fluid {
    max-width: 100%;
    padding: 0 2rem;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--medium-gray);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.logo-text span.orange {
    color: var(--primary-orange);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.1);
}

.nav-links a.active {
    color: var(--primary-orange);
    font-weight: 700;
    background: rgba(255, 107, 53, 0.08);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.nav-cta {
    background: var(--gradient-primary);
    color: white !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    background: var(--primary-orange) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}


.logo-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.logo-watermark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.logo-icon-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

.logo-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


@media (max-width: 1024px) {
    .logo-watermark {
width: 750px;
height: 750px;
opacity: 0.08;
    }


    .logo-icon-image {
width: 60px;
height: 60px;
    }
}

@media (max-width: 768px) {
    .logo-watermark {
width: 600px;
height: 600px;
opacity: 0.09;
    }

    .logo-icon-image {
width: 55px;
height: 55px;
    }
}

@media (max-width: 480px) {
    .logo-watermark {
width: 450px;
height: 450px;
opacity: 0.1;
    }

    .logo-icon-image {
width: 50px;
height: 50px;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(0);
}

.hero-slide.active {
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
    transform: translateX(0);
    transition: transform 0.4s ease;
}

.hero-slide.exit-left {
    visibility: visible;
    z-index: 2;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.hero-slide.exit-right {
    visibility: visible;
    z-index: 2;
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.hero-slide.enter-from-right {
    visibility: visible;
    z-index: 3;
    transform: translateX(100%);
    transition: none;
}

.hero-slide.enter-from-left {
    visibility: visible;
    z-index: 3;
    transform: translateX(-100%);
    transition: none;
}

.hero-slide.sliding-in {
    visibility: visible;
    z-index: 3;
    transform: translateX(0);
    transition: transform 0.4s ease;
}


.hero-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide[data-slide="0"] .hero-slide-bg {
    background-image: url('zdj6.jpg');
}

.hero-slide[data-slide="1"] .hero-slide-bg {
    background-image: url('zdj10.jpg');
}



.hero-slide-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,20,60,0.82) 0%, rgba(30,58,138,0.65) 50%, rgba(59,130,246,0.45) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: white;
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
opacity: 0;
transform: translateY(30px);
    }
    to {
opacity: 1;
transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}


.hero-nav {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.hero-dots {
    display: flex;
    gap: 0.75rem;
}

.hero-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.hero-dot.active {
    background: white;
    border-color: white;
    width: 32px;
    border-radius: 6px;
}


.hero-slide-content .btn-primary {
    background: white;
    color: var(--primary-blue);
    border-color: white;
}

.hero-slide-content .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-orange);
}

.hero-slide-content .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.hero-slide-content .btn-outline:hover {
    background: white;
    color: var(--primary-blue);
}


@media (max-width: 768px) {
    .hero-title {
font-size: 2.5rem;
    }

    .hero-subtitle {
font-size: 1.1rem;
    }

    .hero-buttons {
flex-direction: column;
align-items: center;
    }

    .btn {
width: 100%;
max-width: 300px;
justify-content: center;
    }

    .hero-nav {
bottom: 2rem;
gap: 1rem;
    }

    .hero-nav-btn {
width: 40px;
height: 40px;
font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
font-size: 2rem;
    }

    .hero-subtitle {
font-size: 1rem;
    }

    .hero-slide-content {
padding: 0 1rem;
    }

    .hero-nav-btn {
display: none;
    }
}


.features {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-light);
    border-color: var(--primary-orange);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--text-light);
    line-height: 1.6;
}


.about {
    padding: 8rem 0;
    background: var(--light-gray);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    max-width: 600px;
}

.about-list {
    list-style: none;
    margin: 2rem 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.about-list i {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--medium-gray);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid2" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid2)"/></svg>') center/cover;
}

.about-image-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-light);
}

.about-image-content i {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    opacity: 0.7;
}


.services {
    padding: 8rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-light);
    border-color: var(--primary-blue);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-text {
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}


.projects {
    padding: 8rem 0;
    background: var(--light-gray);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.project-card {
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: var(--medium-gray);
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}


.testimonials {
    padding: 8rem 0;
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-light);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--medium-gray);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}


.contact {
    padding: 8rem 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--medium-gray);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    background: white;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.contact-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-orange);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-light);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-orange);
}


.footer {
    background: var(--primary-blue);
    color: white;
    padding: 4rem 0 2rem;
}


.footer-bottom a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-orange);
}

.footer-section p a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section p a:hover {
    color: var(--primary-orange);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-about .logo-text span.orange {
    color: var(--primary-orange);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}


.footer-logo-large {
    width: 360px;
    height: 360px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-logo-large {
width: 250px;
height: 250px;
    }
}


.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}


.faq {
    padding: 8rem 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 5px 15px var(--shadow-light);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-question.active {
    color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.05);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--primary-orange);
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 300px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}


.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: none;
}

.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    color: #15803d;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #dc2626;
}


@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero::before {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem;
        transition: all 0.3s ease;
        box-shadow: -5px 0 20px var(--shadow-light);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 1rem 0;
        border-bottom: 1px solid var(--medium-gray);
        width: 100%;
        text-align: left;
    }

    .nav-cta {
        margin-top: 1rem;
        text-align: center !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .features-grid,
    .services-grid,
    .projects-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .contact-form {
        padding: 2rem;
    }
}



/* ─── SUBPAGE SHARED ─────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(255,107,53,0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.45);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* ─── PAGE HERO ──────────────────────────────────────────── */

.page-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a8a 55%, #2563eb 100%);
    z-index: 0;
    overflow: hidden;
}

.page-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 40%, rgba(255,107,53,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 90%, rgba(37,99,235,0.25) 0%, transparent 45%);
}



.page-hero .container {
    position: relative;
    z-index: 1;
    max-width: 860px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.45rem 1.1rem;
    border-radius: 25px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.25);
}

.page-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1.25rem;
    color: white;
    text-shadow: 0 3px 20px rgba(0,0,0,0.3);
}

.hero-title-accent {
    display: block;
    color: var(--primary-orange);
    font-size: 0.78em;
    font-weight: 600;
}

.page-hero > .container > p,
.page-hero .container > p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.75;
    margin-bottom: 1.75rem;
    max-width: 640px;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: white;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
}

.hero-trust-item i {
    color: var(--primary-orange);
    font-size: 0.8rem;
}

.page-hero .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.page-hero .hero-trust-row {
    justify-content: center;
}

.page-hero .btn-primary {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
}

.page-hero .btn-primary:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    box-shadow: 0 12px 35px rgba(255,107,53,0.5);
    transform: translateY(-2px);
}

.page-hero .btn-outline {
    background: rgba(255,255,255,0.1);
    color: white;
    border-color: rgba(255,255,255,0.55);
    backdrop-filter: blur(8px);
}

.page-hero .btn-outline:hover {
    background: white;
    color: var(--primary-blue);
    border-color: white;
    transform: translateY(-2px);
}

/* ─── ARTICLE SECTIONS ───────────────────────────────────── */

.article-section {
    padding: 5rem 0;
}

.article-section.alt {
    background: var(--light-gray);
}

.article-content {
    max-width: 860px;
    margin: 0 auto;
}

.article-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 3rem 0 1.25rem;
    line-height: 1.25;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--medium-gray);
    position: relative;
}

.article-content h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 2rem 0 0.75rem;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-orange);
}

.article-content p {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-size: 1.02rem;
}

.article-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    color: var(--text-light);
    font-size: 1.02rem;
}

.article-content ul li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.55rem;
    line-height: 1.7;
}

.article-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 7px;
    height: 7px;
    background: var(--primary-orange);
    border-radius: 50%;
}

.article-content ol {
    color: var(--text-light);
    font-size: 1.02rem;
}

.article-content a {
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,107,53,0.3);
    transition: all 0.2s;
}

.article-content a:hover {
    color: var(--dark-blue);
    border-bottom-color: var(--dark-blue);
}

/* ─── STAT CARDS ─────────────────────────────────────────── */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}

.stat-card {
    background: white;
    border: 1px solid var(--medium-gray);
    border-radius: 14px;
    padding: 1.75rem 1.5rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1.1;
    margin-bottom: 0.6rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.55;
}

.stat-source {
    display: block;
    color: var(--text-light);
    font-size: 0.72rem;
    opacity: 0.55;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--medium-gray);
}

/* ─── GLOSSARY ───────────────────────────────────────────── */

.glossary-list {
    display: grid;
    gap: 0.85rem;
    margin: 1.5rem 0 2rem;
}

.glossary-item {
    background: white;
    border: 1px solid var(--medium-gray);
    border-left: 4px solid var(--primary-blue);
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
    transition: all 0.25s ease;
}

.glossary-item:hover {
    border-left-color: var(--primary-orange);
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    transform: translateX(3px);
}

.glossary-item dt {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.97rem;
    margin-bottom: 0.4rem;
}

.glossary-item dd {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* ─── PROCESS STEPS ──────────────────────────────────────── */

.process-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    display: grid;
    gap: 0.75rem;
}

.process-steps li {
    counter-increment: step;
    position: relative;
    background: white;
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
    padding: 1.25rem 1.5rem 1.25rem 4.75rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.98rem;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.process-steps li:hover {
    border-color: rgba(255,107,53,0.3);
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.process-steps li::before {
    content: counter(step);
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.4rem;
    height: 2.4rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 3px 10px rgba(255,107,53,0.3);
}

.process-steps strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* ─── INLINE PHOTO ───────────────────────────────────────── */

.inline-photo {
    margin: 2.5rem 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(0,0,0,0.1);
}

.inline-photo img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.inline-photo figcaption {
    background: var(--light-gray);
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 0.8rem 1.4rem;
    border-top: 1px solid var(--medium-gray);
    font-style: italic;
}

/* ─── RELATED LINKS ──────────────────────────────────────── */

.related-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
    margin: 2.5rem 0;
}

.related-link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    text-decoration: none;
    transition: all 0.25s ease;
    border-bottom: none;
}

.related-link-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255,107,53,0.1);
}

.related-link-card .related-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.related-link-card h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.related-link-card span > span {
    color: var(--text-light);
    font-size: 0.8rem;
    display: block;
}

/* ─── CTA BANNER ─────────────────────────────────────────── */

.cta-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #1d4ed8 100%);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(255,107,53,0.15) 0%, transparent 60%);
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 {
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.88);
    max-width: 560px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    line-height: 1.7;
}

.cta-banner .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cta-banner .btn-primary {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
    box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

.cta-banner .btn-primary:hover {
    background: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(255,107,53,0.5);
    transform: translateY(-2px);
}

.cta-banner .btn-outline {
    background: rgba(255,255,255,0.12);
    color: white;
    border-color: rgba(255,255,255,0.5);
}

.cta-banner .btn-outline:hover {
    background: white;
    color: var(--primary-blue);
    border-color: white;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 768px) {
    .page-hero {
        min-height: auto;
        padding: 110px 0 56px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .hero-title-accent {
        font-size: 0.82em;
    }

    .page-hero > .container > p,
    .page-hero .container > p {
        font-size: 0.97rem;
    }

    .page-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-hero .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-links {
        grid-template-columns: 1fr;
    }

    .process-steps li {
        padding-left: 4.25rem;
    }

    .cta-banner {
        padding: 2.5rem 1.5rem;
        border-radius: 14px;
    }

    .cta-banner h2 {
        font-size: 1.4rem;
    }

    .cta-banner .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-banner .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 100px 0 48px;
    }

    .page-hero h1 {
        font-size: 1.65rem;
    }

    .hero-trust-item {
        font-size: 0.78rem;
        padding: 0.3rem 0.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .article-content h2 {
        font-size: 1.35rem;
    }
}

/* ─── BLOG ───────────────────────────────────────────────── */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--medium-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.04);
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-orange);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 1;
}

.blog-card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    gap: 1.25rem;
    color: var(--text-light);
    font-size: 0.82rem;
    margin-bottom: 0.85rem;
}

.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-card-meta i {
    color: var(--primary-orange);
    font-size: 0.78rem;
}

.blog-card-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.blog-card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-orange);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: none;
    transition: gap 0.2s ease;
    margin-top: auto;
}

.blog-card-link:hover {
    gap: 0.7rem;
    color: var(--primary-orange);
    border-bottom: none;
}

.blog-card-link i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.blog-card:hover .blog-card-link i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card-image {
        height: 200px;
    }

    .blog-card-content {
        padding: 1.4rem;
    }
}