/* =========================================================
   WEBLOOM STUDIO 360
   FINAL CLEAN STYLESHEET
   MOBILE HERO COMPOSITION FINAL
========================================================= */

:root {
    --navy: #071d36;
    --navy-2: #0d2d50;
    --navy-3: #123f6d;

    --blue: #1677ff;
    --cyan: #22c7e2;
    --purple: #693dff;

    --white: #ffffff;
    --paper: #f7faff;
    --soft: #eef4fb;

    --text: #18263b;
    --muted: #6c7a8e;

    --line: rgba(7, 29, 54, 0.09);

    --shadow-sm:
        0 12px 30px rgba(7, 29, 54, 0.07);

    --shadow-md:
        0 22px 55px rgba(7, 29, 54, 0.10);

    --shadow-lg:
        0 35px 90px rgba(7, 29, 54, 0.15);

    --max-width: 1180px;
    --header-height: 102px;
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        "Manrope",
        Arial,
        Helvetica,
        sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
.brand-main,
.brand-sub,
.nav-links,
.nav-cta,
.button,
.section-label {
    font-family:
        "Plus Jakarta Sans",
        Arial,
        Helvetica,
        sans-serif;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}

.section {
    padding: 118px 0;
}

.section-label {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--purple);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 740px;
}

.section-heading h2,
.about-copy h2,
.security-copy h2 {
    margin-bottom: 19px;
    color: var(--navy);
    font-size: clamp(2.25rem, 4.2vw, 3.85rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.section-heading p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(7, 29, 54, 0.055);
}

.navbar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


/* =========================================================
   BRAND
========================================================= */

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.brand-logo-image {
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-image img {
    width: 90px;
    height: auto;
}

.brand-wordmark {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.brand-main {
    color: var(--navy);
    font-size: 1.48rem;
    font-weight: 800;
    letter-spacing: 0.075em;
}

.brand-sub {
    margin-top: 7px;
    color: var(--purple);
    font-size: 0.60rem;
    font-weight: 800;
    letter-spacing: 0.31em;
}


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

.main-navigation {
    margin-left: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 27px;
    list-style: none;
}

.nav-links a {
    position: relative;
    color: var(--navy);
    font-size: 0.90rem;
    font-weight: 700;
    transition: color 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    border-radius: 999px;

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

    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-links a:hover::after {
    width: 100%;
}


/* =========================================================
   NAV CTA
========================================================= */

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 22px;

    border-radius: 999px;

    color: var(--white);

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

    font-size: 0.86rem;
    font-weight: 800;

    box-shadow:
        0 14px 34px
        rgba(95, 69, 255, 0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 20px 45px
        rgba(95, 69, 255, 0.28);
}


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

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    border-radius: 12px;

    background: rgba(7, 29, 54, 0.055);

    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;

    margin: 4px auto;

    border-radius: 999px;
    background: var(--navy);
}

.mobile-menu {
    display: none;
}


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

.hero {
    position: relative;

    margin-top: var(--header-height);

    min-height: 730px;

    height:
        clamp(
            730px,
            48vw,
            810px
        );

    overflow: hidden;

    background: #f7faff;
}


/* =========================================================
   HERO BACKGROUND — DESKTOP
========================================================= */

.hero-background-layer {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;

    width: 70%;

    z-index: 0;

    background-image:
        url("webloom-hero-background.png");

    background-size: 100% auto;

    background-position:
        right center;

    background-repeat: no-repeat;

    -webkit-mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0, 0, 0, 0.12) 8%,
            rgba(0, 0, 0, 0.48) 18%,
            black 31%,
            black 100%
        );

    mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0, 0, 0, 0.12) 8%,
            rgba(0, 0, 0, 0.48) 18%,
            black 31%,
            black 100%
        );
}


/* =========================================================
   HERO LIGHT — DESKTOP
========================================================= */

.hero-light {
    position: absolute;
    inset: 0;

    z-index: 1;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(250, 252, 255, 1) 0%,
            rgba(255, 255, 255, 0.995) 25%,
            rgba(255, 255, 255, 0.95) 36%,
            rgba(255, 255, 255, 0.52) 49%,
            rgba(255, 255, 255, 0.10) 64%,
            rgba(255, 255, 255, 0) 76%
        );
}


/* =========================================================
   HERO GRID
========================================================= */

.hero-lines {
    position: absolute;
    inset: 0;

    z-index: 2;
    pointer-events: none;

    opacity: 0.06;

    background-image:
        linear-gradient(
            rgba(22, 119, 255, 0.04)
            1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(22, 119, 255, 0.04)
            1px,
            transparent 1px
        );

    background-size: 90px 90px;

    mask-image:
        linear-gradient(
            to right,
            transparent,
            black 45%,
            transparent
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;

    z-index: 5;

    height: 100%;

    display: flex;
    align-items: center;

    width: min(92%, var(--max-width));

    margin: 0 auto;
}

.hero-copy {
    width: 48%;
    max-width: 620px;
    padding-top: 5px;
}


/* =========================================================
   HERO KICKER
========================================================= */

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;
    padding: 9px 15px;

    border:
        1px solid
        rgba(105, 61, 255, 0.12);

    border-radius: 999px;

    color: var(--purple);

    background:
        rgba(255, 255, 255, 0.76);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    font-size: 0.71rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.kicker-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

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

    box-shadow:
        0 0 0 5px
        rgba(105, 61, 255, 0.07);
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero h1 {
    margin-bottom: 22px;

    color: var(--navy);

    font-family:
        "Plus Jakarta Sans",
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        clamp(
            3.05rem,
            4.42vw,
            4.70rem
        );

    font-weight: 800;

    line-height: 0.975;

    letter-spacing: -0.055em;
}

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

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

    color: transparent;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {
    max-width: 550px;

    margin-bottom: 28px;

    color: #596b80;

    font-size: 1.01rem;
    font-weight: 500;
    line-height: 1.75;
}


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

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

    gap: 13px;

    margin-bottom: 24px;
}

.button {
    display: inline-flex;

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

    gap: 9px;

    min-height: 51px;

    padding: 0 22px;

    border-radius: 999px;

    font-size: 0.83rem;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.button-primary {
    color: white;

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

    box-shadow:
        0 15px 34px
        rgba(89, 71, 255, 0.25);
}

.button-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 20px 42px
        rgba(89, 71, 255, 0.31);
}

.button-glass {
    color: var(--navy);

    background:
        rgba(255, 255, 255, 0.88);

    border:
        1px solid
        rgba(7, 29, 54, 0.10);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 10px 26px
        rgba(7, 29, 54, 0.06);
}

.button-glass:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.play-circle {
    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;

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

    font-size: 0.62rem;
}


/* =========================================================
   BENEFITS
========================================================= */

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

    gap: 8px 14px;

    color: #6a798d;

    font-size: 0.74rem;
    font-weight: 500;
}

.hero-benefits span {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 4px 7px;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.48);

    backdrop-filter: blur(5px);
}

.hero-benefits i {
    font-style: normal;
    color: var(--blue);
    font-weight: 900;
}


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

.trust-section {
    padding: 75px 0;

    background: #f8fbff;

    border-bottom:
        1px solid
        rgba(7, 29, 54, 0.05);
}

.trust-grid {
    display: grid;

    grid-template-columns:
        1.35fr
        1fr
        .55fr
        .55fr;

    gap: 35px;

    align-items: end;
}

.trust-heading h2 {
    max-width: 540px;

    color: var(--navy);

    font-size:
        clamp(
            2rem,
            3.5vw,
            3.1rem
        );

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -0.04em;
}

.trust-copy p {
    max-width: 410px;

    color: var(--muted);

    font-size: 0.94rem;

    line-height: 1.8;
}

.trust-stat {
    padding-left: 20px;

    border-left:
        1px solid
        var(--line);
}

.trust-stat strong {
    display: block;

    color: var(--blue);

    font-size: 2.3rem;

    line-height: 1;
}

.trust-stat span {
    display: block;

    margin-top: 7px;

    color: var(--muted);

    font-size: 0.68rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.10em;
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {
    display: grid;

    grid-template-columns:
        .88fr
        1.12fr;

    gap: 75px;

    align-items: center;
}

.about-visual {
    position: relative;

    height: 500px;

    overflow: hidden;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            var(--navy),
            var(--navy-3)
        );

    box-shadow: var(--shadow-lg);
}

.about-visual::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 70% 25%,
            rgba(34, 199, 226, 0.24),
            transparent 27%
        ),

        radial-gradient(
            circle at 20% 80%,
            rgba(105, 61, 255, 0.17),
            transparent 32%
        );
}

.about-orbit {
    position: absolute;

    border-radius: 50%;

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

.orbit-one {
    width: 360px;
    height: 360px;

    top: 50%;
    left: 50%;

    transform:
        translate(
            -50%,
            -50%
        );
}

.orbit-two {
    width: 500px;
    height: 500px;

    top: 50%;
    left: 50%;

    transform:
        translate(
            -50%,
            -50%
        );
}

.about-visual-center {
    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(
            -50%,
            -50%
        );

    display: flex;
    flex-direction: column;
    align-items: center;

    color: white;
}

.about-mini-logo {
    width: 74px;
    height: 74px;

    display: grid;
    place-items: center;

    margin-bottom: 15px;

    border:
        1px solid
        rgba(255, 255, 255, 0.23);

    border-radius: 22px;

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

    font-size: 1.7rem;
    font-weight: 800;

    box-shadow:
        0 20px 45px
        rgba(22, 119, 255, 0.24);
}

.about-visual-center strong {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.about-visual-center span {
    margin-top: 6px;

    color: var(--cyan);

    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.28em;
}

.about-floating-card {
    position: absolute;

    padding: 13px 16px;

    border:
        1px solid
        rgba(255, 255, 255, 0.22);

    border-radius: 15px;

    color: white;

    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);
}

.about-floating-card strong {
    display: block;

    color: var(--cyan);

    font-size: 0.65rem;
}

.about-floating-card span {
    display: block;

    margin-top: 3px;

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 0.55rem;
}

.card-top {
    top: 48px;
    right: 35px;
}

.card-bottom {
    left: 32px;
    bottom: 42px;
}

.about-copy h2 {
    max-width: 670px;
}

.about-copy > p {
    max-width: 660px;

    margin-bottom: 17px;

    color: var(--muted);

    font-size: 0.95rem;

    line-height: 1.8;
}

.about-points {
    display: grid;

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

    gap: 13px;

    margin-top: 28px;
}

.about-points div {
    padding: 17px;

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

    border-radius: 16px;

    background: #fbfdff;
}

.about-points span {
    display: block;

    margin-bottom: 7px;

    color: var(--purple);

    font-size: 0.66rem;
    font-weight: 800;
}

.about-points strong {
    color: var(--navy);
    font-size: 0.75rem;
}


/* =========================================================
   BUSINESS
========================================================= */

.business-section {
    background: #f7faff;
}

.business-grid {
    display: grid;

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

    gap: 15px;

    margin-top: 50px;
}

.premium-card {
    position: relative;

    min-height: 285px;

    padding: 25px;

    overflow: hidden;

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

    border-radius: 23px;

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

    box-shadow:
        0 10px 25px
        rgba(7, 29, 54, 0.035);

    transition:
        transform 0.30s ease,
        box-shadow 0.30s ease;
}

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

    position: absolute;

    width: 160px;
    height: 160px;

    right: -90px;
    top: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(22, 119, 255, 0.10),
            transparent
        );
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.card-number {
    color: #a6b2c2;

    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

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

    display: grid;
    place-items: center;

    margin: 22px 0;

    border-radius: 14px;

    color: white;

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

    font-weight: 800;
}

.premium-card h3 {
    margin-bottom: 10px;

    color: var(--navy);

    font-size: 1.02rem;
    font-weight: 800;
}

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

    font-size: 0.80rem;

    line-height: 1.7;
}

.card-arrow {
    position: absolute;

    right: 22px;
    bottom: 19px;

    color: var(--blue);

    font-size: 1.1rem;
}


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

.services-section {
    background: white;
}

.services-layout {
    display: grid;

    grid-template-columns:
        .74fr
        1.26fr;

    gap: 65px;

    margin-top: 52px;
}

.services-intro {
    position: sticky;

    top: 130px;

    align-self: start;

    padding: 32px;

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            var(--navy),
            var(--navy-3)
        );

    color: white;

    box-shadow: var(--shadow-lg);
}

.services-number {
    color: var(--cyan);

    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.services-intro h3 {
    max-width: 300px;

    margin: 22px 0 14px;

    font-size: 2rem;
    font-weight: 800;

    line-height: 1.05;
    letter-spacing: -0.035em;
}

.services-intro p {
    max-width: 310px;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 0.86rem;

    line-height: 1.75;
}

.services-line {
    width: 80px;
    height: 2px;

    margin: 36px 0 16px;

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

.services-intro > span {
    color:
        rgba(255, 255, 255, 0.48);

    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.service-list {
    display: flex;
    flex-direction: column;
}

.service-row {
    display: grid;

    grid-template-columns:
        55px
        1fr
        30px;

    align-items: center;

    gap: 20px;

    padding: 25px 0;

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

    transition:
        padding 0.25s ease;
}

.service-row:hover {
    padding-left: 10px;
}

.row-number {
    color: var(--purple);

    font-size: 0.68rem;
    font-weight: 800;
}

.service-row h3 {
    margin-bottom: 4px;

    color: var(--navy);

    font-size: 1.07rem;
    font-weight: 800;
}

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

    font-size: 0.80rem;

    line-height: 1.7;
}

.row-arrow {
    color: var(--blue);
    font-size: 1rem;
}


/* =========================================================
   CUSTOMIZATION
========================================================= */

.dark-section {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #06182b,
            #0b2949 55%,
            #2d1c74
        );

    color: white;
}

.dark-section::before {
    content: "";

    position: absolute;

    width: 540px;
    height: 540px;

    right: -180px;
    top: -220px;

    border-radius: 50%;

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

.dark-heading {
    position: relative;

    z-index: 2;

    max-width: 720px;
}

.dark-heading .section-label {
    color: var(--cyan);
}

.dark-heading h2 {
    margin-bottom: 16px;

    font-size:
        clamp(
            2.3rem,
            4.2vw,
            3.8rem
        );

    font-weight: 800;

    line-height: 1.04;
    letter-spacing: -0.045em;
}

.dark-heading p {
    color:
        rgba(255, 255, 255, 0.62);

    line-height: 1.8;
}

.custom-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        1fr;

    gap: 16px;

    margin-top: 54px;
}

.custom-panel {
    position: relative;

    min-height: 200px;

    padding: 27px;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius: 22px;

    background:
        rgba(255, 255, 255, 0.055);

    backdrop-filter: blur(12px);
}

.custom-large {
    grid-row: span 2;

    min-height: 416px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.panel-label {
    color: var(--cyan);

    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.custom-large h3 {
    max-width: 440px;

    font-size: 2.2rem;
    font-weight: 800;

    line-height: 1.05;
    letter-spacing: -0.035em;
}

.color-orbs {
    display: flex;
    gap: 12px;
}

.color-orbs span {
    width: 47px;
    height: 47px;

    border-radius: 50%;

    box-shadow:
        inset
        0 0 0 1px
        rgba(255, 255, 255, 0.22);
}

.color-orbs span:nth-child(1) {
    background: var(--blue);
}

.color-orbs span:nth-child(2) {
    background: var(--purple);
}

.color-orbs span:nth-child(3) {
    background: var(--cyan);
}

.color-orbs span:nth-child(4) {
    background: #cbd6e2;
}

.panel-footer {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    color:
        rgba(255, 255, 255, 0.49);

    font-size: 0.60rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.10em;
}

.panel-number {
    color:
        rgba(255, 255, 255, 0.40);

    font-size: 0.66rem;
    font-weight: 800;
}

.custom-panel h3 {
    margin: 18px 0 10px;

    font-size: 1.25rem;
    font-weight: 800;
}

.custom-panel > p {
    color:
        rgba(255, 255, 255, 0.61);

    font-size: 0.80rem;

    line-height: 1.7;
}


/* =========================================================
   SECURITY
========================================================= */

.security-section {
    background: #f8fbff;
}

.security-layout {
    display: grid;

    grid-template-columns:
        .92fr
        1.08fr;

    gap: 70px;

    align-items: center;
}

.security-copy h2 {
    max-width: 650px;
}

.security-copy p {
    max-width: 570px;

    color: var(--muted);

    font-size: 0.94rem;

    line-height: 1.8;
}

.security-features {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 14px;
}

.security-item {
    display: flex;
    gap: 13px;

    padding: 21px;

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

    border-radius: 18px;

    background: white;

    box-shadow:
        0 7px 20px
        rgba(7, 29, 54, 0.035);
}

.security-icon {
    width: 36px;
    height: 36px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 11px;

    color: var(--blue);

    background:
        rgba(22, 119, 255, 0.08);

    font-weight: 900;
}

.security-item strong {
    display: block;

    color: var(--navy);

    font-size: 0.82rem;
    font-weight: 800;
}

.security-item p {
    margin-top: 4px;

    color: var(--muted);

    font-size: 0.67rem;

    line-height: 1.6;
}


/* =========================================================
   PROCESS — DESKTOP
========================================================= */

.process-section {
    background: white;
}

.journey {
    position: relative;

    display: grid;

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

    gap: 12px;

    margin-top: 70px;
}

.journey-line {
    position: absolute;

    left: 7%;
    right: 7%;

    top: 26px;

    height: 1px;

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

    opacity: 0.32;
}

.journey-step {
    position: relative;

    z-index: 2;

    padding: 0 8px;
}

.journey-number {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

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

    border-radius: 50%;

    color: var(--blue);

    background: white;

    box-shadow:
        0 0 0 8px
        #f8fbff;

    font-size: 0.65rem;
    font-weight: 800;
}

.journey-step h3 {
    margin-bottom: 8px;

    color: var(--navy);

    font-size: 1rem;
    font-weight: 800;
}

.journey-step p {
    max-width: 155px;

    color: var(--muted);

    font-size: 0.69rem;

    line-height: 1.7;
}


/* =========================================================
   SEO
========================================================= */

.seo-section {
    padding: 0 0 110px;

    background: white;
}

.seo-box {
    display: grid;

    grid-template-columns:
        80px
        1fr
        .75fr;

    gap: 25px;

    align-items: center;

    padding: 35px;

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

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #fbfdff,
            #f3f6ff
        );

    box-shadow:
        var(--shadow-sm);
}

.seo-icon {
    width: 64px;
    height: 64px;

    display: grid;
    place-items: center;

    border-radius: 20px;

    color: white;

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

    font-size: 1.8rem;
}

.seo-content h2 {
    margin-bottom: 7px;

    color: var(--navy);

    font-size: 1.7rem;
    font-weight: 800;

    line-height: 1.05;
}

.seo-content p {
    color: var(--muted);

    font-size: 0.76rem;

    line-height: 1.7;
}

.seo-list {
    display: grid;
    gap: 9px;

    color: var(--muted);

    font-size: 0.72rem;
    font-weight: 700;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 35px 0 100px;

    background: white;
}

.cta-box {
    position: relative;
    overflow: hidden;

    padding: 70px;

    border-radius: 30px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #06192e,
            #123f6d 54%,
            #4930aa
        );

    box-shadow:
        var(--shadow-lg);
}

.cta-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    right: -120px;
    top: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(35, 199, 226, 0.19),
            transparent 68%
        );
}

.cta-box h2 {
    position: relative;

    z-index: 2;

    max-width: 780px;

    margin-bottom: 16px;

    color: white;

    font-size:
        clamp(
            2.4rem,
            4.7vw,
            4.1rem
        );

    font-weight: 800;

    line-height: 1.02;

    letter-spacing: -0.04em;
}

.cta-box > p {
    position: relative;

    z-index: 2;

    max-width: 620px;

    margin-bottom: 30px;

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 0.92rem;

    line-height: 1.8;
}

.cta-actions {
    position: relative;

    z-index: 2;

    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.button-whatsapp {
    color: white;

    border:
        1px solid
        rgba(255, 255, 255, 0.22);

    background:
        rgba(255, 255, 255, 0.08);
}

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

    box-shadow:
        0 16px 34px
        rgba(0, 0, 0, 0.18);
}

.cta-contact-line {
    position: relative;

    z-index: 2;

    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: 20px;

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 0.76rem;
    font-weight: 600;
}

.cta-contact-line a {
    color: white;
    font-weight: 800;
}


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

.site-footer {
    padding: 75px 0 25px;

    color: white;
    background: #041426;
}

.footer-main {
    display: grid;

    grid-template-columns:
        1.3fr
        .7fr
        .8fr
        1fr;

    gap: 50px;

    padding-bottom: 52px;
}

.footer-brand {
    max-width: 340px;
}

.footer-wordmark {
    color: white;

    font-size: 1.75rem;
    font-weight: 800;

    letter-spacing: 0.07em;
}

.footer-studio {
    margin-top: 7px;

    color: var(--purple);

    font-size: 0.53rem;
    font-weight: 800;

    letter-spacing: 0.30em;
}

.footer-brand p {
    margin-top: 18px;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 0.80rem;

    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3 {
    margin-bottom: 16px;

    font-size: 0.84rem;
    font-weight: 800;
}

.footer-column a,
.footer-muted {
    margin-bottom: 9px;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 0.72rem;

    line-height: 1.6;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.09);

    color:
        rgba(255, 255, 255, 0.40);

    font-size: 0.68rem;
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(24px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .brand-logo-image,
    .brand-logo-image img {
        width: 94px;
    }

    .brand-main {
        font-size: 1.56rem;
    }

    .brand-sub {
        font-size: 0.62rem;
    }

    .hero-background-layer {
        width: 69%;
    }

    .hero-copy {
        width: 47%;
        max-width: 620px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1120px) {

    :root {
        --header-height: 92px;
    }

    .brand-logo-image,
    .brand-logo-image img {
        width: 72px;
    }

    .brand-main {
        font-size: 1.20rem;
    }

    .brand-sub {
        font-size: 0.49rem;
        letter-spacing: 0.27em;
    }

    .nav-links {
        gap: 17px;
    }

    .nav-cta {
        padding: 0 18px;
    }

    .hero {
        margin-top: var(--header-height);

        height: 700px;
        min-height: 700px;
    }

    .hero-background-layer {
        width: 73%;
        background-size: 100% auto;
    }

    .hero-copy {
        width: 52%;
    }

    .trust-grid {
        grid-template-columns:
            1.2fr
            1fr
            .55fr
            .55fr;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .business-grid {
        grid-template-columns:
            repeat(
                3,
                1fr
            );
    }

    .services-layout {
        grid-template-columns:
            .8fr
            1.2fr;

        gap: 35px;
    }

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

    .custom-large {
        grid-row: span 1;
    }

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

        gap: 40px 18px;
    }

    .journey-line {
        display: none;
    }

    .seo-box {
        grid-template-columns:
            70px
            1fr;

        gap: 20px;
    }

    .seo-list {
        grid-column: 2;
    }

    .footer-main {
        grid-template-columns:
            1.4fr
            .8fr
            .8fr;
    }

    .footer-brand {
        grid-row: span 2;
    }
}


/* =========================================================
   MOBILE — FINAL CLEAN COMPOSITION
========================================================= */

@media (max-width: 820px) {

    :root {
        --header-height: 74px;
    }


    /* -----------------------------------------------------
       HEADER
    ----------------------------------------------------- */

    .navbar {
        height: var(--header-height);
    }

    .brand-link {
        gap: 8px;
    }

    .brand-logo-image,
    .brand-logo-image img {
        width: 58px;
    }

    .brand-main {
        font-size: 0.94rem;
        letter-spacing: 0.055em;
    }

    .brand-sub {
        margin-top: 5px;

        font-size: 0.36rem;
        letter-spacing: 0.22em;
    }

    .main-navigation,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }


    /* -----------------------------------------------------
       MOBILE MENU
    ----------------------------------------------------- */

    .mobile-menu {
        position: fixed;

        top: var(--header-height);

        left: 0;
        right: 0;

        z-index: 999;

        display: none;

        flex-direction: column;

        padding: 14px 6% 20px;

        background:
            rgba(255, 255, 255, 0.98);

        backdrop-filter: blur(18px);

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

        box-shadow:
            0 15px 35px
            rgba(7, 29, 54, 0.08);
    }

    .mobile-menu.mobile-menu-open {
        display: flex;
    }

    .mobile-menu a {
        padding: 12px 0;

        border-bottom:
            1px solid
            rgba(7, 29, 54, 0.06);

        color: var(--navy);

        font-family:
            "Plus Jakarta Sans",
            Arial,
            Helvetica,
            sans-serif;

        font-weight: 700;
    }

    .mobile-menu a:last-child {
        border-bottom: none;
    }


    /* =====================================================
       THE FINAL MOBILE HERO

       Everything remains inside ONE compact frame.

       TEXT
       ↓
       IMAGE BEHIND / AROUND IT
       ↓
       BUTTONS
       ↓
       BADGES

       There is deliberately NO large empty gap.
    ===================================================== */

    .hero {
        position: relative;

        margin-top: var(--header-height);

        height: 1015px;
        min-height: 1015px;

        overflow: hidden;

        background:
            linear-gradient(
                180deg,
                #f9fbff 0%,
                #ffffff 45%,
                #f4f1ff 100%
            );
    }


    /* -----------------------------------------------------
       FULL WIDTH WORKSPACE ARTWORK
    ----------------------------------------------------- */

    .hero-background-layer {
        position: absolute;

        top: 205px;
        left: 0;
        right: 0;

        width: 100%;
        height: 445px;

        z-index: 0;

        background-image:
            url("webloom-hero-background.png");

        background-repeat:
            no-repeat;

        /*
          Width preserves the complete composition.
          No cover cropping.
        */

        background-size:
            100% auto;

        background-position:
            center top;

        /*
          Soft blend at the top and bottom of the artwork.
        */

        -webkit-mask-image:
            linear-gradient(
                to bottom,
                transparent 0%,
                black 13%,
                black 84%,
                transparent 100%
            );

        mask-image:
            linear-gradient(
                to bottom,
                transparent 0%,
                black 13%,
                black 84%,
                transparent 100%
            );
    }


    /* -----------------------------------------------------
       IMAGE BLEND
    ----------------------------------------------------- */

    .hero-light {
        position: absolute;
        inset: 0;

        z-index: 1;

        pointer-events: none;

        background:
            linear-gradient(
                to bottom,

                rgba(249, 251, 255, 0.995) 0%,

                rgba(255, 255, 255, 0.985) 17%,

                rgba(255, 255, 255, 0.90) 28%,

                rgba(255, 255, 255, 0.58) 42%,

                rgba(255, 255, 255, 0.18) 54%,

                rgba(255, 255, 255, 0.05) 64%,

                rgba(255, 255, 255, 0.08) 72%,

                rgba(255, 255, 255, 0.35) 83%,

                rgba(255, 255, 255, 0.82) 94%,

                rgba(255, 255, 255, 0.98) 100%
            );
    }

    .hero-lines {
        display: none;
    }


    /* -----------------------------------------------------
       CONTENT
    ----------------------------------------------------- */

    .hero-content {
        position: relative;

        z-index: 5;

        width: 92%;
        max-width: 580px;

        height: 100%;

        margin: 0 auto;

        padding: 36px 0 0;

        display: block;
    }

    .hero-copy {
        position: relative;

        width: 100%;
        max-width: 100%;

        height: 100%;

        display: flex;
        flex-direction: column;
    }


    /* -----------------------------------------------------
       KICKER
    ----------------------------------------------------- */

    .hero-kicker {
        position: relative;

        top: auto;
        left: auto;

        align-self: flex-start;

        margin: 0 0 18px;

        z-index: 10;

        font-size: 0.59rem;
        letter-spacing: 0.075em;
    }


    /* -----------------------------------------------------
       HEADLINE
    ----------------------------------------------------- */

    .hero h1 {
        position: relative;

        top: auto;
        left: auto;

        width: 100%;

        margin: 0 0 18px;

        z-index: 10;

        font-size:
            clamp(
                2.25rem,
                10.4vw,
                3.40rem
            );

        line-height: 0.99;

        letter-spacing: -0.055em;
    }


    /* -----------------------------------------------------
       PARAGRAPH
    ----------------------------------------------------- */

    .hero-description {
        position: relative;

        top: auto;
        left: auto;

        width: 100%;

        max-width: 510px;

        margin: 0;

        z-index: 10;

        color: #40546a;

        font-size: 0.89rem;
        font-weight: 600;

        line-height: 1.67;

        text-shadow:
            0 1px 3px
            rgba(255, 255, 255, 0.65);
    }


    /* -----------------------------------------------------
       BUTTONS

       They begin immediately after the artwork.

       NO large blank section.
    ----------------------------------------------------- */

    .hero-actions {
        position: absolute;

        top: 635px;

        left: 0;
        right: 0;

        width: 100%;

        display: grid;

        grid-template-columns: 1fr;

        gap: 8px;

        margin: 0;

        z-index: 12;
    }

    .hero-actions .button {
        width: 100%;

        min-height: 53px;

        font-size: 0.82rem;
    }


    /* -----------------------------------------------------
       FEATURE BADGES

       Immediately below the buttons.
    ----------------------------------------------------- */

    .hero-benefits {
        position: absolute;

        top: 752px;

        left: 0;
        right: 0;

        width: 100%;

        display: flex;

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

        flex-wrap: wrap;

        gap: 6px;

        margin: 0;

        z-index: 12;

        font-size: 0.62rem;
    }

    .hero-benefits span {
        padding: 5px 8px;

        border:
            1px solid
            rgba(7, 29, 54, 0.06);

        border-radius: 999px;

        background:
            rgba(255, 255, 255, 0.86);

        backdrop-filter:
            blur(10px);

        -webkit-backdrop-filter:
            blur(10px);
    }


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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-visual {
        width: min(100%, 420px);

        height: 335px;

        margin: 4px auto 36px;

        border-radius: 26px;

        box-shadow:
            0 25px 60px
            rgba(7, 29, 54, 0.12);
    }

    .orbit-one {
        width: 235px;
        height: 235px;
    }

    .orbit-two {
        width: 320px;
        height: 320px;
    }

    .about-visual-center {
        transform:
            translate(-50%, -50%)
            scale(0.88);
    }

    .about-mini-logo {
        width: 64px;
        height: 64px;

        margin-bottom: 12px;

        border-radius: 18px;

        font-size: 1.45rem;
    }

    .about-visual-center strong {
        font-size: 1.18rem;
        letter-spacing: 0.13em;
    }

    .about-visual-center span {
        margin-top: 5px;

        font-size: 0.51rem;
        letter-spacing: 0.24em;
    }

    .about-floating-card {
        padding: 10px 13px;
        border-radius: 13px;
    }

    .about-floating-card strong {
        font-size: 0.58rem;
    }

    .about-floating-card span {
        font-size: 0.50rem;
    }

    .card-top {
        top: 25px;
        right: 18px;
    }

    .card-bottom {
        left: 18px;
        bottom: 24px;
    }


    /* =====================================================
       OTHER MOBILE SECTIONS
    ===================================================== */

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

    .trust-heading,
    .trust-copy {
        grid-column: span 2;
    }

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

    .services-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .services-intro {
        position: relative;
        top: auto;
    }

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

    .custom-large {
        min-height: 330px;
    }

    .security-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .security-features {
        grid-template-columns: 1fr 1fr;
    }

    .seo-box {
        grid-template-columns: 60px 1fr;
        padding: 26px;
    }

    .seo-list {
        grid-column: 1 / -1;
        grid-template-columns: 1fr 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-row: auto;
        grid-column: span 2;
    }


    /* =====================================================
       PROCESS — CENTERED FINAL
    ===================================================== */

    .journey {
        position: relative;

        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 0;

        margin-top: 52px;
    }

    .journey-line {
        display: block;

        position: absolute;

        top: 28px;
        bottom: 42px;

        left: 50%;

        width: 2px;

        height: auto;

        transform:
            translateX(-50%);

        z-index: 0;

        background:
            linear-gradient(
                180deg,
                var(--blue),
                var(--purple)
            );

        opacity: 0.28;
    }

    .journey-step {
        position: relative;

        z-index: 2;

        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: center;

        padding:
            0 12px 54px;

        text-align: center;
    }

    .journey-number {
        position: relative;

        z-index: 6;

        width: 58px;
        height: 58px;

        display: grid;
        place-items: center;

        margin:
            0 auto 17px;

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

        border-radius: 50%;

        color: var(--blue);

        background: #ffffff;

        box-shadow:
            0 0 0 9px rgba(248, 251, 255, 0.98),
            0 10px 30px rgba(22, 119, 255, 0.08);

        font-size: 0.68rem;
        font-weight: 800;
    }

    .journey-step h3 {
        position: relative;

        z-index: 7;

        display: inline-block;

        width: auto;

        margin:
            0 auto 8px;

        padding:
            5px 17px;

        color: var(--navy);

        background: #ffffff;

        border-radius: 999px;

        box-shadow:
            0 0 0 5px #ffffff;

        font-size: 1.05rem;
        font-weight: 800;
    }

    .journey-step p {
        position: relative;

        z-index: 7;

        display: inline-block;

        max-width: 285px;

        margin: 0 auto;

        padding:
            4px 12px;

        color: var(--muted);

        background: #ffffff;

        border-radius: 999px;

        box-shadow:
            0 0 0 5px #ffffff;

        font-size: 0.73rem;

        line-height: 1.7;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 600px) {

    .section {
        padding: 78px 0;
    }

    .brand-logo-image,
    .brand-logo-image img {
        width: 56px;
    }

    .brand-main {
        font-size: 0.85rem;
    }

    .brand-sub {
        font-size: 0.33rem;
        letter-spacing: 0.19em;
    }


    /* -----------------------------------------------------
       SMALL PHONE HERO

       SAME COMPOSITION.
       Only minor scale adjustment.
    ----------------------------------------------------- */

    .hero {
        height: 1015px;
        min-height: 1015px;
    }

    .hero-background-layer {
        top: 205px;

        height: 440px;

        background-size:
            100% auto;

        background-position:
            center top;
    }

    .hero-content {
        width: 92%;
        padding-top: 36px;
    }

    .hero-kicker {
        font-size: 0.58rem;
    }

    .hero h1 {
        font-size:
            clamp(
                2.25rem,
                10.4vw,
                3.35rem
            );
    }

    .hero-description {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    /*
       IMPORTANT:
       Image finishes around this point and the buttons
       begin immediately after it.
    */

    .hero-actions {
        top: 630px;
    }

    .hero-benefits {
        top: 748px;
        font-size: 0.61rem;
    }


    /* -----------------------------------------------------
       SMALL PHONE BUSINESS / SECURITY
    ----------------------------------------------------- */

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

    .trust-heading,
    .trust-copy {
        grid-column: auto;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

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

    .premium-card {
        min-height: 245px;
    }

    .security-features {
        grid-template-columns: 1fr;
    }

    .seo-box {
        grid-template-columns: 1fr;
    }

    .seo-icon {
        width: 55px;
        height: 55px;
    }

    .seo-list {
        grid-column: auto;
        grid-template-columns: 1fr;
    }


    /* -----------------------------------------------------
       SMALL PHONE CTA
    ----------------------------------------------------- */

    .cta-box {
        padding: 42px 25px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .button {
        width: 100%;
    }

    .cta-contact-line {
        flex-direction: column;
        align-items: flex-start;
    }


    /* -----------------------------------------------------
       SMALL PHONE FOOTER
    ----------------------------------------------------- */

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }


    /* -----------------------------------------------------
       SMALL PHONE PROCESS
    ----------------------------------------------------- */

    .journey {
        margin-top: 52px;
    }

    .journey-line {
        top: 28px;
        bottom: 42px;
    }

    .journey-step {
        padding: 0 10px 54px;
    }

    .journey-step h3 {
        font-size: 1.05rem;
    }

    .journey-step p {
        max-width: 285px;
        font-size: 0.73rem;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* =========================================================
   MOBILE ONLY — PORTRAIT HERO BACKGROUND
   Desktop is completely untouched.
========================================================= */

@media (max-width: 820px) {

    .hero-background-layer {

        background-image:
            url("webloom-hero-mobile.png");

        background-size:
            cover;

        background-position:
            center center;

        background-repeat:
            no-repeat;
    }
}
