@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap");

/* =========================================================
SEARCHTOLEADS
SHARED WEBSITE STYLES
========================================================= */

:root {
    --navy: #07172d;
    --navy2: #102b4f;
    --blue: #1268d8;
    --blue-dark: #074da8;
    --cyan: #18b8da;
    --teal: #18c6ad;
    --gold: #f5c34d;
    --orange: #ff9d39;
    --purple: #755ed8;
    --green: #158b61;

    --text: #182439;
    --muted: #64748b;

    --light: #f5f8fc;
    --white: #ffffff;
    --border: #e1e8f0;
}


/* =========================================================
RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);
    background: var(--white);
    line-height: 1.65;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1160px, 90%);
    margin: auto;
}

section {
    padding: 88px 0;
}


/* =========================================================
TOP COLOR BAR
========================================================= */

.color-bar {
    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan),
            var(--teal),
            var(--gold),
            var(--orange),
            var(--purple)
        );
}


/* =========================================================
NAVIGATION
========================================================= */

header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--border);
}

.nav-wrap {
    min-height: 74px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.logo {
    text-decoration: none;

    font-size: 27px;
    font-weight: 900;

    letter-spacing: -1.1px;

    color: var(--navy);
}

.logo span {
    color: var(--blue);
}

nav {
    display: flex;
    align-items: center;

    gap: 21px;
}

nav > a,
.nav-dropdown > button {
    border: 0;
    background: none;

    text-decoration: none;

    font-size: 14px;
    font-weight: 650;

    color: #45546a;

    cursor: pointer;
}

nav > a:hover,
.nav-dropdown > button:hover {
    color: var(--blue);
}

.nav-cta {
    color: white !important;
    background: var(--blue) !important;

    border-radius: 8px;

    padding: 10px 17px;
}


/* =========================================================
INSIGHTS DROPDOWN
========================================================= */

.nav-dropdown {
    position: relative;
}

.nav-dropdown > button::after {
    content: "▾";

    margin-left: 5px;

    font-size: 10px;
}

.dropdown-menu {
    display: none;

    position: absolute;

    top: 29px;
    left: -15px;

    min-width: 190px;

    padding: 8px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 10px;

    box-shadow:
        0 15px 40px rgba(15,23,42,.12);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;

    padding: 9px 10px;

    color: #45546a;

    text-decoration: none;

    font-size: 13px;

    border-radius: 6px;
}

.dropdown-menu a:hover {
    color: var(--blue);
    background: #f3f7fc;
}


/* =========================================================
BUTTONS
========================================================= */

.btn {
    display: inline-flex;

    justify-content: center;
    align-items: center;

    min-height: 50px;

    padding: 0 22px;

    border: 0;
    border-radius: 8px;

    cursor: pointer;

    text-decoration: none;

    font-weight: 750;

    transition: .2s ease;
}

.btn-primary {
    color: white;
    background: var(--blue);

    box-shadow:
        0 12px 28px rgba(18,104,216,.18);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: var(--navy);

    border: 1px solid #cbd6e3;
}

.btn-secondary:hover {
    color: var(--blue);
    border-color: var(--blue);
}


/* =========================================================
GENERAL HEADINGS
========================================================= */

.section-kicker {
    margin-bottom: 9px;

    color: var(--blue);

    font-size: 12px;
    font-weight: 850;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.section-title {
    max-width: 850px;

    margin-bottom: 14px;

    color: var(--navy);

    font-size: clamp(34px, 4vw, 47px);

    line-height: 1.12;

    letter-spacing: -1.3px;
}

.section-intro {
    max-width: 790px;

    margin-bottom: 40px;

    color: var(--muted);

    font-size: 18px;
}


/* =========================================================
HOMEPAGE HERO
========================================================= */

.hero {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 83% 10%,
            rgba(24,184,218,.15),
            transparent 26%
        ),
        radial-gradient(
            circle at 8% 90%,
            rgba(117,94,216,.07),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #fbfdff 0%,
            #edf6ff 55%,
            #fbfaff 100%
        );
}

.hero-grid {
    min-height: 700px;

    padding: 65px 0;

    display: grid;

    grid-template-columns:
        minmax(0,1.03fr)
        minmax(400px,.97fr);

    gap: 60px;

    align-items: center;
}

.hero-left {
    min-width: 0;
}

.eyebrow {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color: var(--blue);

    font-size: 12px;
    font-weight: 850;

    letter-spacing: 1.3px;
}

.eyebrow::before {
    content: "";

    width: 30px;
    height: 2px;

    background: var(--blue);
}

.hero h1 {
    max-width: 760px;

    color: var(--navy);

    font-size: clamp(44px,5.5vw,68px);

    line-height: 1.04;

    letter-spacing: -2.4px;
}

.hero h1 span {
    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan),
            var(--teal)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-text {
    max-width: 700px;

    margin: 25px 0 24px;

    color: #57677c;

    font-size: 18px;
}

.hero-text strong {
    color: #33465e;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 27px;
}

.hero-pill {
    padding: 7px 11px;

    background: white;

    border: 1px solid #dae4f0;
    border-radius: 999px;

    color: #465b72;

    font-size: 12px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
HOMEPAGE HERO FORM
========================================================= */

.hero-visual {
    width: 100%;
    max-width: 500px;

    justify-self: end;
}

.hero-form-card {
    position: relative;
    overflow: hidden;

    padding: 28px;

    border-radius: 25px;

    color: white;

    background:
        radial-gradient(
            circle at 93% 5%,
            rgba(245,195,77,.92),
            transparent 22%
        ),
        radial-gradient(
            circle at 5% 100%,
            rgba(24,198,173,.62),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #07182f 0%,
            #0b4da5 42%,
            #149fd0 72%,
            #18bea8 100%
        );

    box-shadow:
        0 32px 80px rgba(8,36,75,.23);
}

.hero-form-card::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -125px;
    top: 120px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.13);
}

.hero-form-head {
    position: relative;
    z-index: 2;

    margin-bottom: 18px;
}

.uae-badge {
    display: inline-flex;
    align-items: center;

    padding: 7px 11px;

    margin-bottom: 14px;

    border-radius: 999px;

    background: rgba(255,255,255,.14);

    border:
        1px solid rgba(255,255,255,.22);

    font-size: 11px;
}

.hero-form-kicker {
    display: block;

    margin-bottom: 5px;

    color: #a8efff;

    font-size: 11px;
    font-weight: 850;

    letter-spacing: 1.2px;
}

.hero-form-head h2 {
    max-width: 390px;

    margin-bottom: 7px;

    font-size: 29px;

    line-height: 1.15;
}

.hero-form-head p {
    max-width: 400px;

    color: #ddf0fb;

    font-size: 13px;
}

.quick-form {
    position: relative;
    z-index: 5;

    padding: 19px;

    border-radius: 15px;

    background: white;
    color: var(--text);
}

.quick-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 10px;
}


/* =========================================================
FORM ELEMENTS
========================================================= */

.form-group {
    margin-bottom: 12px;

    min-width: 0;
}

.form-group label {
    display: block;

    margin-bottom: 5px;

    color: #34465d;

    font-size: 12px;
    font-weight: 750;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-width: 0;

    padding: 11px 12px;

    border: 1px solid #d5dfea;

    border-radius: 8px;

    background: white;
    color: var(--text);

    font-size: 13px;
}

.form-group textarea {
    min-height: 75px;

    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;

    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(18,104,216,.08);
}


/* =========================================================
NORMAL PHONE ROW
========================================================= */

.phone-row {
    display: grid;

    grid-template-columns:
        120px
        minmax(0,1fr);

    gap: 8px;

    width: 100%;
    min-width: 0;
}

.phone-row .country-code {
    width: 100%;
    min-width: 0;
}

.phone-row .phone-number {
    width: 100%;
    min-width: 0;
}


/* =========================================================
HOMEPAGE HERO PHONE ROW
========================================================= */

.hero-phone-row {
    display: grid !important;

    grid-template-columns:
        95px
        minmax(0, 1fr) !important;

    gap: 8px !important;

    width: 100% !important;
    min-width: 0 !important;
}

.hero-phone-row .country-code {
    width: 95px !important;
    min-width: 95px !important;
    max-width: 95px !important;

    padding-left: 7px !important;
    padding-right: 22px !important;

    box-sizing: border-box;
}

.hero-phone-row .phone-number {
    width: 100% !important;

    min-width: 0 !important;
    max-width: none !important;

    box-sizing: border-box;
}


/* =========================================================
FORM BUTTONS
========================================================= */

.hero-submit,
.submit-btn {
    width: 100%;

    min-height: 48px;

    border: 0;
    border-radius: 8px;

    background: var(--blue);
    color: white;

    cursor: pointer;

    font-weight: 800;
}

.hero-submit:hover,
.submit-btn:hover {
    background: var(--blue-dark);
}

.form-note {
    margin-top: 8px;

    text-align: center;

    color: #78879a;

    font-size: 10px;
}

.form-grid {
    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(0,1fr);

    gap: 12px;
}


/* =========================================================
TRUST BAR
========================================================= */

.trust {
    background: white;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);
}

.trust-item {
    padding: 22px 13px;

    text-align: center;

    border-right:
        1px solid var(--border);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong {
    display: block;

    color: var(--navy);

    font-size: 18px;
}

.trust-item span {
    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
SERVICES
========================================================= */

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 21px;
}

.service-card {
    position: relative;
    overflow: hidden;

    padding: 29px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 17px;

    transition: .2s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan),
            var(--teal)
        );
}

.service-card:nth-child(2)::before {
    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--teal),
            var(--gold)
        );
}

.service-card:nth-child(3)::before {
    background:
        linear-gradient(
            90deg,
            var(--orange),
            var(--gold),
            var(--blue)
        );
}

.service-card:nth-child(4)::before {
    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--purple),
            #dc5e9f
        );
}

.service-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 48px rgba(15,23,42,.07);
}

.service-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    background: #eef5ff;

    border-radius: 11px;

    font-size: 20px;
}

.service-card h3 {
    margin-bottom: 7px;

    color: var(--navy);

    font-size: 23px;
}

.service-card > p {
    margin-bottom: 15px;

    color: var(--muted);
}

.service-card ul {
    display: grid;

    gap: 7px;

    list-style: none;
}

.service-card li {
    color: #45566d;

    font-size: 14px;
}

.service-card li::before {
    content: "✓";

    margin-right: 8px;

    color: var(--green);

    font-weight: 900;
}


/* =========================================================
ABOUT - HOMEPAGE
========================================================= */

.about-section {
    background: #f7faff;
}

.about-grid {
    display: grid;

    grid-template-columns:
        .72fr 1.28fr;

    gap: 55px;

    align-items: center;
}

.headshot-wrap {
    position: relative;

    max-width: 390px;
}

.headshot {
    width: 100%;
    height: 470px;

    object-fit: cover;
    object-position: center 30%;

    border-radius: 22px;

    box-shadow:
        0 25px 60px rgba(12,33,65,.14);
}

.headshot-tag {
    position: absolute;

    left: 17px;
    right: 17px;
    bottom: 17px;

    padding: 13px 15px;

    background:
        rgba(7,23,45,.91);

    color: white;

    border-radius: 11px;

    backdrop-filter: blur(8px);
}

.headshot-tag strong {
    display: block;
}

.headshot-tag span {
    color: #c7dbef;

    font-size: 12px;
}

.about-copy p {
    margin-bottom: 14px;

    color: var(--muted);
}

.about-highlight,
.about-callout {
    margin-top: 20px;

    padding: 18px;

    background: white;

    border-left:
        4px solid var(--cyan);

    border-radius: 8px;

    color: #40566f;
}

.about-skills {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin: 20px 0;
}

.about-skill {
    padding: 6px 9px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 999px;

    color: #52657c;

    font-size: 11px;
}


/* =========================================================
INDUSTRIES
========================================================= */

.industries {
    background: white;
}

.industry-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 15px;
}

.industry-card {
    position: relative;
    overflow: hidden;

    padding: 24px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 14px;

    transition: .2s ease;
}

.industry-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 4px;

    background:
        linear-gradient(
            var(--blue),
            var(--cyan)
        );
}

.industry-card:nth-child(2n)::before {
    background:
        linear-gradient(
            var(--teal),
            var(--gold)
        );
}

.industry-card:nth-child(3n)::before {
    background:
        linear-gradient(
            var(--orange),
            var(--purple)
        );
}

.industry-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 35px rgba(15,23,42,.06);
}

.industry-icon {
    margin-bottom: 11px;

    font-size: 25px;
}

.industry-card strong {
    display: block;

    margin-bottom: 6px;

    color: var(--navy);

    font-size: 16px;
}

.industry-card h3 {
    margin-bottom: 6px;

    color: var(--navy);

    font-size: 17px;
}

.industry-card p {
    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
TESTIMONIALS
========================================================= */

.testimonials {
    background: var(--navy);

    color: white;
}

.testimonials .section-title {
    color: white;
}

.testimonials .section-intro {
    color: #b9c8db;
}

.testimonial-grid {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 18px;
}

.testimonial-card {
    position: relative;
    overflow: hidden;

    padding: 28px;

    background: var(--navy2);

    border:
        1px solid #294665;

    border-radius: 16px;
}

.testimonial-card::before {
    content: "“";

    position: absolute;

    right: 18px;
    top: -18px;

    color: #294665;

    font-family: Georgia, serif;

    font-size: 105px;

    line-height: 1;
}

.testimonial-type {
    display: inline-block;

    position: relative;
    z-index: 2;

    margin-bottom: 13px;

    padding: 5px 8px;

    background:
        rgba(114,221,243,.12);

    color: #72ddf3;

    border-radius: 999px;

    font-size: 9px;
    font-weight: 850;

    letter-spacing: .7px;

    text-transform: uppercase;
}

.testimonial-card.client .testimonial-type {
    background:
        rgba(24,198,173,.13);

    color: #78e3cc;
}

.testimonial-company {
    margin-bottom: 12px;

    color: white;

    font-size: 21px;
    font-weight: 850;
}

.feedback-summary {
    position: relative;
    z-index: 2;

    margin-bottom: 20px;

    color: #c4d2e1;

    font-size: 15px;

    line-height: 1.75;
}

.testimonial-person {
    display: flex;
    align-items: center;

    gap: 16px;
}

.initial {
    width: 56px;
    height: 56px;

    min-width: 56px;
    min-height: 56px;

    flex: 0 0 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--cyan)
        );

    color: white !important;

    font-size: 16px;
    font-weight: 800;

    line-height: 1;

    position: static;
}

.testimonial-person strong {
    display: block;

    color: white;
}

.testimonial-person span:not(.initial) {
    display: block;

    color: #9fb3c8;

    font-size: 12px;
}

.testimonial-note {
    margin-top: 22px;

    color: #91a7bf;

    font-size: 11px;
}


/* =========================================================
HOMEPAGE PRICING
========================================================= */

.pricing {
    background: #f6f9fd;
}

.launch-badge {
    display: inline-block;

    margin-bottom: 13px;

    padding: 6px 10px;

    background: #e9f3ff;

    color: var(--blue);

    border-radius: 999px;

    font-size: 11px;
    font-weight: 850;
}

.price-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 19px;
}

.price-card {
    position: relative;

    padding: 26px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 16px;
}

.price-card.featured {
    border:
        2px solid var(--blue);

    box-shadow:
        0 17px 45px rgba(18,104,216,.09);
}

.popular {
    padding: 5px 8px;

    background: #eaf3ff;

    color: var(--blue);

    border-radius: 999px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .7px;
}

.price-card > .popular {
    position: static !important;

    display: inline-block;

    width: fit-content;

    margin: 0 0 16px 0;

    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    transform: none !important;
}

.price-card > .popular + h3 {
    padding-right: 0;
}

.price-card h3 {
    min-height: 57px;

    color: var(--navy);

    font-size: 20px;

    line-height: 1.3;
}

.price {
    margin: 12px 0;

    color: var(--blue);

    font-size: 27px;
    font-weight: 900;
}

.price small {
    color: var(--muted);

    font-size: 12px;
    font-weight: 500;
}

.price-description {
    min-height: 68px;

    margin-bottom: 13px;

    color: var(--muted);

    font-size: 13px;
}

.price-card ul {
    min-height: 180px;

    display: grid;
    align-content: start;

    gap: 7px;

    margin-bottom: 18px;

    list-style: none;
}

.price-card li {
    color: #46576e;

    font-size: 13px;
}

.price-card li::before {
    content: "✓";

    margin-right: 7px;

    color: var(--green);

    font-weight: 900;
}

.price-card .btn {
    width: 100%;

    min-height: 45px;

    font-size: 13px;
}

.pricing-note {
    margin-top: 24px;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
INSIGHTS
========================================================= */

.insights {
    background: white;
}

.insight-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;
}

.insight-card {
    position: relative;
    overflow: hidden;

    min-height: 235px;

    padding: 25px;

    border:
        1px solid var(--border);

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f6faff
        );
}

.insight-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );
}

.insight-card:nth-child(2)::before {
    background:
        linear-gradient(
            90deg,
            var(--orange),
            var(--gold)
        );
}

.insight-card:nth-child(3)::before {
    background:
        linear-gradient(
            90deg,
            var(--teal),
            var(--purple)
        );
}

.insight-icon {
    margin-bottom: 13px;

    font-size: 25px;
}

.insight-card h3 {
    margin-bottom: 7px;

    color: var(--navy);

    font-size: 22px;
}

.insight-card p {
    color: var(--muted);

    font-size: 14px;
}

.insight-link {
    display: inline-block;

    margin-top: 16px;

    color: var(--blue);

    font-size: 13px;
    font-weight: 750;

    text-decoration: none;
}


/* =========================================================
WHY SEARCHTOLEADS
========================================================= */

.why {
    background: var(--light);
}

.why-grid {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 55px;
}

.why-list {
    display: grid;

    gap: 12px;
}

.why-item {
    padding: 18px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 11px;
}

.why-item strong {
    display: block;

    margin-bottom: 3px;

    color: var(--navy);
}

.why-item p,
.why-item span {
    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
FAQ
========================================================= */

.faq {
    background: #f7faff;
}

.faq-wrap {
    max-width: 900px;
}

details {
    overflow: hidden;

    margin-bottom: 10px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 10px;
}

summary {
    cursor: pointer;

    list-style: none;

    padding: 19px 21px;

    color: var(--navy);

    font-weight: 750;
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    padding:
        0 21px 20px;

    color: var(--muted);
}


/* =========================================================
CONTACT
========================================================= */

.contact {
    color: white;

    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(244,195,79,.35),
            transparent 25%
        ),
        linear-gradient(
            130deg,
            #084ca8,
            #128fcf 58%,
            #19bba8
        );
}

.contact .section-title {
    color: white;
}

.contact .section-intro {
    color: #dff3ff;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 50px;

    align-items: start;
}

.contact-points {
    display: grid;

    gap: 11px;
}

.contact-point {
    padding: 14px;

    background:
        rgba(255,255,255,.11);

    border:
        1px solid rgba(255,255,255,.17);

    border-radius: 10px;
}

.contact-point strong {
    display: block;
}

.contact-point span {
    color: #daf0fb;

    font-size: 13px;
}

.contact-box {
    padding: 28px;

    background: white;
    color: var(--text);

    border-radius: 17px;

    box-shadow:
        0 24px 55px rgba(4,39,82,.18);
}

.contact-form-grid {
    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(0,1fr);

    gap: 13px;
}

.consent {
    display: flex;
    align-items: flex-start;

    gap: 8px;

    margin: 4px 0 14px;

    color: #65758b;

    font-size: 11px;
}

.consent input {
    width: auto;

    margin-top: 3px;
}


/* =========================================================
WHATSAPP
========================================================= */

.whatsapp-chat {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 9999;

    display: flex;
    align-items: center;

    gap: 8px;

    padding:
        10px 15px 10px 11px;

    background: #25D366;

    color: white;

    border-radius: 999px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    box-shadow:
        0 12px 34px rgba(0,0,0,.22);

    transition: .2s ease;
}

.whatsapp-chat:hover {
    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    background:
        rgba(255,255,255,.16);

    border-radius: 50%;
}

.whatsapp-icon svg {
    width: 20px;
    height: 20px;

    fill: white;
}


/* =========================================================
FOOTER
========================================================= */

footer {
    padding: 34px 0;

    background: #06101f;

    color: #93a5ba;
}

.footer-grid {
    display: flex;

    justify-content: space-between;

    gap: 25px;

    flex-wrap: wrap;
}

.footer-brand {
    color: white;

    font-weight: 850;
}

footer a {
    color: #b9cee3;

    text-decoration: none;
}


/* =========================================================
SERVICE PAGE - BREADCRUMBS
========================================================= */

.service-page .breadcrumb {
    padding: 18px 0;

    border-bottom:
        1px solid var(--border);

    background: #fbfdff;
}

.service-page .breadcrumb-inner {
    display: flex;
    align-items: center;

    gap: 7px;

    flex-wrap: wrap;

    color: #6d7d91;

    font-size: 12px;
}

.service-page .breadcrumb a {
    color: var(--blue);

    text-decoration: none;
}


/* =========================================================
SERVICE PAGE HERO
========================================================= */

.service-page .hero {
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(24,184,218,.16),
            transparent 25%
        ),
        radial-gradient(
            circle at 5% 90%,
            rgba(117,94,216,.07),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #fbfdff,
            #edf6ff 60%,
            #fbfaff
        );
}

.service-page .hero-grid {
    min-height: 650px;

    grid-template-columns:
        1.06fr .94fr;

    gap: 60px;
}

.service-page .hero h1 {
    font-size:
        clamp(43px,5vw,65px);

    letter-spacing: -2.2px;
}

.service-page .hero h1 span {
    display: block;

    margin-top: 7px;
}

.service-page .hero-copy {
    max-width: 700px;

    margin: 24px 0;

    color: #57677c;

    font-size: 18px;
}

.service-page .hero-copy strong {
    color: #33465e;
}

.service-page .hero-points {
    display: grid;

    gap: 9px;

    margin: 24px 0 29px;

    list-style: none;
}

.service-page .hero-points li {
    color: #40536a;

    font-size: 14px;
}

.service-page .hero-points li::before {
    content: "✓";

    margin-right: 9px;

    color: var(--green);

    font-weight: 900;
}


/* =========================================================
SERVICE PAGE HERO PANEL
========================================================= */

.service-page .hero-panel {
    position: relative;
    overflow: hidden;

    padding: 31px;

    border-radius: 24px;

    color: white;

    background:
        radial-gradient(
            circle at 95% 8%,
            rgba(245,195,77,.82),
            transparent 23%
        ),
        linear-gradient(
            145deg,
            #07182f,
            #0b4da5 45%,
            #16a8c7 100%
        );

    box-shadow:
        0 32px 75px rgba(8,36,75,.23);
}

.service-page .hero-panel-label {
    display: inline-block;

    margin-bottom: 15px;

    padding: 6px 10px;

    background:
        rgba(255,255,255,.13);

    border:
        1px solid rgba(255,255,255,.18);

    border-radius: 999px;

    font-size: 10px;
    font-weight: 850;

    letter-spacing: .8px;

    text-transform: uppercase;
}

.service-page .hero-panel h2 {
    margin-bottom: 8px;

    font-size: 29px;

    line-height: 1.18;
}

.service-page .hero-panel > p {
    margin-bottom: 20px;

    color: #d8edf9;

    font-size: 14px;
}

.service-page .panel-list {
    display: grid;

    gap: 10px;

    margin-bottom: 23px;

    list-style: none;
}

.service-page .panel-list li {
    padding: 11px 12px;

    background:
        rgba(255,255,255,.09);

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 9px;

    font-size: 13px;
}

.service-page .panel-price {
    padding: 18px;

    background: white;

    color: var(--navy);

    border-radius: 13px;
}

.service-page .panel-price span {
    display: block;

    margin-bottom: 3px;

    color: #6a7a90;

    font-size: 11px;
    font-weight: 750;

    text-transform: uppercase;

    letter-spacing: .6px;
}

.service-page .panel-price strong {
    display: block;

    margin-bottom: 5px;

    color: var(--blue);

    font-size: 30px;
}

.service-page .panel-price p {
    color: #64748b;

    font-size: 12px;
}


/* =========================================================
SERVICE PAGE INFO CARDS
========================================================= */

.service-page .card-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;
}

.service-page .info-card {
    position: relative;
    overflow: hidden;

    padding: 26px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 15px;
}

.service-page .info-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );
}

.service-page .info-card:nth-child(2)::before {
    background:
        linear-gradient(
            90deg,
            var(--teal),
            var(--gold)
        );
}

.service-page .info-card:nth-child(3)::before {
    background:
        linear-gradient(
            90deg,
            var(--orange),
            var(--purple)
        );
}

.service-page .info-card h3 {
    margin: 10px 0 8px;

    color: var(--navy);

    font-size: 21px;
}

.service-page .info-card p {
    color: var(--muted);

    font-size: 14px;
}

.service-page .card-icon {
    font-size: 25px;
}


/* =========================================================
SERVICE PAGE WHO IT IS FOR
========================================================= */

.service-page .fit-section {
    background: var(--light);
}

.service-page .fit-grid {
    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 55px;

    align-items: start;
}

.service-page .fit-list {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 13px;
}

.service-page .fit-card {
    padding: 20px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 12px;
}

.service-page .fit-card strong {
    display: block;

    margin-bottom: 5px;

    color: var(--navy);
}

.service-page .fit-card p {
    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
SERVICE PAGE DELIVERABLES
========================================================= */

.service-page .deliverables-grid {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 18px;
}

.service-page .deliverable {
    padding: 24px;

    border:
        1px solid var(--border);

    border-radius: 14px;

    background: white;
}

.service-page .deliverable-number {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    margin-bottom: 13px;

    border-radius: 9px;

    background: #eaf3ff;

    color: var(--blue);

    font-weight: 900;
}

.service-page .deliverable h3 {
    margin-bottom: 7px;

    color: var(--navy);

    font-size: 20px;
}

.service-page .deliverable p {
    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
SERVICE PAGE COMPARISON
========================================================= */

.service-page .comparison {
    background: var(--navy);

    color: white;
}

.service-page .comparison .section-title {
    color: white;
}

.service-page .comparison .section-intro {
    color: #b9c8db;
}

.service-page .compare-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;
}

.service-page .compare-card {
    padding: 24px;

    background: var(--navy2);

    border:
        1px solid #294665;

    border-radius: 14px;
}

.service-page .compare-card.featured {
    border-color: #38c7df;

    box-shadow:
        0 14px 40px rgba(18,104,216,.17);
}

.service-page .compare-label {
    display: inline-block;

    margin-bottom: 12px;

    padding: 5px 8px;

    border-radius: 999px;

    background:
        rgba(114,221,243,.10);

    color: #72ddf3;

    font-size: 9px;
    font-weight: 850;

    text-transform: uppercase;

    letter-spacing: .7px;
}

.service-page .compare-card h3 {
    margin-bottom: 8px;

    font-size: 21px;
}

.service-page .compare-card p {
    margin-bottom: 14px;

    color: #b9c8db;

    font-size: 13px;
}

.service-page .compare-card ul {
    display: grid;

    gap: 8px;

    list-style: none;
}

.service-page .compare-card li {
    color: #c3d0df;

    font-size: 13px;
}

.service-page .compare-card li::before {
    content: "✓";

    margin-right: 7px;

    color: #72ddf3;

    font-weight: 900;
}


/* =========================================================
SERVICE PAGE PROCESS
========================================================= */

.service-page .process-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 15px;
}

.service-page .process-card {
    padding: 22px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 13px;
}

.service-page .process-step {
    display: inline-grid;

    width: 35px;
    height: 35px;

    place-items: center;

    margin-bottom: 12px;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    font-size: 13px;
    font-weight: 900;
}

.service-page .process-card h3 {
    margin-bottom: 6px;

    color: var(--navy);

    font-size: 18px;
}

.service-page .process-card p {
    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
SERVICE PAGE ABOUT
========================================================= */

.service-page .about {
    background: #f7faff;
}

.service-page .about-grid {
    grid-template-columns:
        .7fr 1.3fr;

    gap: 50px;
}

.service-page .about .headshot {
    width: 100%;
    max-width: 370px;
    height: 445px;
}


/* =========================================================
SERVICE PAGE PRICING
========================================================= */

.service-page .pricing-card {
    max-width: 820px;

    margin: auto;

    padding: 34px;

    border:
        2px solid var(--blue);

    border-radius: 18px;

    background: white;

    box-shadow:
        0 20px 50px rgba(18,104,216,.09);
}

.service-page .price-top {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    gap: 25px;

    margin-bottom: 22px;
}

.service-page .price-top h3 {
    color: var(--navy);

    font-size: 27px;
}

.service-page .pricing-card .price {
    color: var(--blue);

    font-size: 34px;
    font-weight: 900;

    white-space: nowrap;
}

.service-page .pricing-card ul {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 9px 25px;

    margin: 20px 0 24px;

    list-style: none;
}

.service-page .pricing-card li {
    color: #46576e;

    font-size: 14px;
}

.service-page .pricing-card li::before {
    content: "✓";

    margin-right: 7px;

    color: var(--green);

    font-weight: 900;
}

.service-page .price-note {
    margin-top: 17px;

    color: var(--muted);

    font-size: 11px;
}


/* =========================================================
RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1000px) {

    .hero-grid,
    .about-grid,
    .why-grid,
    .contact-grid,
    .service-page .hero-grid,
    .service-page .fit-grid,
    .service-page .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        width: 100%;
        max-width: 620px;

        justify-self: start;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .testimonial-grid,
    .price-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .insight-grid {
        grid-template-columns: 1fr;
    }

    .service-page .card-grid,
    .service-page .compare-grid {
        grid-template-columns: 1fr;
    }

    .service-page .process-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

}


/* =========================================================
RESPONSIVE - SMALL TABLET
========================================================= */

@media (max-width: 760px) {

    nav > a:not(.nav-cta),
    .nav-dropdown {
        display: none;
    }

    .hero-grid,
    .service-page .hero-grid {
        min-height: auto;

        padding: 55px 0;
    }

    .hero h1,
    .service-page .hero h1 {
        letter-spacing: -1.5px;
    }

    .hero-text,
    .service-page .hero-copy {
        font-size: 17px;
    }

    .trust-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .testimonial-grid,
    .price-grid {
        grid-template-columns: 1fr;
    }

    .service-page .deliverables-grid,
    .service-page .fit-list {
        grid-template-columns: 1fr;
    }

    .price-card h3,
    .price-card ul,
    .price-description {
        min-height: 0;
    }

    .service-page .pricing-card ul {
        grid-template-columns: 1fr;
    }

    .service-page .price-top {
        display: block;
    }

    .service-page .pricing-card .price {
        margin-top: 10px;
    }

    section {
        padding: 66px 0;
    }

}


/* =========================================================
RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 560px) {

    .quick-grid,
    .contact-form-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .industry-grid,
    .trust-grid,
    .service-page .process-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: 0;

        border-bottom:
            1px solid var(--border);
    }

    .phone-row {
        grid-template-columns:
            105px
            minmax(0,1fr);
    }

    .hero-phone-row {
        grid-template-columns:
            105px
            minmax(0,1fr) !important;
    }

    .hero-phone-row .country-code {
        width: 105px !important;
        min-width: 105px !important;
        max-width: 105px !important;
    }

    .hero-form-card {
        padding: 18px;

        border-radius: 18px;
    }

    .quick-form {
        padding: 16px;
    }

    .headshot,
    .service-page .about .headshot {
        height: 415px;
    }

    .whatsapp-chat {
        right: 14px;
        bottom: 14px;

        padding: 9px;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-icon {
        width: 38px;
        height: 38px;
    }

}

/* =========================================================
BLOG ARTICLE - SEO AEO GEO DUBAI
========================================================= */

.blog-article-page {
    --article-ink: #101826;
    --article-ink-soft: #2b3546;
    --article-paper: #F3F5F3;
    --article-paper-raised: #FFFFFF;
    --article-line: #DCE1DC;
    --article-brass: #B08A3E;
    --article-brass-soft: #E7D9B8;
    --article-teal: #1F6F63;
    --article-teal-soft: #DCEAE6;
    --article-font-display: 'Fraunces', serif;
    --article-font-body: 'Inter', sans-serif;
    --article-font-mono: 'IBM Plex Mono', monospace;
}

.blog-article-page img,

.blog-article-page svg{max-width:100%;display:block;}
  .blog-article-page a{color:var(--article-teal);}
  .blog-article-page .article-wrap{max-width:840px;margin:0 auto;padding:0 24px;}

  /* ===== HERO ===== */
  .blog-article-page .article-hero{
    background:var(--article-ink);
    color:#F3F5F3;
    padding:88px 0 0 0;
    overflow:hidden;
    position:relative;
  }
  .blog-article-page .article-hero .article-wrap{max-width:960px;}
  .blog-article-page .eyebrow{
    font-family:var(--article-font-mono);
    font-size:12px;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--article-brass-soft);
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:22px;
  }
  .blog-article-page .eyebrow::before{
    content:"";
    width:26px;height:1px;background:var(--article-brass-soft);display:inline-block;
  }
  .blog-article-page .article-hero h1{
    font-family:var(--article-font-display);
    font-weight:600;
    font-size:clamp(34px,5.2vw,58px);
    line-height:1.06;
    letter-spacing:-0.01em;
    margin:0 0 22px 0;
    max-width:15ch;
  }
  .blog-article-page .article-hero h1 em{font-style:italic;font-weight:500;color:var(--article-brass-soft);}
  .blog-article-page .article-hero-sub{
    font-size:19px;
    color:#C7CDD6;
    max-width:52ch;
    margin:0 0 44px 0;
  }
  .blog-article-page .article-hero-meta{
    display:flex;gap:28px;flex-wrap:wrap;
    font-family:var(--article-font-mono);
    font-size:12px;
    color:#8A93A3;
    padding-bottom:36px;
    border-bottom:1px solid #26314A;
  }

  /* three-lane signature graphic */
  .blog-article-page .lanes{padding:40px 0 0 0;}
  .blog-article-page .lane-row{
    display:grid;
    grid-template-columns:88px 1fr;
    gap:0;
    border-top:1px solid #26314A;
  }
  .blog-article-page .lane-row:last-child{border-bottom:1px solid #26314A;}
  .blog-article-page .lane-tag{
    font-family:var(--article-font-mono);
    font-size:12px;
    color:var(--article-brass-soft);
    padding:20px 0;
    display:flex;align-items:center;
  }
  .blog-article-page .lane-track{padding:20px 0;display:flex;align-items:center;gap:14px;}
  .blog-article-page .lane-track svg{flex-shrink:0;}
  .blog-article-page .lane-label{font-size:14px;color:#AEB6C4;}
  .blog-article-page .lane-label strong{color:#F3F5F3;font-weight:600;}

  /* ===== STAT STRIP ===== */
  .blog-article-page .stat-strip{
    background:var(--article-ink);
    padding:0 0 64px 0;
  }
  .blog-article-page .stat-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1px;
    background:#26314A;
    border:1px solid #26314A;
    margin-top:40px;
  }
  .blog-article-page .stat-cell{
    background:var(--article-ink);
    padding:26px 22px;
  }
  .blog-article-page .stat-num{
    font-family:var(--article-font-display);
    font-size:38px;
    font-weight:600;
    color:var(--article-brass-soft);
    line-height:1;
  }
  .blog-article-page .stat-label{
    font-size:13px;
    color:#AEB6C4;
    margin-top:10px;
    line-height:1.5;
  }
  .blog-article-page .stat-src{
    font-family:var(--article-font-mono);
    font-size:10px;
    color:#5C6479;
    margin-top:10px;
    text-transform:uppercase;
    letter-spacing:.04em;
  }
  @media (max-width:640px){
    .blog-article-page .stat-grid{grid-template-columns:1fr;}
    .blog-article-page .lane-row{grid-template-columns:64px 1fr;}
  }

  /* ===== ARTICLE BODY ===== */
  .blog-article-page main{background:var(--article-paper);}
  .blog-article-page article{padding:72px 0 40px 0;}
  .blog-article-page article h2{
    font-family:var(--article-font-display);
    font-weight:600;
    font-size:clamp(26px,3.4vw,34px);
    margin:64px 0 20px 0;
    letter-spacing:-0.01em;
    color:var(--article-ink);
  }
  .blog-article-page article h2:first-of-type{margin-top:0;}
  .blog-article-page article h3{
    font-family:var(--article-font-display);
    font-weight:600;
    font-size:21px;
    margin:34px 0 14px 0;
    color:var(--article-ink-soft);
  }
  .blog-article-page article p{font-size:17px;color:#333D4D;margin:0 0 20px 0;}
  .blog-article-page article ul, article ol{font-size:17px;color:#333D4D;padding-left:22px;margin:0 0 20px 0;}
  .blog-article-page article li{margin-bottom:8px;}
  .blog-article-page article strong{color:var(--article-ink);}
  .blog-article-page .lede{
    font-size:21px;
    font-family:var(--article-font-display);
    font-weight:400;
    color:var(--article-ink-soft);
    line-height:1.5;
    margin-bottom:12px;
  }

  .blog-article-page .section-num{
    font-family:var(--article-font-mono);
    font-size:12px;
    color:var(--article-brass);
    letter-spacing:.1em;
    display:block;
    margin-bottom:8px;
  }

  /* pull quote / callout */
  .blog-article-page .callout{
    background:var(--article-paper-raised);
    border-left:3px solid var(--article-brass);
    padding:24px 28px;
    margin:28px 0;
    border-radius:2px;
  }
  .blog-article-page .callout p{margin:0;font-size:17px;color:var(--article-ink-soft);}
  .blog-article-page .callout .cite{font-family:var(--article-font-mono);font-size:12px;color:#8A93A3;margin-top:10px;display:block;}

  .blog-article-page .teal-callout{
    background:var(--article-teal-soft);
    border-left:3px solid var(--article-teal);
    padding:24px 28px;
    margin:28px 0;
    border-radius:2px;
  }
  .blog-article-page .teal-callout p{margin:0;font-size:16px;color:#0F3E36;}

  /* comparison table */
  .blog-article-page .compare-wrap{overflow-x:auto;margin:28px 0 32px 0;border:1px solid var(--article-line);border-radius:4px;}
  .blog-article-page table{width:100%;border-collapse:collapse;background:var(--article-paper-raised);}
  .blog-article-page th,
  .blog-article-page td{text-align:left;padding:14px 16px;font-size:15px;border-bottom:1px solid var(--article-line);}
  .blog-article-page th{
    font-family:var(--article-font-mono);
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.06em;
    color:#8A93A3;
    background:#EEF1EE;
  }
  .blog-article-page tr:last-child td{border-bottom:none;}
  .blog-article-page td:first-child{font-weight:600;color:var(--article-ink);}

  /* diagram: three overlapping discs */
  .blog-article-page .venn-wrap{
    background:var(--article-paper-raised);
    border:1px solid var(--article-line);
    border-radius:6px;
    padding:36px 20px;
    margin:32px 0;
    text-align:center;
  }
  .blog-article-page .venn-caption{font-family:var(--article-font-mono);font-size:12px;color:#8A93A3;margin-top:16px;}

  /* code block */
  .blog-article-page pre{
    background:var(--article-ink);
    color:#DCE7E3;
    padding:22px 24px;
    border-radius:6px;
    overflow-x:auto;
    font-family:var(--article-font-mono);
    font-size:12.5px;
    line-height:1.6;
    margin:24px 0 32px 0;
  }
  .blog-article-page pre .k{color:var(--article-brass-soft);}
  .blog-article-page pre .s{color:#9FD8C9;}

  /* checklist */
  .blog-article-page .checklist{
    background:var(--article-paper-raised);
    border:1px solid var(--article-line);
    border-radius:6px;
    padding:8px 28px;
    margin:28px 0;
  }
  .blog-article-page .checklist li{
    list-style:none;
    padding:16px 0 16px 32px;
    border-bottom:1px solid var(--article-line);
    position:relative;
    font-size:16px;
  }
  .blog-article-page .checklist li:last-child{border-bottom:none;}
  .blog-article-page .checklist li::before{
    content:"";
    position:absolute;
    left:0;top:19px;
    width:16px;height:16px;
    border:1.5px solid var(--article-teal);
    border-radius:3px;
  }

  /* FAQ accordion */
  .blog-article-page .faq-item{
    border-bottom:1px solid var(--article-line);
  }
  .blog-article-page .faq-item:first-child{border-top:1px solid var(--article-line);}
  .blog-article-page .faq-item summary{
    cursor:pointer;
    padding:20px 4px;
    font-family:var(--article-font-display);
    font-size:18px;
    font-weight:600;
    color:var(--article-ink);
    list-style:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
  }
  .blog-article-page .faq-item summary::-webkit-details-marker{display:none;}
  .blog-article-page .faq-item summary::after{
    content:"+";
    font-family:var(--article-font-body);
    font-size:22px;
    font-weight:400;
    color:var(--article-brass);
    flex-shrink:0;
    transition:transform .2s ease;
  }
  .blog-article-page .faq-item[open] summary::after{transform:rotate(45deg);}
  .blog-article-page .faq-item p{
    padding:0 4px 22px 4px;
    font-size:16px;
    color:#4A5364;
    margin:0;
  }

  /* image caption blocks (SVG illustrations) */
  .blog-article-page figure{margin:32px 0;}
  .blog-article-page figcaption{
    font-family:var(--article-font-mono);
    font-size:12px;
    color:#8A93A3;
    margin-top:10px;
    text-align:center;
  }
  .blog-article-page .illus{
    background:var(--article-paper-raised);
    border:1px solid var(--article-line);
    border-radius:6px;
    padding:28px;
  }

  footer{
    background:var(--article-ink);
    color:#8A93A3;
    padding:48px 0;
    margin-top:40px;
  }
  footer .article-wrap{
    display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px;
  }
  footer .brand{
    font-family:var(--article-font-display);color:#F3F5F3;font-size:17px;font-weight:600;
  }
  footer a{color:#AEB6C4;text-decoration:none;font-size:13px;}

  @media (max-width:640px){
    .blog-article-page .article-hero{padding:56px 0 0 0;}
    .blog-article-page article{padding:48px 0 24px 0;}
    .blog-article-page article h2{margin:44px 0 16px 0;}
  }

.blog-article-page .article-featured-image {
    margin: 34px 0 0;
}

.blog-article-page .article-featured-image img {
    width: 100%;
    max-height: 520px;

    object-fit: cover;

    border-radius: 14px;

    box-shadow:
        0 18px 46px rgba(8,36,75,.16);
}
/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

/* Top contact bar */
.top-contact-bar {
    background: #07172d;
    color: #ffffff;
    font-size: 12px;
}

.top-contact-inner {
    min-height: 34px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.top-contact-inner a {
    color: #ffffff;
    text-decoration: none;
}


/* Hamburger hidden on desktop */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #07172d;
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .top-contact-inner {
        justify-content: center;
        gap: 8px 14px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .top-contact-inner a {
        font-size: 11px;
    }


    header .nav-wrap {
        position: relative;
        min-height: 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    /* Show hamburger */
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
        position: relative;
        z-index: 1002;
    }


    /* Hide navigation until hamburger clicked */
    .primary-nav {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;

        background: #ffffff;
        border-top: 1px solid #e5eaf0;
        border-bottom: 1px solid #e5eaf0;
        box-shadow: 0 18px 35px rgba(7, 23, 45, .12);

        padding: 14px 20px 22px;

        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }


    /* Menu visible */
    .primary-nav.is-open {
        display: flex !important;
    }


    .primary-nav > a,
    .primary-nav .nav-dropdown > button {
        width: 100%;
        display: block;
        padding: 14px 4px;

        color: #07172d;
        background: transparent;

        border: 0;
        border-bottom: 1px solid #edf0f4;

        text-align: left;
        font-size: 15px;
        font-weight: 600;

        text-decoration: none;
        cursor: pointer;
    }


    .primary-nav .nav-cta {
        margin-top: 14px;
        padding: 14px 18px;

        text-align: center;

        color: #ffffff;
        background: #1769d2;

        border: 0;
        border-radius: 10px;
    }


    /* Services */
    .nav-dropdown {
        width: 100%;
        position: relative;
    }


    .nav-dropdown .services-toggle::after {
        content: "+";
        float: right;
        font-size: 20px;
        font-weight: 400;
    }


    .nav-dropdown.is-open .services-toggle::after {
        content: "−";
    }


    /* Mobile services submenu */
    .nav-dropdown .dropdown-menu {
        display: none !important;
        position: static !important;

        width: 100%;
        min-width: 0;

        background: #f7f9fc;
        border: 0;
        box-shadow: none;

        padding: 6px 14px;
        margin: 0;
    }


    .nav-dropdown.is-open .dropdown-menu {
        display: block !important;
    }


    .nav-dropdown .dropdown-menu a {
        display: block;
        padding: 11px 4px;

        color: #34445a;
        font-size: 14px;
        line-height: 1.4;

        border-bottom: 1px solid #e8edf3;
        text-decoration: none;
    }


    .nav-dropdown .dropdown-menu a:last-child {
        border-bottom: 0;
    }


    /* Hamburger becomes X */
    .mobile-menu-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

}


/* Smaller phones */
@media (max-width: 600px) {

    .top-contact-inner {
        flex-direction: column;
        gap: 3px;
    }

    header .nav-wrap {
        min-height: 64px;
    }

    .logo {
        font-size: 25px;
    }

}
/* =========================================================
   FINAL MOBILE MENU OVERRIDE
   Must stay at the very bottom of style.css
   ========================================================= */

@media (max-width: 900px) {

    /* Restore all mobile navigation items */
    nav.primary-nav > a,
    nav.primary-nav > a:not(.nav-cta) {
        display: block !important;
        width: 100%;
    }

    /* Restore Services menu container */
    nav.primary-nav .nav-dropdown {
        display: block !important;
        width: 100%;
    }

    /* Services button */
    nav.primary-nav .nav-dropdown > .services-toggle {
        display: block !important;
        width: 100%;
    }

    /* Keep submenu hidden until Services is tapped */
    nav.primary-nav .nav-dropdown .dropdown-menu {
        display: none !important;
        position: static !important;
        width: 100%;
    }

    /* Show Services submenu when opened */
    nav.primary-nav .nav-dropdown.is-open .dropdown-menu {
        display: block !important;
    }

    /* Main mobile nav is closed by default */
    nav.primary-nav {
        display: none !important;
    }

    /* Main mobile nav opens after hamburger tap */
    nav.primary-nav.is-open {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
    }

}
/* =========================================================
   FINAL SEARCH DESIGN
   KEEP AT VERY BOTTOM OF STYLE.CSS
   ========================================================= */

header {
    position: relative;
}


/* -----------------------------------------
   DESKTOP SEARCH BUTTON
   ----------------------------------------- */

.header-search-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;

    padding: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #07172d;

    border: 1px solid #dbe4ee;

    border-radius: 50%;

    cursor: pointer;

    box-shadow: none;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}


.header-search-toggle:hover {

    background: #f5f8fc;

    border-color: #b9c8d8;

    transform: translateY(-1px);

}


.header-search-toggle svg {

    width: 18px;

    height: 18px;

    display: block;

}


.header-search-toggle .search-button-text {

    display: none;

}


/* -----------------------------------------
   SEARCH PANEL
   ----------------------------------------- */

.site-search-panel {

    position: absolute;

    top: 100%;

    left: 0;

    right: 0;

    z-index: 1600;

    background: #ffffff;

    border-top: 1px solid #e5ebf2;

    border-bottom: 1px solid #e5ebf2;

    box-shadow:
        0 24px 55px
        rgba(7,23,45,.15);

}


.site-search-panel[hidden] {

    display: none !important;

}


.site-search-inner {

    max-width: 900px;

    padding-top: 28px;

    padding-bottom: 32px;

}


.site-search-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 20px;

    margin-bottom: 18px;

}


.site-search-label {

    color: #1769d2;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .14em;

}


.site-search-header h2 {

    margin: 4px 0 0;

    color: #07172d;

    font-size: 26px;

    line-height: 1.2;

}


.site-search-close {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    color: #07172d;

    background: #ffffff;

    border: 1px solid #dbe4ee;

    border-radius: 50%;

    font-size: 25px;

    line-height: 1;

    cursor: pointer;

}


/* -----------------------------------------
   SEARCH FIELD
   ----------------------------------------- */

.site-search-input-wrap {

    min-height: 56px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 0 18px;

    background: #ffffff;

    border: 1px solid #cbd7e4;

    border-radius: 13px;

}


.site-search-input-wrap:focus-within {

    border-color: #1769d2;

    box-shadow:
        0 0 0 3px
        rgba(23,105,210,.08);

}


.site-search-input-wrap svg {

    flex: 0 0 auto;

    color: #64768a;

}


#site-search-input {

    width: 100%;

    border: 0;

    outline: 0;

    background: transparent;

    color: #07172d;

    font: inherit;

    font-size: 16px;

}


#site-search-input::placeholder {

    color: #8292a4;

}


/* -----------------------------------------
   STATUS
   ----------------------------------------- */

.site-search-status {

    margin: 13px 2px 8px;

    color: #6c7e91;

    font-size: 13px;

}


/* -----------------------------------------
   SEARCH RESULTS
   ----------------------------------------- */

.site-search-results {

    display: grid;

    gap: 9px;

    max-height: 420px;

    overflow-y: auto;

    padding-right: 4px;

}


.site-search-result {

    display: block;

    padding: 16px 18px;

    background: #ffffff;

    border: 1px solid #e1e7ee;

    border-radius: 12px;

    text-decoration: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;

}


.site-search-result:hover {

    border-color: #bfd0e3;

    box-shadow:
        0 10px 24px
        rgba(7,23,45,.07);

    transform: translateY(-1px);

}


.site-search-result h3 {

    margin: 0 0 5px;

    color: #07172d;

    font-size: 17px;

    line-height: 1.35;

}


.site-search-result p {

    margin: 0;

    color: #62758a;

    font-size: 14px;

    line-height: 1.5;

}


.site-search-result-link {

    display: inline-block;

    margin-top: 8px;

    color: #1769d2;

    font-size: 13px;

    font-weight: 700;

}


/* ACCESSIBILITY */

.sr-only {

    position: absolute !important;

    width: 1px !important;

    height: 1px !important;

    padding: 0 !important;

    margin: -1px !important;

    overflow: hidden !important;

    clip: rect(0,0,0,0) !important;

    white-space: nowrap !important;

    border: 0 !important;

}


/* =========================================================
   MOBILE SEARCH
   ========================================================= */

@media (max-width: 900px) {

    /*
       Search becomes a normal menu item.
       This is much easier to understand on iPhone.
    */

    .header-search-toggle {

        width: 100% !important;

        height: auto;

        min-height: 48px;

        justify-content: flex-start;

        gap: 10px;

        padding: 14px 4px;

        background: transparent;

        border: 0;

        border-bottom:
            1px solid #edf0f4;

        border-radius: 0;

        box-shadow: none;

        color: #07172d;

        font-size: 15px;

        font-weight: 600;

    }


    .header-search-toggle:hover {

        background: transparent;

        transform: none;

    }


    .header-search-toggle
    .search-button-text {

        display: inline;

    }


    /*
       Full-screen search experience on phones
    */

    .site-search-panel {

        position: fixed;

        top: 0;

        bottom: 0;

        left: 0;

        right: 0;

        overflow-y: auto;

        z-index: 3000;

    }


    .site-search-inner {

        padding-top: 24px;

        padding-bottom: 28px;

    }


    .site-search-header h2 {

        font-size: 23px;

    }


    .site-search-results {

        max-height: none;

    }

}


@media (max-width: 600px) {

    .site-search-inner {

        padding-left: 18px;

        padding-right: 18px;

    }


    .site-search-input-wrap {

        min-height: 54px;

    }


    #site-search-input {

        font-size: 15px;

    }

}
