:root {
    --bg-main: #0b1120;
    --bg-secondary: #17233f;
    --bg-card: #1d2b4d;
    --bg-card-2: #24355f;
    --bg-black: #08101f;

    --text-main: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #dbe4f0;

    --primary: #38bdf8;
    --primary-hover: #0ea5e9;

    --accent: #d4af37;
    --accent-hover: #e6c75c;

    --success: #22c55e;
    --success-hover: #16a34a;

    --danger: #ef4444;

    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);

    --white: #ffffff;
    --shadow: 0 20px 55px rgba(0, 0, 0, 0.35);

    --radius: 18px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.08), transparent 25%),
        linear-gradient(180deg, #0b1120 0%, #111a31 50%, #0b1120 100%);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

main {
    min-height: 70vh;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 16, 31, 0.94);
    border-bottom: 1px solid rgba(56, 189, 248, 0.24);
    backdrop-filter: blur(12px);
}

.header-top {
    background: rgba(8, 16, 31, 0.98);
    font-size: 14px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    gap: 20px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-social a {
    color: var(--white);
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

.header-social a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.header-main {
    background: rgba(8, 16, 31, 0.98);
}

.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    position: relative;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    height: 64px;
    width: auto;
    display: block;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.35));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.main-nav a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
}

.call-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    color: var(--white) !important;
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.18);
}

.call-btn:hover {
    background: linear-gradient(135deg, #2dd66f, #16a34a);
    color: var(--white);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

/* HERO */

.hero {
    background:
        radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.10), transparent 22%),
        radial-gradient(circle at 80% 30%, rgba(212, 175, 55, 0.06), transparent 25%),
        linear-gradient(135deg, #0b1120, #17233f 50%, #0d1730 100%);
    color: var(--white);
    padding: 72px 0;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-left {
    max-width: 560px;
}

.hero-left h1 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.02;
    margin: 0 0 18px;
    color: var(--white);
    letter-spacing: -0.03em;
}

.hero-left p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 0 24px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}



.hero-reassurance-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    max-width: 520px;
}

.hero-reassurance-line span {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1;
}

.hero-right img {
    width: 100%;
    max-width: 560px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 992px) {
    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-reassurance-grid-simple {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero-inner {
        flex-direction: column;
        text-align: left;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-left h1 {
        font-size: clamp(2.1rem, 10vw, 3.2rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-reassurance-grid-simple {
        grid-template-columns: 1fr;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #061018;
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 14px 30px rgba(56, 189, 248, 0.20);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #67d3ff, #38bdf8);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--accent);
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.8);
}





/* SECTIONS */

.home-section {
    padding: 80px 0;
}

.section-alt {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.015),
        rgba(255, 255, 255, 0.025)
    );
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-head {
    text-align: center;
    margin-bottom: 40px;
}

.section-head h2 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    position: relative;
    display: inline-block;
}

.section-head h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, #38bdf8, #d4af37);
}

.section-head p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* SERVICES */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 40px;
}

/* CARTE */
.service-card {
    display: block;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid #e5e7eb;
}

/* HOVER PRO */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* IMAGE */
.service-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover img {
    transform: scale(1.05);
}

/* CONTENU */
.service-card-content {
    padding: 22px;
    text-align: center;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #111827;
}

.service-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* PARTNERS */

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 220px;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(29, 43, 77, 0.92), rgba(16, 24, 40, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.partner-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.30);
}

.partner-card img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(100%) brightness(1.2);
    transition: all 0.25s ease;
}

.partner-card:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.partner-card span {
    color: #f8fafc;
    font-weight: 600;
    text-align: center;
}

/* NEWS */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.news-card {
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(29, 43, 77, 0.96), rgba(16, 24, 40, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.news-image-link {
    display: block;
}

.news-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.news-content {
    padding: 22px;
}

.news-content time {
    display: block;
    margin-bottom: 10px;
    color: #f5d776;
    font-size: 0.92rem;
}

.news-content h3 {
    margin: 0 0 12px;
    font-size: 1.4rem;
    line-height: 1.2;
}

.news-content h3 a {
    color: var(--white);
}

.news-content p {
    margin: 0 0 16px;
    color: var(--text-secondary);
}

/* TESTIMONIALS */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
    margin: 0 0 20px;
    color: #f8fafc;
    font-size: 1.02rem;
    line-height: 1.7;
}

.testimonial-meta strong {
    display: block;
    color: var(--white);
}

.testimonial-meta span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* CTA */

.cta-section {
    padding-top: 20px;
}

.cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 30px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(23, 35, 63, 0.98), rgba(29, 43, 77, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.20);
}

.cta-box h2 {
    margin: 0 0 10px;
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.cta-box p {
    margin: 0;
    color: var(--text-secondary);
}



/* Depannage Informatique */

.service-hero-simple {
    padding: 84px 0 54px;
    text-align: center;
}

.service-hero-simple h1 {
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 700;
    color: var(--text-main);
}

.service-hero-sub {
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: 18px;
    color: var(--text-secondary);
}

.service-hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.service-hero-line {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.service-hero-line span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    color: #cbd5e1;
}

.service-page-section {
    padding: 80px 0;
}

.service-page-section-alt {
    background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.025));
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.service-page-head {
    text-align: center;
    margin-bottom: 40px;
}

.service-page-head h2 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
}

.service-page-head p {
    margin: 0;
    color: var(--text-secondary);
}

.pricing-section-bg {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.pricing-section-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/assets/img/bg-services.png') center/cover no-repeat;
    filter: blur(2px);
    transform: scale(1.05);
    opacity: 0.6;
    z-index: 0;
}

.pricing-section-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,17,32,0.75), rgba(15,23,42,0.85));
    z-index: 1;
}

.pricing-section-bg .container {
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(180deg, #121a2b, #0f172a);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transition: 0.3s;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: #06b6d4;
}

.pricing-card.highlight {
    border: 1px solid #06b6d4;
    box-shadow: 0 20px 50px rgba(6,182,212,0.2);
}

.pricing-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.pricing-top h3 {
    margin: 0;
    font-size: 18px;
    color: var(--white);
}

.duration {
    font-size: 13px;
    opacity: 0.7;
    color: var(--text-secondary);
}

.price {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0;
    color: var(--white);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    flex-grow: 1;
}

.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    text-decoration: none;
    transition: 0.2s;
}

.btn-outline:hover {
    border-color: #06b6d4;
    color: #06b6d4;
}

.service-process-pro {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.service-process-pro-card {
    position: relative;
    background: linear-gradient(180deg, rgba(18, 26, 43, 0.96), rgba(12, 18, 31, 0.98));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 22px;
    min-height: 220px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-process-pro-card:hover {
    transform: translateY(-4px);
    border-color: rgba(56,189,248,0.28);
    box-shadow: 0 16px 34px rgba(0,0,0,0.18);
}

.service-process-pro-top {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
}

.service-process-pro-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 32px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.12);
    color: #bae6fd;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.service-process-pro-card h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.15rem;
    line-height: 1.2;
}

.service-process-pro-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 28ch;
}

@media (max-width: 1100px) {
    .service-process-pro {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .service-process-pro {
        grid-template-columns: 1fr;
    }

    .service-process-pro-card {
        min-height: auto;
    }

    .service-process-pro-card p {
        max-width: none;
    }
}

.service-page-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.service-page-why-card {
    background: linear-gradient(180deg, rgba(29, 43, 77, 0.96), rgba(16, 24, 40, 0.98));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 22px;
}

.service-page-why-card h3 {
    margin: 0 0 10px;
    color: var(--white);
    font-size: 1.08rem;
}

.service-page-why-card p {
    margin: 0;
    color: var(--text-secondary);
}

.service-page-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(23, 35, 63, 0.98), rgba(29, 43, 77, 0.98));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 36px rgba(0,0,0,0.20);
}

.service-page-cta h2 {
    margin: 0 0 10px;
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.service-page-cta p {
    margin: 0;
    color: var(--text-secondary);
}

.service-page-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 1100px) {
    .pricing-grid,
    .service-process-grid,
    .service-page-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .service-page-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .service-hero-simple {
        padding: 64px 0 40px;
    }

    .service-hero-sub {
        font-size: 16px;
    }

    .pricing-grid,
    .service-process-grid,
    .service-page-why-grid {
        grid-template-columns: 1fr;
    }

    .service-page-actions,
    .service-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .service-page-cta {
        align-items: stretch;
    }
}

/* DEVELLOPPEMENT*/

.services-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.services-showcase-card {
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(12, 18, 31, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.services-showcase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.services-showcase-image {
    height: 170px;
    overflow: hidden;
}

.services-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.services-showcase-card:hover .services-showcase-image img {
    transform: scale(1.05);
}

.services-showcase-content {
    padding: 18px 18px 20px;
}

.services-showcase-content h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1.35rem;
    line-height: 1.15;
}

.services-showcase-content p {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.98rem;
    line-height: 1.55;
}

@media (max-width: 1100px) {
    .services-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .services-showcase-grid {
        grid-template-columns: 1fr;
    }

    .services-showcase-image {
        height: 190px;
    }
}

.hosting-card {
    width: 100%;
    max-width: 720px;

    margin: 0 auto;

    padding: 40px;

    text-align: center;

    border-radius: 22px;

    background: linear-gradient(
        180deg,
        rgba(17, 24, 39, 0.96),
        rgba(12, 18, 31, 0.98)
    );

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

.hosting-card h3 {
    margin-bottom: 18px;
}

.hosting-card p {
    margin-bottom: 26px;
    color: var(--text-secondary);
}

.container {
    display: flex;
    justify-content: center;
}


/*Hébergement*/

.hosting-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
    .hosting-pricing-grid {
        grid-template-columns: 1fr;
    }
}
/* FOOTER */

.site-footer {
    background: #08101f;
    color: var(--text-secondary);
    padding-top: 60px;
    margin-top: 84px;
    border-top: 1px solid rgba(56, 189, 248, 0.12);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.footer-grid h3 {
    margin-top: 0;
    color: var(--white);
}

.footer-grid p,
.footer-grid a {
    color: var(--text-secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li + li {
    margin-top: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    margin-top: 28px;
    text-align: center;
    color: var(--text-secondary);
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .tiles-grid,
    .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .hero-inner,
    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .main-nav {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .header-main-inner {
        padding: 12px 0;
    }

    .logo img {
        height: 56px;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #08101f;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 12px 0;
        z-index: 1000;
        margin-left: 0;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .call-btn {
        width: calc(100% - 32px);
        margin: 12px 16px 4px 16px;
        text-align: center;
        justify-content: center;
        padding: 14px 18px;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-buttons,
    .hero-features {
        justify-content: center;
    }
    
    .hero-reassurance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.hero-reassurance-tile {
    background: linear-gradient(180deg, rgba(29, 43, 77, 0.92), rgba(16, 24, 40, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.hero-reassurance-tile strong {
    display: block;
    margin-bottom: 6px;
    color: var(--white);
    font-size: 1rem;
}

.hero-reassurance-tile span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .hero-reassurance-grid {
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-reassurance-grid {
        grid-template-columns: 1fr;
    }
}

    .tiles-grid,
    .partners-grid,
    .news-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        align-items: stretch;
    }

    .home-section {
        padding: 64px 0;
    }
}


