:root {
    --primary: #0066cc;
    --primary-light: #3399ff;
    --primary-dark: #004c99;
    --secondary: #f8f9fa;
    --accent: #ffcc00;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --text-main: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.btn {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.bg-dark {
    background-color: var(--dark);
    color: var(--white);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.glow {
    animation: glow 2s infinite;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(0, 102, 204, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 102, 204, 0.8);
    }

    100% {
        box-shadow: 0 0 5px rgba(0, 102, 204, 0.5);
    }
}

/* Header */
.site-header {
    background: rgba(0, 0, 0, 0.98) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    padding: 0;
    position: relative;
    /* Changed from sticky */
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
    border-bottom: 2px solid var(--primary);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 60px;
    /* Slightly larger, centered by flexbox */
    width: auto;
    display: block;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 30px;
}

.phone-link {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-link i {
    color: var(--primary-light);
}

.phone-link:hover {
    color: var(--primary-light) !important;
}

/* Unified Sticky Footer Bar */
.sticky-footer-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    background: #ffcc00;
    /* Vibrant Yellow from screenshot */
    z-index: 2000;
    padding: 15px 40px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
    font-family: 'Outfit', sans-serif;
}

.sticky-cta-text {
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-cta-text i {
    font-size: 1.4rem;
}

.sticky-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.s-action-phone {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #000;
    padding: 10px 20px;
    border-radius: 50px;
    transition: var(--transition);
}

.s-action-btn {
    background: #001a33;
    /* Dark Navy from screenshot */
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
}

.s-action-btn:hover {
    background: #000;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .sticky-cta-text {
        display: none;
    }

    .sticky-footer-bar {
        justify-content: center;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .sticky-footer-bar {
        width: 100%;
        border-radius: 0;
    }

    .sticky-actions {
        width: 100%;
        justify-content: space-between;
    }

    .s-action-phone,
    .s-action-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .sticky-call-btn {
        bottom: 100px;
        left: 15px;
        transform: none;
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0;
    background: url('../img/security patrol.webp') no-repeat center center;
    background-size: cover;
    color: var(--white);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.location-badge {
    background: rgba(0, 102, 204, 0.2);
    border: 1px solid rgba(0, 102, 204, 0.5);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-light);
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 1.05rem;
    /* Reduced from 1.2rem */
    color: #cbd5e1;
    margin-bottom: 30px;
    max-width: 650px;
    line-height: 1.6;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.h-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    /* Reduced size */
    font-weight: 500;
}

.h-feature i {
    color: var(--primary-light);
    font-size: 1.5rem;
}

/* Unified Trust Pill */
.trust-pill-group {
    display: flex;
    align-items: center;
    gap: 35px;
    background: rgba(255, 255, 255, 0.08);
    padding: 15px 35px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    width: fit-content;
    margin: 35px 0;
}

.hero-trust-badges {
    display: flex;
    gap: 25px;
    align-items: center;
    padding-right: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-iso-badge {
    height: 40px;
    width: auto;
}

.hero-asial-badge {
    height: 65px;
    width: auto;
}

.hero-trust-logo {
    height: 50px;
    width: auto;
}

.trust-meta {
    padding-left: 10px;
}

.trust-meta strong {
    display: block;
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.2;
}

.trust-meta span {
    font-size: 0.8rem;
    color: #94a3b8;
    white-space: nowrap;
}

/* Section Header Divider */
.h-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto;
    border-radius: 2px;
}

/* Form Card */
.lead-form-card {
    background: var(--white);
    padding: 25px 30px;
    /* Reduced padding */
    border-radius: 20px;
    color: var(--dark);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
    /* Reduced margin */
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.form-header p {
    color: var(--text-light);
}

.form-group {
    margin-bottom: 12px;
    /* Reduced vertical spacing */
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 18px;
    /* Reduced input height */
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background-color: #f8fafc;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
}

.btn-submit {
    font-size: 1rem;
    margin-top: 10px;
}

.privacy-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 20px;
}

/* Problem Section */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.problem-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-10px);
}

.p-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

/* Solution Section */
.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sub-title {
    color: var(--primary-light);
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.solution-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.solution-list {
    list-style: none;
    margin-bottom: 40px;
    display: grid;
    gap: 20px;
}

.solution-list li {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 0px;
    align-items: start;
}

.solution-list li i {
    color: var(--primary-light);
    margin-top: 5px;
    font-size: 1.2rem;
}

.solution-list li div {
    padding-left: 10px;
}

.solution-list li strong {
    display: inline-block;
    margin-right: 5px;
    color: var(--white);
    font-size: 1.15rem;
}

.solution-list li span {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.solution-image {
    position: relative;
}

.solution-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

.experience-badge .num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .txt {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Sectors Section */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.sector-card {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.sector-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sector-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.sector-card h4 {
    display: none;
    /* Text is baked into images */
}

.sector-card::after {
    display: none;
    /* No need for text overlay gradient */
}

.sector-card:hover transform {
    transform: scale(1.05);
}

/* Prominent Submit Button */
.prominent-btn {
    padding: 15px !important;
    /* Reduced from 20px */
    font-size: 1.1rem !important;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.prominent-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.6) !important;
}

/* Mid-Page CTA */
.mid-cta {
    background: linear-gradient(rgba(0, 10, 26, 0.9), rgba(0, 10, 26, 0.9)), url('../img/security patrol.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: var(--white);
}

.cta-banner {
    max-width: 900px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.cta-banner p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

@media (max-width: 480px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
}

/* Marquee */
.clients-marquee {
    overflow: hidden;
    padding: 80px 0;
    position: relative;
    background: #f8fafc;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.clients-track {
    display: flex;
    gap: 15px;
    /* Extremely tight gap */
    width: max-content;
    animation: scroll 70s linear infinite;
    align-items: center;
}

.client-item {
    padding: 0;
    flex-shrink: 0;
}

.client-item img {
    max-height: 180px;
    /* Reduced from 280px to be more reasonable */
    max-width: 350px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
    object-fit: contain;
    display: block;
}

.client-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-item:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary-dark), #003366);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Footer */
.site-footer {
    background: #000a1a;
    color: #94a3b8;
    padding: 40px 0 20px;
    /* Reduced padding for smaller height */
}

.footer-grid {
    display: grid;
    grid-template-columns: 40% 50%;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 60px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.f-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.f-socials a {
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.f-socials a:hover {
    color: var(--primary-light);
}

.f-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.f-col ul {
    list-style: none;
}

.f-col ul li {
    margin-bottom: 12px;
}

.f-col ul a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.f-col ul a:hover {
    color: var(--white);
    padding-left: 5px;
}

.f-col p {
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

/* Sticky Mobile */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.s-btn {
    flex: 1;
    text-align: center;
    padding: 15px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    border-top: 4px solid var(--primary);
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 25px;
}

.testimonial-card cite {
    display: block;
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
}

.testimonial-card cite span {
    display: block;
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Sub-services / Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Benefit Cards - Refined Premium Style */
.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.b-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    background: rgba(0, 102, 204, 0.05);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

.licence-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.licence-box p {
    font-size: 0.85rem;
    margin-bottom: 0 !important;
}

.licence-box strong {
    color: var(--primary-light);
    display: block;
}

.s-call {
    background: var(--white);
    color: var(--primary);
}

.s-quote {
    background: var(--primary);
    color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-subtext {
        margin: 0 auto 30px;
    }

    .hero-features-grid {
        justify-content: center;
    }

    .hero-trust-row,
    .trust-pill-group {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .trust-pill-group {
        padding: 15px 25px;
        gap: 20px;
    }

    .hero-trust-badges {
        padding-right: 20px;
        gap: 15px;
    }

    .hero-iso-badge {
        height: 35px;
    }

    .hero-asial-badge {
        height: 55px;
    }

    .hero-trust-logo {
        height: 45px;
    }

    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-image {
        order: -1;
    }

    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header {
        position: relative;
        width: 100%;
        top: auto;
    }

    .header-container {
        height: auto;
        padding: 15px 0 0 0;
        /* No bottom padding, phone row handles it */
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .logo {
        padding-left: 15px;
        order: 1;
    }

    .header-contact {
        display: contents;
        /* Makes children direct flex items of container */
    }

    .nav-cta {
        order: 2;
        margin-right: 15px;
    }

    .phone-link {
        order: 3;
        width: 100%;
        display: flex !important;
        justify-content: center;
        background: rgba(255, 255, 255, 0.08);
        padding: 12px 0;
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 2px solid var(--primary);
        font-size: 1.1rem;
        color: #fff !important;
        text-decoration: none;
    }

    .logo-img {
        height: 38px;
    }

    .hero {
        padding-top: 50px;
        /* Reduced since header is no longer fixed */
    }

    .location-badge {
        margin: 0 auto 20px;
        display: table;
        /* Centers it while keeping it compact */
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-header h2,
    .solution-text h2 {
        font-size: 1.8rem;
    }

    .form-header h3 {
        font-size: 1.4rem;
    }

    .btn-submit {
        font-size: 0.95rem;
        padding: 15px;
    }

    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .trust-pill-group {
        flex-direction: column;
        gap: 15px;
        border-radius: 30px;
        padding: 20px;
        width: 100%;
        max-width: 380px;
    }

    .hero-trust-badges {
        padding-right: 0;
        border-right: none;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        justify-content: center;
    }

    .trust-meta {
        padding-left: 0;
        text-align: center;
    }

    .sticky-footer-bar {
        padding: 12px 15px;
        width: 100%;
        border-radius: 0;
        flex-direction: column;
        gap: 8px;
    }

    .sticky-cta-text {
        font-size: 0.85rem;
        text-align: center;
        margin-bottom: 2px;
        opacity: 0.9;
    }

    .sticky-actions {
        width: 100%;
        flex-direction: column;
        /* Stack phone and button */
        gap: 8px;
    }

    .s-action-phone,
    .s-action-btn {
        width: 100%;
        padding: 10px;
        font-size: 0.9rem;
        text-align: center;
        justify-content: center;
    }

    .sticky-mobile-cta {
        display: flex;
    }
}

@media (max-width: 480px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-text h1 {
        font-size: 1.35rem;
        /* Slightly smaller for tight devices */
        line-height: 1.25;
    }

    .section-header h2,
    .solution-text h2,
    .cta-banner h2,
    .final-cta h2 {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    .form-header h3 {
        font-size: 1.15rem;
    }

    .btn-submit {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 0.8rem;
        padding: 14px 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-submit i {
        font-size: 0.9rem;
    }

    .cta-actions {
        flex-direction: column;
        gap: 10px;
    }

    .cta-actions .btn {
        width: 100%;
        margin: 0;
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: left;
    }

    .licence-box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .licence-box p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .trust-pill-group {
        max-width: 100%;
    }

    .hero-iso-badge {
        height: 25px;
    }

    .hero-asial-badge {
        height: 40px;
    }

    .hero-trust-logo {
        height: 35px;
    }

    /* Remove Claim Now on mobile */
    .s-action-btn {
        display: none !important;
    }

    .sticky-actions {
        width: 100%;
    }

    .s-action-phone {
        width: 100%;
        text-align: center;
        border-radius: 50px;
    }
}

@media (max-width: 380px) {
    .nav-cta {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .logo-img {
        height: 35px;
    }

    .hero-text h1 {
        font-size: 1.6rem;
    }

    .trust-pill-group {
        padding: 15px;
    }
}