/* =========================================================
   EASY SYSTEM
   Premium Navy + Gold + Technical Blue Theme
========================================================= */

:root {

    --navy-950: #040914;
    --navy-900: #07111f;
    --navy-850: #091526;
    --navy-800: #0d1a2d;
    --navy-750: #101f35;
    --navy-700: #142640;

    --gold: #d4af37;
    --gold-light: #f0d875;
    --gold-bright: #f6e05e;
    --gold-dark: #a98218;

    --blue: #38bdf8;
    --blue-dark: #0ea5e9;

    --green: #25d366;

    --white: #ffffff;
    --text-main: #f8fafc;
    --text-secondary: #d4dce7;
    --text-muted: #94a3b8;
    --text-dark: #64748b;

    --border-light: rgba(255, 255, 255, 0.07);
    --border-gold: rgba(212, 175, 55, 0.24);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;

    --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.38);
    --shadow-gold: 0 12px 35px rgba(212, 175, 55, 0.14);

    --transition: 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--navy-900);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

button,
summary {
    font-family: inherit;
}

::selection {
    background: var(--gold);
    color: var(--navy-950);
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(88%, 1240px);
    margin: 0 auto;
}

.section {
    padding: 105px 0;
}

.section-container {
    display: flex;
    flex-direction: column;
}

.section-header {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 12px;

    color: var(--gold-light);

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.section-heading {
    color: var(--white);

    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.35;
    font-weight: 900;
}

.section-heading span {
    color: var(--gold-light);
}

.section-description {
    max-width: 760px;
    margin: 18px auto 0;

    color: var(--text-muted);

    font-size: 17px;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    background: rgba(4, 9, 20, 0.92);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(212, 175, 55, 0.22);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.28);
}

.navbar-container {
    min-height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;

    text-decoration: none;
}

.brand-logo {
    width: 66px;
    height: 66px;

    object-fit: cover;

    border-radius: 50%;

    border: 2px solid var(--gold);

    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.35),
        inset 0 0 10px rgba(255, 255, 255, 0.25);

    filter:
        brightness(1.05)
        contrast(1.06);

    transition: var(--transition);
}

.brand-logo:hover {
    transform: scale(1.05);

    box-shadow:
        0 0 30px rgba(212, 175, 55, 0.62),
        inset 0 0 15px rgba(255, 255, 255, 0.35);
}

.brand-name {
    color: var(--white);

    font-size: 27px;
    font-weight: 900;

    white-space: nowrap;
}

.brand-name span {
    color: var(--gold-light);
}


/* Desktop Navigation */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.desktop-nav a {
    color: var(--text-secondary);

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--gold-light);
}

.nav-call,
.nav-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 8px 15px;

    border-radius: 9px;

    font-weight: 800 !important;
}

.nav-call {
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: var(--blue) !important;

    background: rgba(56, 189, 248, 0.04);
}

.nav-call:hover {
    background: rgba(56, 189, 248, 0.09);
}

.nav-whatsapp {
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    color: var(--navy-950) !important;

    box-shadow:
        0 5px 18px rgba(212, 175, 55, 0.18);
}

.nav-whatsapp:hover {
    transform: translateY(-2px);
}


/* Mobile Navigation */

.mobile-menu {
    display: none;
}

.mobile-menu summary {
    list-style: none;

    cursor: pointer;

    color: var(--gold-light);

    font-size: 30px;
    line-height: 1;
}

.mobile-menu summary::-webkit-details-marker {
    display: none;
}

.mobile-menu-content {
    position: absolute;

    top: 84px;
    right: 5%;

    width: min(330px, 90vw);

    display: flex;
    flex-direction: column;

    padding: 14px;

    border: 1px solid var(--border-gold);
    border-radius: 16px;

    background: rgba(4, 9, 20, 0.98);

    box-shadow: var(--shadow-card);
}

.mobile-menu-content a {
    padding: 13px 12px;

    border-radius: 9px;

    text-decoration: none;

    color: var(--text-secondary);

    font-weight: 600;

    transition: var(--transition);
}

.mobile-menu-content a:hover {
    background: rgba(212, 175, 55, 0.07);
    color: var(--gold-light);
}

.mobile-call-btn {
    margin-top: 8px;

    text-align: center;

    border: 1px solid rgba(56, 189, 248, 0.35);

    color: var(--blue) !important;
}

.mobile-whatsapp-btn {
    margin-top: 8px;

    text-align: center;

    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    color: var(--navy-950) !important;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 780px;

    padding: 190px 0 100px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(56, 189, 248, 0.07),
            transparent 27%
        ),
        radial-gradient(
            circle at 18% 65%,
            rgba(212, 175, 55, 0.055),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            var(--navy-900) 0%,
            var(--navy-800) 52%,
            var(--navy-700) 100%
        );
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.012) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.012) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    pointer-events: none;
}

.hero-glow {
    position: absolute;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.18;

    pointer-events: none;
}

.hero-glow-gold {
    right: -120px;
    top: 80px;

    background: var(--gold);
}

.hero-glow-blue {
    left: 8%;
    bottom: -170px;

    background: var(--blue);
}

.hero-content {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(380px, 0.95fr);

    align-items: center;

    gap: 70px;
}

.hero-text {
    max-width: 720px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 18px;

    padding: 8px 14px;

    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 999px;

    background: rgba(212, 175, 55, 0.045);

    color: var(--gold-light);

    font-size: 13px;
    font-weight: 800;
}

.hero-text h1 {
    margin-bottom: 22px;

    color: var(--white);

    font-size: clamp(40px, 5vw, 66px);

    line-height: 1.2;

    font-weight: 900;
}

.hero-text h1 span {
    display: inline-block;

    color: var(--gold-light);
}

.hero-text p {
    max-width: 720px;

    margin-bottom: 30px;

    color: var(--text-muted);

    font-size: 18px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;
}

.btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 23px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 800;

    transition: var(--transition);
}

.primary-btn {
    background: linear-gradient(
        135deg,
        var(--gold-light) 0%,
        var(--gold) 55%,
        var(--gold-dark) 100%
    );

    color: var(--navy-950);

    box-shadow:
        0 9px 25px rgba(212, 175, 55, 0.16);
}

.primary-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 13px 32px rgba(212, 175, 55, 0.25);
}

.secondary-btn {
    border: 1px solid rgba(56, 189, 248, 0.38);

    background: rgba(56, 189, 248, 0.035);

    color: var(--blue);
}

.secondary-btn:hover {
    transform: translateY(-3px);

    background: rgba(56, 189, 248, 0.075);
}

.hero-note {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 19px;

    color: var(--text-secondary);

    font-size: 13px;
}

.hero-note span {
    color: var(--gold-light);

    font-weight: 900;
}


/* Hero Card */

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-system-card {
    width: min(510px, 100%);

    padding: 29px;

    border: 1px solid rgba(212, 175, 55, 0.21);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(17, 32, 56, 0.97),
            rgba(7, 17, 31, 0.97)
        );

    box-shadow:
        var(--shadow-card),
        0 0 55px rgba(212, 175, 55, 0.055);

    transform: perspective(1000px) rotateY(-4deg);

    transition: var(--transition);
}

.hero-system-card:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-4px);
}

.system-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 20px;
    margin-bottom: 20px;

    border-bottom: 1px solid var(--border-light);

    color: var(--text-secondary);

    font-size: 12px;
}

.system-status {
    display: flex;
    align-items: center;

    gap: 8px;
}

.status-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 11px rgba(34, 197, 94, 0.65);
}

.system-badge {
    padding: 6px 10px;

    border-radius: 999px;

    background: rgba(212, 175, 55, 0.07);

    color: var(--gold-light);

    font-size: 10px;

    font-weight: 800;
}

.system-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
}

.system-item {
    min-height: 105px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 15px;

    background: rgba(255, 255, 255, 0.013);

    color: var(--text-secondary);

    transition: var(--transition);
}

.system-item:hover {
    transform: translateY(-4px);

    border-color: rgba(212, 175, 55, 0.2);

    background: rgba(212, 175, 55, 0.035);
}

.system-icon {
    margin-bottom: 9px;

    font-size: 30px;
}

.system-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 18px;
    padding-top: 18px;

    border-top: 1px solid var(--border-light);

    color: var(--text-dark);

    font-size: 12px;
}

.system-footer strong {
    color: var(--gold-light);
}


/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
    padding: 22px 0;

    border-top: 1px solid rgba(212, 175, 55, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.045);

    background: #06101d;
}

.trust-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 15px;
}

.trust-item {
    min-height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    color: var(--text-secondary);

    font-size: 12px;

    font-weight: 600;

    text-align: center;
}

.trust-icon {
    font-size: 19px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(56, 189, 248, 0.035),
            transparent 25%
        ),
        var(--navy-950);
}

.about-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(350px, 0.9fr);

    gap: 70px;

    align-items: center;
}

.about-content {
    max-width: 760px;
}

.about-content > p {
    margin-top: 17px;

    color: var(--text-muted);

    font-size: 16px;
}

.about-points {
    display: grid;

    gap: 15px;

    margin-top: 28px;
}

.about-point {
    display: flex;
    align-items: flex-start;

    gap: 13px;
}

.about-point > span {
    width: 29px;
    height: 29px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(212, 175, 55, 0.08);

    color: var(--gold-light);

    font-weight: 900;
}

.about-point strong {
    display: block;

    margin-bottom: 2px;

    color: var(--white);
}

.about-point small {
    color: var(--text-muted);

    font-size: 12px;
}

.about-card {
    padding: 31px;

    border: 1px solid var(--border-gold);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(17, 31, 54, 0.98),
            rgba(6, 15, 27, 0.98)
        );

    box-shadow: var(--shadow-card);
}

.about-card-top {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    color: var(--white);

    font-weight: 800;
}

.about-card-icon {
    font-size: 28px;
}

.about-stack {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}

.about-stack span {
    padding: 9px 13px;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.018);

    color: var(--text-secondary);

    font-size: 12px;
}

.about-card-bottom {
    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid var(--border-light);

    color: var(--gold-light);

    font-size: 13px;

    font-weight: 800;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: var(--navy-900);
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 21px;
}

.service-card {
    position: relative;

    min-height: 290px;

    padding: 28px;

    border: 1px solid var(--border-light);

    border-radius: var(--radius-md);

    background:
        linear-gradient(
            160deg,
            rgba(17, 31, 54, 0.96),
            rgba(7, 17, 31, 0.96)
        );

    overflow: hidden;

    transition: var(--transition);
}

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );

    opacity: 0;

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(212, 175, 55, 0.2);

    background: var(--navy-750);

    box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
    opacity: 1;
}

.featured-service {
    border-color: rgba(212, 175, 55, 0.25);
}

.service-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            rgba(212, 175, 55, 0.12),
            rgba(212, 175, 55, 0.035)
        );

    font-size: 28px;
}

.service-card h3 {
    margin-bottom: 10px;

    color: var(--white);

    font-size: 19px;

    line-height: 1.45;
}

.service-card p {
    color: var(--text-muted);

    font-size: 13px;
}

.service-tag {
    display: inline-block;

    margin-top: 17px;

    padding: 5px 9px;

    border-radius: 7px;

    background: rgba(56, 189, 248, 0.055);

    color: var(--blue);

    font-size: 10px;

    font-weight: 700;
}


/* =========================================================
   SOLUTIONS
========================================================= */

.solutions-section {
    background: var(--navy-950);
}

.solutions-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 23px;
}

.solution-card {
    position: relative;

    padding: 32px;

    border: 1px solid var(--border-light);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #0e1c31,
            #081321
        );

    overflow: hidden;

    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-6px);

    border-color: rgba(212, 175, 55, 0.2);
}

.solution-number {
    position: absolute;

    top: 14px;
    left: 20px;

    color: rgba(212, 175, 55, 0.11);

    font-size: 54px;

    font-weight: 900;

    line-height: 1;
}

.solution-icon {
    margin-bottom: 15px;

    font-size: 40px;
}

.solution-card h3 {
    margin-bottom: 10px;

    color: var(--white);

    font-size: 21px;
}

.solution-card p {
    color: var(--text-muted);

    font-size: 13px;
}

.solution-list {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 18px;
}

.solution-list span {
    padding: 6px 9px;

    border-radius: 8px;

    background: rgba(255, 255, 255, 0.025);

    color: var(--text-secondary);

    font-size: 10px;
}


/* =========================================================
   WHY US
========================================================= */

.why-section {
    background: var(--navy-900);
}

.why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 19px;
}

.why-card {
    padding: 28px 24px;

    border: 1px solid var(--border-light);

    border-radius: 17px;

    background: rgba(255, 255, 255, 0.012);

    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);

    border-color: rgba(212, 175, 55, 0.18);
}

.why-icon {
    margin-bottom: 15px;

    font-size: 32px;
}

.why-card h3 {
    margin-bottom: 8px;

    color: var(--white);

    font-size: 18px;
}

.why-card p {
    color: var(--text-muted);

    font-size: 12px;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    background: var(--navy-950);
}

.process-grid {
    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr
        auto
        1fr
        auto
        1fr;

    align-items: center;

    gap: 15px;
}

.process-step {
    text-align: center;
}

.process-number {
    width: 58px;
    height: 58px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(212, 175, 55, 0.27);

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(212, 175, 55, 0.09),
            rgba(212, 175, 55, 0.025)
        );

    color: var(--gold-light);

    font-size: 17px;

    font-weight: 900;
}

.process-step h3 {
    margin-bottom: 7px;

    color: var(--white);
}

.process-step p {
    color: var(--text-muted);

    font-size: 12px;
}

.process-line {
    width: 62px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212, 175, 55, 0.25),
            transparent
        );
}


/* =========================================================
   TECHNOLOGIES
========================================================= */

.technologies-section {
    background: #06101d;
}

.tech-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.tech-item {
    min-height: 108px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 18px;

    border: 1px solid var(--border-light);

    border-radius: 15px;

    background: rgba(255, 255, 255, 0.012);

    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-4px);

    border-color: rgba(56, 189, 248, 0.2);

    background: rgba(56, 189, 248, 0.025);
}

.tech-item strong {
    margin-bottom: 4px;

    color: var(--white);

    font-size: 18px;
}

.tech-item span {
    color: var(--text-dark);

    font-size: 11px;
}


/* =========================================================
   PROJECTS
========================================================= */

.projects-section {
    background: var(--navy-900);
}

.projects-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.project-card {
    display: grid;

    grid-template-columns: auto 1fr;

    gap: 17px;

    padding: 27px;

    border: 1px solid var(--border-light);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #111f35,
            #091423
        );

    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);

    border-color: rgba(212, 175, 55, 0.18);
}

.project-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(212, 175, 55, 0.075);

    font-size: 28px;
}

.project-type {
    display: inline-block;

    margin-bottom: 5px;

    color: var(--blue);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;
}

.project-content h3 {
    margin-bottom: 8px;

    color: var(--white);

    font-size: 18px;
}

.project-content p {
    color: var(--text-muted);

    font-size: 12px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 14px;
}

.project-tags span {
    padding: 5px 8px;

    border-radius: 7px;

    background: rgba(255, 255, 255, 0.028);

    color: var(--text-secondary);

    font-size: 9px;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: var(--navy-950);
}

.faq-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 60px;

    align-items: start;
}

.faq-intro p {
    max-width: 480px;

    margin: 20px 0 24px;

    color: var(--text-muted);

    font-size: 15px;
}

.faq-contact-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}

.faq-list {
    display: grid;

    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border-light);

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.012);

    overflow: hidden;
}

.faq-item summary {
    position: relative;

    list-style: none;

    cursor: pointer;

    padding: 18px 50px 18px 18px;

    color: var(--white);

    font-size: 14px;

    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: "+";

    position: absolute;

    right: 18px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--gold-light);

    font-size: 23px;

    font-weight: 400;
}

.faq-item[open] summary::before {
    content: "−";
}

.faq-item p {
    padding: 0 18px 18px;

    color: var(--text-muted);

    font-size: 12px;
}


/* =========================================================
   COVERAGE
========================================================= */

.coverage-section {
    background: #06101d;
}

.coverage-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.coverage-card {
    padding: 30px;

    border: 1px solid var(--border-light);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #101e34,
            #091423
        );

    text-align: center;

    transition: var(--transition);
}

.coverage-card:hover {
    transform: translateY(-5px);

    border-color: rgba(212, 175, 55, 0.2);
}

.coverage-icon {
    margin-bottom: 12px;

    font-size: 35px;
}

.coverage-card h3 {
    margin-bottom: 7px;

    color: var(--white);

    font-size: 20px;
}

.coverage-card p {
    color: var(--text-muted);

    font-size: 12px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    position: relative;

    overflow: hidden;

    padding: 110px 0;

    background:
        radial-gradient(
            circle at center,
            rgba(212, 175, 55, 0.08),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            #111e34 0%,
            #06101d 100%
        );
}

.contact-glow {
    position: absolute;

    width: 390px;
    height: 390px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgba(212, 175, 55, 0.055);

    filter: blur(75px);

    pointer-events: none;
}

.contact-container {
    position: relative;

    z-index: 1;
}

.contact-content {
    max-width: 920px;

    margin: 0 auto;

    text-align: center;
}

.contact-content h2 {
    margin-bottom: 17px;

    color: var(--white);

    font-size: clamp(32px, 4vw, 49px);

    line-height: 1.3;

    font-weight: 900;
}

.contact-content h2 span {
    color: var(--gold-light);
}

.contact-content > p {
    max-width: 700px;

    margin: 0 auto 30px;

    color: var(--text-muted);

    font-size: 16px;
}


/* Contact Premium Card */

.contact-card {
    width: min(640px, 100%);

    margin: 0 auto;

    padding: 30px;

    border: 1px solid rgba(212, 175, 55, 0.25);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(17, 32, 55, 0.97),
            rgba(5, 13, 24, 0.97)
        );

    box-shadow:
        var(--shadow-card),
        0 0 50px rgba(212, 175, 55, 0.06);
}

.contact-card-title {
    display: flex;
    align-items: center;

    justify-content: center;

    gap: 13px;
}

.contact-card-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(212, 175, 55, 0.08);

    font-size: 23px;
}

.contact-card-title strong {
    display: block;

    color: var(--white);

    font-size: 17px;
}

.contact-card-title small {
    display: block;

    margin-top: 2px;

    color: var(--text-muted);

    font-size: 11px;
}

.contact-phone {
    margin: 22px 0;

    color: var(--gold-light);

    font-size: 29px;

    font-weight: 900;

    direction: ltr;

    letter-spacing: 1px;
}

.contact-actions {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.contact-call-btn,
.contact-whatsapp-btn {
    min-height: 78px;

    display: flex;
    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 14px;

    border-radius: 14px;

    text-decoration: none;

    transition: var(--transition);
}

.contact-call-btn {
    border: 1px solid rgba(56, 189, 248, 0.3);

    background: rgba(56, 189, 248, 0.04);

    color: var(--blue);
}

.contact-call-btn:hover {
    transform: translateY(-3px);

    background: rgba(56, 189, 248, 0.08);
}

.contact-whatsapp-btn {
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    color: var(--navy-950);

    box-shadow:
        0 8px 20px rgba(212, 175, 55, 0.15);
}

.contact-whatsapp-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 11px 28px rgba(212, 175, 55, 0.25);
}

.action-icon {
    font-size: 26px;
}

.contact-call-btn strong,
.contact-whatsapp-btn strong {
    display: block;

    font-size: 15px;
}

.contact-call-btn small,
.contact-whatsapp-btn small {
    display: block;

    margin-top: 2px;

    font-size: 10px;

    opacity: 0.75;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: var(--navy-950);

    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr
        0.8fr
        0.8fr;

    gap: 50px;

    padding: 60px 0;
}

.footer-brand p {
    max-width: 520px;

    margin-top: 18px;

    color: var(--text-dark);

    font-size: 12px;
}

.footer-logo {
    display: flex;

    align-items: center;

    gap: 12px;
}

.footer-logo img {
    width: 52px;
    height: 52px;

    object-fit: cover;

    border-radius: 50%;

    border: 1px solid rgba(212, 175, 55, 0.35);
}

.footer-logo strong {
    display: block;

    color: var(--white);

    font-size: 20px;

    font-weight: 900;
}

.footer-logo strong span {
    color: var(--gold-light);
}

.footer-logo small {
    color: var(--text-dark);

    font-size: 10px;
}

.footer-links,
.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 8px;

    color: var(--white);

    font-size: 15px;
}

.footer-links a,
.footer-contact a {
    color: var(--text-dark);

    text-decoration: none;

    font-size: 12px;

    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.footer-bottom-inner {
    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p,
.footer-bottom span {
    color: #475569;

    font-size: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1150px) {

    .desktop-nav {
        gap: 11px;
    }

    .desktop-nav a {
        font-size: 12px;
    }

    .hero-content {
        gap: 45px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);

        row-gap: 35px;
    }

    .process-line {
        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 820px) {

    .section {
        padding: 80px 0;
    }

    .navbar-container {
        min-height: 82px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .brand-logo {
        width: 57px;
        height: 57px;
    }

    .brand-name {
        font-size: 22px;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding:
            140px
            0
            80px;
    }

    .hero-content {
        grid-template-columns: 1fr;

        gap: 45px;

        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: clamp(37px, 10vw, 52px);
    }

    .hero-text p {
        font-size: 15px;
    }

    .eyebrow {
        font-size: 11px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-note {
        justify-content: center;

        flex-wrap: wrap;
    }

    .hero-system-card {
        transform: none;
    }


    /* TRUST */

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:last-child {
        grid-column: 1 / -1;
    }


    /* ABOUT */

    .about-grid,
    .faq-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    /* SERVICES */

    .services-grid,
    .solutions-grid,
    .coverage-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }


    /* WHY */

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }


    /* TECHNOLOGIES */

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* PROCESS */

    .process-grid {
        grid-template-columns: 1fr;
    }


    /* CONTACT */

    .contact-actions {
        grid-template-columns: 1fr;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 50px 0;
    }

    .footer-bottom-inner {
        min-height: auto;

        padding: 18px 0;

        flex-direction: column;

        justify-content: center;

        text-align: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 540px) {

    .container {
        width: min(92%, 1240px);
    }

    .section {
        padding: 65px 0;
    }


    .hero {
        padding-top: 125px;
    }


    .logo-area {
        gap: 9px;
    }

    .brand-logo {
        width: 51px;
        height: 51px;
    }

    .brand-name {
        font-size: 20px;
    }


    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }


    .system-grid {
        grid-template-columns: 1fr 1fr;
    }

    .system-item {
        min-height: 88px;
    }


    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item {
        font-size: 10px;
    }


    .why-grid {
        grid-template-columns: 1fr;
    }


    .tech-grid {
        grid-template-columns: 1fr 1fr;
    }


    .project-card {
        grid-template-columns: 1fr;
    }


    .project-icon {
        width: 52px;
        height: 52px;
    }


    .faq-contact-buttons {
        flex-direction: column;
    }


    .faq-contact-buttons .btn {
        width: 100%;
    }


    .contact-card {
        padding: 22px 17px;
    }

    .contact-phone {
        font-size: 23px;
    }

    .contact-card-title strong {
        font-size: 14px;
    }


    .contact-call-btn,
    .contact-whatsapp-btn {
        min-height: 72px;
    }

}