/* =========================================================
   VERIZAQ WEBSITE
   GLOBAL CSS
   Desktop 100% + Responsive
   ========================================================= */

/* =========================================================
   1. RESET
   ========================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    color: #071a3a;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}


/* =========================================================
   2. VARIABLES
   ========================================================= */

:root {

    --navy: #071a3a;
    --navy-dark: #03152f;
    --navy-deep: #021126;

    --blue: #087df5;
    --blue-dark: #0758c9;

    --cyan: #00d7e8;
    --cyan-dark: #00a9bd;

    --white: #ffffff;

    --text: #071a3a;
    --text-light: #52647f;
    --text-muted: #7d8ba2;

    --bg-light: #f6f9fe;
    --bg-blue: #eef6ff;

    --border: #dce5f1;

    --green: #13b86b;

    --container: 1240px;

    --header-height: 82px;

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;

    --shadow-sm:
        0 4px 16px rgba(7, 26, 58, 0.08);

    --shadow:
        0 12px 35px rgba(7, 26, 58, 0.10);

    --shadow-lg:
        0 20px 55px rgba(7, 26, 58, 0.15);

    --transition: 0.25s ease;
}


/* =========================================================
   3. CONTAINER
   ========================================================= */

.container {
    width: 100%;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}


/* =========================================================
   4. COMMON
   ========================================================= */

.section {
    width: 100%;
    padding: 90px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading span {
    display: inline-block;
    margin-bottom: 8px;

    color: var(--cyan-dark);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0 0 10px;

    color: var(--navy);

    font-size: 44px;
    font-weight: 700;

    line-height: 1.15;
}

.section-heading p {
    color: var(--text-light);
    font-size: 17px;
}

.section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--cyan-dark);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.10em;
    text-transform: uppercase;
}


/* =========================================================
   5. BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 0 28px;

    border-radius: 10px;

    font-size: 16px;
    font-weight: 600;

    line-height: 1;

    white-space: nowrap;

    cursor: pointer;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.btn span {
    font-size: 21px;
    line-height: 1;
}


/* Primary */

.btn-primary {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #087df5 0%,
            #078be9 55%,
            #00c6d1 100%
        );

    border: 1px solid rgba(0, 213, 255, 0.45);

    box-shadow:
        0 8px 22px rgba(0, 120, 245, 0.25);
}

.btn-primary:hover {
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(0, 120, 245, 0.35);
}


/* Secondary */

.btn-secondary {
    color: #ffffff;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.9);
}

.btn-secondary:hover {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.08);

    border-color: var(--cyan);

    transform: translateY(-2px);
}


/* Outline */

.btn-outline {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 46px;

    padding: 0 20px;

    color: var(--blue);

    background: #ffffff;

    border: 1px solid var(--blue);

    border-radius: 7px;

    font-size: 14px;
    font-weight: 600;

    transition: var(--transition);
}

.btn-outline:hover {
    color: #ffffff;
    background: var(--blue);
}


/* =========================================================
   6. HEADER / NAVBAR
   ========================================================= */

.site-header {
    position: relative;
    z-index: 1000;

    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid #e2e8f0;
}

.navbar {
    min-height: var(--header-height);

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


/* Logo */

.brand {
    display: flex;
    align-items: center;

    flex: 0 0 auto;
}

.brand-logo {
    display: block;

    width: 245px;
    height: auto;

    object-fit: contain;
}


/* Navigation */

.main-nav {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 27px;

    flex: 1;
}

.main-nav a {
    position: relative;

    display: inline-flex;

    align-items: center;

    min-height: var(--header-height);

    color: var(--navy);

    font-size: 14px;
    font-weight: 500;

    white-space: nowrap;

    transition: color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--blue);
}

.main-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 14px;

    height: 2px;

    background: var(--blue);

    border-radius: 10px;
}


/* Navigation Actions */

.nav-actions {
    display: flex;

    align-items: center;

    gap: 20px;

    flex: 0 0 auto;
}

.language {
    display: flex;

    align-items: center;

    gap: 6px;

    color: var(--navy);

    font-size: 14px;
    font-weight: 500;

    white-space: nowrap;
}


/* Login */

.btn-login {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 96px;
    height: 42px;

    padding: 0 20px;

    color: var(--navy) !important;

    background: #ffffff;

    border: 1px solid var(--navy);

    border-radius: 7px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;

    cursor: pointer;

    pointer-events: auto;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.btn-login:hover {
    color: #ffffff !important;

    background: var(--navy);

    transform: translateY(-1px);
}


/* Mobile button */

.mobile-menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    color: var(--navy);

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 8px;

    font-size: 21px;
}


/* =========================================================
   7. HERO
   ========================================================= */

.hero-section {
    position: relative;

    width: 100%;

    min-height: 540px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 90% 40%,
            rgba(0, 132, 255, 0.28),
            transparent 30%
        ),
        linear-gradient(
            110deg,
            #020f29 0%,
            #061b43 52%,
            #003f89 100%
        );

    overflow: hidden;
}


/* subtle technology background */

.hero-section::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 78% 30%,
            rgba(0, 214, 255, 0.18),
            transparent 22%
        );

    opacity: 0.8;
}

.hero-container {
    position: relative;
    z-index: 2;

    min-height: 540px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 35px;
}


/* Hero text */

.hero-content {
    max-width: 620px;

    padding-top: 10px;
}

.hero-label {
    display: block;

    margin-bottom: 20px;

    color: var(--cyan);

    font-size: 16px;
    font-weight: 700;

    letter-spacing: 0.10em;
}

.hero-content h1 {
    margin: 0 0 25px;

    color: #ffffff;

    font-size: clamp(46px, 4.2vw, 68px);

    font-weight: 700;

    line-height: 1.02;

    letter-spacing: -1.5px;
}

.hero-content h1 span {
    color: #08bde8;
}

.hero-description {
    max-width: 570px;

    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.92);

    font-size: 18px;

    line-height: 1.75;
}


/* Hero points */

.hero-points {
    display: flex;

    align-items: center;

    gap: 35px;

    margin-bottom: 28px;
}

.hero-point {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 500;
}

.point-icon {
    width: 40px;
    height: 40px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    color: var(--cyan);

    border: 1px solid var(--cyan);

    border-radius: 50%;

    font-size: 19px;
}


/* Hero buttons */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 17px;
}

.hero-buttons .btn {
    min-width: 180px;
}

.play-icon {
    font-size: 15px !important;
}


/* Hero image */

.hero-image {
    position: relative;

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 610px;

    height: 470px;

    object-fit: cover;

    border-radius: 18px;
}


/* =========================================================
   8. FEATURE STRIP
   ========================================================= */

.feature-strip {
    position: relative;

    z-index: 5;

    margin-top: -53px;
}

.feature-strip-grid {
    min-height: 140px;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    background: #ffffff;

    border: 1px solid #e3eaf3;

    border-radius: 20px;

    box-shadow:
        0 15px 40px rgba(7, 26, 58, 0.12);

    overflow: hidden;
}

.feature-strip-item {
    min-height: 140px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 25px;

    border-right: 1px solid #e1e7f0;
}

.feature-strip-item:last-child {
    border-right: 0;
}

.feature-strip-icon {
    flex: 0 0 auto;

    width: 68px;
    height: 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #073b9c;

    background: #edf5ff;

    border-radius: 50%;

    font-size: 28px;
}

.feature-strip-item h3 {
    margin-bottom: 5px;

    color: var(--navy);

    font-size: 15px;
    font-weight: 700;
}

.feature-strip-item p {
    color: var(--text-light);

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   9. HOW IT WORKS
   ========================================================= */

.how-section {
    width: 100%;
    padding: 30px 0 10px;
    background: #ffffff;
}

.how-section .section-heading {
    margin-bottom: 45px;
}

.steps-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        40px
        minmax(0, 1fr)
        40px
        minmax(0, 1fr);

    align-items: center;

    gap: 12px;
}

.step-card {
    position: relative;
    min-height: 180px;
    display: grid;
    grid-template-columns: 46px 115px 1fr;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #dfe7f2;
    border-radius: 14px;
    box-shadow:
        0 8px 25px rgba(7, 26, 58, 0.07);
}

.step-number {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #087df5,
            #00bddb
        );

    border-radius: 50%;

    font-size: 17px;
    font-weight: 700;
}

.step-image {
    width: 115px;
    height: 110px;

    overflow: hidden;

    border-radius: 10px;

    background: #eef5fc;
}

.step-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.step-content h3 {
    margin-bottom: 7px;

    color: var(--navy);

    font-size: 17px;
    font-weight: 700;
}

.step-content p {
    color: var(--text-light);

    font-size: 13px;

    line-height: 1.65;
}

.step-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--blue);

    font-size: 32px;

    line-height: 1;
}


/* =========================================================
   10. TRUST STATEMENT
   ========================================================= */

.trust-statement {
    width: fit-content;

    max-width: calc(100% - 40px);

    min-height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin: 25px auto 0;

    padding: 9px 30px;

    color: #082d67;

    background:
        linear-gradient(
            90deg,
            #eef6ff,
            #e8f2ff
        );

    border-radius: 28px;

    font-size: 15px;
    font-weight: 600;

    text-align: center;

    box-shadow:
        0 5px 15px rgba(7, 26, 58, 0.04);
}

.trust-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    color: #073b9c;

    font-size: 20px;
}


/* =========================================================
   11. FOR BRANDS
   ========================================================= */

.brands-section {
    width: 100%;
    padding: 30px 0 70px;
    background: #ffffff;
}

.brands-container {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(320px, 0.78fr)
        minmax(0, 1.22fr);

    align-items: center;

    gap: 60px;

    padding: 30px;

    border: 1px solid #e2e9f2;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(7, 26, 58, 0.04);
}


/* Left */

.brands-content {
    min-width: 0;

    padding: 15px 0 15px 5px;
}

.brands-content .section-label {
    margin-bottom: 13px;
}

.brands-content h2 {
    margin-bottom: 20px;

    color: var(--navy);

    font-size: 39px;
    font-weight: 700;

    line-height: 1.1;
}

.brands-content h2 span {
    color: var(--blue);
}

.brands-content > p {
    max-width: 500px;

    margin-bottom: 20px;

    color: var(--text-light);

    font-size: 15px;

    line-height: 1.75;
}


/* List */

.brands-list {
    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-bottom: 25px;
}

.brands-list li {
    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--navy);

    font-size: 14px;
}

.brands-list li span {
    width: 18px;
    height: 18px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    color: var(--blue);

    border: 1px solid var(--blue);

    border-radius: 50%;

    font-size: 11px;
    font-weight: 700;
}


/* Dashboard */

.brands-image {
    width: 100%;

    min-width: 0;

    overflow: hidden;

    border-radius: 16px;

    background: #f4f7fb;

    box-shadow:
        0 8px 25px rgba(7, 26, 58, 0.08);
}

.brands-image img {
    width: 100%;

    min-height: 350px;

    object-fit: cover;
}


/* =========================================================
   12. TRUSTED BRANDS
   ========================================================= */

.trusted-section {
    width: 100%;

    padding: 10px 0 80px;

    background: #ffffff;
}

.trusted-section .section-heading {
    margin-bottom: 35px;
}

.trusted-section .section-heading h2 {
    font-size: 27px;
}


/* IMPORTANT:
   Six logos in ONE horizontal row on desktop
*/

.trusted-logos {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    align-items: center;

    gap: 25px;
}

.trusted-logo {
    min-height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #7d8798;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;
    font-weight: 600;

    letter-spacing: 0.02em;

    text-align: center;

    white-space: nowrap;
}


/* =========================================================
   13. HOME CTA
   ========================================================= */

.home-cta {
    width: 100%;

    padding: 75px 0;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(0, 130, 255, 0.25),
            transparent 28%
        ),
        linear-gradient(
            110deg,
            #02102c,
            #052a62
        );
}

.cta-container {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    align-items: center;

    gap: 60px;
}

.cta-image {
    display: flex;

    align-items: center;
    justify-content: center;
}

.cta-image img {
    width: 100%;
    max-width: 500px;

    height: 300px;

    object-fit: cover;

    border-radius: 16px;
}

.cta-content {
    max-width: 600px;
}

.cta-content h2 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: 42px;
    line-height: 1.15;
}

.cta-content p {
    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   14. FOOTER
   ========================================================= */

.site-footer {
    width: 100%;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 80% 0%,
            rgba(0, 120, 255, 0.18),
            transparent 30%
        ),
        #03152f;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.8fr
        1fr
        1fr
        1fr
        1.2fr;

    gap: 35px;

    padding-top: 60px;
    padding-bottom: 50px;
}

.footer-company {
    max-width: 310px;
}

.footer-logo {
    width: 205px;
    height: auto;

    margin-bottom: 18px;
}

.footer-company p {
    color: #c8d3e4;

    font-size: 13px;

    line-height: 1.8;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.footer-column h4 {
    margin-bottom: 9px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;
}

.footer-column a,
.footer-column p {
    color: #c6d1e3;

    font-size: 13px;

    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--cyan);
}


/* Footer bottom */

.footer-bottom {
    min-height: 58px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);

    color: #aebdd1;

    font-size: 12px;
}

.footer-social {
    display: flex;

    align-items: center;

    gap: 14px;
}

.footer-social a {
    color: #ffffff;

    font-size: 17px;
}

.footer-social a:hover {
    color: var(--cyan);
}


/* =========================================================
   15. GENERIC PAGE HERO
   About / Solutions / Features / Pricing / Blog / Contact
   ========================================================= */

.page-hero {
    width: 100%;

    padding: 85px 0;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(0, 180, 255, 0.18),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #02102c,
            #062b60
        );
}

.page-hero-content {
    max-width: 760px;

    margin: 0 auto;

    text-align: center;
}

.page-hero-content .eyebrow {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--cyan);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.10em;
}

.page-hero-content h1 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: 52px;
    line-height: 1.1;
}

.page-hero-content p {
    color: rgba(255, 255, 255, 0.82);

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   16. ABOUT US
   ========================================================= */

.about-story-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 65px;
}

.about-story-content h2 {
    margin-bottom: 20px;

    color: var(--navy);

    font-size: 40px;

    line-height: 1.15;
}

.about-story-content p {
    margin-bottom: 16px;

    color: var(--text-light);

    font-size: 16px;
}

.about-story-image {
    overflow: hidden;

    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.about-story-image img {
    width: 100%;

    object-fit: cover;
}


/* =========================================================
   17. FEATURES / SHOWCASE
   ========================================================= */

.feature-showcase {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 60px;
}

.feature-showcase-image {
    overflow: hidden;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);
}

.feature-showcase-image img {
    width: 100%;
}

.feature-showcase-content h2 {
    margin-bottom: 18px;

    color: var(--navy);

    font-size: 38px;

    line-height: 1.15;
}

.feature-showcase-content p {
    margin-bottom: 20px;

    color: var(--text-light);

    font-size: 16px;
}


/* =========================================================
   18. GENERIC CARDS
   ========================================================= */

.cards-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}

.info-card {
    padding: 30px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.info-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow);
}

.info-card h3 {
    margin-bottom: 10px;

    color: var(--navy);

    font-size: 20px;
}

.info-card p {
    color: var(--text-light);

    font-size: 14px;
}


/* =========================================================
   19. PRICING
   ========================================================= */

.pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    align-items: stretch;

    gap: 25px;
}

.pricing-card {
    padding: 35px 30px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);

    text-align: center;
}

.pricing-card.featured {
    border: 2px solid var(--blue);

    box-shadow: var(--shadow);
}

.pricing-card h3 {
    margin-bottom: 15px;

    color: var(--navy);

    font-size: 22px;
}

.price {
    margin-bottom: 20px;

    color: var(--blue);

    font-size: 42px;
    font-weight: 700;
}


/* =========================================================
   20. BLOG
   ========================================================= */

.blog-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}

.blog-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);
}

.blog-card-image {
    width: 100%;
    height: 210px;

    object-fit: cover;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-content h3 {
    margin-bottom: 10px;

    color: var(--navy);

    font-size: 20px;
}

.blog-card-content p {
    color: var(--text-light);

    font-size: 14px;
}


/* =========================================================
   21. CONTACT
   ========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 15px;

    color: var(--navy);

    font-size: 38px;

    line-height: 1.15;
}

.contact-info > p {
    margin-bottom: 25px;

    color: var(--text-light);
}

.contact-item {
    margin-bottom: 18px;
}

.contact-item strong {
    display: block;

    margin-bottom: 3px;

    color: var(--navy);
}

.contact-item span {
    color: var(--text-light);
}

.contact-form {
    padding: 30px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--navy);

    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding: 12px 14px;

    color: var(--navy);

    background: #ffffff;

    border: 1px solid #d8e1ed;

    border-radius: 7px;

    outline: none;

    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--blue);
}

.form-group textarea {
    min-height: 140px;

    resize: vertical;
}


/* =========================================================
   22. TABLET
   ========================================================= */

@media (max-width: 1100px) {

    :root {
        --container: 100%;
    }

    .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .brand-logo {
        width: 210px;
    }

    .main-nav {
        gap: 18px;
    }

    .main-nav a {
        font-size: 13px;
    }

    .nav-actions {
        gap: 12px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .feature-strip-item {
        padding: 18px;
    }

    .feature-strip-icon {
        width: 55px;
        height: 55px;

        font-size: 23px;
    }

    .step-card {
        grid-template-columns:
            40px
            90px
            1fr;

        padding: 15px;
    }

    .step-image {
        width: 90px;
        height: 90px;
    }

    .brands-container {
        gap: 35px;
    }

    .brands-content h2 {
        font-size: 34px;
    }

    .footer-grid {
        grid-template-columns:
            1.5fr
            repeat(2, 1fr)
            repeat(2, 1fr);
    }
}


/* =========================================================
   23. TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 900px) {

    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;

        padding-top: 65px;
        padding-bottom: 70px;
    }

    .hero-content {
        max-width: 720px;
    }

    .hero-image {
        min-height: 350px;
    }

    .hero-image img {
        max-width: 650px;
    }

    .feature-strip {
        margin-top: -35px;
    }

    .feature-strip-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .feature-strip-item:nth-child(2) {
        border-right: 0;
    }

    .feature-strip-item:nth-child(-n+2) {
        border-bottom: 1px solid #e1e7f0;
    }

    .steps-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 18px;
    }

    .step-arrow {
        display: none;
    }

    .step-card {
        grid-template-columns: 1fr;

        justify-items: center;

        text-align: center;
    }

    .brands-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .brands-content {
        padding: 0;
    }

    .brands-image {
        max-width: 850px;
        margin: 0 auto;
    }

    .trusted-logos {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        row-gap: 15px;
    }

    .cta-container {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .cta-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .cta-image {
        order: 2;
    }

    .cta-content {
        order: 1;
    }

    .about-story-grid,
    .feature-showcase,
    .contact-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .cards-grid,
    .pricing-grid,
    .blog-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   24. MOBILE
   ========================================================= */

@media (max-width: 640px) {

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section {
        padding: 65px 0;
    }

    /* Header */

    .navbar {
        min-height: 70px;

        gap: 10px;
    }

    .brand-logo {
        width: 175px;
    }

    .language {
        display: none;
    }

    .btn-login {
        min-width: 82px;
        height: 38px;

        padding: 0 14px;

        font-size: 13px;
    }

    /* Hero */

    .hero-section {
        min-height: auto;
    }

    .hero-container {
        min-height: auto;

        padding-top: 55px;
        padding-bottom: 65px;
    }

    .hero-label {
        font-size: 13px;
    }

    .hero-content h1 {
        font-size: 43px;

        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-points {
        flex-wrap: wrap;

        gap: 15px 22px;
    }

    .hero-point {
        font-size: 14px;
    }

    .point-icon {
        width: 34px;
        height: 34px;

        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-image {
        min-height: 250px;
    }

    .hero-image img {
        height: 250px;
    }

    /* Feature */

    .feature-strip {
        margin-top: -25px;
    }

    .feature-strip-grid {
        grid-template-columns: 1fr;

        border-radius: 14px;
    }

    .feature-strip-item {
        min-height: 100px;

        border-right: 0 !important;

        border-bottom: 1px solid #e1e7f0;
    }

    .feature-strip-item:last-child {
        border-bottom: 0;
    }

    /* Heading */

    .section-heading h2 {
        font-size: 34px;
    }

    /* How */

    .how-section {
        padding-top: 75px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        grid-template-columns:
            45px
            100px
            1fr;

        justify-items: initial;

        text-align: left;
    }

    .step-image {
        width: 100px;
        height: 95px;
    }

    /* Trust */

    .trust-statement {
        width: calc(100% - 20px);

        padding: 10px 16px;

        font-size: 12px;
    }

    /* Brands */

    .brands-section {
        padding-top: 15px;
    }

    .brands-container {
        padding: 20px;

        border-radius: 14px;
    }

    .brands-content h2 {
        font-size: 33px;
    }

    .brands-image img {
        min-height: 240px;
    }

    /* Trusted */

    .trusted-section {
        padding-bottom: 60px;
    }

    .trusted-section .section-heading h2 {
        font-size: 25px;
    }

    .trusted-logos {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .trusted-logo {
        min-height: 50px;

        font-size: 18px;
    }

    /* CTA */

    .home-cta {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 34px;
    }

    .cta-image img {
        height: 230px;
    }

    /* Generic */

    .page-hero {
        padding: 65px 0;
    }

    .page-hero-content h1 {
        font-size: 40px;
    }

    .cards-grid,
    .pricing-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 22px;
    }

    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;

        padding-top: 45px;
        padding-bottom: 35px;
    }

    .footer-company {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;

        justify-content: center;

        padding: 18px 0;

        text-align: center;
    }
}


/* =========================================================
   25. VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .brand-logo {
        width: 155px;
    }

    .hero-content h1 {
        font-size: 37px;
    }

    .step-card {
        grid-template-columns: 40px 80px 1fr;

        gap: 10px;

        padding: 12px;
    }

    .step-image {
        width: 80px;
        height: 80px;
    }

    .step-content h3 {
        font-size: 15px;
    }

    .step-content p {
        font-size: 12px;
    }

    .brands-content h2 {
        font-size: 29px;
    }
}


/* =========================================================
   26. IMPORTANT SAFETY / LAYOUT FIXES
   ========================================================= */

/* Prevent long text from breaking layout */

.hero-content,
.brands-content,
.cta-content,
.step-content,
.trusted-logo {
    min-width: 0;
}

/* Prevent images from overflowing */

.hero-image,
.brands-image,
.cta-image,
.step-image {
    overflow: hidden;
}

/* Always use predictable box sizing */

.hero-section *,
.feature-strip *,
.how-section *,
.brands-section *,
.trusted-section *,
.home-cta *,
.site-footer * {
    box-sizing: border-box;
}


/* =========================================================
   ABOUT US PAGE
========================================================= */


/* ---------- ABOUT HERO ---------- */

.about-hero {
    background: #061a3d;
    color: #ffffff;
    padding: 40px 0 50px;
    overflow: hidden;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
    gap: 50px;
    min-height: 300px;
}

.about-hero-content {
    max-width: 560px;
}

.breadcrumb {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 18px;
}

.breadcrumb span {
    margin: 0 7px;
    color: #00cfe8;
}

.about-hero h1 {
    margin: 0;
    font-size: 48px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1px;
}

.about-hero h1 span {
    color: #00cfe8;
}

.section-line {
    width: 36px;
    height: 2px;
    background: #00cfe8;
    margin: 18px 0 22px;
}

.about-hero h2 {
    margin: 0 0 18px;
    font-size: 22px;
    line-height: 1.3;
}

.about-hero p {
    margin: 0;
    max-width: 560px;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,0.88);
}

.about-hero-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 4px;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}



/* ---------- OUR STORY ---------- */

.about-story {
    background: #ffffff;
    padding: 24px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 55px;
}

.about-story-content {
    max-width: 560px;
}

.eyebrow {
    display: block;
    margin-bottom: 14px;
    color: #00aeca;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.about-story h2 {
    margin: 0 0 18px;
    color: #09234d;
    font-size: 27px;
    line-height: 1.25;
}

.about-story p {
    margin: 0 0 14px;
    color: #243657;
    font-size: 14px;
    line-height: 1.8;
}

.about-story-image {
    width: 100%;
    height: 255px;
    overflow: hidden;
    border-radius: 12px;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}



/* ---------- VALUES ---------- */

.about-values {
    background: #f3f8ff;
    padding: 28px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 24px;
}

.section-heading h2 {
    margin: 0;
    color: #09234d;
    font-size: 24px;
    line-height: 1.25;
}

.section-heading .section-line {
    margin: 10px auto 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.value-card {
    min-height: 150px;
    padding: 8px 35px;
    text-align: center;
}

.value-card + .value-card {
    border-left: 1px solid #cbd8eb;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #e4f3ff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 27px;
}

.value-card h3 {
    margin: 0 0 10px;
    color: #09234d;
    font-size: 16px;
}

.value-card p {
    margin: 0;
    color: #344766;
    font-size: 13px;
    line-height: 1.7;
}

.value-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.value-card li {
    margin-bottom: 6px;
    color: #344766;
    font-size: 12px;
    line-height: 1.5;
}

.value-card li::before {
    content: "•";
    color: #4b35d9;
    margin-right: 6px;
}



/* ---------- JOURNEY ---------- */

.about-journey {
    background: #ffffff;
    padding: 30px 0 35px;
}

.journey-grid {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    text-align: center;
}

.journey-item {
    position: relative;
    padding: 0 15px;
}

.journey-item:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 30px;
    right: -10px;

    width: 20px;
    height: 1px;

    background: #b7c5d9;
}

.journey-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 8px;

    border-radius: 50%;

    background: #e7f7f8;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 25px;
}

.journey-year {
    margin-bottom: 6px;

    color: #00aeca;

    font-size: 14px;
    font-weight: 700;
}

.journey-item h3 {
    margin: 0 0 8px;

    color: #09234d;

    font-size: 14px;
}

.journey-item p {
    max-width: 190px;
    margin: 0 auto;

    color: #344766;

    font-size: 12px;
    line-height: 1.65;
}



/* ---------- ABOUT CTA ---------- */

.about-cta {
    background:
        linear-gradient(
            90deg,
            #031638,
            #06285b
        );

    color: #ffffff;
    padding: 20px 0;
}

.about-cta-inner {
    display: grid;

    grid-template-columns: 90px 1fr auto;

    align-items: center;

    gap: 25px;
}

.about-cta-icon {
    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-cta-icon img {
    width: 70px;
    height: 70px;

    object-fit: contain;
}

.about-cta-content h2 {
    margin: 0 0 7px;

    font-size: 21px;
    line-height: 1.3;
}

.about-cta-content p {
    max-width: 600px;

    margin: 0;

    color: rgba(255,255,255,0.85);

    font-size: 13px;
    line-height: 1.6;
}

.about-cta-button {
    white-space: nowrap;
}



/* =========================================================
   BUTTON
========================================================= */

.about-cta .btn-primary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 145px;

    padding: 12px 20px;

    border-radius: 8px;

    background: linear-gradient(
        90deg,
        #0875ed,
        #04c9d8
    );

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: 0.25s ease;
}

.about-cta .btn-primary:hover {
    transform: translateY(-2px);
}



/* =========================================================
   100% DESKTOP VIEW
========================================================= */

@media (min-width: 1200px) {

    .container {
        width: 100%;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 30px;
        padding-right: 30px;
        box-sizing: border-box;
    }

}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .about-hero-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-image {
        height: 280px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card + .value-card {
        border-left: 0;
        border-top: 1px solid #cbd8eb;
        padding-top: 25px;
    }

    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

    .journey-item:nth-child(2)::after {
        display: none;
    }

    .about-cta-inner {
        grid-template-columns: 70px 1fr;
    }

    .about-cta-button {
        grid-column: 2;
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .about-hero {
        padding: 30px 0;
    }

    .about-hero h1 {
        font-size: 38px;
    }

    .about-hero h2 {
        font-size: 19px;
    }

    .about-story,
    .about-values,
    .about-journey {
        padding: 35px 0;
    }

    .about-story-image {
        height: 220px;
    }

    .journey-grid {
        grid-template-columns: 1fr;
    }

    .journey-item::after {
        display: none !important;
    }

    .about-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-cta-icon {
        margin: auto;
    }

    .about-cta-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-cta-button {
        grid-column: auto;
    }

}

/* =========================================================
   VERIZAQ - HOW IT WORKS PAGE
   Desktop 100% layout
   ========================================================= */

.how-it-work-page {
    width: 100%;
    overflow: hidden;
}

/* HERO */
.how-work-hero {
    background: #03142f;
    color: #ffffff;
    padding: 0;
}

.how-work-hero-container {
    min-height: 455px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.how-work-hero-content {
    max-width: 590px;
    padding: 55px 0;
}

.how-work-label {
    display: block;
    margin-bottom: 20px;
    color: #00c4d9;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.how-work-hero h1 {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 700;
}

.how-work-hero h1 span {
    color: #00bfe8;
}

.how-work-hero p {
    max-width: 560px;
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.7;
}

.how-work-hero-image {
    height: 100%;
    min-height: 455px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.how-work-hero-image img {
    width: 100%;
    max-width: 620px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.how-work-steps {
    background: #ffffff;
    padding: 55px 0 60px;
}

.how-work-section-heading {
    text-align: center;
    margin-bottom: 42px;
}

.how-work-section-heading h2 {
    margin: 0;
    color: #071a3a;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}

.how-work-section-heading span {
    display: block;
    width: 36px;
    height: 3px;
    margin: 10px auto 12px;
    background: #00bcd4;
}

.how-work-section-heading p {
    margin: 0;
    color: #243657;
    font-size: 15px;
}


/* STEPS GRID */

.how-work-steps-grid {
    display: grid;
    grid-template-columns:
        1fr
        45px
        1fr
        45px
        1fr
        45px
        1fr;

    align-items: center;
    gap: 10px;
}

.how-work-step {
    position: relative;
    min-height: 330px;

    padding: 28px 22px 24px;

    background: #ffffff;
    border: 1px solid #dbe5f2;
    border-radius: 12px;

    box-shadow: 0 8px 24px rgba(7, 26, 58, 0.07);

    text-align: center;
}

.how-work-step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #087df5,
        #00bcd4
    );

    color: #ffffff;

    font-size: 18px;
    font-weight: 700;

    box-shadow: 0 5px 15px rgba(8, 125, 245, 0.25);
}

.how-work-step-image {
    width: 180px;
    height: 180px;

    margin: 0 auto 20px;

    overflow: hidden;
    border-radius: 10px;
}

.how-work-step-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.how-work-step h3 {
    margin: 0 0 10px;

    color: #071a3a;

    font-size: 18px;
    font-weight: 700;
}

.how-work-step p {
    max-width: 220px;

    margin: 0 auto;

    color: #344766;

    font-size: 13px;
    line-height: 1.65;
}

.how-work-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #087df5;

    font-size: 32px;
    font-weight: 400;
}


/* =========================================================
   WHY IT WORKS
   ========================================================= */

.why-work-section {
    background: #f3f8ff;
    padding: 55px 0;
}

.why-work-heading {
    text-align: center;
    margin-bottom: 38px;
}

.why-work-heading h2 {
    margin: 0;

    color: #071a3a;

    font-size: 30px;
    font-weight: 700;
}

.why-work-heading span {
    display: block;

    width: 36px;
    height: 3px;

    margin: 10px auto 0;

    background: #00bcd4;
}

.why-work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.why-work-card {
    min-height: 190px;

    padding: 10px 35px;

    text-align: center;
}

.why-work-card + .why-work-card {
    border-left: 1px solid #cbd8eb;
}

.why-work-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e4f3ff;

    font-size: 28px;
}

.why-work-card h3 {
    margin: 0 0 10px;

    color: #071a3a;

    font-size: 16px;
}

.why-work-card p {
    margin: 0;

    color: #344766;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   CTA
   ========================================================= */

.how-work-cta {
    background: #03142f;
    color: #ffffff;

    padding: 55px 0;
}

.how-work-cta-container {
    display: grid;
    grid-template-columns: 360px 1fr;

    align-items: center;

    gap: 70px;
}

.how-work-cta-image {
    display: flex;
    justify-content: center;
}

.how-work-cta-image img {
    width: 320px;
    height: 250px;

    object-fit: cover;

    border-radius: 12px;
}

.how-work-cta-content h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 38px;
    line-height: 1.2;
}

.how-work-cta-content p {
    max-width: 620px;

    margin: 0 0 25px;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.7;
}

.how-work-cta-buttons {
    display: flex;
    gap: 15px;
}

.how-work-cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 24px;

    border-radius: 7px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .how-work-hero-container {
        gap: 30px;
    }

    .how-work-hero h1 {
        font-size: 44px;
    }

    .how-work-steps-grid {
        grid-template-columns:
            1fr
            35px
            1fr
            35px
            1fr
            35px
            1fr;

        gap: 5px;
    }

    .how-work-step {
        padding-left: 15px;
        padding-right: 15px;
    }

    .why-work-card {
        padding-left: 20px;
        padding-right: 20px;
    }
}


@media (max-width: 900px) {

    .how-work-hero-container {
        grid-template-columns: 1fr;
    }

    .how-work-hero-content {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .how-work-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .how-work-hero-image {
        min-height: 350px;
    }

    .how-work-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 20px;
    }

    .how-work-arrow {
        display: none;
    }

    .why-work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-work-card:nth-child(3) {
        border-left: 0;
    }

    .why-work-card:nth-child(n + 3) {
        margin-top: 25px;
    }

    .how-work-cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .how-work-cta-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .how-work-cta-buttons {
        justify-content: center;
    }
}


@media (max-width: 640px) {

    .how-work-hero-content {
        padding: 45px 0;
    }

    .how-work-hero h1 {
        font-size: 38px;
    }

    .how-work-hero p {
        font-size: 16px;
    }

    .how-work-steps {
        padding: 45px 0;
    }

    .how-work-steps-grid {
        grid-template-columns: 1fr;
    }

    .how-work-step {
        min-height: auto;
    }

    .why-work-grid {
        grid-template-columns: 1fr;
    }

    .why-work-card {
        border-left: 0 !important;
        border-bottom: 1px solid #cbd8eb;
        padding-bottom: 25px;
    }

    .why-work-card:last-child {
        border-bottom: 0;
    }

    .how-work-cta-content h2 {
        font-size: 30px;
    }

    .how-work-cta-buttons {
        flex-direction: column;
    }
}

/* =========================================================
   VERIZAQ SOLUTIONS PAGE
   Design matched to Solutions layout
   ========================================================= */

.solutions-page {
    width: 100%;
    overflow: hidden;
}


/* =========================================================
   SOLUTIONS HERO
   ========================================================= */

.solutions-hero {
    position: relative;
    overflow: hidden;

    min-height: 430px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 85% 45%,
            rgba(0, 217, 232, 0.15),
            transparent 32%
        ),
        linear-gradient(
            115deg,
            #020f29 0%,
            #031a3b 55%,
            #062b5c 100%
        );
}

.solutions-hero-container {
    min-height: 430px;

    display: grid;
    grid-template-columns: 1fr 1.15fr;

    align-items: center;

    gap: 45px;
}

.solutions-hero-content {
    position: relative;
    z-index: 2;

    max-width: 610px;
}

.solutions-breadcrumb {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: #a9bdd8;

    font-size: 13px;
}

.solutions-breadcrumb span {
    color: var(--secondary);
}

.solutions-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--secondary);

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.08em;
}

.solutions-hero h1 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 700;
}

.solutions-hero h1 span {
    color: var(--primary);
}

.solutions-hero-content > p {
    max-width: 580px;

    margin-bottom: 28px;

    color: #dbe6f5;

    font-size: 16px;
    line-height: 1.7;
}


/* Hero points */

.solutions-hero-points {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    max-width: 620px;
}

.solutions-hero-point {
    display: flex;

    align-items: flex-start;

    gap: 10px;
}

.solutions-point-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--secondary);

    border-radius: 50%;

    color: var(--secondary);

    font-size: 16px;
}

.solutions-hero-point strong {
    display: block;

    margin-bottom: 3px;

    color: #ffffff;

    font-size: 12px;
}

.solutions-hero-point small {
    display: block;

    color: #a9bdd8;

    font-size: 10px;
    line-height: 1.45;
}


/* Hero image */

.solutions-hero-visual {
    position: relative;

    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;
}

.solutions-hero-visual::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 217, 232, 0.15),
            transparent 65%
        );

    pointer-events: none;
}

.solutions-hero-visual img {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 620px;

    height: 350px;

    object-fit: cover;

    border-radius: 16px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35);

    opacity: 0.95;
}


/* =========================================================
   OUR SOLUTIONS
   ========================================================= */

.solutions-main {
    padding-top: 65px;
    padding-bottom: 70px;
}

.solutions-heading {
    margin-bottom: 38px;
}

.solutions-heading p {
    max-width: 680px;

    margin: 0 auto;
}


.solutions-cards-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 16px;
}


.solutions-detail-card {
    position: relative;

    display: flex;

    flex-direction: column;

    min-width: 0;

    padding: 22px 18px 18px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 5px 20px rgba(7, 26, 58, 0.06);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.solutions-detail-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(7, 26, 58, 0.12);
}


.solutions-card-icon {
    width: 58px;
    height: 58px;

    margin: -44px auto 12px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e9f4ff;

    color: var(--primary);

    font-size: 25px;

    box-shadow:
        0 0 0 8px #ffffff;
}


.solutions-detail-card h3 {
    min-height: 48px;

    margin-bottom: 8px;

    text-align: center;

    color: var(--navy);

    font-size: 17px;
    line-height: 1.35;
}

.solutions-detail-card > p {
    min-height: 65px;

    margin-bottom: 12px;

    text-align: center;

    color: var(--text-light);

    font-size: 12px;
    line-height: 1.55;
}


/* Card image */

.solutions-card-image {
    width: 100%;

    height: 145px;

    margin-bottom: 14px;

    overflow: hidden;

    border-radius: 10px;
}

.solutions-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* Card list */

.solutions-card-list {
    display: flex;

    flex-direction: column;

    gap: 7px;

    margin-bottom: 18px;
}

.solutions-card-list li {
    display: flex;

    align-items: flex-start;

    gap: 7px;

    color: var(--text);

    font-size: 11px;

    line-height: 1.45;
}

.solutions-card-list li span {
    flex: 0 0 auto;

    color: var(--primary);

    font-weight: 700;
}


/* Card button */

.solutions-card-button {
    width: 100%;

    height: 40px;

    margin-top: auto;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 1px solid var(--primary);

    border-radius: 6px;

    color: var(--primary);

    background: #ffffff;

    font-size: 12px;
    font-weight: 600;

    transition:
        background var(--transition),
        color var(--transition);
}

.solutions-card-button:hover {
    color: #ffffff;

    background: var(--primary);
}

.solutions-card-button span {
    font-size: 17px;
}


/* =========================================================
   INDUSTRIES
   ========================================================= */

.industries-section {
    padding: 45px 0 55px;

    background: #f5f9ff;
}

.industries-section .section-heading {
    margin-bottom: 30px;
}

.industries-section .section-heading h2 {
    font-size: 27px;
}


.industries-grid {
    display: grid;

    grid-template-columns: repeat(8, minmax(0, 1fr));

    border: 1px solid var(--border);

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 4px 18px rgba(7, 26, 58, 0.04);

    overflow: hidden;
}


.industry-item {
    min-height: 105px;

    padding: 15px 8px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border-right: 1px solid var(--border);
}

.industry-item:last-child {
    border-right: 0;
}

.industry-item span {
    height: 35px;

    margin-bottom: 8px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--primary);

    font-size: 23px;
}

.industry-item strong {
    color: var(--navy);

    font-size: 10px;
    line-height: 1.4;
}


/* =========================================================
   WHY CHOOSE VERIZAQ
   ========================================================= */

.why-solutions-section {
    padding: 30px 0 45px;
}

.why-solutions-container {
    position: relative;

    min-height: 220px;

    display: grid;

    grid-template-columns: 180px 1fr 210px;

    align-items: center;

    gap: 25px;

    padding: 25px 35px;

    border-radius: 12px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(0, 217, 232, 0.15),
            transparent 30%
        ),
        linear-gradient(
            115deg,
            #020f29,
            #06295a
        );

    overflow: hidden;
}


.why-solutions-visual {
    display: flex;

    align-items: center;
    justify-content: center;
}

.why-solutions-visual img {
    width: 150px;
    height: 150px;

    object-fit: cover;

    border-radius: 50%;
}


.why-solutions-content h2 {
    margin-bottom: 4px;

    color: #ffffff;

    font-size: 24px;
}

.why-solutions-line {
    width: 42px;
    height: 2px;

    margin-bottom: 18px;

    background: var(--secondary);
}


.why-solutions-features {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 0;
}


.why-solutions-feature {
    display: flex;

    gap: 10px;

    padding: 0 15px;

    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.why-solutions-feature:first-child {
    padding-left: 0;
}

.why-solutions-feature:last-child {
    border-right: 0;
}


.why-solutions-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--secondary);

    border-radius: 50%;

    color: var(--secondary);

    font-size: 16px;
}


.why-solutions-feature h3 {
    margin-bottom: 4px;

    color: #ffffff;

    font-size: 12px;
}

.why-solutions-feature p {
    color: #b9c9dd;

    font-size: 10px;
    line-height: 1.45;
}


.why-solutions-cta {
    text-align: center;
}

.why-solutions-cta p {
    margin-bottom: 14px;

    color: #ffffff;

    font-size: 13px;
    line-height: 1.45;
}

.why-solutions-cta .btn {
    height: 42px;

    padding: 0 18px;

    font-size: 12px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {

    .solutions-cards-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 28px;
    }

    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .industry-item:nth-child(4) {
        border-right: 0;
    }

    .industry-item:nth-child(-n + 4) {
        border-bottom: 1px solid var(--border);
    }

    .why-solutions-container {
        grid-template-columns: 150px 1fr;

        padding: 25px;
    }

    .why-solutions-cta {
        grid-column: 1 / -1;

        text-align: right;
    }
}


@media (max-width: 900px) {

    .solutions-hero-container {
        grid-template-columns: 1fr;

        min-height: auto;

        padding-top: 55px;
        padding-bottom: 55px;
    }

    .solutions-hero-content {
        max-width: 700px;
    }

    .solutions-hero-visual {
        min-height: 300px;
    }

    .solutions-hero-visual img {
        max-width: 600px;
    }

    .solutions-hero-points {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .solutions-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-solutions-features {
        grid-template-columns: 1fr 1fr;

        row-gap: 20px;
    }

    .why-solutions-feature:nth-child(2) {
        border-right: 0;
    }
}


@media (max-width: 600px) {

    .solutions-hero h1 {
        font-size: 40px;
    }

    .solutions-hero-points {
        grid-template-columns: 1fr;
    }

    .solutions-hero-visual {
        min-height: 220px;
    }

    .solutions-hero-visual img {
        height: 230px;
    }

    .solutions-cards-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .solutions-detail-card {
        padding: 22px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-item {
        border-right: 1px solid var(--border) !important;
        border-bottom: 1px solid var(--border);
    }

    .industry-item:nth-child(even) {
        border-right: 0 !important;
    }

    .industry-item:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .why-solutions-container {
        grid-template-columns: 1fr;

        text-align: center;

        padding: 30px 20px;
    }

    .why-solutions-visual {
        order: 1;
    }

    .why-solutions-content {
        order: 2;
    }

    .why-solutions-cta {
        order: 3;

        text-align: center;
    }

    .why-solutions-features {
        grid-template-columns: 1fr;

        text-align: left;
    }

    .why-solutions-feature {
        padding: 12px 0;

        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .why-solutions-feature:last-child {
        border-bottom: 0;
    }
}

/* =========================================================
   VERIZAQ FEATURES PAGE
   ========================================================= */

.features-page {
    width: 100%;
    overflow: hidden;
}


/* =========================================================
   FEATURES HERO
   ========================================================= */

.features-hero {
    position: relative;
    min-height: 335px;
    color: #ffffff;

    background:
        radial-gradient(
            circle at 85% 45%,
            rgba(0, 14, 39, 0.20),
            transparent 35%
        ),
        radial-gradient(
            circle at 55% 70%,
            rgba(0, 14, 42, 0.12),
            transparent 35%
        ),
        #03152f;
}

.features-hero-container {
    min-height: 335px;

    display: grid;
    grid-template-columns: 42% 58%;

    align-items: center;
}


.features-hero-content {
    position: relative;
    z-index: 2;
}


.features-label {
    display: inline-block;

    margin-bottom: 16px;

    color: #00d5df;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .08em;
}


.features-hero h1 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.08;
    font-weight: 700;
}


.features-hero h1 span {
    color: #00cde0;
}


.features-hero-content > p {
    max-width: 520px;

    margin: 0;

    color: #d9e5f5;

    font-size: 16px;
    line-height: 1.75;
}


/* HERO VISUAL */

.features-hero-visual {
    position: relative;

    height: 335px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.features-product-image {
    position: relative;
    z-index: 3;

    width: 500px;
    height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.features-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 12px;
}


/* Floating feature points */

.features-orbit {
    position: absolute;
    z-index: 5;

    width: 90px;

    color: #ffffff;

    text-align: center;

    font-size: 11px;
    line-height: 1.25;
}


.features-orbit-icon {
    width: 48px;
    height: 48px;

    margin: 0 auto 7px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #00cde0;
    border-radius: 50%;

    color: #00d5df;

    font-size: 22px;

    background: rgba(0, 30, 70, .75);

    box-shadow:
        0 0 15px rgba(0, 205, 224, .25);
}


.features-orbit-left {
    left: 4%;
    top: 28%;
}


.features-orbit-left-bottom {
    left: 4%;
    bottom: 10%;
}


.features-orbit-right-top {
    right: 3%;
    top: 20%;
}


.features-orbit-right-bottom {
    right: 3%;
    bottom: 10%;
}


/* =========================================================
   MAIN FEATURES
   ========================================================= */

.features-main {
    padding: 55px 0 50px;

    background: #ffffff;
}


.features-section-heading {
    max-width: 760px;

    margin: 0 auto 38px;

    text-align: center;
}


.features-section-heading h2 {
    margin: 0;

    color: #071a3a;

    font-size: 31px;
    line-height: 1.2;
}


.features-section-heading span {
    display: block;

    width: 36px;
    height: 3px;

    margin: 10px auto 12px;

    background: #00c7d8;
}


.features-section-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: #344766;

    font-size: 14px;
    line-height: 1.7;
}


/* 4 x 2 */

.features-grid-eight {
    grid-template-columns: repeat(4, 1fr);

    gap: 10px;
}


.features-grid-eight .feature-card {
    min-height: 220px;

    padding: 24px 22px;

    text-align: center;

    border: 1px solid #e0e8f2;
    border-radius: 10px;

    background: #ffffff;

    box-shadow: 0 4px 18px rgba(7, 26, 58, .045);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.features-grid-eight .feature-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 12px 28px rgba(7, 26, 58, .09);
}


.features-grid-eight .feature-icon {
    width: 54px;
    height: 54px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 23px;
}


.feature-card-green .feature-icon {
    color: #00a96b;
    background: #e4f8f0;
}


.feature-card-blue .feature-icon {
    color: #087df5;
    background: #e8f2ff;
}


.feature-card-purple .feature-icon {
    color: #7b5cff;
    background: #f0ebff;
}


.feature-card-orange .feature-icon {
    color: #f07b16;
    background: #fff1e4;
}


.features-grid-eight .feature-card h3 {
    margin: 0 0 9px;

    color: #071a3a;

    font-size: 15px;
}


.features-grid-eight .feature-card p {
    margin: 0;

    color: #465873;

    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   SCALE
   ========================================================= */

.features-scale {
    padding: 0 0 45px;

    background: #ffffff;
}


.features-scale-container {
    min-height: 170px;

    display: grid;
    grid-template-columns: 270px 1fr;

    align-items: center;

    overflow: hidden;

    border-radius: 10px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(0, 160, 255, .25),
            transparent 25%
        ),
        #03152f;
}


.features-scale-visual {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}


.features-scale-shield {
    width: 110px;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 3px solid #00cde0;
    border-radius: 50%;

    color: #00d9e8;

    font-size: 52px;

    box-shadow:
        0 0 35px rgba(0, 205, 224, .30);
}


.features-scale-content {
    padding: 28px 35px 28px 0;
}


.features-scale-content h2 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 25px;
}


.features-scale-line {
    width: 35px;
    height: 3px;

    margin-bottom: 20px;

    background: #00cde0;
}


.features-scale-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


.features-scale-item {
    display: flex;

    gap: 10px;

    padding-left: 15px;

    border-left: 1px solid rgba(255,255,255,.20);
}


.features-scale-item > span {
    color: #00d8e5;

    font-size: 22px;
}


.features-scale-item strong {
    display: block;

    margin-bottom: 5px;

    font-size: 12px;
}


.features-scale-item p {
    margin: 0;

    color: #c9d6e8;

    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   ADVANCED TOOLS
   ========================================================= */

.features-tools {
    padding: 15px 0 50px;

    background: #ffffff;
}


.features-tools-grid {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 0;
}


.features-tool {
    min-height: 190px;

    padding: 15px 18px;

    text-align: center;

    border-right: 1px solid #d9e2ee;
}


.features-tool:last-child {
    border-right: 0;
}


.features-tool-icon {
    width: 48px;
    height: 48px;

    margin: 0 auto 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #087df5;

    background: #eaf4ff;

    font-size: 21px;
}


.features-tool h3 {
    min-height: 38px;

    margin: 0 0 9px;

    color: #071a3a;

    font-size: 12px;
    line-height: 1.45;
}


.features-tool p {
    margin: 0;

    color: #52627a;

    font-size: 11px;
    line-height: 1.65;
}


/* =========================================================
   CTA
   ========================================================= */

.features-cta {
    padding: 28px 0;

    background: #ffffff;
}


.features-cta-container {
    min-height: 125px;

    display: grid;
    grid-template-columns: 100px 1fr auto;

    align-items: center;

    gap: 25px;

    padding: 22px 45px;

    border-radius: 10px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(0, 170, 255, .15),
            transparent 30%
        ),
        #03152f;
}


.features-cta-icon {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #00d9e8;
    border-radius: 50%;

    color: #00d9e8;

    font-size: 35px;

    box-shadow:
        0 0 25px rgba(0, 210, 230, .25);
}


.features-cta-content h2 {
    margin: 0 0 6px;

    color: #ffffff;

    font-size: 23px;
}


.features-cta-content p {
    max-width: 560px;

    margin: 0;

    color: #d1dceb;

    font-size: 13px;
    line-height: 1.6;
}


.features-cta-buttons {
    display: flex;

    gap: 12px;
}


.features-cta-buttons .btn {
    min-width: 145px;
}


/* =========================================================
   FEATURES RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .features-hero-container {
        grid-template-columns: 45% 55%;
    }

    .features-grid-eight {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-tool:nth-child(3) {
        border-right: 0;
    }

    .features-tool:nth-child(n + 4) {
        border-top: 1px solid #d9e2ee;
    }

    .features-scale-items {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 900px) {

    .features-hero {
        min-height: auto;
    }

    .features-hero-container {
        grid-template-columns: 1fr;

        padding-top: 55px;
        padding-bottom: 35px;
    }

    .features-hero-content {
        text-align: center;
    }

    .features-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .features-hero-visual {
        height: 350px;
    }

    .features-scale-container {
        grid-template-columns: 1fr;
    }

    .features-scale-visual {
        min-height: 150px;
    }

    .features-scale-content {
        padding: 25px;
    }

    .features-cta-container {
        grid-template-columns: 80px 1fr;

        padding: 25px;
    }

    .features-cta-buttons {
        grid-column: 2;

        justify-content: flex-start;
    }
}


@media (max-width: 640px) {

    .features-hero h1 {
        font-size: 38px;
    }

    .features-hero-visual {
        height: 290px;
    }

    .features-product-image {
        width: 230px;
        height: 245px;
    }

    .features-orbit {
        display: none;
    }

    .features-grid-eight {
        grid-template-columns: 1fr;
    }

    .features-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-tool {
        border-right: 1px solid #d9e2ee;
    }

    .features-tool:nth-child(2n) {
        border-right: 0;
    }

    .features-tool:nth-child(n + 3) {
        border-top: 1px solid #d9e2ee;
    }

    .features-scale-items {
        grid-template-columns: 1fr;
    }

    .features-scale-item {
        border-left: 0;
        border-bottom: 1px solid rgba(255,255,255,.15);

        padding-bottom: 12px;
    }

    .features-cta-container {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .features-cta-icon {
        margin: auto;
    }

    .features-cta-buttons {
        grid-column: auto;

        flex-direction: column;
        width: 100%;
    }

    .features-cta-buttons .btn {
        width: 100%;
    }
}

/* =========================================================
   FEATURES - EVERYTHING YOU NEED IN ONE PLATFORM
   ========================================================= */

.features-section {
    width: 100%;
    padding: 55px 0 45px;
    background: #ffffff;
}

.features-section .section-header {
    max-width: 900px;
    margin: 0 auto 32px;
    text-align: center;
}

.features-section .section-header h2 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #061b49;
}

.features-section .section-header h2::after {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    margin: 10px auto 0;
    background: #00c7e8;
    border-radius: 3px;
}

.features-section .section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #27436f;
}


/* ---------- GRID ---------- */

.features-section .features-grid {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;

    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;

    align-items: stretch;
}


/* ---------- CARD ---------- */

.features-section .feature-card {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;

    min-height: 165px;
    height: auto;

    padding: 22px 18px 20px !important;

    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    text-align: center;

    background: #ffffff;
    border: 1px solid #dce5f1;
    border-radius: 9px;

    box-sizing: border-box;

    box-shadow: 0 2px 8px rgba(10, 48, 100, 0.03);
}


/* ---------- ICON ---------- */

.features-section .feature-card .feature-icon {
    width: 54px;
    height: 54px;

    margin: 0 0 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    flex-shrink: 0;
}


/* If icon is an image */

.features-section .feature-card .feature-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}


/* ---------- TITLE ---------- */

.features-section .feature-card h3 {
    margin: 0 0 8px;

    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;

    color: #061b49;
}


/* ---------- DESCRIPTION ---------- */

.features-section .feature-card p {
    margin: 0;

    max-width: 235px;

    font-size: 12px;
    line-height: 1.65;

    color: #29466f;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .features-section .features-grid {
        width: min(920px, calc(100% - 50px));
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}


@media (max-width: 650px) {

    .features-section {
        padding: 40px 0;
    }

    .features-section .section-header h2 {
        font-size: 25px;
    }

    .features-section .features-grid {
        width: calc(100% - 30px);
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .features-section .feature-card {
        min-height: 150px;
    }
}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page {
    background: #ffffff;
    color: #071b41;
}


/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */

.contact-hero {
    position: relative;
    min-height: 265px;
    background:
        linear-gradient(
            90deg,
            rgba(1, 19, 51, 0.98) 0%,
            rgba(2, 28, 68, 0.95) 48%,
            rgba(0, 35, 80, 0.88) 100%
        ),
        url("../images/contact-map.jpg");

    background-size: cover;
    background-position: center;

    overflow: hidden;
}

.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(0, 190, 255, 0.15),
            transparent 35%
        );

    pointer-events: none;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            #021738 0%,
            rgba(2, 23, 56, 0.75) 50%,
            rgba(2, 23, 56, 0.15) 100%
        );
}

.contact-hero-container {
    position: relative;
    z-index: 2;

    min-height: 265px;

    display: flex;
    align-items: center;
}

.contact-hero-content {
    max-width: 500px;
    padding: 35px 0;
}

.contact-page .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 16px;

    font-size: 14px;
    color: #ffffff;
}

.contact-page .breadcrumb a {
    color: #00c7e8;
    text-decoration: none;
}

.contact-page .breadcrumb span {
    opacity: 0.8;
}

.contact-hero h1 {
    margin: 0;

    font-size: 48px;
    line-height: 1.05;
    font-weight: 700;

    color: #ffffff;
}

.contact-hero h1 span {
    color: #00c9e8;
}

.contact-title-line {
    width: 42px;
    height: 2px;

    margin: 18px 0;

    background: #00c9e8;
}

.contact-hero h3 {
    margin: 0 0 8px;

    color: #00d4e8;

    font-size: 18px;
    font-weight: 600;
}

.contact-hero p {
    max-width: 450px;

    margin: 0;

    color: #ffffff;

    font-size: 15px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   MAIN CONTACT AREA
--------------------------------------------------------- */

.contact-main {
    padding: 18px 0 25px;
    background: #ffffff;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.65fr)
        minmax(320px, 0.9fr);

    gap: 48px;

    align-items: start;
}


/* ---------------------------------------------------------
   FORM CARD
--------------------------------------------------------- */

.contact-form-card {
    background: #ffffff;

    border: 1px solid #e5edf7;
    border-radius: 12px;

    padding: 20px 22px;

    box-shadow:
        0 8px 30px rgba(8, 38, 84, 0.08);
}

.contact-card-heading {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    margin-bottom: 18px;
}

.contact-heading-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e8f8fc;

    color: #00aaca;

    font-size: 20px;
}

.contact-card-heading h2 {
    margin: 0 0 3px;

    font-size: 22px;
    line-height: 1.2;

    color: #071b41;
}

.contact-card-heading p {
    margin: 0;

    color: #52627a;

    font-size: 13px;
}


/* ---------------------------------------------------------
   FORM
--------------------------------------------------------- */

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group {
    margin-bottom: 13px;
}

.form-group label {
    display: block;

    margin-bottom: 6px;

    color: #15284b;

    font-size: 12px;
    font-weight: 600;
}

.form-group label span {
    color: #ef4444;
}

.input-wrapper {
    position: relative;
}

.input-wrapper > i {
    position: absolute;

    left: 14px;
    top: 50%;

    transform: translateY(-50%);

    color: #9aa8bb;

    font-size: 14px;

    pointer-events: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;

    box-sizing: border-box;

    border: 1px solid #dce5ef;
    border-radius: 6px;

    background: #ffffff;

    color: #172b4d;

    font-family: inherit;
    font-size: 13px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
    height: 39px;

    padding: 0 14px 0 39px;
}

.contact-form textarea {
    min-height: 76px;

    padding: 11px 14px;

    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a0acbb;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #08afd0;

    box-shadow:
        0 0 0 3px rgba(0, 184, 217, 0.08);
}

.select-wrapper select {
    appearance: none;

    padding-right: 40px;
}

.select-wrapper > i {
    left: auto;
    right: 14px;
}


/* ---------------------------------------------------------
   SUBMIT
--------------------------------------------------------- */

.contact-submit {
    height: 40px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    border: 0;
    border-radius: 6px;

    padding: 0 20px;

    background:
        linear-gradient(
            90deg,
            #05bfd1,
            #0877e8
        );

    color: #ffffff;

    font-family: inherit;
    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-submit:hover {
    transform: translateY(-1px);

    box-shadow:
        0 7px 18px rgba(0, 126, 220, 0.25);
}

.contact-submit .fa-arrow-right {
    margin-left: 5px;
}


/* ---------------------------------------------------------
   RIGHT CONTACT INFO
--------------------------------------------------------- */

.contact-info {
    padding-top: 5px;
}

.contact-info > h2 {
    margin: 0 0 4px;

    color: #071b41;

    font-size: 21px;
}

.contact-info-intro {
    margin: 0 0 13px;

    color: #65748b;

    font-size: 13px;
}


/* ---------------------------------------------------------
   INFO ITEM
--------------------------------------------------------- */

.contact-info-item {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding: 11px 0;

    border-bottom: 1px solid #e4ebf3;
}

.contact-info-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e9f8fc;

    color: #00a9cc;

    font-size: 17px;
}

.contact-info-item h3 {
    margin: 1px 0 2px;

    color: #12274c;

    font-size: 14px;
}

.contact-info-item p {
    margin: 0 0 2px;

    color: #23385b;

    font-size: 12px;
}

.contact-info-item small {
    display: block;

    color: #596b83;

    font-size: 11px;
    line-height: 1.45;
}


/* ---------------------------------------------------------
   PARTNERSHIP
--------------------------------------------------------- */

.partner-box {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 14px;
    padding: 12px 14px;

    border-radius: 7px;

    background:
        linear-gradient(
            100deg,
            #e4f1ff,
            #edf6ff
        );
}

.partner-icon {
    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #0666c9;

    font-size: 22px;
}

.partner-content {
    flex: 1;
}

.partner-content h3 {
    margin: 0 0 2px;

    color: #10254a;

    font-size: 13px;
}

.partner-content p {
    margin: 0 0 2px;

    color: #415572;

    font-size: 11px;
}

.partner-content a {
    color: #0877df;

    font-size: 11px;
    font-weight: 600;
}

.partner-arrow {
    color: #0877df;

    font-size: 14px;
}


/* ---------------------------------------------------------
   SUPPORT STRIP
--------------------------------------------------------- */

.contact-support-strip {
    padding: 0 0 0;
}

.support-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-radius: 7px;

    background: #f1f8fd;

    border: 1px solid #e1edf7;

    overflow: hidden;
}

.support-item {
    min-height: 70px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 12px 22px;

    border-right: 1px solid #dce8f2;
}

.support-item:last-child {
    border-right: 0;
}

.support-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e0f4fc;

    color: #0878df;

    font-size: 16px;
}

.support-item h3 {
    margin: 0 0 2px;

    color: #10254a;

    font-size: 12px;
}

.support-item p {
    margin: 0;

    color: #52637a;

    font-size: 10px;
}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 1100px) {

    .contact-grid {
        grid-template-columns: 1fr 0.8fr;
        gap: 30px;
    }

    .contact-hero h1 {
        font-size: 42px;
    }

    .support-item {
        padding: 12px 14px;
    }

}


@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding-top: 0;
    }

    .support-grid {
        grid-template-columns: 1fr 1fr;
    }

    .support-item:nth-child(2) {
        border-right: 0;
    }

    .support-item:nth-child(-n+2) {
        border-bottom: 1px solid #dce8f2;
    }

}


@media (max-width: 650px) {

    .contact-hero {
        min-height: 300px;
    }

    .contact-hero-container {
        min-height: 300px;
    }

    .contact-hero-content {
        padding: 25px 20px;
    }

    .contact-hero h1 {
        font-size: 36px;
    }

    .contact-main {
        padding: 20px 0;
    }

    .contact-grid {
        gap: 25px;
    }

    .contact-form-card {
        padding: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .support-item,
    .support-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid #dce8f2;
    }

    .support-item:last-child {
        border-bottom: 0;
    }

}

.social-links {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    text-decoration: none;
    font-size: 18px;

    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #00d9ff;
    transform: translateY(-2px);
}

.social-links i {
    line-height: 1;
}


/* =========================================================
   END
   ========================================================= */