/* =========================================================
   UNITY WELT LLC — GLOBAL DESIGN SYSTEM
   ========================================================= */

:root {
    --color-primary: #2563eb;
    --color-cyan: #06b6d4;
    --color-violet: #6366f1;

    --color-dark: #0b1220;
    --color-dark-2: #111827;

    --color-text: #172033;
    --color-muted: #64748b;

    --color-white: #ffffff;
    --color-light: #f8fafc;
    --color-border: #e2e8f0;

    --gradient-brand: linear-gradient(
        110deg,
        #06b6d4 0%,
        #2563eb 50%,
        #6366f1 100%
    );

    --container: 1240px;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm: 0 4px 20px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 12px 35px rgba(15, 23, 42, 0.10);

    --transition: 250ms ease;
}

/* ---------------------------------------------------------
   RESET
   --------------------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: "Sora", "Inter", Arial, sans-serif;

    color: var(--color-text);
    background: var(--color-white);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

/* ---------------------------------------------------------
   CONTAINER
   --------------------------------------------------------- */

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}

/* ---------------------------------------------------------
   TYPOGRAPHY
   --------------------------------------------------------- */

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    line-height: 1.15;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
}

h3 {
    font-size: 1.35rem;
    font-weight: 600;
}

p {
    color: var(--color-muted);
}

/* ---------------------------------------------------------
   BUTTONS
   --------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 50px;
    padding: 0 22px;

    border: 1px solid transparent;
    border-radius: var(--radius-sm);

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--color-white);
    background: var(--gradient-brand);

    box-shadow:
        0 8px 24px rgba(37, 99, 235, 0.20);
}

.btn-primary:hover {
    box-shadow:
        0 12px 30px rgba(37, 99, 235, 0.28);
}

.btn-secondary {
    color: var(--color-text);
    background: var(--color-white);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    border-color: #cbd5e1;
    box-shadow: var(--shadow-sm);
}

/* ---------------------------------------------------------
   SECTION
   --------------------------------------------------------- */

.section {
    padding: 120px 0;
}

.section-light {
    background: var(--color-light);
}

/* ---------------------------------------------------------
   LABEL
   --------------------------------------------------------- */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 18px;

    color: var(--color-primary);

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";

    width: 24px;
    height: 2px;

    background: var(--gradient-brand);
    border-radius: 2px;
}

/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.94);

    border-bottom: 1px solid rgba(226, 232, 240, 0.8);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 185px;
    height: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation a {
    position: relative;

    color: #475569;

    font-size: 13px;
    font-weight: 500;

    transition: color var(--transition);
}

.main-navigation a:hover {
    color: var(--color-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.hero {
    position: relative;
    overflow: hidden;

    padding: 110px 0 120px;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(37, 99, 235, 0.09),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 70%,
            rgba(6, 182, 212, 0.07),
            transparent 28%
        ),
        #ffffff;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);

    align-items: center;

    gap: 80px;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    margin-bottom: 26px;

    color: var(--color-dark);
}

.hero-title .gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    max-width: 620px;

    margin-bottom: 34px;

    font-size: 17px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ---------------------------------------------------------
   HERO VISUAL
   --------------------------------------------------------- */

.hero-visual {
    position: relative;

    min-height: 440px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    position: relative;

    width: min(100%, 500px);

    padding: 42px;

    background: rgba(255, 255, 255, 0.82);

    border: 1px solid rgba(226, 232, 240, 0.9);

    border-radius: 28px;

    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.10);

    backdrop-filter: blur(14px);
}

.hero-card::before {
    content: "";

    position: absolute;

    inset: -1px;

    border-radius: inherit;

    padding: 1px;

    background: linear-gradient(
        135deg,
        rgba(6, 182, 212, 0.35),
        transparent 40%,
        rgba(99, 102, 241, 0.35)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

.hero-card-title {
    margin-bottom: 10px;

    font-size: 22px;
    font-weight: 600;
}

.hero-card-text {
    margin-bottom: 28px;

    font-size: 14px;
}

/* ---------------------------------------------------------
   SERVICE MINI CARDS
   --------------------------------------------------------- */

.hero-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.hero-service {
    padding: 18px;

    background: #ffffff;

    border: 1px solid var(--color-border);
    border-radius: 14px;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.hero-service:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.hero-service strong {
    display: block;

    margin-bottom: 4px;

    color: var(--color-dark);

    font-size: 13px;
}

.hero-service span {
    color: var(--color-muted);

    font-size: 11px;
}

/* ---------------------------------------------------------
   MOBILE MENU BUTTON
   --------------------------------------------------------- */

.mobile-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--color-border);
    border-radius: 10px;

    background: var(--color-white);

    cursor: pointer;
}

/* ---------------------------------------------------------
   UTILITIES
   --------------------------------------------------------- */

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

/* =========================================================
   WHAT WE BUILD
   ========================================================= */

.what-we-build {
    background: var(--color-light);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;

    margin-bottom: 55px;
}

.section-heading-content {
    max-width: 760px;
}

.section-heading h2 {
    margin-bottom: 20px;
    color: var(--color-dark);
}

.section-heading h2 .gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-heading p {
    max-width: 650px;
    margin-bottom: 0;

    font-size: 16px;
    line-height: 1.8;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;

    color: var(--color-primary);

    font-size: 14px;
    font-weight: 600;

    transition:
        gap var(--transition),
        color var(--transition);
}

.section-link:hover {
    gap: 14px;
    color: var(--color-violet);
}


/* ---------------------------------------------------------
   BUILD GRID
   --------------------------------------------------------- */

.build-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


/* ---------------------------------------------------------
   BUILD CARD
   --------------------------------------------------------- */

.build-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 330px;

    padding: 34px;

    background: var(--color-white);

    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);

    overflow: hidden;

    transition:
        transform 280ms ease,
        box-shadow 280ms ease,
        border-color 280ms ease;
}

.build-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    bottom: -100px;

    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.10),
        transparent 70%
    );

    pointer-events: none;

    transition:
        transform 400ms ease,
        opacity 400ms ease;
}

.build-card:hover {
    transform: translateY(-5px);

    border-color: rgba(37, 99, 235, 0.25);

    box-shadow: var(--shadow-md);
}

.build-card:hover::after {
    transform: scale(1.4);
}


/* ---------------------------------------------------------
   CARD TOP
   --------------------------------------------------------- */

.build-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 48px;
}

.build-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            rgba(6, 182, 212, 0.12),
            rgba(99, 102, 241, 0.12)
        );

    border: 1px solid rgba(37, 99, 235, 0.12);
}

.build-icon span {
    color: var(--color-primary);

    font-size: 12px;
    font-weight: 700;
}

.build-arrow {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--color-border);
    border-radius: 50%;

    color: var(--color-muted);

    font-size: 16px;

    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.build-card:hover .build-arrow {
    color: var(--color-white);

    background: var(--color-primary);

    border-color: var(--color-primary);

    transform: rotate(4deg);
}


/* ---------------------------------------------------------
   CARD CONTENT
   --------------------------------------------------------- */

.build-card h3 {
    margin-bottom: 12px;

    color: var(--color-dark);

    font-size: 21px;
}

.build-card p {
    max-width: 500px;

    margin-bottom: 25px;

    font-size: 14px;
    line-height: 1.75;
}

.build-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: auto;

    color: var(--color-primary);

    font-size: 12px;
    font-weight: 600;

    transition: gap var(--transition);
}

.build-card:hover .build-card-link {
    gap: 12px;
}

/* =========================================================
   BUILT FOR BUSINESSES LIKE YOURS
   ========================================================= */

.business-types {
    background: var(--color-white);
}

.business-types-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);

    align-items: end;

    gap: 80px;

    margin-bottom: 65px;
}

.business-types-intro h2 {
    max-width: 780px;

    margin-bottom: 0;

    color: var(--color-dark);
}

.business-types-intro .gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.business-types-intro > p {
    margin-bottom: 4px;

    font-size: 15px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   BUSINESS TYPE ROWS
   --------------------------------------------------------- */

.business-types-list {
    border-top: 1px solid var(--color-border);
}

.business-type-row {
    position: relative;

    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) 130px;

    align-items: center;

    gap: 35px;

    min-height: 145px;

    padding: 25px 10px;

    border-bottom: 1px solid var(--color-border);

    transition:
        padding 280ms ease,
        background 280ms ease;
}

.business-type-row::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    background: var(--gradient-brand);

    transform: scaleY(0);
    transform-origin: center;

    transition: transform 280ms ease;
}

.business-type-row:hover {
    padding-left: 25px;
    padding-right: 25px;

    background: var(--color-light);
}

.business-type-row:hover::before {
    transform: scaleY(1);
}


/* ---------------------------------------------------------
   NUMBER
   --------------------------------------------------------- */

.business-type-number {
    color: #94a3b8;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.04em;

    transition: color var(--transition);
}

.business-type-row:hover .business-type-number {
    color: var(--color-primary);
}


/* ---------------------------------------------------------
   CONTENT
   --------------------------------------------------------- */

.business-type-content {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(300px, 1fr);

    align-items: center;

    gap: 40px;
}

.business-type-content h3 {
    margin-bottom: 0;

    color: var(--color-dark);

    font-size: 24px;

    transition: transform var(--transition);
}

.business-type-row:hover .business-type-content h3 {
    transform: translateX(4px);
}

.business-type-content p {
    max-width: 570px;

    margin-bottom: 0;

    font-size: 13px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   ACTION
   --------------------------------------------------------- */

.business-type-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 12px;

    color: var(--color-primary);

    font-size: 12px;
    font-weight: 600;
}

.business-type-action span:last-child {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--color-border);
    border-radius: 50%;

    color: var(--color-muted);

    transition:
        transform var(--transition),
        color var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.business-type-row:hover .business-type-action span:last-child {
    transform: translate(3px, -3px);

    color: var(--color-white);

    background: var(--color-primary);

    border-color: var(--color-primary);
}

/* =========================================================
   SOLUTIONS
   ========================================================= */

.solutions-section {
    background: var(--color-dark);
    color: var(--color-white);
}


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.solutions-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 420px);

    align-items: end;

    gap: 80px;

    margin-bottom: 60px;
}

.solutions-header h2 {
    max-width: 760px;

    margin-bottom: 0;

    color: var(--color-white);
}

.solutions-header .eyebrow {
    color: #67e8f9;
}

.solutions-header > p {
    margin-bottom: 5px;

    color: #94a3b8;

    font-size: 15px;
    line-height: 1.8;
}

.solutions-header .gradient-text {
    background: var(--gradient-brand);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* ---------------------------------------------------------
   LAYOUT
   --------------------------------------------------------- */

.solutions-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 18px;
}


/* ---------------------------------------------------------
   FEATURE
   --------------------------------------------------------- */

.solution-feature {
    position: relative;

    min-height: 560px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    padding: 40px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #111c35 0%,
            #0f172a 55%,
            #111827 100%
        );

    border: 1px solid rgba(148, 163, 184, 0.16);

    border-radius: 20px;

    transition:
        transform 300ms ease,
        border-color 300ms ease,
        box-shadow 300ms ease;
}

.solution-feature:hover {
    transform: translateY(-5px);

    border-color: rgba(37, 99, 235, 0.5);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.25);
}

.solution-number {
    position: relative;
    z-index: 2;

    color: #64748b;

    font-size: 13px;
    font-weight: 600;
}

.solution-feature-content {
    position: relative;
    z-index: 2;

    max-width: 500px;
}

.solution-tag {
    display: inline-block;

    margin-bottom: 18px;

    color: #67e8f9;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.solution-feature h3 {
    margin-bottom: 18px;

    color: var(--color-white);

    font-size: clamp(2rem, 3.5vw, 3rem);
}

.solution-feature p {
    max-width: 450px;

    margin-bottom: 30px;

    color: #94a3b8;

    font-size: 14px;
    line-height: 1.8;
}

.solution-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--color-white);

    font-size: 13px;
    font-weight: 600;

    transition: gap var(--transition);
}

.solution-feature:hover .solution-link {
    gap: 14px;
}


/* ---------------------------------------------------------
   FEATURE VISUAL
   --------------------------------------------------------- */

.solution-feature-shape {
    position: absolute;

    width: 360px;
    height: 360px;

    right: -100px;
    bottom: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(37, 99, 235, 0.38) 0%,
            rgba(6, 182, 212, 0.16) 35%,
            transparent 70%
        );

    filter: blur(2px);

    transition:
        transform 500ms ease;
}

.solution-feature:hover .solution-feature-shape {
    transform: scale(1.12);
}


/* ---------------------------------------------------------
   SIDE ITEMS
   --------------------------------------------------------- */

.solutions-side {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.solution-item {
    position: relative;

    flex: 1;

    display: grid;

    grid-template-columns: 50px minmax(0, 1fr) 42px;

    align-items: center;

    gap: 22px;

    padding: 25px 28px;

    background: #111827;

    border: 1px solid rgba(148, 163, 184, 0.13);

    border-radius: 16px;

    overflow: hidden;

    transition:
        transform 280ms ease,
        background 280ms ease,
        border-color 280ms ease;
}

.solution-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    background: var(--gradient-brand);

    transform: scaleY(0);

    transform-origin: center;

    transition: transform 280ms ease;
}

.solution-item:hover {
    transform: translateX(5px);

    background: #162033;

    border-color: rgba(37, 99, 235, 0.3);
}

.solution-item:hover::before {
    transform: scaleY(1);
}

.solution-item-number {
    align-self: start;

    padding-top: 3px;

    color: #475569;

    font-size: 12px;
    font-weight: 600;
}

.solution-item-content > span {
    display: block;

    margin-bottom: 7px;

    color: #67e8f9;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.solution-item-content h3 {
    margin-bottom: 7px;

    color: var(--color-white);

    font-size: 17px;
    letter-spacing: -0.02em;
}

.solution-item-content p {
    max-width: 570px;

    margin-bottom: 0;

    color: #64748b;

    font-size: 12px;
    line-height: 1.65;
}

.solution-item-arrow {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(148, 163, 184, 0.2);

    border-radius: 50%;

    color: #64748b;

    font-size: 14px;

    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        transform var(--transition);
}

.solution-item:hover .solution-item-arrow {
    background: var(--color-primary);

    border-color: var(--color-primary);

    color: var(--color-white);

    transform: translate(2px, -2px);
}


/* ---------------------------------------------------------
   BOTTOM CTA
   --------------------------------------------------------- */

.solutions-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 25px;

    padding-top: 25px;

    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.solutions-bottom > span {
    color: #64748b;

    font-size: 13px;
}

.solutions-bottom-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #67e8f9;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition: gap var(--transition);
}

.solutions-bottom-link:hover {
    gap: 14px;
}

/* =========================================================
   OUR PRODUCTS
   ========================================================= */

.products-section {
    background: var(--color-white);
}

.products-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 420px);

    align-items: end;

    gap: 80px;

    margin-bottom: 55px;
}

.products-header h2 {
    max-width: 760px;

    margin-bottom: 0;

    color: var(--color-dark);
}

.products-header .gradient-text {
    background: var(--gradient-brand);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.products-header > p {
    margin-bottom: 4px;

    font-size: 15px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   FEATURED PRODUCT
   --------------------------------------------------------- */

.product-feature {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    min-height: 510px;

    margin-bottom: 18px;

    overflow: hidden;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #071a3a 0%,
            #0c2c68 45%,
            #142f79 100%
        );

    border: 1px solid rgba(37, 99, 235, 0.18);

    color: var(--color-white);

    transition:
        transform 300ms ease,
        box-shadow 300ms ease;
}

.product-feature:hover {
    transform: translateY(-5px);

    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.20);
}


/* ---------------------------------------------------------
   FEATURE CONTENT
   --------------------------------------------------------- */

.product-feature-content {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 55px;
}

.product-label {
    display: inline-flex;

    width: fit-content;

    margin-bottom: 18px;

    padding: 7px 11px;

    border: 1px solid rgba(103, 232, 249, 0.25);

    border-radius: 30px;

    background: rgba(103, 232, 249, 0.08);

    color: #67e8f9;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-brand {
    margin-bottom: 12px;

    font-size: 17px;
    font-weight: 600;

    letter-spacing: -0.02em;
}

.product-feature h3 {
    max-width: 550px;

    margin-bottom: 20px;

    color: var(--color-white);

    font-size: clamp(2rem, 4vw, 3.3rem);

    line-height: 1.08;
}

.product-feature h3 span {
    display: block;

    background: var(--gradient-brand);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.product-feature p {
    max-width: 500px;

    margin-bottom: 30px;

    color: #b5c3dc;

    font-size: 14px;
    line-height: 1.8;
}

.product-cta {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    width: fit-content;

    color: var(--color-white);

    font-size: 13px;
    font-weight: 600;

    transition: gap var(--transition);
}

.product-feature:hover .product-cta {
    gap: 14px;
}


/* ---------------------------------------------------------
   FEATURE VISUAL
   --------------------------------------------------------- */

.product-feature-visual {
    position: relative;

    min-height: 510px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.product-feature-visual::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(6, 182, 212, 0.22),
            rgba(99, 102, 241, 0.12) 42%,
            transparent 70%
        );

    filter: blur(5px);
}


/* ---------------------------------------------------------
   ORBITS
   --------------------------------------------------------- */

.product-orbit {
    position: absolute;

    border: 1px solid rgba(103, 232, 249, 0.12);

    border-radius: 50%;
}

.orbit-one {
    width: 420px;
    height: 420px;

    transform: rotate(-20deg);
}

.orbit-two {
    width: 300px;
    height: 300px;

    transform: rotate(35deg);
}


/* ---------------------------------------------------------
   DEVICE
   --------------------------------------------------------- */

.product-device {
    position: relative;
    z-index: 2;

    width: 300px;
    min-height: 400px;

    padding: 10px;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #e2e8f0,
            #ffffff 45%,
            #cbd5e1
        );

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.35);

    transform: rotate(4deg);

    transition:
        transform 500ms ease;
}

.product-feature:hover .product-device {
    transform: rotate(0deg) translateY(-5px);
}

.product-device::before {
    content: "";

    position: absolute;

    top: 5px;
    left: 50%;

    width: 80px;
    height: 5px;

    transform: translateX(-50%);

    border-radius: 10px;

    background: #94a3b8;
}

.product-device-top {
    display: flex;

    gap: 5px;

    padding: 7px 8px;
}

.product-device-top span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #94a3b8;
}

.product-device-content {
    height: 370px;

    padding: 28px 20px;

    border-radius: 18px;

    background:
        linear-gradient(
            160deg,
            #f8fafc,
            #eef6ff
        );
}

.device-mini-label {
    margin-bottom: 12px;

    color: var(--color-primary);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.08em;
}

.device-mini-title {
    max-width: 210px;

    margin-bottom: 25px;

    color: var(--color-dark);

    font-size: 22px;
    font-weight: 700;

    line-height: 1.15;
}

.device-search {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 12px;

    padding: 12px;

    border: 1px solid #dbeafe;

    border-radius: 10px;

    background: #ffffff;

    color: var(--color-muted);

    font-size: 9px;
}

.device-result {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 14px;

    border-radius: 10px;

    background: #ffffff;

    box-shadow: var(--shadow-sm);

    font-size: 9px;
}

.device-result strong {
    display: block;

    color: var(--color-dark);
}

.device-result span {
    color: var(--color-muted);
}


/* ---------------------------------------------------------
   PRODUCT CARDS
   --------------------------------------------------------- */

.products-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.product-card {
    position: relative;

    min-height: 350px;

    display: flex;
    flex-direction: column;

    padding: 30px;

    overflow: hidden;

    border: 1px solid var(--color-border);

    border-radius: 18px;

    background: var(--color-light);

    transition:
        transform 280ms ease,
        box-shadow 280ms ease,
        border-color 280ms ease;
}

.product-card::after {
    content: "";

    position: absolute;

    right: -70px;
    bottom: -100px;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(37, 99, 235, 0.12),
            transparent 70%
        );

    transition: transform 450ms ease;
}

.product-card:hover {
    transform: translateY(-5px);

    border-color: rgba(37, 99, 235, 0.22);

    box-shadow: var(--shadow-md);
}

.product-card:hover::after {
    transform: scale(1.3);
}

.product-card-top {
    position: relative;
    z-index: 2;

    display: flex;

    justify-content: space-between;

    margin-bottom: 70px;
}

.product-card-number {
    color: #94a3b8;

    font-size: 12px;
    font-weight: 600;
}

.product-card-arrow {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--color-border);

    border-radius: 50%;

    color: var(--color-muted);

    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        transform var(--transition);
}

.product-card:hover .product-card-arrow {
    background: var(--color-primary);

    border-color: var(--color-primary);

    color: var(--color-white);

    transform: translate(2px, -2px);
}

.product-card-content {
    position: relative;
    z-index: 2;

    margin-top: auto;
}

.product-small-label {
    display: block;

    margin-bottom: 9px;

    color: var(--color-primary);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card h3 {
    margin-bottom: 12px;

    color: var(--color-dark);

    font-size: 24px;
}

.product-card p {
    max-width: 430px;

    margin-bottom: 22px;

    font-size: 12px;
    line-height: 1.7;
}

.product-card-link {
    color: var(--color-primary);

    font-size: 11px;
    font-weight: 600;
}


/* ---------------------------------------------------------
   FOOTER LINE
   --------------------------------------------------------- */

.products-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 25px;

    padding-top: 25px;

    border-top: 1px solid var(--color-border);
}

.products-footer > span {
    color: var(--color-muted);

    font-size: 12px;
}

.products-footer-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 0;

    border: 0;

    background: transparent;

    color: var(--color-primary);

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    transition: gap var(--transition);
}

.products-footer-link:hover {
    gap: 13px;
}

/* =========================================================
   HOW WE WORK
   ========================================================= */

.process-section {
    background: var(--color-light);
}

.process-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 420px);

    align-items: end;

    gap: 80px;

    margin-bottom: 60px;
}

.process-header h2 {
    max-width: 700px;

    margin-bottom: 0;

    color: var(--color-dark);
}

.process-header .gradient-text {
    background: var(--gradient-brand);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.process-header > p {
    margin-bottom: 5px;

    font-size: 15px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   PROCESS LIST
   --------------------------------------------------------- */

.process-list {
    border-top: 1px solid var(--color-border);
}

.process-step {
    position: relative;

    display: grid;

    grid-template-columns: 100px minmax(0, 1fr) 50px;

    align-items: center;

    gap: 35px;

    min-height: 135px;

    padding: 20px 15px;

    border-bottom: 1px solid var(--color-border);

    transition:
        background 280ms ease,
        padding 280ms ease;
}

.process-step::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    background: var(--gradient-brand);

    transform: scaleY(0);
    transform-origin: center;

    transition: transform 280ms ease;
}

.process-step:hover {
    padding-left: 30px;

    background: var(--color-white);
}

.process-step:hover::before {
    transform: scaleY(1);
}


/* ---------------------------------------------------------
   NUMBER
   --------------------------------------------------------- */

.process-step-number {
    color: #94a3b8;

    font-size: 13px;
    font-weight: 600;

    transition: color var(--transition);
}

.process-step:hover .process-step-number {
    color: var(--color-primary);
}


/* ---------------------------------------------------------
   MAIN
   --------------------------------------------------------- */

.process-step-main {
    display: grid;

    grid-template-columns: minmax(180px, 0.55fr) minmax(300px, 1fr);

    align-items: center;

    gap: 50px;
}

.process-step-title {
    color: var(--color-dark);

    font-size: 24px;
    font-weight: 600;

    letter-spacing: -0.03em;

    transition: transform var(--transition);
}

.process-step:hover .process-step-title {
    transform: translateX(4px);
}

.process-step-description {
    max-width: 570px;

    color: var(--color-muted);

    font-size: 13px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   ARROW
   --------------------------------------------------------- */

.process-step-arrow {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    justify-self: end;

    border: 1px solid var(--color-border);

    border-radius: 50%;

    color: #94a3b8;

    font-size: 14px;

    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        transform var(--transition);
}

.process-step:hover .process-step-arrow {
    background: var(--color-primary);

    border-color: var(--color-primary);

    color: var(--color-white);

    transform: translate(3px, -3px);
}


/* ---------------------------------------------------------
   BOTTOM
   --------------------------------------------------------- */

.process-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 25px;

    padding-top: 25px;

    border-top: 1px solid var(--color-border);
}

.process-bottom > span {
    color: var(--color-muted);

    font-size: 12px;
}

.process-cta {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 0;

    border: 0;

    background: transparent;

    color: var(--color-primary);

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    transition: gap var(--transition);
}

.process-cta:hover {
    gap: 14px;
}

/* =========================================================
   WHY UNITY WELT
   ========================================================= */

.why-section {
    background: var(--color-white);
}

.why-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 100px;

    align-items: start;
}


/* ---------------------------------------------------------
   INTRO
   --------------------------------------------------------- */

.why-intro {
    position: sticky;

    top: 120px;

    max-width: 520px;
}

.why-intro h2 {
    margin-bottom: 25px;

    color: var(--color-dark);
}

.why-intro .gradient-text {
    display: block;

    background: var(--gradient-brand);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.why-intro p {
    margin-bottom: 17px;

    font-size: 14px;
    line-height: 1.8;
}

.why-intro .btn {
    margin-top: 18px;
}


/* ---------------------------------------------------------
   POINTS
   --------------------------------------------------------- */

.why-points {
    border-top: 1px solid var(--color-border);
}

.why-point {
    display: grid;

    grid-template-columns: 60px minmax(0, 1fr);

    gap: 30px;

    padding: 32px 10px;

    border-bottom: 1px solid var(--color-border);

    transition:
        padding 280ms ease,
        background 280ms ease;
}

.why-point:hover {
    padding-left: 25px;

    background: var(--color-light);
}


/* ---------------------------------------------------------
   NUMBER
   --------------------------------------------------------- */

.why-point-number {
    padding-top: 3px;

    color: #94a3b8;

    font-size: 12px;
    font-weight: 600;

    transition: color var(--transition);
}

.why-point:hover .why-point-number {
    color: var(--color-primary);
}


/* ---------------------------------------------------------
   CONTENT
   --------------------------------------------------------- */

.why-point-content h3 {
    margin-bottom: 9px;

    color: var(--color-dark);

    font-size: 20px;
}

.why-point-content p {
    max-width: 560px;

    margin-bottom: 0;

    font-size: 13px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   LAST POINT
   --------------------------------------------------------- */

.why-point-last {
    border-bottom: 0;
}

/* =========================================================
   OUR WORK
   ========================================================= */

.work-section {
    background: var(--color-light);
}

.work-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 420px);

    align-items: end;

    gap: 80px;

    margin-bottom: 55px;
}

.work-header h2 {
    max-width: 720px;

    margin-bottom: 0;

    color: var(--color-dark);
}

.work-header .gradient-text {
    background: var(--gradient-brand);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.work-header-side {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
}

.work-header-side p {
    margin-bottom: 0;

    font-size: 14px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   FEATURED WORK
   --------------------------------------------------------- */

.work-feature {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    min-height: 470px;

    margin-bottom: 18px;

    overflow: hidden;

    border-radius: 22px;

    background: var(--color-dark);

    color: var(--color-white);

    transition:
        transform 300ms ease,
        box-shadow 300ms ease;
}

.work-feature:hover {
    transform: translateY(-5px);

    box-shadow:
        0 30px 75px rgba(15, 23, 42, 0.18);
}

.work-feature-content {
    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 50px;
}

.work-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 25px;
}

.work-meta span {
    padding: 7px 10px;

    border: 1px solid rgba(103, 232, 249, 0.18);

    border-radius: 30px;

    color: #67e8f9;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.work-feature h3 {
    max-width: 500px;

    margin-bottom: 20px;

    color: var(--color-white);

    font-size: clamp(2rem, 3.5vw, 3rem);

    line-height: 1.08;
}

.work-feature h3 span {
    display: block;

    background: var(--gradient-brand);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.work-feature p {
    max-width: 470px;

    margin-bottom: 28px;

    color: #94a3b8;

    font-size: 13px;
    line-height: 1.8;
}

.work-feature-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    width: fit-content;

    color: var(--color-white);

    font-size: 12px;
    font-weight: 600;

    transition: gap var(--transition);
}

.work-feature:hover .work-feature-link {
    gap: 14px;
}


/* ---------------------------------------------------------
   FEATURE VISUAL
   --------------------------------------------------------- */

.work-feature-visual {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 60% 50%,
            rgba(37, 99, 235, 0.25),
            transparent 48%
        ),
        #0f1b32;
}

.work-feature-visual::before,
.work-feature-visual::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(103, 232, 249, 0.08);

    border-radius: 50%;
}

.work-feature-visual::before {
    width: 480px;
    height: 480px;
}

.work-feature-visual::after {
    width: 320px;
    height: 320px;
}


/* ---------------------------------------------------------
   BROWSER MOCKUP
   --------------------------------------------------------- */

.work-browser {
    position: relative;
    z-index: 2;

    width: 72%;

    overflow: hidden;

    border-radius: 14px;

    background: #f8fafc;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.35);

    transform: rotate(-2deg);

    transition:
        transform 500ms ease;
}

.work-feature:hover .work-browser {
    transform: rotate(0deg) translateY(-4px);
}

.work-browser-bar {
    display: flex;

    gap: 5px;

    padding: 9px 12px;

    background: #e2e8f0;
}

.work-browser-bar span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #94a3b8;
}

.work-browser-content {
    display: grid;

    grid-template-columns: 65px 1fr;

    min-height: 270px;
}

.work-browser-sidebar {
    display: flex;
    flex-direction: column;

    gap: 15px;

    padding: 20px 15px;

    background: #eef2f7;
}

.work-browser-sidebar div {
    height: 7px;

    border-radius: 4px;

    background: #cbd5e1;
}

.work-browser-sidebar div:first-child {
    background: #3b82f6;
}

.work-browser-main {
    padding: 25px;
}

.work-browser-heading {
    width: 45%;
    height: 13px;

    margin-bottom: 25px;

    border-radius: 5px;

    background: #172033;
}

.work-browser-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 8px;

    margin-bottom: 20px;
}

.work-browser-stats div {
    height: 55px;

    border: 1px solid #e2e8f0;

    border-radius: 8px;

    background: #ffffff;
}

.work-browser-chart {
    display: flex;

    align-items: flex-end;

    gap: 8px;

    height: 110px;

    padding: 15px;

    border: 1px solid #e2e8f0;

    border-radius: 8px;

    background: #ffffff;
}

.work-browser-chart span {
    flex: 1;

    min-height: 20px;

    border-radius: 4px 4px 0 0;

    background: #dbeafe;
}

.work-browser-chart span:nth-child(2) {
    height: 50%;
}

.work-browser-chart span:nth-child(3) {
    height: 70%;
}

.work-browser-chart span:nth-child(4) {
    height: 45%;
}

.work-browser-chart span:nth-child(5) {
    height: 85%;
}

.work-browser-chart span:nth-child(6) {
    height: 65%;
}


/* ---------------------------------------------------------
   WORK GRID
   --------------------------------------------------------- */

.work-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.work-card {
    overflow: hidden;

    border: 1px solid var(--color-border);

    border-radius: 18px;

    background: var(--color-white);

    transition:
        transform 280ms ease,
        box-shadow 280ms ease,
        border-color 280ms ease;
}

.work-card:hover {
    transform: translateY(-5px);

    border-color: rgba(37, 99, 235, 0.22);

    box-shadow: var(--shadow-md);
}


/* ---------------------------------------------------------
   CARD VISUALS
   --------------------------------------------------------- */

.work-card-visual {
    position: relative;

    height: 205px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #eff6ff,
            #f8fafc
        );
}


/* Website */

.work-mini-window {
    width: 68%;

    padding: 18px;

    border: 1px solid #dbeafe;

    border-radius: 10px;

    background: #ffffff;

    box-shadow: var(--shadow-sm);

    transform: rotate(-3deg);

    transition: transform 400ms ease;
}

.work-card:hover .work-mini-window {
    transform: rotate(0deg) translateY(-3px);
}

.work-mini-header {
    width: 30%;
    height: 7px;

    margin-bottom: 20px;

    border-radius: 4px;

    background: #2563eb;
}

.work-mini-line {
    width: 65%;
    height: 6px;

    margin-bottom: 8px;

    border-radius: 4px;

    background: #e2e8f0;
}

.work-mini-line.large {
    width: 85%;
    height: 14px;

    background: #172033;
}

.work-mini-buttons {
    display: flex;

    gap: 7px;

    margin-top: 18px;
}

.work-mini-buttons span {
    width: 42px;
    height: 12px;

    border-radius: 5px;

    background: #dbeafe;
}

.work-mini-buttons span:first-child {
    background: #2563eb;
}


/* Store */

.work-visual-store {
    gap: 10px;
}

.work-store-product {
    width: 40%;

    padding: 10px;

    border-radius: 9px;

    background: #ffffff;

    box-shadow: var(--shadow-sm);

    transform: rotate(-4deg);

    transition: transform 400ms ease;
}

.work-store-product.second {
    transform: rotate(5deg) translateY(15px);
}

.work-card:hover .work-store-product {
    transform: rotate(-1deg) translateY(-3px);
}

.work-card:hover .work-store-product.second {
    transform: rotate(2deg) translateY(10px);
}

.work-product-image {
    height: 75px;

    margin-bottom: 9px;

    border-radius: 6px;

    background:
        linear-gradient(
            135deg,
            #dbeafe,
            #e0e7ff
        );
}

.work-product-info span {
    display: block;

    width: 80%;
    height: 5px;

    margin-bottom: 5px;

    border-radius: 4px;

    background: #e2e8f0;
}


/* Dashboard */

.work-visual-dashboard {
    background:
        linear-gradient(
            145deg,
            #eef2ff,
            #f8fafc
        );
}

.work-dashboard-card {
    width: 65%;

    padding: 18px;

    border: 1px solid #dbeafe;

    border-radius: 11px;

    background: #ffffff;

    box-shadow: var(--shadow-sm);

    transform: rotate(2deg);

    transition: transform 400ms ease;
}

.work-card:hover .work-dashboard-card {
    transform: rotate(0deg) translateY(-3px);
}

.work-dashboard-top {
    display: flex;

    justify-content: space-between;

    margin-bottom: 25px;
}

.work-dashboard-top span {
    width: 55px;
    height: 8px;

    border-radius: 4px;

    background: #172033;
}

.work-dashboard-top span:last-child {
    width: 25px;

    background: #dbeafe;
}

.work-dashboard-bars {
    display: flex;

    align-items: flex-end;

    gap: 8px;

    height: 90px;
}

.work-dashboard-bars span {
    flex: 1;

    border-radius: 4px 4px 0 0;

    background: #dbeafe;
}

.work-dashboard-bars span:nth-child(1) {
    height: 45%;
}

.work-dashboard-bars span:nth-child(2) {
    height: 70%;
}

.work-dashboard-bars span:nth-child(3) {
    height: 55%;
}

.work-dashboard-bars span:nth-child(4) {
    height: 85%;
}


/* ---------------------------------------------------------
   CARD CONTENT
   --------------------------------------------------------- */

.work-card-content {
    padding: 28px;
}

.work-card-category {
    display: block;

    margin-bottom: 9px;

    color: var(--color-primary);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.work-card h3 {
    margin-bottom: 10px;

    color: var(--color-dark);

    font-size: 20px;
}

.work-card p {
    margin-bottom: 20px;

    font-size: 12px;
    line-height: 1.7;
}

.work-card-link {
    color: var(--color-primary);

    font-size: 11px;
    font-weight: 600;
}


/* ---------------------------------------------------------
   FOOTER LINE
   --------------------------------------------------------- */

.work-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 25px;

    padding-top: 25px;

    border-top: 1px solid var(--color-border);
}

.work-footer > span {
    color: var(--color-muted);

    font-size: 12px;
}

.work-footer-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--color-primary);

    font-size: 12px;
    font-weight: 600;

    transition: gap var(--transition);
}

.work-footer-link:hover {
    gap: 13px;
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta-section {
    background: var(--color-white);
}

.final-cta {
    position: relative;

    overflow: hidden;

    padding: 75px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(37, 99, 235, 0.16),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(6, 182, 212, 0.12),
            transparent 28%
        ),
        var(--color-light);

    border: 1px solid var(--color-border);
}

.final-cta::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    top: -220px;
    right: -100px;

    border-radius: 50%;

    border: 1px solid rgba(37, 99, 235, 0.08);

    pointer-events: none;
}

.final-cta-heading {
    position: relative;
    z-index: 2;

    max-width: 780px;

    margin-bottom: 55px;
}

.final-cta-heading h2 {
    margin-bottom: 20px;

    color: var(--color-dark);
}

.final-cta-heading .gradient-text {
    display: block;

    background: var(--gradient-brand);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.final-cta-heading p {
    max-width: 650px;

    margin-bottom: 0;

    font-size: 15px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   OPTIONS
   --------------------------------------------------------- */

.final-cta-options {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.final-cta-option {
    display: grid;

    grid-template-columns: 45px minmax(0, 1fr);

    gap: 25px;

    padding: 30px;

    border: 1px solid var(--color-border);

    border-radius: 17px;

    background: rgba(255, 255, 255, 0.78);

    transition:
        transform 280ms ease,
        box-shadow 280ms ease,
        border-color 280ms ease;
}

.final-cta-option:hover {
    transform: translateY(-4px);

    border-color: rgba(37, 99, 235, 0.25);

    box-shadow: var(--shadow-md);
}

.final-cta-option-number {
    padding-top: 3px;

    color: var(--color-primary);

    font-size: 12px;
    font-weight: 600;
}

.final-cta-option-content {
    min-width: 0;
}

.final-cta-label {
    display: block;

    margin-bottom: 9px;

    color: var(--color-primary);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.final-cta-option h3 {
    margin-bottom: 10px;

    color: var(--color-dark);

    font-size: 22px;
}

.final-cta-option p {
    margin-bottom: 20px;

    font-size: 12px;
    line-height: 1.7;
}

.final-cta-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 0;

    border: 0;

    background: transparent;

    color: var(--color-primary);

    font-size: 11px;
    font-weight: 600;

    cursor: pointer;

    transition: gap var(--transition);
}

.final-cta-link:hover {
    gap: 13px;
}


/* ---------------------------------------------------------
   BOTTOM
   --------------------------------------------------------- */

.final-cta-bottom {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 30px;

    padding-top: 28px;

    border-top: 1px solid var(--color-border);
}

.final-cta-bottom > span {
    color: var(--color-muted);

    font-size: 12px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    position: relative;

    overflow: hidden;

    padding-top: 85px;

    background: var(--color-dark);

    color: var(--color-white);
}

.site-footer::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -300px;
    right: -150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(37, 99, 235, 0.15),
            transparent 70%
        );

    pointer-events: none;
}


/* ---------------------------------------------------------
   MAIN FOOTER
   --------------------------------------------------------- */

.footer-main {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(260px, 1.7fr)
        repeat(3, minmax(130px, 1fr));

    gap: 70px;

    padding-bottom: 70px;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    display: inline-flex;

    margin-bottom: 20px;

    padding: 12px 16px;

    border-radius: 12px;

    background: var(--color-white);
}

.footer-logo img {
    width: 175px;
    height: auto;
}

.footer-brand > p:first-of-type {
    margin-bottom: 14px;

    color: var(--color-white);

    font-size: 14px;
    font-weight: 500;

    line-height: 1.6;
}

.footer-brand-description {
    max-width: 330px;

    margin-bottom: 0;

    color: #64748b;

    font-size: 12px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   FOOTER COLUMNS
   --------------------------------------------------------- */

.footer-column h3 {
    margin-bottom: 22px;

    color: var(--color-white);

    font-size: 13px;

    letter-spacing: -0.01em;
}

.footer-column ul {
    display: flex;

    flex-direction: column;

    gap: 12px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-column a {
    color: #64748b;

    font-size: 12px;

    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-column a:hover {
    color: #cbd5e1;

    transform: translateX(3px);
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.footer-cta {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 45px 0;

    border-top: 1px solid rgba(148, 163, 184, 0.13);
    border-bottom: 1px solid rgba(148, 163, 184, 0.13);
}

.footer-cta-label {
    display: block;

    margin-bottom: 10px;

    color: #67e8f9;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-cta h2 {
    margin-bottom: 0;

    color: var(--color-white);

    font-size: clamp(2rem, 4vw, 3rem);
}

.footer-cta h2 span {
    background: var(--gradient-brand);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* ---------------------------------------------------------
   BOTTOM
   --------------------------------------------------------- */

.footer-bottom {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    min-height: 85px;
}

.footer-copyright {
    color: #475569;

    font-size: 11px;
}

.footer-legal {
    display: flex;

    align-items: center;

    gap: 25px;
}

.footer-legal a {
    color: #475569;

    font-size: 11px;

    transition: color var(--transition);
}

.footer-legal a:hover {
    color: #94a3b8;
}

/* =========================================================
   PROJECT DRAWER
   ========================================================= */

.project-drawer-overlay {
    position: fixed;

    inset: 0;

    z-index: 9998;

    background: rgba(15, 23, 42, 0.42);

    opacity: 0;

    visibility: hidden;

    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    transition:
        opacity 300ms ease,
        visibility 300ms ease;
}

.project-drawer {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;

    z-index: 9999;

    width: min(560px, 100%);

    overflow-y: auto;

    padding: 35px 40px 45px;

    background: var(--color-white);

    border-left: 1px solid var(--color-border);

    box-shadow:
        -25px 0 70px rgba(15, 23, 42, 0.14);

    transform: translateX(100%);

    visibility: hidden;

    transition:
        transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
        visibility 380ms ease;
}


/* ---------------------------------------------------------
   OPEN STATE
   --------------------------------------------------------- */

body.project-drawer-open {
    overflow: hidden;
}

body.project-drawer-open .project-drawer-overlay {
    opacity: 1;

    visibility: visible;
}

body.project-drawer-open .project-drawer {
    transform: translateX(0);

    visibility: visible;
}


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.project-drawer-header {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 22px;
}

.project-drawer-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: var(--color-primary);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.project-drawer-header h2 {
    margin: 0;

    color: var(--color-dark);

    font-size: 34px;

    line-height: 1.1;

    letter-spacing: -0.04em;
}

.project-drawer-header h2 span {
    display: block;

    background: var(--gradient-brand);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* ---------------------------------------------------------
   CLOSE
   --------------------------------------------------------- */

.project-drawer-close {
    flex: 0 0 auto;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--color-border);

    border-radius: 50%;

    background: var(--color-white);

    color: var(--color-dark);

    font-size: 25px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.project-drawer-close:hover {
    background: var(--color-light);

    border-color: #cbd5e1;

    transform: rotate(90deg);
}


/* ---------------------------------------------------------
   INTRO
   --------------------------------------------------------- */

.project-drawer-intro {
    margin-bottom: 30px;

    padding-bottom: 25px;

    border-bottom: 1px solid var(--color-border);
}

.project-drawer-intro p {
    max-width: 470px;

    margin: 0;

    color: var(--color-muted);

    font-size: 13px;

    line-height: 1.8;
}


/* ---------------------------------------------------------
   FORM
   --------------------------------------------------------- */

.project-form {
    display: flex;

    flex-direction: column;

    gap: 19px;
}

.form-field {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-field label {
    color: var(--color-dark);

    font-size: 11px;
    font-weight: 600;
}

.form-field label span {
    color: var(--color-primary);
}

.form-field label small {
    margin-left: 5px;

    color: #94a3b8;

    font-size: 9px;
    font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #dbe2ea;

    border-radius: 9px;

    outline: none;

    background: var(--color-white);

    color: var(--color-dark);

    font-family: inherit;

    font-size: 12px;

    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #a0aec0;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
    border-color: #cbd5e1;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--color-primary);

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.08);
}

.form-field textarea {
    resize: vertical;

    min-height: 125px;
}

.form-field input[type="file"] {
    padding: 10px;

    cursor: pointer;

    background: var(--color-light);

    font-size: 11px;
}

.form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
}


/* ---------------------------------------------------------
   SUBMIT
   --------------------------------------------------------- */

.project-form-submit {
    margin-top: 7px;

    padding-top: 23px;

    border-top: 1px solid var(--color-border);
}

.project-form-submit .btn {
    width: 100%;

    justify-content: center;
}

.project-form-submit p {
    margin: 12px 0 0;

    color: #94a3b8;

    font-size: 10px;

    line-height: 1.6;

    text-align: center;
}


/* ---------------------------------------------------------
   SCROLLBAR
   --------------------------------------------------------- */

.project-drawer::-webkit-scrollbar {
    width: 6px;
}

.project-drawer::-webkit-scrollbar-track {
    background: transparent;
}

.project-drawer::-webkit-scrollbar-thumb {
    border-radius: 10px;

    background: #cbd5e1;
}

/* =========================================================
   PROJECT FORM SUCCESS
   ========================================================= */

.project-form-success {
    padding: 25px 0 10px;
}

.project-form-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #08a9d8, #4c5bea);
    box-shadow: 0 12px 30px rgba(46, 91, 220, 0.18);
}

.project-form-success-icon svg {
    width: 32px;
    height: 32px;
}

.project-form-success-icon circle {
    stroke: #ffffff;
    stroke-width: 1.8;
}

.project-form-success-icon path {
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.project-form-success h3 {
    margin: 0 0 18px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    color: #111827;
}

.project-form-success p {
    margin: 0 0 28px;
    font-size: 17px;
    line-height: 1.7;
    color: #687892;
    max-width: 520px;
}

/* =========================================================
   UNITY WELT STORE — FEATURED PRODUCT
   ========================================================= */

.product-store-feature {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 48px;
    align-items: stretch;
    padding: 42px;
    margin-top: 48px;
    border-radius: 28px;
    background: #08245f;
    overflow: hidden;
}

.product-store-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-store-label {
    display: inline-block;
    width: fit-content;
    margin-bottom: 20px;
    padding: 7px 13px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    color: #42d9f5;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.product-store-content h3 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 700;
}

.product-store-content h3 span {
    display: block;
    color: #299ce5;
}

.product-store-content p {
    max-width: 620px;
    margin: 0 0 30px;
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    line-height: 1.75;
}

.product-store-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.product-store-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.product-store-actions .btn-dark {
    background: #ffffff;
    color: #101827;
}

.product-store-actions .btn-outline {
    border: 1px solid rgba(255,255,255,0.4);
    color: #ffffff;
    background: transparent;
}

.product-store-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.16);
}

.product-store-trust span {
    color: rgba(255,255,255,0.68);
    font-size: 12px;
}

.product-store-trust strong {
    margin-right: 5px;
    color: #42d9f5;
}


/* =========================================================
   STORE SLIDER
   ========================================================= */

.product-store-slider {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
}

.store-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.store-slide.active {
    opacity: 1;
}

.store-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-slider-prev,
.store-slider-next {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.65);
    border-radius: 50%;
    background: rgba(0,0,0,0.18);
    color: #ffffff;
    font-size: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.store-slider-prev {
    left: 16px;
}

.store-slider-next {
    right: 16px;
}

.store-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 3;
    display: flex;
    gap: 7px;
    transform: translateX(-50%);
}

.store-slider-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    cursor: pointer;
}

.store-slider-dots button.active {
    width: 22px;
    border-radius: 999px;
    background: #ffffff;
}


/* =========================================================
   PRODUCT APP LOGOS
   ========================================================= */

.product-card-logo {
    display: flex;
    align-items: center;
    min-height: 72px;
    margin: 22px 0 12px;
}

.product-card-logo img {
    display: block;
    width: auto;
    max-width: 150px;
    max-height: 62px;
    object-fit: contain;
}

/* =========================================================
   OUR WORK — PROJECT IMAGES
   ========================================================= */

.work-feature-visual {
    position: relative;
    overflow: hidden;
}

.work-feature-visual img {
    display: block;
    width: 200%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    transform: translateX(-50%);
}


/* Work Category Images */

.work-card-visual {
    position: relative;
    overflow: hidden;
}

.work-card-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Online Store Image */

.work-visual-store img {
    object-position: center center;
}

/* =========================================================
   SOLUTIONS OVERVIEW PAGE
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.solutions-hero {
    padding: 120px 0 100px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(54, 105, 255, 0.10),
            transparent 32%
        ),
        #ffffff;
}

.solutions-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.solutions-hero-content {
    max-width: 760px;
}

.solutions-hero-content h1 {
    margin: 22px 0 28px;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.solutions-hero-content p {
    max-width: 680px;
    margin: 0;
    font-size: 19px;
    line-height: 1.75;
    color: #66758f;
}

.solutions-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}


/* =========================================================
   HERO PANEL
   ========================================================= */

.solutions-hero-panel {
    padding: 42px;
    border: 1px solid #dfe6f1;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(67, 104, 255, 0.13),
            transparent 45%
        ),
        #f8faff;
    box-shadow: 0 24px 70px rgba(19, 35, 68, 0.07);
}

.solutions-panel-label,
.solution-card-label {
    display: block;
    margin-bottom: 14px;
    color: #2864f0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.solutions-hero-panel h2 {
    margin: 0 0 32px;
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.solutions-panel-list {
    border-top: 1px solid #dfe6f1;
}

.solutions-panel-list div {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 19px 0;
    border-bottom: 1px solid #dfe6f1;
}

.solutions-panel-list span {
    min-width: 28px;
    color: #8da0bd;
    font-size: 12px;
    font-weight: 700;
}

.solutions-panel-list strong {
    color: #101827;
    font-size: 16px;
}


/* =========================================================
   SOLUTIONS HEADING
   ========================================================= */

.solutions-section-heading {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 55px;
}

.solutions-section-heading h2,
.solutions-process-header h2,
.solutions-business-content h2 {
    margin: 20px 0 0;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.solutions-section-heading p {
    max-width: 560px;
    margin: 0;
    color: #687994;
    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   SOLUTIONS GRID
   ========================================================= */

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.solution-overview-card {
    position: relative;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    overflow: hidden;
    border: 1px solid #dfe6f1;
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 100% 100%,
            rgba(65, 105, 255, 0.09),
            transparent 34%
        ),
        #ffffff;
    color: inherit;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.solution-overview-card:hover {
    transform: translateY(-5px);
    border-color: #cbd8ed;
    box-shadow: 0 22px 55px rgba(25, 48, 89, 0.09);
}

.solution-card-large {
    min-height: 450px;
}

.solution-card-wide {
    grid-column: 1 / -1;
    min-height: 330px;
}

.solution-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.solution-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #d5e1f2;
    border-radius: 13px;
    background: #f2f6ff;
    color: #2864f0;
    font-size: 12px;
    font-weight: 700;
}

.solution-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #dfe6f1;
    border-radius: 50%;
    color: #71829d;
    font-size: 17px;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.solution-overview-card:hover .solution-card-arrow {
    transform: translate(2px, -2px);
    background: #eef4ff;
    color: #2864f0;
}

.solution-card-content {
    margin-top: auto;
    max-width: 650px;
}

.solution-card-content h3 {
    margin: 0 0 14px;
    color: #101827;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.solution-card-content p {
    max-width: 610px;
    margin: 0;
    color: #687994;
    font-size: 15px;
    line-height: 1.7;
}

.solution-card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 28px;
    color: #2864f0;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   BUSINESS FOCUS
   ========================================================= */

.solutions-business-focus {
    background: #f7f9fc;
}

.solutions-business-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.solutions-business-content {
    max-width: 610px;
}

.solutions-business-content p {
    margin: 28px 0 0;
    color: #687994;
    font-size: 16px;
    line-height: 1.75;
}

.solutions-business-content .btn {
    margin-top: 34px;
}

.solutions-business-points {
    border-top: 1px solid #dce4ef;
}

.solutions-business-point {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 25px;
    padding: 28px 0;
    border-bottom: 1px solid #dce4ef;
}

.solutions-business-point > span {
    color: #8ba0be;
    font-size: 12px;
    font-weight: 700;
}

.solutions-business-point h3 {
    margin: 0 0 9px;
    color: #101827;
    font-size: 21px;
}

.solutions-business-point p {
    max-width: 570px;
    margin: 0;
    color: #687994;
    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   PROCESS
   ========================================================= */

.solutions-process-header {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 55px;
}

.solutions-process-header p {
    max-width: 560px;
    margin: 0;
    color: #687994;
    font-size: 17px;
    line-height: 1.75;
}

.solutions-process-list {
    border-top: 1px solid #dce4ef;
}

.solutions-process-row {
    display: grid;
    grid-template-columns: 80px 260px 1fr;
    gap: 35px;
    align-items: center;
    min-height: 125px;
    border-bottom: 1px solid #dce4ef;
}

.solutions-process-row > span {
    color: #8ba0be;
    font-size: 12px;
    font-weight: 700;
}

.solutions-process-row h3 {
    margin: 0;
    color: #101827;
    font-size: 24px;
    letter-spacing: -0.025em;
}

.solutions-process-row p {
    max-width: 620px;
    margin: 0;
    color: #687994;
    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.solutions-final-cta {
    padding-top: 0;
}

.solutions-final-cta-inner {
    position: relative;
    padding: 85px 70px;
    overflow: hidden;
    border: 1px solid #dce5f1;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(66, 102, 255, 0.15),
            transparent 38%
        ),
        radial-gradient(
            circle at 0% 100%,
            rgba(10, 190, 225, 0.08),
            transparent 35%
        ),
        #f8faff;
}

.solutions-final-cta-inner h2 {
    max-width: 800px;
    margin: 20px 0 22px;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.solutions-final-cta-inner p {
    max-width: 680px;
    margin: 0;
    color: #687994;
    font-size: 17px;
    line-height: 1.75;
}

.solutions-final-cta-inner .btn {
    margin-top: 32px;
}

/* =========================================================
   WEB DEVELOPMENT SOLUTION PAGE
   ========================================================= */


/* HERO */

.solution-page-hero {
    padding: 120px 0 100px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(54, 105, 255, 0.11),
            transparent 34%
        ),
        #ffffff;
}

.solution-page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-page-hero-content {
    max-width: 720px;
}

.solution-page-hero-content h1 {
    margin: 22px 0 28px;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.03;
    letter-spacing: -0.055em;
}

.solution-page-hero-content p {
    max-width: 650px;
    margin: 0;
    color: #687994;
    font-size: 18px;
    line-height: 1.75;
}

.solution-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}


/* HERO BROWSER */

.solution-page-hero-visual {
    display: flex;
    justify-content: center;
}

.solution-browser {
    width: 100%;
    max-width: 580px;
    overflow: hidden;
    border: 1px solid #dce5f1;
    border-radius: 24px;
    background: #f7faff;
    box-shadow: 0 30px 80px rgba(18, 38, 75, 0.10);
    transform: rotate(1deg);
}

.solution-browser-top {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 42px;
    padding: 0 17px;
    border-bottom: 1px solid #dce5f1;
    background: #eef3fa;
}

.solution-browser-top span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b7c4d8;
}

.solution-browser-body {
    display: grid;
    grid-template-columns: 70px 1fr;
    min-height: 370px;
}

.solution-browser-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 30px 18px;
    border-right: 1px solid #dce5f1;
    background: #f0f4fa;
}

.solution-browser-nav span {
    height: 8px;
    border-radius: 20px;
    background: #c9d5e5;
}

.solution-browser-nav span.active {
    width: 28px;
    background: #3573f4;
}

.solution-browser-main {
    padding: 35px;
}

.solution-browser-heading {
    width: 45%;
    height: 15px;
    margin-bottom: 18px;
    border-radius: 20px;
    background: #172033;
}

.solution-browser-lines {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 30px;
}

.solution-browser-lines span {
    width: 72%;
    height: 7px;
    border-radius: 20px;
    background: #cbd7e8;
}

.solution-browser-lines span:last-child {
    width: 55%;
}

.solution-browser-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.solution-browser-cards div {
    height: 105px;
    border: 1px solid #dce5f1;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(30, 52, 87, 0.05);
}


/* SECTION HEADING */

.solution-section-heading {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 55px;
}

.solution-section-heading h2,
.solution-value-content h2,
.solution-related-header h2 {
    margin: 20px 0 0;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.solution-section-heading > p,
.solution-related-header > p {
    max-width: 560px;
    margin: 0;
    color: #687994;
    font-size: 17px;
    line-height: 1.75;
}


/* SERVICES */

.solution-services {
    background: #ffffff;
}

.solution-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.solution-service-card {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 25px;
    min-height: 230px;
    padding: 30px;
    border: 1px solid #dfe6f1;
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 100% 100%,
            rgba(64, 103, 255, 0.08),
            transparent 38%
        ),
        #ffffff;
}

.solution-service-number {
    color: #8ba0be;
    font-size: 12px;
    font-weight: 700;
}

.solution-service-card h3 {
    margin: 0 0 12px;
    color: #101827;
    font-size: 25px;
    letter-spacing: -0.025em;
}

.solution-service-card p {
    max-width: 520px;
    margin: 0;
    color: #687994;
    font-size: 15px;
    line-height: 1.7;
}


/* BUSINESS VALUE */

.solution-value {
    background: #f7f9fc;
}

.solution-value-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.solution-value-content {
    max-width: 600px;
}

.solution-value-content p {
    margin: 27px 0 0;
    color: #687994;
    font-size: 16px;
    line-height: 1.75;
}

.solution-value-content .btn {
    margin-top: 34px;
}

.solution-value-list {
    border-top: 1px solid #dce4ef;
}

.solution-value-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 25px;
    padding: 27px 0;
    border-bottom: 1px solid #dce4ef;
}

.solution-value-item > span {
    color: #8ba0be;
    font-size: 12px;
    font-weight: 700;
}

.solution-value-item h3 {
    margin: 0 0 9px;
    color: #101827;
    font-size: 21px;
}

.solution-value-item p {
    max-width: 580px;
    margin: 0;
    color: #687994;
    font-size: 15px;
    line-height: 1.65;
}


/* AUDIENCE */

.solution-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.solution-audience-card {
    position: relative;
    min-height: 260px;
    padding: 30px;
    border: 1px solid #dfe6f1;
    border-radius: 22px;
    background: #ffffff;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.solution-audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(25, 48, 89, 0.08);
}

.solution-audience-card > span {
    color: #2864f0;
    font-size: 12px;
    font-weight: 700;
}

.solution-audience-card h3 {
    margin: 55px 0 12px;
    color: #101827;
    font-size: 25px;
}

.solution-audience-card p {
    max-width: 480px;
    margin: 0;
    color: #687994;
    font-size: 15px;
    line-height: 1.65;
}

.solution-audience-card strong {
    display: inline-block;
    margin-top: 24px;
    color: #2864f0;
    font-size: 13px;
}


/* PROCESS */

.solution-process {
    background: #f7f9fc;
}

.solution-process-list {
    border-top: 1px solid #dce4ef;
}

.solution-process-row {
    display: grid;
    grid-template-columns: 80px 260px 1fr;
    gap: 35px;
    align-items: center;
    min-height: 120px;
    border-bottom: 1px solid #dce4ef;
}

.solution-process-row > span {
    color: #8ba0be;
    font-size: 12px;
    font-weight: 700;
}

.solution-process-row h3 {
    margin: 0;
    color: #101827;
    font-size: 24px;
}

.solution-process-row p {
    max-width: 620px;
    margin: 0;
    color: #687994;
    font-size: 15px;
    line-height: 1.65;
}


/* RELATED */

.solution-related-header {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 50px;
}

.solution-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.solution-related-card {
    min-height: 280px;
    padding: 27px;
    border: 1px solid #dfe6f1;
    border-radius: 20px;
    background:
        radial-gradient(
            circle at 100% 100%,
            rgba(64, 103, 255, 0.08),
            transparent 38%
        ),
        #ffffff;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.solution-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(25, 48, 89, 0.08);
}

.solution-related-card > span {
    color: #8ba0be;
    font-size: 12px;
    font-weight: 700;
}

.solution-related-card h3 {
    margin: 60px 0 12px;
    color: #101827;
    font-size: 22px;
}

.solution-related-card p {
    margin: 0;
    color: #687994;
    font-size: 14px;
    line-height: 1.65;
}

.solution-related-card strong {
    display: block;
    margin-top: 22px;
    color: #2864f0;
    font-size: 13px;
}


/* FINAL CTA */

.solution-final-cta {
    padding-top: 0;
}

.solution-final-cta-inner {
    padding: 80px 70px;
    overflow: hidden;
    border: 1px solid #dce5f1;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(66, 102, 255, 0.15),
            transparent 38%
        ),
        radial-gradient(
            circle at 0% 100%,
            rgba(10, 190, 225, 0.08),
            transparent 35%
        ),
        #f8faff;
}

.solution-final-cta-inner h2 {
    max-width: 900px;
    margin: 20px 0 22px;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.solution-final-cta-inner p {
    max-width: 680px;
    margin: 0;
    color: #687994;
    font-size: 17px;
    line-height: 1.75;
}

.solution-final-cta-inner .btn {
    margin-top: 32px;
}

/* =========================================================
   E-COMMERCE SOLUTION HERO
   ========================================================= */

.solution-hero {
    padding-top: 80px;
    padding-bottom: 100px;
}

.solution-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: 80px;
}

.solution-hero-content {
    max-width: 760px;
}

.solution-hero-content h1 {
    margin: 22px 0 28px;
    font-size: clamp(48px, 5.4vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.solution-hero-content p {
    max-width: 720px;
    margin: 0;
    color: #687994;
    font-size: 18px;
    line-height: 1.75;
}

.solution-hero-content .hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
}


/* Hero Visual */

.solution-hero-visual {
    width: 100%;
}

.solution-visual-card {
    position: relative;
    min-height: 520px;
    padding: 42px;
    overflow: hidden;

    border: 1px solid #dce5f1;
    border-radius: 28px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(66, 102, 255, 0.14),
            transparent 42%
        ),
        radial-gradient(
            circle at 0% 100%,
            rgba(10, 190, 225, 0.08),
            transparent 40%
        ),
        #f8faff;

    box-shadow: 0 25px 60px rgba(20, 40, 80, 0.08);
}

.solution-visual-label {
    display: inline-block;
    margin-bottom: 20px;

    color: #2161ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.solution-visual-card h2 {
    position: relative;
    z-index: 2;

    max-width: 390px;
    margin: 0;

    font-size: clamp(34px, 3vw, 48px);
    line-height: 1.04;
    letter-spacing: -0.045em;
}


/* Mini Store */

.solution-mini-store {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 42px;

    padding: 22px;

    border: 1px solid #dce5f1;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.92);

    box-shadow: 0 18px 45px rgba(30, 55, 100, 0.10);
}

.mini-store-header {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.mini-store-header span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cbd7e8;
}

.mini-store-search {
    width: 72%;
    height: 11px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: #18233a;
}

.mini-store-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mini-store-products > div {
    padding: 12px;

    border: 1px solid #e3e9f2;
    border-radius: 12px;

    background: #ffffff;
}

.mini-store-products span {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 0.72;
    margin-bottom: 10px;
    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #edf3fb,
            #dce8fa
        );
}

.mini-store-products strong {
    display: block;
    width: 70%;
    height: 7px;
    margin-bottom: 7px;
    border-radius: 999px;
    background: #27344c;
}

.mini-store-products small {
    display: block;
    width: 45%;
    height: 6px;
    border-radius: 999px;
    background: #cbd7e8;
}

/* =========================================================
   MOBILE APP DEVELOPMENT
   ========================================================= */

.mobile-app-hero {
    padding-top: 70px;
    padding-bottom: 90px;
}

.mobile-app-hero .solution-hero-grid {
    gap: 70px;
}

.mobile-app-hero .solution-hero-content h1 {
    max-width: 720px;
}

.mobile-app-hero .solution-hero-content p {
    max-width: 650px;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.mobile-app-visual-card {
    position: relative;
    min-height: 520px;
    padding: 42px;
    overflow: hidden;
    border: 1px solid #dce5f1;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(66, 102, 255, 0.15),
            transparent 42%
        ),
        radial-gradient(
            circle at 0% 100%,
            rgba(10, 190, 225, 0.10),
            transparent 40%
        ),
        #f8faff;
    box-shadow: 0 25px 60px rgba(20, 40, 80, 0.08);
}

.mobile-app-visual-card h2 {
    position: relative;
    z-index: 4;
    max-width: 360px;
    margin: 0;
    font-size: clamp(38px, 3.4vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.mobile-devices {
    position: absolute;
    right: 20px;
    bottom: -18px;
    width: 430px;
    height: 355px;
}

.mobile-device {
    position: absolute;
    bottom: 0;
    width: 190px;
    height: 350px;
    padding: 8px;
    border: 1px solid #c8d4e5;
    border-radius: 30px;
    background: #16233a;
    box-shadow: 0 28px 55px rgba(20, 35, 65, 0.22);
}

.mobile-device-back {
    left: 35px;
    transform: rotate(-8deg) scale(.9);
    opacity: .75;
}

.mobile-device-front {
    right: 20px;
    z-index: 3;
    transform: rotate(6deg);
}

.mobile-device-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 23px;
    background: #f8faff;
}

.mobile-device-camera {
    position: absolute;
    z-index: 5;
    top: 13px;
    left: 50%;
    width: 55px;
    height: 12px;
    transform: translateX(-50%);
    border-radius: 20px;
    background: #111a2b;
}

.app-screen-top {
    width: 72%;
    height: 9px;
    margin: 42px auto 20px;
    border-radius: 20px;
    background: #24334d;
}

.app-screen-title {
    width: 58%;
    height: 18px;
    margin: 0 18px 18px;
    border-radius: 5px;
    background: #263750;
}

.app-screen-card {
    margin: 12px;
    padding: 10px;
    border: 1px solid #e0e7f1;
    border-radius: 12px;
    background: #fff;
}

.app-screen-card span {
    display: block;
    width: 100%;
    height: 48px;
    margin-bottom: 8px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e8f1fb, #d7e4f6);
}

.app-screen-card strong {
    display: block;
    width: 65%;
    height: 7px;
    margin-bottom: 6px;
    border-radius: 10px;
    background: #27354d;
}

.app-screen-card small {
    display: block;
    width: 40%;
    height: 6px;
    border-radius: 10px;
    background: #cbd7e8;
}

.app-screen-brand {
    width: 42px;
    height: 42px;
    margin: 45px auto 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2161ff, #7655ff);
}

.app-screen-brand span {
    display: block;
    width: 18px;
    height: 18px;
    margin: 12px;
    border-radius: 50%;
    background: #fff;
}

.app-screen-heading {
    width: 65%;
    height: 14px;
    margin: 0 auto 20px;
    border-radius: 10px;
    background: #24334d;
}

.app-screen-main-card {
    margin: 0 14px 16px;
    padding: 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eaf2ff, #f7faff);
}

.app-screen-main-card div {
    width: 100%;
    height: 70px;
    margin-bottom: 10px;
    border-radius: 10px;
    background: linear-gradient(135deg, #d9e7fa, #edf4fc);
}

.app-screen-main-card span {
    display: block;
    width: 70%;
    height: 7px;
    margin-bottom: 7px;
    border-radius: 10px;
    background: #253650;
}

.app-screen-main-card strong {
    display: block;
    width: 42%;
    height: 6px;
    border-radius: 10px;
    background: #b9c8dd;
}

.app-screen-lines {
    padding: 0 16px;
}

.app-screen-lines span {
    display: block;
    width: 100%;
    height: 7px;
    margin-bottom: 9px;
    border-radius: 10px;
    background: #d5dfec;
}

.app-screen-lines span:nth-child(2) {
    width: 78%;
}

.app-screen-lines span:nth-child(3) {
    width: 55%;
}


/* =========================================================
   CAPABILITIES
   ========================================================= */

.capability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.capability-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 30px;
    min-height: 170px;
    border: 1px solid #dce5f1;
    border-radius: 20px;
    background: #fff;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.capability-item:hover {
    transform: translateY(-4px);
    border-color: #c8d6e8;
    box-shadow: 0 18px 40px rgba(25, 50, 90, .07);
}

.capability-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: #f0f4fb;
    color: #2161ff;
    font-size: 12px;
    font-weight: 700;
}

.capability-item h3 {
    margin: 2px 0 10px;
    font-size: 19px;
    letter-spacing: -.02em;
}

.capability-item p {
    margin: 0;
    color: #687994;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   BUSINESS VALUE
   ========================================================= */

.value-layout {
    display: grid;
    grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
    gap: 100px;
    align-items: start;
}

.value-intro {
    max-width: 500px;
}

.value-intro h2 {
    margin: 20px 0 22px;
    font-size: clamp(40px, 4vw, 60px);
    line-height: 1.03;
    letter-spacing: -.05em;
}

.value-intro p {
    margin: 0;
    color: #687994;
    font-size: 16px;
    line-height: 1.8;
}

.value-list {
    border-top: 1px solid #dce5f1;
}

.value-row {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 20px;
    padding: 27px 0;
    border-bottom: 1px solid #dce5f1;
}

.value-row > span {
    color: #2161ff;
    font-size: 11px;
    font-weight: 700;
}

.value-row h3 {
    margin: 0 0 8px;
    font-size: 19px;
    letter-spacing: -.02em;
}

.value-row p {
    margin: 0;
    color: #687994;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   WHO WE BUILD FOR
   ========================================================= */

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.audience-card {
    display: flex;
    flex-direction: column;
    min-height: 270px;
    padding: 30px;
    border: 1px solid #dce5f1;
    border-radius: 20px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    border-color: #c7d5e8;
    box-shadow: 0 20px 45px rgba(25, 50, 90, .08);
}

.audience-card > span {
    color: #2161ff;
    font-size: 11px;
    font-weight: 700;
}

.audience-card h3 {
    margin: 25px 0 12px;
    font-size: 21px;
    letter-spacing: -.03em;
}

.audience-card p {
    margin: 0;
    color: #687994;
    font-size: 14px;
    line-height: 1.7;
}

.audience-card strong {
    margin-top: auto;
    padding-top: 22px;
    color: #2161ff;
    font-size: 14px;
}


/* =========================================================
   PROCESS
   ========================================================= */

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.process-card {
    position: relative;
    min-height: 250px;
    padding: 28px;
    border: 1px solid #dce5f1;
    border-radius: 20px;
    background: #fff;
}

.process-card > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 35px;
    border-radius: 12px;
    background: #f0f4fb;
    color: #2161ff;
    font-size: 11px;
    font-weight: 700;
}

.process-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
}

.process-card p {
    margin: 0;
    color: #687994;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   OUR APPS
   ========================================================= */

.mobile-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mobile-product-card {
    display: block;
    padding: 32px;
    border: 1px solid #dce5f1;
    border-radius: 22px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.mobile-product-card:hover {
    transform: translateY(-5px);
    border-color: #c7d5e8;
    box-shadow: 0 20px 45px rgba(25, 50, 90, .09);
}

.mobile-product-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin-bottom: 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, #edf4ff, #e5eafb);
    color: #2161ff;
    font-size: 18px;
    font-weight: 700;
}

.mobile-product-category {
    display: block;
    margin-bottom: 8px;
    color: #71819b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.mobile-product-content h3 {
    margin: 0 0 12px;
    font-size: 25px;
    letter-spacing: -.03em;
}

.mobile-product-content p {
    min-height: 78px;
    margin: 0 0 24px;
    color: #687994;
    font-size: 14px;
    line-height: 1.7;
}

.mobile-product-content strong {
    color: #2161ff;
    font-size: 14px;
}


/* =========================================================
   RELATED SOLUTIONS
   ========================================================= */

.related-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.related-solution-card {
    display: block;
    padding: 28px;
    border: 1px solid #dce5f1;
    border-radius: 20px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.related-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(25, 50, 90, .08);
}

.related-solution-card > span {
    color: #2161ff;
    font-size: 11px;
    font-weight: 700;
}

.related-solution-card h3 {
    margin: 22px 0 10px;
    font-size: 19px;
}

.related-solution-card p {
    min-height: 55px;
    margin: 0 0 20px;
    color: #687994;
    font-size: 14px;
    line-height: 1.65;
}

.related-solution-card strong {
    color: #2161ff;
    font-size: 14px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.mobile-app-development-page .final-cta {
    margin-top: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .mobile-app-hero .solution-hero-grid {
        gap: 45px;
    }

    .mobile-devices {
        right: -15px;
        transform: scale(.9);
        transform-origin: bottom right;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .related-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-layout {
        gap: 55px;
    }
}


@media (max-width: 991px) {

    .mobile-app-hero {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .mobile-app-hero .solution-hero-grid {
        grid-template-columns: 1fr;
    }

    .mobile-app-visual-card {
        max-width: 700px;
        min-height: 500px;
        margin: 0 auto;
    }

    .capability-grid {
        grid-template-columns: 1fr;
    }

    .value-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .mobile-product-grid {
        grid-template-columns: 1fr;
    }

    .mobile-product-content p {
        min-height: auto;
    }
}


@media (max-width: 700px) {

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .related-solutions-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    .mobile-app-hero {
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .mobile-app-visual-card {
        min-height: 430px;
        padding: 28px;
        border-radius: 22px;
    }

    .mobile-app-visual-card h2 {
        font-size: 34px;
    }

    .mobile-devices {
        right: -90px;
        bottom: -25px;
        transform: scale(.68);
        transform-origin: bottom right;
    }

    .capability-item {
        min-height: auto;
        padding: 24px 20px;
        gap: 16px;
    }

    .capability-item h3 {
        font-size: 17px;
    }

    .capability-item p {
        font-size: 14px;
    }

    .value-row {
        grid-template-columns: 35px 1fr;
        gap: 12px;
        padding: 23px 0;
    }

    .audience-card {
        min-height: 230px;
    }

    .process-card {
        min-height: auto;
    }

    .mobile-product-card {
        padding: 26px;
    }
}

/* =========================================================
   MOBILE APP PAGE — LAYOUT FIXES
   ========================================================= */

/* Fix section headings */

body:has(.mobile-app-hero) .section-heading {
    display: block;
    max-width: 850px;
    margin-bottom: 55px;
}

body:has(.mobile-app-hero) .section-heading .eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
}

body:has(.mobile-app-hero) .section-heading h2 {
    max-width: 760px;
    margin: 0 0 20px;
    font-size: clamp(40px, 4.5vw, 62px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

body:has(.mobile-app-hero) .section-heading p {
    max-width: 700px;
    margin: 0;
    color: #687994;
    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   BUSINESS VALUE
   ========================================================= */

body:has(.mobile-app-hero) .value-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: 90px;
}

body:has(.mobile-app-hero) .value-intro {
    width: 100%;
    max-width: 520px;
}

body:has(.mobile-app-hero) .value-intro .eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
}

body:has(.mobile-app-hero) .value-intro h2 {
    max-width: 500px;
    margin: 0 0 22px;
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

body:has(.mobile-app-hero) .value-intro p {
    max-width: 500px;
    margin: 0;
    color: #687994;
    font-size: 16px;
    line-height: 1.8;
}

body:has(.mobile-app-hero) .value-list {
    width: 100%;
}


/* =========================================================
   BUILD GRID
   ========================================================= */

body:has(.mobile-app-hero) .build-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}


/* =========================================================
   AUDIENCE GRID
   ========================================================= */

body:has(.mobile-app-hero) .audience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}


/* =========================================================
   PROCESS GRID
   ========================================================= */

body:has(.mobile-app-hero) .process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}


/* =========================================================
   RELATED SOLUTIONS
   ========================================================= */

body:has(.mobile-app-hero) .related-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}


/* =========================================================
   OUR APPS
   ========================================================= */

body:has(.mobile-app-hero) .mobile-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    body:has(.mobile-app-hero) .section-heading h2 {
        font-size: clamp(38px, 5vw, 54px);
    }

    body:has(.mobile-app-hero) .value-layout {
        grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
        gap: 55px;
    }

    body:has(.mobile-app-hero) .audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body:has(.mobile-app-hero) .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body:has(.mobile-app-hero) .related-solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991px) {

    body:has(.mobile-app-hero) .section-heading {
        max-width: 700px;
        margin-bottom: 42px;
    }

    body:has(.mobile-app-hero) .value-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    body:has(.mobile-app-hero) .mobile-product-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 700px) {

    body:has(.mobile-app-hero) .section-heading h2 {
        font-size: clamp(36px, 10vw, 48px);
    }

    body:has(.mobile-app-hero) .section-heading p {
        font-size: 16px;
    }

    body:has(.mobile-app-hero) .build-grid {
        grid-template-columns: 1fr;
    }

    body:has(.mobile-app-hero) .audience-grid {
        grid-template-columns: 1fr;
    }

    body:has(.mobile-app-hero) .process-grid {
        grid-template-columns: 1fr;
    }

    body:has(.mobile-app-hero) .related-solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   CUSTOM SOFTWARE DEVELOPMENT
   ========================================================= */


/* =========================================================
   SECTION HEADINGS — PAGE SPECIFIC
   ========================================================= */

body:has(.custom-software-hero) .section-heading {
    display: block;
    max-width: 850px;
    margin-bottom: 55px;
}

body:has(.custom-software-hero) .section-heading .eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
}

body:has(.custom-software-hero) .section-heading h2 {
    max-width: 760px;
    margin: 0 0 20px;
    font-size: clamp(40px, 4.5vw, 62px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

body:has(.custom-software-hero) .section-heading p {
    max-width: 700px;
    margin: 0;
    color: #687994;
    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   HERO
   ========================================================= */

.custom-software-hero {
    padding-top: 70px;
    padding-bottom: 90px;
}

.custom-software-hero .solution-hero-grid {
    gap: 70px;
}

.custom-software-hero .solution-hero-content h1 {
    max-width: 720px;
}

.custom-software-hero .solution-hero-content p {
    max-width: 650px;
}


/* =========================================================
   SOFTWARE HERO VISUAL
   ========================================================= */

.custom-software-visual-card {
    position: relative;
    min-height: 520px;
    padding: 42px;
    overflow: hidden;
    border: 1px solid #dce5f1;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(66, 102, 255, 0.15),
            transparent 42%
        ),
        radial-gradient(
            circle at 0% 100%,
            rgba(10, 190, 225, 0.10),
            transparent 40%
        ),
        #f8faff;
    box-shadow: 0 25px 60px rgba(20, 40, 80, 0.08);
}

.custom-software-visual-card h2 {
    position: relative;
    z-index: 3;
    max-width: 390px;
    margin: 0;
    font-size: clamp(36px, 3.3vw, 50px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}


/* =========================================================
   SOFTWARE DASHBOARD
   ========================================================= */

.software-dashboard {
    position: absolute;
    right: 30px;
    bottom: -15px;
    left: 30px;
    height: 285px;
    overflow: hidden;
    border: 1px solid #d5dfec;
    border-radius: 18px 18px 0 0;
    background: #fff;
    box-shadow: 0 25px 55px rgba(20, 40, 80, 0.14);
}

.software-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 45px;
    padding: 0 15px;
    border-bottom: 1px solid #e6ebf2;
}

.dashboard-brand {
    display: flex;
    align-items: center;
    gap: 7px;
}

.dashboard-brand span {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: linear-gradient(135deg, #2161ff, #7655ff);
}

.dashboard-brand strong {
    display: block;
    width: 58px;
    height: 6px;
    border-radius: 10px;
    background: #24334d;
}

.dashboard-user {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #eef3fa;
}

.dashboard-user span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #aab9ce;
}

.software-dashboard-body {
    display: flex;
    height: calc(100% - 45px);
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 68px;
    padding: 18px 14px;
    border-right: 1px solid #e6ebf2;
    background: #fbfcfe;
}

.dashboard-sidebar span {
    width: 100%;
    height: 7px;
    border-radius: 10px;
    background: #d9e2ef;
}

.dashboard-sidebar span:first-child {
    background: #2161ff;
}

.dashboard-sidebar span:nth-child(2) {
    width: 75%;
}

.dashboard-sidebar span:nth-child(3) {
    width: 88%;
}

.dashboard-sidebar span:nth-child(4) {
    width: 65%;
}

.dashboard-content {
    flex: 1;
    padding: 18px;
}

.dashboard-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.dashboard-welcome div:first-child {
    width: 120px;
}

.dashboard-welcome span {
    display: block;
    width: 85px;
    height: 7px;
    margin-bottom: 7px;
    border-radius: 10px;
    background: #263750;
}

.dashboard-welcome strong {
    display: block;
    width: 120px;
    height: 5px;
    border-radius: 10px;
    background: #d1dce9;
}

.dashboard-action {
    width: 52px;
    height: 21px;
    border-radius: 7px;
    background: linear-gradient(135deg, #2161ff, #4e6fff);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 13px;
}

.dashboard-stat {
    padding: 10px;
    border: 1px solid #e4eaf2;
    border-radius: 9px;
}

.dashboard-stat span {
    display: block;
    width: 20px;
    height: 20px;
    margin-bottom: 7px;
    border-radius: 6px;
    background: #edf3fc;
}

.dashboard-stat strong {
    display: block;
    width: 55%;
    height: 6px;
    margin-bottom: 5px;
    border-radius: 10px;
    background: #27354d;
}

.dashboard-stat small {
    display: block;
    width: 72%;
    height: 4px;
    border-radius: 10px;
    background: #d2dce9;
}

.dashboard-chart {
    height: 102px;
    padding: 12px;
    border: 1px solid #e4eaf2;
    border-radius: 9px;
}

.chart-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.chart-heading span {
    width: 55px;
    height: 6px;
    border-radius: 10px;
    background: #27354d;
}

.chart-heading strong {
    width: 35px;
    height: 5px;
    border-radius: 10px;
    background: #d2dce9;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 55px;
    gap: 8px;
}

.chart-bars i {
    display: block;
    flex: 1;
    min-width: 8px;
    border-radius: 5px 5px 2px 2px;
    background: linear-gradient(
        to top,
        #2161ff,
        #53b9e8
    );
}

.chart-bars i:nth-child(1) {
    height: 35%;
}

.chart-bars i:nth-child(2) {
    height: 52%;
}

.chart-bars i:nth-child(3) {
    height: 42%;
}

.chart-bars i:nth-child(4) {
    height: 68%;
}

.chart-bars i:nth-child(5) {
    height: 55%;
}

.chart-bars i:nth-child(6) {
    height: 82%;
}

.chart-bars i:nth-child(7) {
    height: 94%;
}


/* =========================================================
   BUILD GRID
   ========================================================= */

body:has(.custom-software-hero) .build-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.custom-software-build-grid .build-card {
    min-height: 210px;
}


/* =========================================================
   CAPABILITIES
   ========================================================= */

body:has(.custom-software-hero) .capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.custom-software-capability-grid .capability-item {
    min-height: 175px;
}


/* =========================================================
   BUSINESS VALUE
   ========================================================= */

body:has(.custom-software-hero) .value-layout {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: 90px;
}

body:has(.custom-software-hero) .value-intro {
    width: 100%;
    max-width: 520px;
}

body:has(.custom-software-hero) .value-intro .eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
}

body:has(.custom-software-hero) .value-intro h2 {
    max-width: 510px;
    margin: 0 0 22px;
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.04;
    letter-spacing: -.05em;
}

body:has(.custom-software-hero) .value-intro p {
    max-width: 500px;
    margin: 0;
    color: #687994;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   AUDIENCE
   ========================================================= */

body:has(.custom-software-hero) .audience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.custom-software-audience-grid .audience-card {
    min-height: 285px;
}


/* =========================================================
   PROCESS
   ========================================================= */

body:has(.custom-software-hero) .process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.custom-software-process-grid .process-card {
    min-height: 255px;
}


/* =========================================================
   USE CASES
   ========================================================= */

.custom-software-use-case-layout {
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
    gap: 90px;
    align-items: start;
}

.custom-software-use-case-intro {
    max-width: 500px;
}

.custom-software-use-case-intro .eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
}

.custom-software-use-case-intro h2 {
    margin: 0 0 22px;
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.04;
    letter-spacing: -.05em;
}

.custom-software-use-case-intro p {
    margin: 0;
    color: #687994;
    font-size: 16px;
    line-height: 1.8;
}

.custom-software-use-case-list {
    border-top: 1px solid #dce5f1;
}

.use-case-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 20px;
    padding: 27px 0;
    border-bottom: 1px solid #dce5f1;
}

.use-case-item > span {
    color: #2161ff;
    font-size: 11px;
    font-weight: 700;
}

.use-case-item h3 {
    margin: 0 0 8px;
    font-size: 19px;
    letter-spacing: -.02em;
}

.use-case-item p {
    margin: 0;
    color: #687994;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   RELATED SOLUTIONS
   ========================================================= */

body:has(.custom-software-hero) .related-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .custom-software-hero .solution-hero-grid {
        gap: 45px;
    }

    .custom-software-visual-card {
        padding: 35px;
    }

    .software-dashboard {
        right: 20px;
        left: 20px;
    }

    body:has(.custom-software-hero) .value-layout {
        gap: 55px;
    }

    body:has(.custom-software-hero) .audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body:has(.custom-software-hero) .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body:has(.custom-software-hero) .related-solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .custom-software-use-case-layout {
        gap: 55px;
    }
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 991px) {

    .custom-software-hero {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .custom-software-hero .solution-hero-grid {
        grid-template-columns: 1fr;
    }

    .custom-software-visual-card {
        max-width: 700px;
        min-height: 500px;
        margin: 0 auto;
    }

    body:has(.custom-software-hero) .section-heading {
        max-width: 700px;
        margin-bottom: 45px;
    }

    body:has(.custom-software-hero) .value-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .custom-software-use-case-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    body:has(.custom-software-hero) .section-heading h2 {
        font-size: clamp(36px, 10vw, 48px);
    }

    body:has(.custom-software-hero) .section-heading p {
        font-size: 16px;
    }

    body:has(.custom-software-hero) .build-grid {
        grid-template-columns: 1fr;
    }

    body:has(.custom-software-hero) .capability-grid {
        grid-template-columns: 1fr;
    }

    body:has(.custom-software-hero) .audience-grid {
        grid-template-columns: 1fr;
    }

    body:has(.custom-software-hero) .process-grid {
        grid-template-columns: 1fr;
    }

    body:has(.custom-software-hero) .related-solutions-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    .custom-software-hero {
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .custom-software-visual-card {
        min-height: 430px;
        padding: 28px;
        border-radius: 22px;
    }

    .custom-software-visual-card h2 {
        font-size: 34px;
    }

    .software-dashboard {
        right: 15px;
        bottom: -10px;
        left: 15px;
        height: 245px;
    }

    .dashboard-sidebar {
        width: 50px;
        padding: 15px 10px;
    }

    .dashboard-content {
        padding: 12px;
    }

    .dashboard-stats {
        gap: 6px;
    }

    .dashboard-stat {
        padding: 7px;
    }

    .dashboard-chart {
        height: 88px;
        padding: 9px;
    }

    .chart-bars {
        height: 45px;
        gap: 5px;
    }

    .custom-software-build-grid .build-card {
        min-height: auto;
    }

    .custom-software-capability-grid .capability-item {
        min-height: auto;
    }

    .custom-software-audience-grid .audience-card {
        min-height: 230px;
    }

    .custom-software-process-grid .process-card {
        min-height: auto;
    }

    .custom-software-use-case-intro h2 {
        font-size: clamp(36px, 10vw, 48px);
    }

    .use-case-item {
        grid-template-columns: 35px 1fr;
        gap: 12px;
        padding: 23px 0;
    }
}

/* =========================================================
   UI / UX DESIGN
   ========================================================= */


/* =========================================================
   SECTION HEADINGS — PAGE SPECIFIC
   ========================================================= */

body:has(.uiux-hero) .section-heading {
    display: block;
    max-width: 850px;
    margin-bottom: 55px;
}

body:has(.uiux-hero) .section-heading .eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
}

body:has(.uiux-hero) .section-heading h2 {
    max-width: 760px;
    margin: 0 0 20px;
    font-size: clamp(40px, 4.5vw, 62px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

body:has(.uiux-hero) .section-heading p {
    max-width: 700px;
    margin: 0;
    color: #687994;
    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   HERO
   ========================================================= */

.uiux-hero {
    padding-top: 70px;
    padding-bottom: 90px;
}

.uiux-hero .solution-hero-grid {
    gap: 70px;
}

.uiux-hero .solution-hero-content h1 {
    max-width: 720px;
}

.uiux-hero .solution-hero-content p {
    max-width: 650px;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.uiux-visual-card {
    position: relative;
    min-height: 520px;
    padding: 42px;
    overflow: hidden;
    border: 1px solid #dce5f1;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(66, 102, 255, 0.15),
            transparent 42%
        ),
        radial-gradient(
            circle at 0% 100%,
            rgba(10, 190, 225, 0.10),
            transparent 40%
        ),
        #f8faff;
    box-shadow: 0 25px 60px rgba(20, 40, 80, 0.08);
}

.uiux-visual-card h2 {
    position: relative;
    z-index: 3;
    max-width: 390px;
    margin: 0;
    font-size: clamp(36px, 3.3vw, 50px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}


/* =========================================================
   UI / UX INTERFACE VISUAL
   ========================================================= */

.uiux-interface {
    position: absolute;
    right: 30px;
    bottom: -15px;
    left: 30px;
    height: 285px;
    overflow: hidden;
    border: 1px solid #d5dfec;
    border-radius: 18px 18px 0 0;
    background: #fff;
    box-shadow: 0 25px 55px rgba(20, 40, 80, 0.14);
}

.uiux-interface-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 45px;
    padding: 0 15px;
    border-bottom: 1px solid #e6ebf2;
}

.uiux-brand {
    display: flex;
    align-items: center;
    gap: 7px;
}

.uiux-brand span {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: linear-gradient(135deg, #2161ff, #7655ff);
}

.uiux-brand strong {
    width: 55px;
    height: 6px;
    border-radius: 10px;
    background: #24334d;
}

.uiux-header-links {
    display: flex;
    gap: 12px;
}

.uiux-header-links span {
    display: block;
    width: 27px;
    height: 5px;
    border-radius: 10px;
    background: #d1dce9;
}

.uiux-interface-body {
    display: flex;
    height: calc(100% - 45px);
}

.uiux-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 65px;
    padding: 18px 13px;
    border-right: 1px solid #e6ebf2;
    background: #fbfcfe;
}

.uiux-sidebar span {
    width: 100%;
    height: 7px;
    border-radius: 10px;
    background: #d8e1ed;
}

.uiux-sidebar span:first-child {
    background: #2161ff;
}

.uiux-sidebar span:nth-child(2) {
    width: 72%;
}

.uiux-sidebar span:nth-child(3) {
    width: 88%;
}

.uiux-sidebar span:nth-child(4) {
    width: 62%;
}

.uiux-main {
    flex: 1;
    padding: 17px;
}

.uiux-main-heading {
    margin-bottom: 14px;
}

.uiux-main-heading span {
    display: block;
    width: 90px;
    height: 7px;
    margin-bottom: 7px;
    border-radius: 10px;
    background: #273650;
}

.uiux-main-heading strong {
    display: block;
    width: 140px;
    height: 5px;
    border-radius: 10px;
    background: #d3deeb;
}

.uiux-feature-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.uiux-feature-card {
    padding: 10px;
    border: 1px solid #e3e9f2;
    border-radius: 10px;
    background: #fff;
}

.uiux-feature-card span {
    display: block;
    width: 100%;
    height: 45px;
    margin-bottom: 8px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e7f0fc, #d8e5f7);
}

.uiux-feature-card strong {
    display: block;
    width: 62%;
    height: 6px;
    margin-bottom: 6px;
    border-radius: 10px;
    background: #273650;
}

.uiux-feature-card small {
    display: block;
    width: 42%;
    height: 5px;
    border-radius: 10px;
    background: #cdd8e6;
}

.uiux-content-card {
    position: relative;
    padding: 12px;
    border: 1px solid #e3e9f2;
    border-radius: 10px;
    background: #fbfcfe;
}

.uiux-content-title {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
}

.uiux-content-title span {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: #e9f1fc;
}

.uiux-content-title strong {
    width: 70px;
    height: 6px;
    border-radius: 10px;
    background: #273650;
}

.uiux-content-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.uiux-content-lines span {
    display: block;
    width: 80%;
    height: 5px;
    border-radius: 10px;
    background: #d2dce9;
}

.uiux-content-lines span:nth-child(2) {
    width: 92%;
}

.uiux-content-lines span:nth-child(3) {
    width: 58%;
}

.uiux-content-button {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 48px;
    height: 19px;
    border-radius: 6px;
    background: linear-gradient(135deg, #2161ff, #4d70ff);
}


/* =========================================================
   WHAT WE DESIGN
   ========================================================= */

body:has(.uiux-hero) .build-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.uiux-build-grid .build-card {
    min-height: 205px;
}


/* =========================================================
   DESIGN PRINCIPLES
   ========================================================= */

.uiux-principles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.uiux-principle {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    min-height: 165px;
    padding: 30px;
    border: 1px solid #dce5f1;
    border-radius: 20px;
    background: #fff;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.uiux-principle:hover {
    transform: translateY(-4px);
    border-color: #c8d6e8;
    box-shadow: 0 18px 40px rgba(25, 50, 90, .07);
}

.uiux-principle > span {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: #f0f4fb;
    color: #2161ff;
    font-size: 12px;
    font-weight: 700;
}

.uiux-principle h3 {
    margin: 2px 0 10px;
    font-size: 19px;
    letter-spacing: -.02em;
}

.uiux-principle p {
    margin: 0;
    color: #687994;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   BUSINESS VALUE
   ========================================================= */

body:has(.uiux-hero) .value-layout {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: 90px;
}

body:has(.uiux-hero) .value-intro {
    width: 100%;
    max-width: 520px;
}

body:has(.uiux-hero) .value-intro .eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
}

body:has(.uiux-hero) .value-intro h2 {
    max-width: 510px;
    margin: 0 0 22px;
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.04;
    letter-spacing: -.05em;
}

body:has(.uiux-hero) .value-intro p {
    max-width: 500px;
    margin: 0;
    color: #687994;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   DESIGN PROCESS
   ========================================================= */

body:has(.uiux-hero) .process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.uiux-process-grid .process-card {
    min-height: 255px;
}


/* =========================================================
   DELIVERABLES
   ========================================================= */

.uiux-deliverables-layout {
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
    gap: 90px;
    align-items: start;
}

.uiux-deliverables-intro {
    max-width: 500px;
}

.uiux-deliverables-intro .eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
}

.uiux-deliverables-intro h2 {
    margin: 0 0 22px;
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.04;
    letter-spacing: -.05em;
}

.uiux-deliverables-intro p {
    margin: 0;
    color: #687994;
    font-size: 16px;
    line-height: 1.8;
}

.uiux-deliverables-list {
    border-top: 1px solid #dce5f1;
}

.uiux-deliverable-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #dce5f1;
}

.uiux-deliverable-item > span {
    color: #2161ff;
    font-size: 11px;
    font-weight: 700;
}

.uiux-deliverable-item h3 {
    margin: 0 0 7px;
    font-size: 19px;
}

.uiux-deliverable-item p {
    margin: 0;
    color: #687994;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   USE CASES
   ========================================================= */

.uiux-use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.uiux-use-case-card {
    display: flex;
    flex-direction: column;
    min-height: 285px;
    padding: 30px;
    border: 1px solid #dce5f1;
    border-radius: 20px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.uiux-use-case-card:hover {
    transform: translateY(-5px);
    border-color: #c7d5e8;
    box-shadow: 0 20px 45px rgba(25, 50, 90, .08);
}

.uiux-use-case-card > span {
    color: #2161ff;
    font-size: 11px;
    font-weight: 700;
}

.uiux-use-case-card h3 {
    margin: 25px 0 12px;
    font-size: 21px;
    letter-spacing: -.03em;
}

.uiux-use-case-card p {
    margin: 0;
    color: #687994;
    font-size: 14px;
    line-height: 1.7;
}

.uiux-use-case-card strong {
    margin-top: auto;
    padding-top: 22px;
    color: #2161ff;
    font-size: 14px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .uiux-hero .solution-hero-grid {
        gap: 45px;
    }

    .uiux-visual-card {
        padding: 35px;
    }

    .uiux-interface {
        right: 20px;
        left: 20px;
    }

    body:has(.uiux-hero) .value-layout {
        gap: 55px;
    }

    .uiux-deliverables-layout {
        gap: 55px;
    }

    .uiux-use-cases-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body:has(.uiux-hero) .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 991px) {

    .uiux-hero {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .uiux-hero .solution-hero-grid {
        grid-template-columns: 1fr;
    }

    .uiux-visual-card {
        max-width: 700px;
        min-height: 500px;
        margin: 0 auto;
    }

    body:has(.uiux-hero) .section-heading {
        max-width: 700px;
        margin-bottom: 45px;
    }

    body:has(.uiux-hero) .value-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .uiux-deliverables-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    body:has(.uiux-hero) .section-heading h2 {
        font-size: clamp(36px, 10vw, 48px);
    }

    body:has(.uiux-hero) .section-heading p {
        font-size: 16px;
    }

    body:has(.uiux-hero) .build-grid {
        grid-template-columns: 1fr;
    }

    .uiux-principles-grid {
        grid-template-columns: 1fr;
    }

    body:has(.uiux-hero) .process-grid {
        grid-template-columns: 1fr;
    }

    .uiux-use-cases-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    .uiux-hero {
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .uiux-visual-card {
        min-height: 430px;
        padding: 28px;
        border-radius: 22px;
    }

    .uiux-visual-card h2 {
        font-size: 34px;
    }

    .uiux-interface {
        right: 15px;
        bottom: -10px;
        left: 15px;
        height: 245px;
    }

    .uiux-sidebar {
        width: 50px;
        padding: 15px 10px;
    }

    .uiux-main {
        padding: 12px;
    }

    .uiux-feature-row {
        gap: 6px;
    }

    .uiux-feature-card {
        padding: 7px;
    }

    .uiux-feature-card span {
        height: 38px;
    }

    .uiux-content-card {
        padding: 9px;
    }

    .uiux-principle {
        min-height: auto;
        padding: 24px 20px;
        gap: 16px;
    }

    .uiux-principle h3 {
        font-size: 17px;
    }

    .uiux-principle p {
        font-size: 14px;
    }

    .uiux-deliverables-intro h2 {
        font-size: clamp(36px, 10vw, 48px);
    }

    .uiux-deliverable-item {
        grid-template-columns: 35px 1fr;
        gap: 12px;
        padding: 23px 0;
    }

    .uiux-use-case-card {
        min-height: 240px;
    }
}

/* =========================================================
   INDUSTRIES OVERVIEW PAGE
========================================================= */

.industries-page {
    overflow: hidden;
}

/* =========================================================
   HERO
========================================================= */

.industries-hero {
    padding: 120px 0 100px;
    background:
        radial-gradient(circle at 82% 18%, rgba(80, 105, 255, 0.10), transparent 34%),
        radial-gradient(circle at 10% 80%, rgba(0, 190, 255, 0.07), transparent 28%),
        #ffffff;
}

.industries-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: 80px;
}

.industries-hero-content {
    max-width: 720px;
}

.industries-hero-content h1 {
    margin: 18px 0 26px;
    font-size: clamp(46px, 5vw, 76px);
    line-height: 1.06;
    letter-spacing: -0.045em;
    font-weight: 700;
}

.industries-hero-description {
    max-width: 650px;
    margin: 0;
    color: #667085;
    font-size: 18px;
    line-height: 1.8;
}

.industries-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}

.industries-hero-visual {
    display: flex;
    justify-content: flex-end;
}

.industries-hero-panel {
    position: relative;
    width: 100%;
    max-width: 520px;
    padding: 28px;
    border: 1px solid rgba(18, 38, 63, 0.08);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
        0 30px 80px rgba(24, 39, 75, 0.10),
        0 8px 24px rgba(24, 39, 75, 0.05);
}

.industries-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid #edf0f5;
}

.industries-panel-label {
    color: #172033;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.industries-panel-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #687386;
    font-size: 12px;
    font-weight: 500;
}

.industries-panel-status > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #28b87d;
    box-shadow: 0 0 0 4px rgba(40, 184, 125, 0.10);
}

.industries-panel-list {
    padding: 8px 0;
}

.industries-panel-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f2f6;
}

.industries-panel-item:last-child {
    border-bottom: 0;
}

.industries-panel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f5f7fb;
    color: #667085;
    font-size: 12px;
    font-weight: 700;
}

.industries-panel-item div:last-child {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.industries-panel-item strong {
    color: #172033;
    font-size: 15px;
    font-weight: 600;
}

.industries-panel-item span {
    color: #7a8495;
    font-size: 13px;
    line-height: 1.5;
}

.industries-panel-footer {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 10px;
    padding: 18px 20px;
    border-radius: 16px;
    background: #f7f8fb;
}

.industries-panel-footer span {
    color: #8a93a2;
    font-size: 12px;
}

.industries-panel-footer strong {
    color: #263247;
    font-size: 14px;
    font-weight: 600;
}


/* =========================================================
   INTRO
========================================================= */

.industries-intro {
    padding: 100px 0 110px;
    background: #ffffff;
}

.industries-intro-heading {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.industries-intro-heading h2 {
    margin: 16px 0 22px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.industries-intro-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: #6b7585;
    font-size: 17px;
    line-height: 1.85;
}


/* =========================================================
   INDUSTRY LIST
========================================================= */

.industries-list {
    padding: 110px 0 120px;
}

.industries-list > .container > .section-heading {
    max-width: 760px;
    margin-bottom: 56px;
}

.industries-list .section-heading h2 {
    margin-top: 15px;
    margin-bottom: 18px;
}

.industries-list .section-heading p {
    max-width: 680px;
    color: #707b8d;
    line-height: 1.8;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.industry-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid #e7eaf0;
    border-radius: 24px;
    background: #ffffff;
    text-decoration: none;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.industry-card::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(72, 91, 255, 0.09),
        transparent 68%
    );
    pointer-events: none;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: rgba(72, 91, 255, 0.18);
    box-shadow: 0 22px 55px rgba(24, 39, 75, 0.08);
}

.industry-card-featured {
    background:
        radial-gradient(circle at 88% 15%, rgba(79, 92, 255, 0.10), transparent 34%),
        #ffffff;
}

.industry-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.industry-card-number {
    color: #9aa3b2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.industry-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #e7eaf0;
    border-radius: 12px;
    color: #4d5aff;
    font-size: 17px;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.industry-card:hover .industry-card-arrow {
    background: #172033;
    color: #ffffff;
    transform: translate(2px, -2px);
}

.industry-card-content {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 55px;
}

.industry-card-label {
    display: block;
    margin-bottom: 12px;
    color: #7b8494;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.industry-card h3 {
    margin: 0 0 13px;
    color: #172033;
    font-size: 29px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.industry-card p {
    max-width: 520px;
    margin: 0;
    color: #6e7889;
    font-size: 15px;
    line-height: 1.75;
}

.industry-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: #3448d8;
    font-size: 13px;
    font-weight: 600;
}

.industry-card-link span {
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-card-link span {
    transform: translateX(4px);
}


/* =========================================================
   BUSINESS JOURNEY
========================================================= */

.industries-journey {
    padding: 110px 0 120px;
    background: #ffffff;
}

.industries-journey > .container > .section-heading {
    max-width: 760px;
    margin-bottom: 56px;
}

.industries-journey .section-heading h2 {
    margin-top: 15px;
    margin-bottom: 18px;
}

.industries-journey .section-heading p {
    max-width: 650px;
    color: #707b8d;
    line-height: 1.8;
}

.industries-journey-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.journey-card {
    min-height: 290px;
    padding: 28px;
    border: 1px solid #e8ebf0;
    border-radius: 22px;
    background: #ffffff;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.journey-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(24, 39, 75, 0.07);
}

.journey-card-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 54px;
    border-radius: 12px;
    background: #f5f7fb;
    color: #697487;
    font-size: 12px;
    font-weight: 700;
}

.journey-card-content h3 {
    margin: 0 0 12px;
    color: #172033;
    font-size: 21px;
    line-height: 1.25;
}

.journey-card-content p {
    margin: 0;
    color: #707b8d;
    font-size: 14px;
    line-height: 1.75;
}

.journey-card-content > span {
    display: block;
    margin-top: 20px;
    color: #8a93a1;
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: 0.02em;
}


/* =========================================================
   SOLUTIONS
========================================================= */

.industries-solutions {
    padding: 110px 0 120px;
}

.industries-solutions > .container > .section-heading {
    max-width: 760px;
    margin-bottom: 52px;
}

.industries-solutions .section-heading h2 {
    margin-top: 15px;
    margin-bottom: 18px;
}

.industries-solutions .section-heading p {
    max-width: 670px;
    color: #707b8d;
    line-height: 1.8;
}

.industries-solutions-grid {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e6e9ef;
}

.industry-solution-item {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 40px;
    align-items: center;
    gap: 22px;
    padding: 27px 8px;
    border-bottom: 1px solid #e6e9ef;
    color: inherit;
    text-decoration: none;
    transition:
        padding-left 0.3s ease,
        background 0.3s ease;
}

.industry-solution-item:hover {
    padding-left: 18px;
    background: rgba(255, 255, 255, 0.55);
}

.industry-solution-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: #ffffff;
    color: #697487;
    font-size: 11px;
    font-weight: 700;
}

.industry-solution-item h3 {
    margin: 0 0 6px;
    color: #172033;
    font-size: 18px;
    line-height: 1.3;
}

.industry-solution-item p {
    max-width: 700px;
    margin: 0;
    color: #707b8d;
    font-size: 14px;
    line-height: 1.65;
}

.industry-solution-item > span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4d5aff;
    font-size: 19px;
    transition: transform 0.3s ease;
}

.industry-solution-item:hover > span {
    transform: translateX(5px);
}


/* =========================================================
   WHY UNITY WELT
========================================================= */

.industries-why {
    padding: 120px 0;
    background:
        radial-gradient(circle at 75% 20%, rgba(82, 93, 255, 0.07), transparent 30%),
        #ffffff;
}

.industries-why-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 100px;
    align-items: start;
}

.industries-why-content {
    max-width: 520px;
}

.industries-why-content h2 {
    margin: 16px 0 20px;
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.industries-why-content > p {
    margin: 0;
    color: #707b8d;
    font-size: 16px;
    line-height: 1.8;
}

.industries-why-content .btn {
    margin-top: 30px;
}

.industries-why-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e5e8ee;
}

.why-business-item {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid #e5e8ee;
}

.why-business-number {
    color: #9aa3b2;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.why-business-item h3 {
    margin: 0 0 8px;
    color: #172033;
    font-size: 18px;
    line-height: 1.3;
}

.why-business-item p {
    max-width: 580px;
    margin: 0;
    color: #707b8d;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .industries-hero {
        padding: 100px 0 85px;
    }

    .industries-hero-grid {
        gap: 55px;
    }

    .industries-hero-content h1 {
        font-size: clamp(42px, 5vw, 62px);
    }

    .industries-why-grid {
        gap: 60px;
    }

}


@media (max-width: 900px) {

    .industries-hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .industries-hero-content {
        max-width: 760px;
    }

    .industries-hero-visual {
        justify-content: flex-start;
    }

    .industries-hero-panel {
        max-width: 650px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industries-journey-grid {
        grid-template-columns: 1fr;
    }

    .journey-card {
        min-height: auto;
    }

    .journey-card-number {
        margin-bottom: 35px;
    }

    .industries-why-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .industries-why-content {
        max-width: 700px;
    }

}


@media (max-width: 700px) {

    .industries-hero {
        padding: 75px 0 70px;
    }

    .industries-hero-content h1 {
        margin-top: 15px;
        margin-bottom: 20px;
        font-size: clamp(38px, 10vw, 52px);
    }

    .industries-hero-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .industries-hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 28px;
    }

    .industries-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .industries-hero-panel {
        padding: 20px;
        border-radius: 20px;
    }

    .industries-panel-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .industries-panel-item {
        gap: 13px;
        padding: 16px 0;
    }

    .industries-panel-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        border-radius: 11px;
    }

    .industries-panel-item strong {
        font-size: 14px;
    }

    .industries-panel-item span {
        font-size: 12px;
    }

    .industries-intro {
        padding: 75px 0 80px;
    }

    .industries-intro-heading h2 {
        font-size: clamp(34px, 9vw, 46px);
    }

    .industries-intro-heading p {
        font-size: 15px;
        line-height: 1.75;
    }

    .industries-list,
    .industries-journey,
    .industries-solutions {
        padding: 80px 0;
    }

    .industries-list > .container > .section-heading,
    .industries-journey > .container > .section-heading,
    .industries-solutions > .container > .section-heading {
        margin-bottom: 38px;
    }

    .industry-card {
        min-height: 330px;
        padding: 23px;
        border-radius: 20px;
    }

    .industry-card-content {
        padding-top: 42px;
    }

    .industry-card h3 {
        font-size: 25px;
    }

    .industry-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .industry-card-link {
        margin-top: 20px;
        font-size: 12px;
    }

    .journey-card {
        padding: 23px;
        border-radius: 19px;
    }

    .industry-solution-item {
        grid-template-columns: 50px minmax(0, 1fr) 25px;
        gap: 14px;
        padding: 22px 3px;
    }

    .industry-solution-icon {
        width: 42px;
        height: 42px;
        border-radius: 11px;
    }

    .industry-solution-item h3 {
        font-size: 16px;
    }

    .industry-solution-item p {
        font-size: 13px;
    }

    .industry-solution-item > span {
        font-size: 16px;
    }

    .industries-why {
        padding: 85px 0;
    }

    .industries-why-content h2 {
        font-size: clamp(35px, 9vw, 48px);
    }

    .industries-why-content > p {
        font-size: 15px;
    }

    .why-business-item {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
        padding: 23px 0;
    }

    .why-business-item h3 {
        font-size: 16px;
    }

    .why-business-item p {
        font-size: 13px;
    }

}


@media (max-width: 480px) {

    .industries-hero-content h1 {
        font-size: 37px;
    }

    .industries-hero-panel {
        padding: 17px;
    }

    .industries-panel-footer {
        padding: 15px;
    }

    .industry-card {
        min-height: 350px;
    }

    .industry-card-label {
        font-size: 10px;
    }

    .industry-card h3 {
        font-size: 23px;
    }

    .industry-solution-item {
        grid-template-columns: 43px minmax(0, 1fr) 18px;
        gap: 11px;
    }

}

/* =========================================================
   INDUSTRIES - SECTION HEADING FIX
   Prevent global section-heading layout conflicts
========================================================= */

.industries-page .section-heading {
    display: block;
    width: 100%;
    grid-template-columns: none;
    grid-template-rows: none;
}

.industries-page .section-heading > * {
    grid-column: auto;
    grid-row: auto;
}

.industries-page .section-heading .eyebrow {
    display: block;
    width: fit-content;
    margin: 0 0 16px;
}

.industries-page .section-heading h2 {
    display: block;
    width: 100%;
    margin: 0 0 20px;
}

.industries-page .section-heading p {
    display: block;
    width: 100%;
    margin: 0;
}


/* =========================================================
   INTRO HEADING
========================================================= */

.industries-page .industries-intro-heading {
    display: block;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.industries-page .industries-intro-heading .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.industries-page .industries-intro-heading h2 {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.industries-page .industries-intro-heading p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   INDUSTRY LIST HEADING
========================================================= */

.industries-page .industries-list .section-heading,
.industries-page .industries-journey .section-heading,
.industries-page .industries-solutions .section-heading {
    display: block;
    max-width: 760px;
    text-align: left;
}

.industries-page .industries-list .section-heading .eyebrow,
.industries-page .industries-journey .section-heading .eyebrow,
.industries-page .industries-solutions .section-heading .eyebrow {
    margin-left: 0;
    margin-right: 0;
}

.industries-page .industries-list .section-heading h2,
.industries-page .industries-journey .section-heading h2,
.industries-page .industries-solutions .section-heading h2 {
    max-width: 760px;
}

.industries-page .industries-list .section-heading p,
.industries-page .industries-journey .section-heading p,
.industries-page .industries-solutions .section-heading p {
    max-width: 680px;
}


/* =========================================================
   MOBILE HEADING FIX
========================================================= */

@media (max-width: 700px) {

    .industries-page .section-heading {
        display: block;
    }

    .industries-page .section-heading .eyebrow {
        display: block;
        margin-bottom: 13px;
    }

    .industries-page .section-heading h2 {
        display: block;
        margin-bottom: 16px;
    }

    .industries-page .section-heading p {
        display: block;
    }

    .industries-page .industries-intro-heading {
        text-align: center;
    }

    .industries-page .industries-intro-heading .eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .industries-page .industries-list .section-heading,
    .industries-page .industries-journey .section-heading,
    .industries-page .industries-solutions .section-heading {
        text-align: left;
    }

}

/* =========================================================
   SMALL BUSINESS PAGE
========================================================= */

.small-business-page {
    overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.small-business-hero {
    padding: 120px 0 105px;
    background:
        radial-gradient(circle at 84% 18%, rgba(76, 91, 255, 0.10), transparent 34%),
        radial-gradient(circle at 8% 82%, rgba(0, 190, 255, 0.07), transparent 28%),
        #ffffff;
}

.small-business-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    align-items: center;
    gap: 80px;
}

.small-business-hero-content {
    max-width: 700px;
}

.small-business-hero-content h1 {
    margin: 18px 0 25px;
    font-size: clamp(46px, 5vw, 72px);
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.small-business-hero-description {
    max-width: 640px;
    margin: 0;
    color: #687386;
    font-size: 18px;
    line-height: 1.8;
}

.small-business-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}

.small-business-hero-visual {
    display: flex;
    justify-content: flex-end;
}


/* =========================================================
   BUSINESS PRESENCE VISUAL
========================================================= */

.business-presence-card {
    width: 100%;
    max-width: 530px;
    padding: 25px;
    border: 1px solid rgba(18, 38, 63, 0.08);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 30px 80px rgba(24, 39, 75, 0.10),
        0 8px 24px rgba(24, 39, 75, 0.05);
}

.business-presence-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.business-presence-top > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.business-presence-top > div:first-child span {
    color: #8a93a2;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.business-presence-top strong {
    color: #172033;
    font-size: 14px;
    font-weight: 600;
}

.business-presence-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #657184;
    font-size: 11px;
    font-weight: 500;
}

.business-presence-live > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #29b67d;
    box-shadow: 0 0 0 4px rgba(41, 182, 125, 0.10);
}

.business-browser {
    overflow: hidden;
    border: 1px solid #e6e9ef;
    border-radius: 17px;
    background: #ffffff;
}

.browser-top {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 38px;
    padding: 0 13px;
    border-bottom: 1px solid #edf0f4;
    background: #f8f9fb;
}

.browser-dots {
    display: flex;
    align-items: center;
    gap: 5px;
}

.browser-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c9ced7;
}

.browser-address {
    flex: 1;
    padding: 6px 12px;
    border-radius: 7px;
    background: #ffffff;
    color: #8b94a3;
    font-size: 9px;
}

.browser-content {
    min-height: 280px;
    padding: 25px;
    background:
        radial-gradient(circle at 82% 30%, rgba(78, 92, 255, 0.08), transparent 35%),
        #ffffff;
}

.browser-brand {
    display: flex;
    align-items: center;
    gap: 9px;
}

.browser-brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #172033;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
}

.browser-brand div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.browser-brand strong {
    color: #263247;
    font-size: 10px;
    font-weight: 700;
}

.browser-brand span {
    color: #9aa2af;
    font-size: 7px;
}

.browser-heading {
    margin-top: 48px;
}

.browser-heading span {
    display: block;
    margin-bottom: 8px;
    color: #5365e9;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.browser-heading strong {
    display: block;
    color: #172033;
    font-size: 27px;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.browser-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 17px;
}

.browser-lines span {
    display: block;
    height: 5px;
    border-radius: 5px;
    background: #edf0f5;
}

.browser-lines span:first-child {
    width: 72%;
}

.browser-lines span:nth-child(2) {
    width: 56%;
}

.browser-lines span:nth-child(3) {
    width: 42%;
}

.browser-buttons {
    display: flex;
    gap: 7px;
    margin-top: 19px;
}

.browser-buttons span {
    padding: 7px 11px;
    border-radius: 6px;
    background: #eef2ff;
    color: #4b5ee8;
    font-size: 7px;
    font-weight: 600;
}

.browser-buttons span:last-child {
    background: #f5f6f8;
    color: #7b8493;
}

.business-presence-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 14px;
}

.business-presence-bottom > div {
    padding: 13px 12px;
    border-radius: 11px;
    background: #f7f8fb;
}

.business-presence-bottom span {
    display: block;
    margin-bottom: 4px;
    color: #929aa8;
    font-size: 8px;
}

.business-presence-bottom strong {
    color: #344054;
    font-size: 10px;
    line-height: 1.35;
}


/* =========================================================
   INTRO
========================================================= */

.small-business-intro {
    padding: 100px 0 110px;
    background: #ffffff;
}

.small-business-page .section-heading {
    display: block;
    width: 100%;
    grid-template-columns: none;
    grid-template-rows: none;
}

.small-business-page .section-heading > * {
    grid-column: auto;
    grid-row: auto;
}

.small-business-page .section-heading .eyebrow {
    display: block;
    width: fit-content;
    margin: 0 0 16px;
}

.small-business-page .section-heading h2 {
    display: block;
    width: 100%;
}

.small-business-page .section-heading p {
    display: block;
    width: 100%;
}

.small-business-intro-heading {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.small-business-intro-heading .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.small-business-intro-heading h2 {
    margin: 0 0 22px;
    font-size: clamp(38px, 4vw, 57px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.small-business-intro-heading p {
    max-width: 730px;
    margin: 0 auto;
    color: #6e7889;
    font-size: 17px;
    line-height: 1.85;
}


/* =========================================================
   CHALLENGES
========================================================= */

.small-business-challenges {
    padding: 110px 0 120px;
}

.small-business-challenges > .container > .section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.small-business-challenges .section-heading h2,
.small-business-solutions .section-heading h2,
.small-business-fit .section-heading h2 {
    margin: 0 0 18px;
    font-size: clamp(38px, 4vw, 55px);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.small-business-challenges .section-heading p,
.small-business-solutions .section-heading p,
.small-business-fit .section-heading p {
    max-width: 680px;
    margin: 0;
    color: #707b8d;
    font-size: 15px;
    line-height: 1.8;
}

.small-business-challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.business-challenge-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 22px;
    min-height: 190px;
    padding: 27px;
    border: 1px solid #e7eaf0;
    border-radius: 21px;
    background: #ffffff;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.business-challenge-card:hover {
    transform: translateY(-4px);
    border-color: rgba(72, 91, 255, 0.15);
    box-shadow: 0 20px 50px rgba(24, 39, 75, 0.07);
}

.business-challenge-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f5f7fb;
    color: #778194;
    font-size: 11px;
    font-weight: 700;
}

.business-challenge-card h3 {
    margin: 2px 0 10px;
    color: #172033;
    font-size: 19px;
    line-height: 1.3;
}

.business-challenge-card p {
    margin: 0;
    color: #707b8d;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   SOLUTIONS
========================================================= */

.small-business-solutions {
    padding: 110px 0 120px;
    background: #ffffff;
}

.small-business-solutions > .container > .section-heading {
    max-width: 780px;
    margin-bottom: 52px;
}

.small-business-solutions-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e5e8ee;
}

.small-business-solution {
    display: grid;
    grid-template-columns: 55px minmax(0, 1fr) 35px;
    align-items: center;
    gap: 22px;
    padding: 27px 8px;
    border-bottom: 1px solid #e5e8ee;
    color: inherit;
    text-decoration: none;
    transition:
        padding-left 0.3s ease,
        background 0.3s ease;
}

.small-business-solution:hover {
    padding-left: 18px;
    background: #fafbfc;
}

.small-business-solution-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f5f7fb;
    color: #798394;
    font-size: 11px;
    font-weight: 700;
}

.small-business-solution-content > span {
    display: block;
    margin-bottom: 6px;
    color: #8b94a3;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.small-business-solution-content h3 {
    margin: 0 0 7px;
    color: #172033;
    font-size: 19px;
    line-height: 1.3;
}

.small-business-solution-content p {
    max-width: 730px;
    margin: 0;
    color: #707b8d;
    font-size: 14px;
    line-height: 1.7;
}

.small-business-solution-arrow {
    color: #4d5aff;
    font-size: 19px;
    text-align: center;
    transition: transform 0.3s ease;
}

.small-business-solution:hover .small-business-solution-arrow {
    transform: translateX(5px);
}


/* =========================================================
   BUSINESS VALUE
========================================================= */

.small-business-value {
    padding: 120px 0;
}

.small-business-value-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 95px;
    align-items: start;
}

.small-business-value-intro {
    max-width: 510px;
}

.small-business-value-intro h2 {
    margin: 16px 0 20px;
    font-size: clamp(38px, 4vw, 55px);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.small-business-value-intro > p {
    margin: 0;
    color: #707b8d;
    font-size: 15px;
    line-height: 1.8;
}

.small-business-value-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e5e8ee;
}

.small-business-value-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 20px;
    padding: 27px 0;
    border-bottom: 1px solid #e5e8ee;
}

.small-business-value-number {
    color: #9aa3b2;
    font-size: 11px;
    font-weight: 700;
}

.small-business-value-item h3 {
    margin: 0 0 8px;
    color: #172033;
    font-size: 18px;
    line-height: 1.3;
}

.small-business-value-item p {
    max-width: 580px;
    margin: 0;
    color: #707b8d;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   BUSINESS FIT
========================================================= */

.small-business-fit {
    padding: 110px 0 120px;
    background: #ffffff;
}

.small-business-fit > .container > .section-heading {
    max-width: 790px;
    margin-bottom: 52px;
}

.small-business-fit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.small-business-fit-card {
    min-height: 235px;
    padding: 25px;
    border: 1px solid #e7eaf0;
    border-radius: 20px;
    background: #ffffff;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.small-business-fit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(24, 39, 75, 0.07);
}

.small-business-fit-card > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 43px;
    border-radius: 11px;
    background: #f5f7fb;
    color: #7b8494;
    font-size: 11px;
    font-weight: 700;
}

.small-business-fit-card h3 {
    margin: 0 0 10px;
    color: #172033;
    font-size: 17px;
    line-height: 1.3;
}

.small-business-fit-card p {
    margin: 0;
    color: #707b8d;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   NEXT STEP
========================================================= */

.small-business-next {
    padding: 90px 0;
}

.small-business-next-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    align-items: center;
    gap: 90px;
}

.small-business-next-grid h2 {
    margin: 16px 0 0;
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.small-business-next-grid > div:last-child {
    max-width: 500px;
}

.small-business-next-grid p {
    margin: 0;
    color: #707b8d;
    font-size: 15px;
    line-height: 1.8;
}

.small-business-next-grid .btn {
    margin-top: 27px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .small-business-hero {
        padding: 100px 0 85px;
    }

    .small-business-hero-grid {
        gap: 55px;
    }

    .small-business-hero-content h1 {
        font-size: clamp(42px, 5vw, 62px);
    }

    .small-business-value-grid {
        gap: 60px;
    }

    .small-business-next-grid {
        gap: 55px;
    }

    .small-business-fit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 900px) {

    .small-business-hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .small-business-hero-visual {
        justify-content: flex-start;
    }

    .business-presence-card {
        max-width: 650px;
    }

    .small-business-value-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .small-business-value-intro {
        max-width: 700px;
    }

    .small-business-next-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

}


@media (max-width: 700px) {

    .small-business-hero {
        padding: 75px 0 70px;
    }

    .small-business-hero-content h1 {
        margin-top: 15px;
        margin-bottom: 20px;
        font-size: clamp(38px, 10vw, 51px);
    }

    .small-business-hero-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .small-business-hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 28px;
    }

    .small-business-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .business-presence-card {
        padding: 19px;
        border-radius: 20px;
    }

    .business-presence-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .browser-content {
        min-height: 245px;
        padding: 20px;
    }

    .browser-heading {
        margin-top: 38px;
    }

    .browser-heading strong {
        font-size: 23px;
    }

    .business-presence-bottom {
        grid-template-columns: 1fr;
    }

    .small-business-intro {
        padding: 75px 0 80px;
    }

    .small-business-intro-heading h2 {
        font-size: clamp(34px, 9vw, 46px);
    }

    .small-business-intro-heading p {
        font-size: 15px;
        line-height: 1.75;
    }

    .small-business-challenges,
    .small-business-solutions,
    .small-business-fit {
        padding: 80px 0;
    }

    .small-business-challenges > .container > .section-heading,
    .small-business-solutions > .container > .section-heading,
    .small-business-fit > .container > .section-heading {
        margin-bottom: 38px;
    }

    .small-business-page .section-heading .eyebrow {
        margin-bottom: 13px;
    }

    .small-business-challenges .section-heading h2,
    .small-business-solutions .section-heading h2,
    .small-business-fit .section-heading h2 {
        font-size: clamp(34px, 9vw, 46px);
    }

    .small-business-challenges-grid {
        grid-template-columns: 1fr;
    }

    .business-challenge-card {
        min-height: auto;
        padding: 22px;
        border-radius: 18px;
    }

    .small-business-solution {
        grid-template-columns: 45px minmax(0, 1fr) 20px;
        gap: 13px;
        padding: 22px 3px;
    }

    .small-business-solution-number {
        width: 40px;
        height: 40px;
    }

    .small-business-solution-content h3 {
        font-size: 16px;
    }

    .small-business-solution-content p {
        font-size: 13px;
    }

    .small-business-solution-arrow {
        font-size: 16px;
    }

    .small-business-value {
        padding: 85px 0;
    }

    .small-business-value-intro h2 {
        font-size: clamp(35px, 9vw, 48px);
    }

    .small-business-value-item {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
        padding: 23px 0;
    }

    .small-business-value-item h3 {
        font-size: 16px;
    }

    .small-business-value-item p {
        font-size: 13px;
    }

    .small-business-fit-grid {
        grid-template-columns: 1fr;
    }

    .small-business-fit-card {
        min-height: auto;
        padding: 22px;
        border-radius: 18px;
    }

    .small-business-fit-card > span {
        margin-bottom: 30px;
    }

    .small-business-next {
        padding: 75px 0;
    }

    .small-business-next-grid {
        gap: 30px;
    }

    .small-business-next-grid h2 {
        font-size: clamp(36px, 9vw, 49px);
    }

}


@media (max-width: 480px) {

    .small-business-hero-content h1 {
        font-size: 37px;
    }

    .business-presence-card {
        padding: 16px;
    }

    .browser-content {
        min-height: 230px;
    }

    .browser-heading strong {
        font-size: 21px;
    }

    .small-business-challenges .section-heading h2,
    .small-business-solutions .section-heading h2,
    .small-business-fit .section-heading h2 {
        font-size: 34px;
    }

}

/* =========================================================
   ONLINE SELLERS PAGE
========================================================= */

.online-sellers-page {
    overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.online-sellers-hero {
    padding: 120px 0 105px;
    background:
        radial-gradient(circle at 84% 18%, rgba(76, 91, 255, 0.10), transparent 34%),
        radial-gradient(circle at 8% 82%, rgba(0, 190, 255, 0.07), transparent 28%),
        #ffffff;
}

.online-sellers-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    align-items: center;
    gap: 80px;
}

.online-sellers-hero-content {
    max-width: 710px;
}

.online-sellers-hero-content h1 {
    margin: 18px 0 25px;
    font-size: clamp(46px, 5vw, 72px);
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.online-sellers-hero-description {
    max-width: 650px;
    margin: 0;
    color: #687386;
    font-size: 18px;
    line-height: 1.8;
}

.online-sellers-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}

.online-sellers-hero-visual {
    display: flex;
    justify-content: flex-end;
}


/* =========================================================
   STORE VISUAL
========================================================= */

.seller-store-card {
    width: 100%;
    max-width: 535px;
    padding: 25px;
    border: 1px solid rgba(18, 38, 63, 0.08);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 30px 80px rgba(24, 39, 75, 0.10),
        0 8px 24px rgba(24, 39, 75, 0.05);
}

.seller-store-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.seller-store-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.seller-store-brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: #172033;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
}

.seller-store-brand div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.seller-store-brand strong {
    color: #263247;
    font-size: 12px;
    font-weight: 700;
}

.seller-store-brand span {
    color: #929aa8;
    font-size: 8px;
}

.seller-store-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: #f5f7fb;
}

.seller-store-cart > span {
    position: relative;
    width: 12px;
    height: 10px;
    border: 1.5px solid #697487;
    border-top: 0;
    transform: skew(-8deg);
}

.seller-store-cart > span::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -3px;
    width: 7px;
    height: 4px;
    border-top: 1.5px solid #697487;
}

.seller-store-cart > span::after {
    content: "";
    position: absolute;
    left: 1px;
    bottom: -5px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #697487;
    box-shadow: 7px 0 0 #697487;
}

.seller-store-cart strong {
    position: absolute;
    top: -5px;
    right: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #4d5aff;
    color: #ffffff;
    font-size: 7px;
    font-weight: 700;
}

.seller-store-search {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 35px;
    padding: 0 12px;
    border: 1px solid #e9ecf1;
    border-radius: 9px;
    background: #fafbfc;
    color: #9aa2af;
    font-size: 9px;
}

.seller-store-search span:first-child {
    color: #657184;
    font-size: 15px;
    line-height: 1;
}

.seller-store-category-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 17px 0 14px;
    overflow-x: auto;
    scrollbar-width: none;
}

.seller-store-category-row::-webkit-scrollbar {
    display: none;
}

.seller-store-category-row span {
    flex: 0 0 auto;
    padding: 6px 11px;
    border-radius: 7px;
    background: #f5f7fa;
    color: #7d8796;
    font-size: 8px;
    font-weight: 600;
}

.seller-store-category-row span.active {
    background: #172033;
    color: #ffffff;
}

.seller-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}

.seller-product {
    overflow: hidden;
    border: 1px solid #edf0f4;
    border-radius: 12px;
    background: #ffffff;
}

.seller-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 105px;
    background:
        radial-gradient(circle at 50% 40%, rgba(78, 92, 255, 0.13), transparent 55%),
        #f5f7fb;
}

.seller-product-image span {
    color: #a2a9b5;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.seller-product-image.product-alt {
    background:
        radial-gradient(circle at 50% 40%, rgba(0, 185, 220, 0.12), transparent 55%),
        #f5f7fb;
}

.seller-product-image.product-third {
    background:
        radial-gradient(circle at 50% 40%, rgba(130, 80, 255, 0.10), transparent 55%),
        #f5f7fb;
}

.seller-product-image.product-fourth {
    background:
        radial-gradient(circle at 50% 40%, rgba(45, 170, 125, 0.10), transparent 55%),
        #f5f7fb;
}

.seller-product-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 11px;
}

.seller-product-info strong {
    color: #344054;
    font-size: 9px;
    font-weight: 600;
}

.seller-product-info span {
    color: #5365e9;
    font-size: 9px;
    font-weight: 700;
}

.seller-store-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 13px;
}

.seller-store-footer > div {
    padding: 12px;
    border-radius: 10px;
    background: #f7f8fb;
}

.seller-store-footer span {
    display: block;
    margin-bottom: 4px;
    color: #929aa8;
    font-size: 8px;
}

.seller-store-footer strong {
    color: #344054;
    font-size: 10px;
    line-height: 1.35;
}


/* =========================================================
   SECTION HEADING FIX
========================================================= */

.online-sellers-page .section-heading {
    display: block;
    width: 100%;
    grid-template-columns: none;
    grid-template-rows: none;
}

.online-sellers-page .section-heading > * {
    grid-column: auto;
    grid-row: auto;
}

.online-sellers-page .section-heading .eyebrow {
    display: block;
    width: fit-content;
    margin: 0 0 16px;
}

.online-sellers-page .section-heading h2 {
    display: block;
    width: 100%;
}

.online-sellers-page .section-heading p {
    display: block;
    width: 100%;
}


/* =========================================================
   INTRO
========================================================= */

.online-sellers-intro {
    padding: 100px 0 110px;
    background: #ffffff;
}

.online-sellers-intro-heading {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.online-sellers-intro-heading .eyebrow {
    margin-left: auto !important;
    margin-right: auto !important;
}

.online-sellers-intro-heading h2 {
    margin: 0 0 22px;
    font-size: clamp(38px, 4vw, 57px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.online-sellers-intro-heading p {
    max-width: 730px;
    margin: 0 auto;
    color: #6e7889;
    font-size: 17px;
    line-height: 1.85;
}


/* =========================================================
   CHALLENGES
========================================================= */

.online-sellers-challenges {
    padding: 110px 0 120px;
}

.online-sellers-challenges > .container > .section-heading {
    max-width: 770px;
    margin-bottom: 55px;
}

.online-sellers-challenges .section-heading h2,
.online-sellers-solutions .section-heading h2,
.online-sellers-fit .section-heading h2 {
    margin: 0 0 18px;
    font-size: clamp(38px, 4vw, 55px);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.online-sellers-challenges .section-heading p,
.online-sellers-solutions .section-heading p,
.online-sellers-fit .section-heading p {
    max-width: 680px;
    margin: 0;
    color: #707b8d;
    font-size: 15px;
    line-height: 1.8;
}

.online-sellers-challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.seller-challenge-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 22px;
    min-height: 190px;
    padding: 27px;
    border: 1px solid #e7eaf0;
    border-radius: 21px;
    background: #ffffff;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.seller-challenge-card:hover {
    transform: translateY(-4px);
    border-color: rgba(72, 91, 255, 0.15);
    box-shadow: 0 20px 50px rgba(24, 39, 75, 0.07);
}

.seller-challenge-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f5f7fb;
    color: #778194;
    font-size: 11px;
    font-weight: 700;
}

.seller-challenge-card h3 {
    margin: 2px 0 10px;
    color: #172033;
    font-size: 19px;
    line-height: 1.3;
}

.seller-challenge-card p {
    margin: 0;
    color: #707b8d;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   SOLUTIONS
========================================================= */

.online-sellers-solutions {
    padding: 110px 0 120px;
    background: #ffffff;
}

.online-sellers-solutions > .container > .section-heading {
    max-width: 790px;
    margin-bottom: 52px;
}

.online-sellers-solutions-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e5e8ee;
}

.online-seller-solution {
    display: grid;
    grid-template-columns: 55px minmax(0, 1fr) 35px;
    align-items: center;
    gap: 22px;
    padding: 27px 8px;
    border-bottom: 1px solid #e5e8ee;
    color: inherit;
    text-decoration: none;
    transition:
        padding-left 0.3s ease,
        background 0.3s ease;
}

.online-seller-solution:hover {
    padding-left: 18px;
    background: #fafbfc;
}

.online-seller-solution-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f5f7fb;
    color: #798394;
    font-size: 11px;
    font-weight: 700;
}

.online-seller-solution-content > span {
    display: block;
    margin-bottom: 6px;
    color: #8b94a3;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.online-seller-solution-content h3 {
    margin: 0 0 7px;
    color: #172033;
    font-size: 19px;
    line-height: 1.3;
}

.online-seller-solution-content p {
    max-width: 730px;
    margin: 0;
    color: #707b8d;
    font-size: 14px;
    line-height: 1.7;
}

.online-seller-solution-arrow {
    color: #4d5aff;
    font-size: 19px;
    text-align: center;
    transition: transform 0.3s ease;
}

.online-seller-solution:hover .online-seller-solution-arrow {
    transform: translateX(5px);
}


/* =========================================================
   CUSTOMER JOURNEY
========================================================= */

.online-sellers-journey {
    padding: 110px 0 120px;
}

.online-sellers-journey > .container > .section-heading {
    max-width: 800px;
    margin-bottom: 55px;
}

.seller-journey-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.seller-journey-card {
    min-height: 275px;
    padding: 25px;
    border: 1px solid #e7eaf0;
    border-radius: 20px;
    background: #ffffff;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.seller-journey-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(24, 39, 75, 0.07);
}

.seller-journey-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 43px;
    border-radius: 11px;
    background: #f5f7fb;
    color: #7b8494;
    font-size: 11px;
    font-weight: 700;
}

.seller-journey-card h3 {
    margin: 0 0 10px;
    color: #172033;
    font-size: 18px;
    line-height: 1.3;
}

.seller-journey-card p {
    margin: 0;
    color: #707b8d;
    font-size: 13px;
    line-height: 1.7;
}

.seller-journey-card > span {
    display: block;
    margin-top: 18px;
    color: #929aa8;
    font-size: 9px;
    line-height: 1.5;
}


/* =========================================================
   BUSINESS VALUE
========================================================= */

.online-sellers-value {
    padding: 120px 0;
    background: #ffffff;
}

.online-sellers-value-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 95px;
    align-items: start;
}

.online-sellers-value-intro {
    max-width: 510px;
}

.online-sellers-value-intro h2 {
    margin: 16px 0 20px;
    font-size: clamp(38px, 4vw, 55px);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.online-sellers-value-intro > p {
    margin: 0;
    color: #707b8d;
    font-size: 15px;
    line-height: 1.8;
}

.online-sellers-value-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e5e8ee;
}

.online-seller-value-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 20px;
    padding: 27px 0;
    border-bottom: 1px solid #e5e8ee;
}

.online-seller-value-number {
    color: #9aa3b2;
    font-size: 11px;
    font-weight: 700;
}

.online-seller-value-item h3 {
    margin: 0 0 8px;
    color: #172033;
    font-size: 18px;
    line-height: 1.3;
}

.online-seller-value-item p {
    max-width: 580px;
    margin: 0;
    color: #707b8d;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   SELLER FIT
========================================================= */

.online-sellers-fit {
    padding: 110px 0 120px;
}

.online-sellers-fit > .container > .section-heading {
    max-width: 790px;
    margin-bottom: 52px;
}

.online-sellers-fit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.online-seller-fit-card {
    min-height: 245px;
    padding: 25px;
    border: 1px solid #e7eaf0;
    border-radius: 20px;
    background: #ffffff;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.online-seller-fit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(24, 39, 75, 0.07);
}

.online-seller-fit-card > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 43px;
    border-radius: 11px;
    background: #f5f7fb;
    color: #7b8494;
    font-size: 11px;
    font-weight: 700;
}

.online-seller-fit-card h3 {
    margin: 0 0 10px;
    color: #172033;
    font-size: 17px;
    line-height: 1.3;
}

.online-seller-fit-card p {
    margin: 0;
    color: #707b8d;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   NEXT STEP
========================================================= */

.online-sellers-next {
    padding: 90px 0;
    background: #ffffff;
}

.online-sellers-next-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    align-items: center;
    gap: 90px;
}

.online-sellers-next-grid h2 {
    margin: 16px 0 0;
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.online-sellers-next-grid > div:last-child {
    max-width: 500px;
}

.online-sellers-next-grid p {
    margin: 0;
    color: #707b8d;
    font-size: 15px;
    line-height: 1.8;
}

.online-sellers-next-grid .btn {
    margin-top: 27px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .online-sellers-hero {
        padding: 100px 0 85px;
    }

    .online-sellers-hero-grid {
        gap: 55px;
    }

    .online-sellers-hero-content h1 {
        font-size: clamp(42px, 5vw, 62px);
    }

    .online-sellers-value-grid {
        gap: 60px;
    }

    .online-sellers-next-grid {
        gap: 55px;
    }

    .seller-journey-grid,
    .online-sellers-fit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 900px) {

    .online-sellers-hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .online-sellers-hero-visual {
        justify-content: flex-start;
    }

    .seller-store-card {
        max-width: 650px;
    }

    .online-sellers-value-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .online-sellers-value-intro {
        max-width: 700px;
    }

    .online-sellers-next-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

}


@media (max-width: 700px) {

    .online-sellers-hero {
        padding: 75px 0 70px;
    }

    .online-sellers-hero-content h1 {
        margin-top: 15px;
        margin-bottom: 20px;
        font-size: clamp(38px, 10vw, 51px);
    }

    .online-sellers-hero-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .online-sellers-hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 28px;
    }

    .online-sellers-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .seller-store-card {
        padding: 19px;
        border-radius: 20px;
    }

    .seller-store-footer {
        grid-template-columns: 1fr;
    }

    .seller-product-image {
        height: 90px;
    }

    .online-sellers-intro {
        padding: 75px 0 80px;
    }

    .online-sellers-intro-heading h2 {
        font-size: clamp(34px, 9vw, 46px);
    }

    .online-sellers-intro-heading p {
        font-size: 15px;
        line-height: 1.75;
    }

    .online-sellers-challenges,
    .online-sellers-solutions,
    .online-sellers-journey,
    .online-sellers-fit {
        padding: 80px 0;
    }

    .online-sellers-challenges > .container > .section-heading,
    .online-sellers-solutions > .container > .section-heading,
    .online-sellers-journey > .container > .section-heading,
    .online-sellers-fit > .container > .section-heading {
        margin-bottom: 38px;
    }

    .online-sellers-page .section-heading .eyebrow {
        margin-bottom: 13px;
    }

    .online-sellers-challenges .section-heading h2,
    .online-sellers-solutions .section-heading h2,
    .online-sellers-fit .section-heading h2 {
        font-size: clamp(34px, 9vw, 46px);
    }

    .online-sellers-challenges-grid {
        grid-template-columns: 1fr;
    }

    .seller-challenge-card {
        min-height: auto;
        padding: 22px;
        border-radius: 18px;
    }

    .online-seller-solution {
        grid-template-columns: 45px minmax(0, 1fr) 20px;
        gap: 13px;
        padding: 22px 3px;
    }

    .online-seller-solution-number {
        width: 40px;
        height: 40px;
    }

    .online-seller-solution-content h3 {
        font-size: 16px;
    }

    .online-seller-solution-content p {
        font-size: 13px;
    }

    .online-seller-solution-arrow {
        font-size: 16px;
    }

    .seller-journey-grid,
    .online-sellers-fit-grid {
        grid-template-columns: 1fr;
    }

    .seller-journey-card {
        min-height: auto;
        padding: 22px;
        border-radius: 18px;
    }

    .seller-journey-number {
        margin-bottom: 30px;
    }

    .online-sellers-value {
        padding: 85px 0;
    }

    .online-sellers-value-intro h2 {
        font-size: clamp(35px, 9vw, 48px);
    }

    .online-seller-value-item {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
        padding: 23px 0;
    }

    .online-seller-value-item h3 {
        font-size: 16px;
    }

    .online-seller-value-item p {
        font-size: 13px;
    }

    .online-seller-fit-card {
        min-height: auto;
        padding: 22px;
        border-radius: 18px;
    }

    .online-seller-fit-card > span {
        margin-bottom: 30px;
    }

    .online-sellers-next {
        padding: 75px 0;
    }

    .online-sellers-next-grid {
        gap: 30px;
    }

    .online-sellers-next-grid h2 {
        font-size: clamp(36px, 9vw, 49px);
    }

}


@media (max-width: 480px) {

    .online-sellers-hero-content h1 {
        font-size: 37px;
    }

    .seller-store-card {
        padding: 16px;
    }

    .seller-product-grid {
        gap: 8px;
    }

    .seller-product-image {
        height: 80px;
    }

    .online-sellers-challenges .section-heading h2,
    .online-sellers-solutions .section-heading h2,
    .online-sellers-fit .section-heading h2 {
        font-size: 34px;
    }

}

/* =========================================================
   STARTUPS PAGE
   ========================================================= */

.startups-page {
    overflow: hidden;
}


/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */

.startups-page .page-hero {
    position: relative;
}

.startups-page .page-hero-content h1 span,
.startups-page .section-heading h2 span,
.startups-page .next-step-box h2 span {
    display: inline;
}

.startups-page .page-hero-visual {
    position: relative;
}

.startup-visual {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.startup-window {
    position: relative;
    width: min(100%, 590px);
    background: #ffffff;
    border: 1px solid rgba(20, 35, 70, 0.10);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(23, 36, 75, 0.14);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.startup-window-top {
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-bottom: 1px solid rgba(20, 35, 70, 0.08);
    background: #f8faff;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c9d0dc;
}

.window-label {
    font-size: 11px;
    font-weight: 600;
    color: #8791a4;
    letter-spacing: 0.03em;
}

.startup-window-body {
    padding: 22px 26px 24px;
}

.startup-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.startup-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    color: #172544;
    letter-spacing: 0.08em;
}

.brand-mark {
    width: 17px;
    height: 17px;
    border-radius: 5px;
    background: linear-gradient(135deg, #18b9e8, #6557e8);
}

.startup-nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 10px;
    color: #8992a5;
}

.startup-nav-button {
    padding: 8px 12px;
    border-radius: 7px;
    background: #172544;
    color: #ffffff;
    font-size: 9px;
    font-weight: 600;
}

.startup-main {
    padding: 62px 20px 48px;
    text-align: center;
}

.startup-small-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #635ce7;
}

.startup-main h2 {
    max-width: 430px;
    margin: 0 auto 14px;
    font-size: clamp(27px, 4vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.045em;
    color: #172544;
}

.startup-main h2 strong {
    display: block;
    font-weight: 700;
    background: linear-gradient(90deg, #13b9e7, #6656e8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.startup-main p {
    max-width: 330px;
    margin: 0 auto;
    color: #7d8799;
    font-size: 12px;
    line-height: 1.7;
}

.startup-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 24px;
}

.startup-primary-action {
    padding: 10px 15px;
    border-radius: 7px;
    background: #172544;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
}

.startup-secondary-action {
    color: #667085;
    font-size: 10px;
    font-weight: 600;
}

.startup-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(20, 35, 70, 0.08);
    padding-top: 18px;
}

.startup-metrics div {
    text-align: center;
    border-right: 1px solid rgba(20, 35, 70, 0.07);
}

.startup-metrics div:last-child {
    border-right: 0;
}

.startup-metrics strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    color: #172544;
}

.startup-metrics span {
    font-size: 9px;
    color: #9199a9;
}

.startup-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 16px;
    background: #ffffff;
    border: 1px solid rgba(20, 35, 70, 0.08);
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(23, 36, 75, 0.12);
    z-index: 2;
}

.startup-floating-card-one {
    left: -12px;
    top: 72px;
}

.startup-floating-card-two {
    right: -10px;
    bottom: 72px;
}

.floating-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #eef8ff;
    color: #1ab9e8;
    font-size: 16px;
}

.floating-status {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #35c991;
    box-shadow: 0 0 0 5px rgba(53, 201, 145, 0.12);
}

.startup-floating-card strong {
    display: block;
    margin-bottom: 3px;
    font-size: 11px;
    color: #172544;
}

.startup-floating-card small {
    display: block;
    font-size: 9px;
    color: #8a93a4;
}


/* ---------------------------------------------------------
   Intro
   --------------------------------------------------------- */

.startups-page .startups-intro {
    padding-top: 105px;
    padding-bottom: 105px;
}

.startups-page .startups-intro-heading {
    display: block;
    width: 100%;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.startups-page .startups-intro-heading .eyebrow {
    display: block;
    width: fit-content;
    margin: 0 auto 16px;
}

.startups-page .startups-intro-heading h2,
.startups-page .startups-intro-heading p {
    display: block;
    width: 100%;
}


/* ---------------------------------------------------------
   Challenges
   --------------------------------------------------------- */

.startups-page .startups-challenges {
    padding-top: 110px;
    padding-bottom: 110px;
}

.startups-page .section-heading {
    display: block;
    width: 100%;
    grid-template-columns: none;
    grid-template-rows: none;
}

.startups-page .section-heading > * {
    grid-column: auto;
    grid-row: auto;
}

.startups-page .section-heading .eyebrow {
    display: block;
    width: fit-content;
    margin: 0 0 16px;
}

.startups-page .section-heading h2,
.startups-page .section-heading p {
    display: block;
    width: 100%;
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 55px;
    background: rgba(20, 35, 70, 0.10);
    border: 1px solid rgba(20, 35, 70, 0.10);
}

.challenge-card {
    position: relative;
    padding: 38px 36px 40px;
    background: #ffffff;
    min-height: 235px;
}

.challenge-number {
    display: block;
    margin-bottom: 35px;
    font-size: 11px;
    font-weight: 700;
    color: #665be7;
    letter-spacing: 0.08em;
}

.challenge-card h3 {
    margin: 0 0 12px;
    color: #172544;
    font-size: 21px;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.challenge-card p {
    max-width: 460px;
    margin: 0;
    color: #778196;
    font-size: 14px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   Solutions
   --------------------------------------------------------- */

.startups-page .startups-solutions {
    padding-top: 110px;
    padding-bottom: 110px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 55px;
}

.solution-card {
    position: relative;
    padding: 38px 36px 34px;
    background: #ffffff;
    border: 1px solid rgba(20, 35, 70, 0.09);
    border-radius: 16px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: rgba(101, 86, 232, 0.18);
    box-shadow: 0 18px 45px rgba(23, 36, 75, 0.09);
}

.solution-number {
    position: absolute;
    top: 28px;
    right: 30px;
    font-size: 10px;
    font-weight: 700;
    color: #a0a8b7;
}

.solution-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border-radius: 12px;
    background: #f1f7ff;
    color: #605be6;
    font-size: 20px;
}

.solution-card h3 {
    margin: 0 0 12px;
    color: #172544;
    font-size: 21px;
    letter-spacing: -0.025em;
}

.solution-card p {
    min-height: 76px;
    margin: 0 0 25px;
    color: #778196;
    font-size: 14px;
    line-height: 1.7;
}

.solution-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #172544;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.solution-card a span {
    transition: transform 0.25s ease;
}

.solution-card a:hover span {
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   Startup Journey
   --------------------------------------------------------- */

.startups-page .startups-journey {
    padding-top: 110px;
    padding-bottom: 110px;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 60px;
    border-top: 1px solid rgba(20, 35, 70, 0.10);
}

.journey-card {
    position: relative;
    padding: 35px 28px 15px 0;
}

.journey-card:not(:first-child) {
    padding-left: 28px;
    border-left: 1px solid rgba(20, 35, 70, 0.10);
}

.journey-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-bottom: 27px;
    border-radius: 50%;
    background: #f1f6ff;
    color: #605be6;
    font-size: 10px;
    font-weight: 700;
}

.journey-line {
    display: none;
}

.journey-card h3 {
    margin: 0 0 12px;
    color: #172544;
    font-size: 19px;
}

.journey-card p {
    margin: 0;
    color: #778196;
    font-size: 13px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   Business Value
   --------------------------------------------------------- */

.startups-page .startups-value {
    padding-top: 110px;
    padding-bottom: 110px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 55px;
}

.value-card {
    padding: 32px 28px;
    background: #ffffff;
    border: 1px solid rgba(20, 35, 70, 0.09);
    border-radius: 15px;
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 25px;
    border-radius: 10px;
    background: #f1f7ff;
    color: #605be6;
    font-size: 18px;
}

.value-card h3 {
    margin: 0 0 10px;
    color: #172544;
    font-size: 17px;
}

.value-card p {
    margin: 0;
    color: #778196;
    font-size: 13px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   Who We Help
   --------------------------------------------------------- */

.startups-page .startups-fit {
    padding-top: 110px;
    padding-bottom: 110px;
}

.fit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 55px;
}

.fit-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 20px;
    padding: 30px;
    border: 1px solid rgba(20, 35, 70, 0.09);
    border-radius: 14px;
    background: #ffffff;
}

.fit-card > span {
    grid-row: span 2;
    font-size: 11px;
    font-weight: 700;
    color: #665be7;
    padding-top: 3px;
}

.fit-card h3 {
    margin: 0 0 9px;
    color: #172544;
    font-size: 18px;
}

.fit-card p {
    margin: 0;
    color: #778196;
    font-size: 13px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   Next Step
   --------------------------------------------------------- */

.startups-page .startups-next-step {
    padding-top: 100px;
    padding-bottom: 100px;
}

.next-step-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 65px 70px;
    border-radius: 20px;
    background: #f4f7fc;
    border: 1px solid rgba(20, 35, 70, 0.07);
}

.next-step-box .eyebrow {
    display: block;
    margin-bottom: 15px;
}

.next-step-box h2 {
    max-width: 700px;
    margin: 0 0 18px;
    color: #172544;
}

.next-step-box p {
    max-width: 680px;
    margin: 0;
    color: #778196;
    font-size: 14px;
    line-height: 1.8;
}

.next-step-action {
    flex-shrink: 0;
}


/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

@media (max-width: 1100px) {

    .startup-visual {
        min-height: 450px;
    }

    .startup-floating-card-one {
        left: -5px;
    }

    .startup-floating-card-two {
        right: -5px;
    }

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

    .journey-card:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

    .journey-card:nth-child(4) {
        border-left: 1px solid rgba(20, 35, 70, 0.10);
    }

    .next-step-box {
        padding: 55px 50px;
    }
}


@media (max-width: 800px) {

    .startup-visual {
        min-height: auto;
        padding: 30px 10px 50px;
    }

    .startup-window {
        transform: none;
    }

    .startup-floating-card-one {
        left: 0;
        top: 15px;
    }

    .startup-floating-card-two {
        right: 0;
        bottom: 20px;
    }

    .startup-nav-links {
        display: none;
    }

    .challenge-grid,
    .solution-grid,
    .fit-grid {
        grid-template-columns: 1fr;
    }

    .challenge-card {
        min-height: auto;
    }

    .solution-card p {
        min-height: auto;
    }

    .value-grid {
        grid-template-columns: 1fr 1fr;
    }

    .next-step-box {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 600px) {

    .startups-page .startups-intro,
    .startups-page .startups-challenges,
    .startups-page .startups-solutions,
    .startups-page .startups-journey,
    .startups-page .startups-value,
    .startups-page .startups-fit {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .startup-window-body {
        padding: 18px 17px 20px;
    }

    .startup-main {
        padding: 45px 10px 35px;
    }

    .startup-main h2 {
        font-size: 28px;
    }

    .startup-actions {
        flex-direction: column;
        gap: 12px;
    }

    .startup-metrics {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 16px;
    }

    .startup-metrics div:nth-child(2) {
        border-right: 0;
    }

    .startup-floating-card {
        padding: 10px 12px;
    }

    .startup-floating-card strong {
        font-size: 10px;
    }

    .startup-floating-card small {
        font-size: 8px;
    }

    .floating-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .challenge-grid {
        margin-top: 40px;
    }

    .challenge-card {
        padding: 30px 25px;
    }

    .challenge-number {
        margin-bottom: 25px;
    }

    .solution-grid,
    .fit-grid {
        margin-top: 40px;
    }

    .solution-card {
        padding: 30px 25px;
    }

    .journey-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .journey-card,
    .journey-card:not(:first-child),
    .journey-card:nth-child(3),
    .journey-card:nth-child(4) {
        padding: 0 0 30px;
        border-left: 0;
        border-bottom: 1px solid rgba(20, 35, 70, 0.10);
    }

    .journey-card:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .value-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .fit-card {
        grid-template-columns: 34px 1fr;
        padding: 25px 22px;
        column-gap: 14px;
    }

    .startups-page .startups-next-step {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .next-step-box {
        padding: 40px 25px;
        gap: 30px;
    }

    .next-step-box p {
        font-size: 13px;
    }
}

/* =========================================================
   STARTUPS PAGE — HERO REFINED OVERRIDE
   Add at the very end of style.css
   ========================================================= */

.startups-page .page-hero {
    position: relative;
    padding-top: 95px;
    padding-bottom: 105px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 38%, rgba(94, 91, 232, 0.08), transparent 30%),
        radial-gradient(circle at 55% 75%, rgba(20, 190, 235, 0.055), transparent 28%),
        #ffffff;
}

.startups-page .page-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -220px;
    top: -190px;
    border-radius: 50%;
    background: rgba(92, 88, 232, 0.035);
    pointer-events: none;
}

.startups-page .page-hero::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    left: -220px;
    bottom: -180px;
    border-radius: 50%;
    background: rgba(20, 188, 232, 0.035);
    pointer-events: none;
}

.startups-page .page-hero .container {
    position: relative;
    z-index: 1;
}

.startups-page .page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 55px;
}

.startups-page .page-hero-content {
    position: relative;
    z-index: 3;
    padding-bottom: 10px;
}

.startups-page .page-hero-content .eyebrow {
    display: inline-flex;
    margin-bottom: 20px;
}

.startups-page .page-hero-content h1 {
    max-width: 650px;
    margin: 0 0 22px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.startups-page .page-hero-content h1 span {
    background: linear-gradient(90deg, #11b9e7 0%, #6558e8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.startups-page .page-hero-content > p {
    max-width: 570px;
    margin: 0 0 30px;
    color: #718097;
    font-size: 15px;
    line-height: 1.8;
}

.startups-page .page-hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
}

.startups-page .page-hero-actions .btn {
    min-height: 46px;
}


/* ---------------------------------------------------------
   Hero Visual
   --------------------------------------------------------- */

.startups-page .page-hero-visual {
    position: relative;
    min-width: 0;
}

.startups-page .startup-visual {
    position: relative;
    width: 100%;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 30px;
}

.startups-page .startup-window {
    width: min(100%, 625px);
    border-radius: 22px;
    box-shadow:
        0 35px 90px rgba(23, 36, 75, 0.14),
        0 8px 25px rgba(23, 36, 75, 0.06);
    transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.startups-page .startup-window:hover {
    transform: perspective(1400px) rotateY(0deg) rotateX(0deg) translateY(-4px);
    box-shadow:
        0 42px 100px rgba(23, 36, 75, 0.17),
        0 10px 28px rgba(23, 36, 75, 0.07);
}

.startups-page .startup-window-top {
    height: 48px;
    padding: 0 20px;
    background: #fafbfe;
}

.startups-page .startup-window-body {
    padding: 25px 30px 28px;
}

.startups-page .startup-nav {
    min-height: 28px;
}

.startups-page .startup-main {
    padding: 70px 25px 55px;
}

.startups-page .startup-main h2 {
    max-width: 475px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.startups-page .startup-main p {
    max-width: 355px;
    font-size: 13px;
}

.startups-page .startup-actions {
    margin-top: 27px;
}

.startups-page .startup-metrics {
    padding-top: 20px;
}


/* ---------------------------------------------------------
   Floating Cards
   --------------------------------------------------------- */

.startups-page .startup-floating-card {
    z-index: 5;
    padding: 14px 17px;
    border-radius: 13px;
    box-shadow:
        0 20px 45px rgba(23, 36, 75, 0.13),
        0 4px 12px rgba(23, 36, 75, 0.05);
    white-space: nowrap;
}

.startups-page .startup-floating-card-one {
    left: -2px;
    top: 105px;
}

.startups-page .startup-floating-card-two {
    right: -2px;
    bottom: 95px;
}


/* ---------------------------------------------------------
   Subtle visual accents
   --------------------------------------------------------- */

.startups-page .startup-visual::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(18, 188, 232, 0.055),
        rgba(101, 87, 232, 0.065)
    );
    filter: blur(1px);
    z-index: 0;
}

.startups-page .startup-window {
    z-index: 2;
}


/* ---------------------------------------------------------
   Tablet
   --------------------------------------------------------- */

@media (max-width: 1100px) {

    .startups-page .page-hero {
        padding-top: 75px;
        padding-bottom: 80px;
    }

    .startups-page .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .startups-page .page-hero-content {
        max-width: 800px;
    }

    .startups-page .page-hero-content h1 {
        max-width: 760px;
    }

    .startups-page .page-hero-content > p {
        max-width: 650px;
    }

    .startups-page .startup-visual {
        min-height: 540px;
    }

    .startups-page .startup-window {
        width: min(100%, 650px);
    }

    .startups-page .startup-floating-card-one {
        left: 4%;
    }

    .startups-page .startup-floating-card-two {
        right: 4%;
    }
}


/* ---------------------------------------------------------
   Mobile
   --------------------------------------------------------- */

@media (max-width: 600px) {

    .startups-page .page-hero {
        padding-top: 55px;
        padding-bottom: 65px;
    }

    .startups-page .page-hero-grid {
        gap: 10px;
    }

    .startups-page .page-hero-content .eyebrow {
        margin-bottom: 15px;
    }

    .startups-page .page-hero-content h1 {
        max-width: 100%;
        margin-bottom: 18px;
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.06;
    }

    .startups-page .page-hero-content > p {
        margin-bottom: 25px;
        font-size: 13px;
        line-height: 1.7;
    }

    .startups-page .page-hero-actions {
        flex-wrap: wrap;
    }

    .startups-page .page-hero-actions .btn {
        min-height: 43px;
    }

    .startups-page .startup-visual {
        min-height: 430px;
        padding: 30px 5px 45px;
    }

    .startups-page .startup-window {
        width: 100%;
        border-radius: 17px;
        transform: none;
    }

    .startups-page .startup-window:hover {
        transform: none;
    }

    .startups-page .startup-window-body {
        padding: 18px 16px 20px;
    }

    .startups-page .startup-main {
        padding: 48px 8px 38px;
    }

    .startups-page .startup-main h2 {
        font-size: 30px;
    }

    .startups-page .startup-main p {
        font-size: 11px;
    }

    .startups-page .startup-nav-links {
        display: none;
    }

    .startups-page .startup-floating-card {
        padding: 10px 12px;
    }

    .startups-page .startup-floating-card-one {
        left: 0;
        top: 8px;
    }

    .startups-page .startup-floating-card-two {
        right: 0;
        bottom: 10px;
    }

    .startups-page .startup-floating-card strong {
        font-size: 10px;
    }

    .startups-page .startup-floating-card small {
        font-size: 8px;
    }

    .startups-page .startup-visual::before {
        width: 300px;
        height: 300px;
    }
}

/* =========================================================
   GROWING BUSINESSES PAGE
   Add at the end of style.css
   ========================================================= */

.growing-businesses-page {
    overflow: hidden;
}


/* ---------------------------------------------------------
   Global Section Heading Override
   --------------------------------------------------------- */

.growing-businesses-page .section-heading {
    display: block;
    width: 100%;
    grid-template-columns: none;
    grid-template-rows: none;
}

.growing-businesses-page .section-heading > * {
    grid-column: auto;
    grid-row: auto;
}

.growing-businesses-page .section-heading .eyebrow {
    display: block;
    width: fit-content;
    margin: 0 0 16px;
}

.growing-businesses-page .section-heading h2,
.growing-businesses-page .section-heading p {
    display: block;
    width: 100%;
}


/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */

.growing-businesses-page .page-hero {
    position: relative;
    padding-top: 95px;
    padding-bottom: 105px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 78% 38%,
            rgba(94, 91, 232, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 55% 75%,
            rgba(20, 190, 235, 0.055),
            transparent 28%
        ),
        #ffffff;
}

.growing-businesses-page .page-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -220px;
    top: -190px;
    border-radius: 50%;
    background: rgba(92, 88, 232, 0.035);
    pointer-events: none;
}

.growing-businesses-page .page-hero::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    left: -220px;
    bottom: -180px;
    border-radius: 50%;
    background: rgba(20, 188, 232, 0.035);
    pointer-events: none;
}

.growing-businesses-page .page-hero .container {
    position: relative;
    z-index: 1;
}

.growing-businesses-page .page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 55px;
}

.growing-businesses-page .page-hero-content {
    position: relative;
    z-index: 3;
    padding-bottom: 10px;
}

.growing-businesses-page .page-hero-content .eyebrow {
    display: inline-flex;
    margin-bottom: 20px;
}

.growing-businesses-page .page-hero-content h1 {
    max-width: 650px;
    margin: 0 0 22px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.growing-businesses-page .page-hero-content h1 span {
    background: linear-gradient(
        90deg,
        #11b9e7 0%,
        #6558e8 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.growing-businesses-page .page-hero-content > p {
    max-width: 570px;
    margin: 0 0 30px;
    color: #718097;
    font-size: 15px;
    line-height: 1.8;
}

.growing-businesses-page .page-hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
}

.growing-businesses-page .page-hero-actions .btn {
    min-height: 46px;
}


/* ---------------------------------------------------------
   Growth Dashboard Visual
   --------------------------------------------------------- */

.growing-businesses-page .page-hero-visual {
    position: relative;
    min-width: 0;
}

.growth-visual {
    position: relative;
    width: 100%;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.growth-visual::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            rgba(18, 188, 232, 0.055),
            rgba(101, 87, 232, 0.065)
        );
    z-index: 0;
}

.growth-dashboard {
    position: relative;
    z-index: 2;
    width: min(100%, 625px);
    background: #ffffff;
    border: 1px solid rgba(20, 35, 70, 0.09);
    border-radius: 21px;
    box-shadow:
        0 35px 90px rgba(23, 36, 75, 0.14),
        0 8px 25px rgba(23, 36, 75, 0.06);
    overflow: hidden;
    transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.growth-dashboard:hover {
    transform:
        perspective(1400px)
        rotateY(0deg)
        rotateX(0deg)
        translateY(-4px);

    box-shadow:
        0 42px 100px rgba(23, 36, 75, 0.17),
        0 10px 28px rgba(23, 36, 75, 0.07);
}

.growth-dashboard-top {
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid rgba(20, 35, 70, 0.08);
    background: #fafbfe;
}

.growth-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #172544;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.09em;
}

.growth-brand-mark {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: linear-gradient(
        135deg,
        #18b9e8,
        #6557e8
    );
}

.growth-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8b94a5;
    font-size: 9px;
}

.growth-profile-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #35c991;
    box-shadow: 0 0 0 4px rgba(53, 201, 145, 0.10);
}

.growth-dashboard-body {
    padding: 27px 28px 29px;
}

.growth-welcome {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.growth-welcome > div > span {
    display: block;
    margin-bottom: 7px;
    color: #8b94a5;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.growth-welcome h2 {
    margin: 0;
    color: #172544;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.growth-period {
    padding: 8px 11px;
    border: 1px solid rgba(20, 35, 70, 0.08);
    border-radius: 7px;
    color: #687388;
    background: #ffffff;
    font-size: 9px;
    font-weight: 600;
}


/* ---------------------------------------------------------
   Dashboard Stats
   --------------------------------------------------------- */

.growth-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
    margin-bottom: 13px;
}

.growth-stat-card {
    padding: 16px 15px;
    border: 1px solid rgba(20, 35, 70, 0.07);
    border-radius: 11px;
    background: #fbfcff;
}

.growth-stat-card span {
    display: block;
    margin-bottom: 8px;
    color: #8a93a4;
    font-size: 9px;
}

.growth-stat-card strong {
    display: block;
    margin-bottom: 5px;
    color: #172544;
    font-size: 20px;
    letter-spacing: -0.035em;
}

.growth-stat-card small {
    color: #35a77e;
    font-size: 8px;
    font-weight: 600;
}


/* ---------------------------------------------------------
   Chart
   --------------------------------------------------------- */

.growth-chart-card {
    padding: 18px 18px 15px;
    border: 1px solid rgba(20, 35, 70, 0.07);
    border-radius: 11px;
    background: #ffffff;
}

.growth-chart-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.growth-chart-heading > div span {
    display: block;
    margin-bottom: 5px;
    color: #8a93a4;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.11em;
}

.growth-chart-heading strong {
    color: #172544;
    font-size: 12px;
}

.growth-chart-heading > span {
    color: #8a93a4;
    font-size: 8px;
}

.growth-chart {
    position: relative;
    height: 130px;
    margin-top: 15px;
    overflow: hidden;
}

.chart-grid-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(20, 35, 70, 0.055);
}

.chart-grid-line.line-one {
    top: 18%;
}

.chart-grid-line.line-two {
    top: 50%;
}

.chart-grid-line.line-three {
    top: 82%;
}

.growth-line {
    position: absolute;
    inset: 0;
}

.growth-line::before {
    content: "";
    position: absolute;
    left: 1%;
    right: 1%;
    top: 17%;
    height: 67%;
    background:
        linear-gradient(
            180deg,
            rgba(96, 89, 230, 0.10),
            rgba(96, 89, 230, 0)
        );
    clip-path: polygon(
        0 74%,
        18% 63%,
        35% 68%,
        51% 44%,
        67% 51%,
        83% 22%,
        100% 5%,
        100% 100%,
        0 100%
    );
}

.growth-line::after {
    content: "";
    position: absolute;
    left: 1%;
    right: 1%;
    top: 17%;
    height: 67%;
    border-top: 2px solid #625be5;
    clip-path: polygon(
        0 74%,
        18% 63%,
        35% 68%,
        51% 44%,
        67% 51%,
        83% 22%,
        100% 5%
    );
}

.chart-point {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #625be5;
    z-index: 2;
}

.point-one {
    left: 0%;
    top: 65%;
}

.point-two {
    left: 18%;
    top: 54%;
}

.point-three {
    left: 35%;
    top: 59%;
}

.point-four {
    left: 51%;
    top: 35%;
}

.point-five {
    left: 67%;
    top: 42%;
}

.point-six {
    right: 0%;
    top: 2%;
}

.growth-chart-labels {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
    color: #9aa2b0;
    font-size: 7px;
}


/* ---------------------------------------------------------
   Progress
   --------------------------------------------------------- */

.growth-progress {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 13px;
}

.growth-progress-item > div:first-child {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 7px;
}

.growth-progress-item span {
    color: #818b9e;
    font-size: 8px;
}

.growth-progress-item strong {
    color: #172544;
    font-size: 8px;
}

.progress-track {
    width: 100%;
    height: 5px;
    overflow: hidden;
    border-radius: 20px;
    background: #edf1f6;
}

.progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        #16b9e6,
        #6658e7
    );
}


/* ---------------------------------------------------------
   Floating Cards
   --------------------------------------------------------- */

.growth-floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 17px;
    border: 1px solid rgba(20, 35, 70, 0.08);
    border-radius: 13px;
    background: #ffffff;
    box-shadow:
        0 20px 45px rgba(23, 36, 75, 0.13),
        0 4px 12px rgba(23, 36, 75, 0.05);
    white-space: nowrap;
}

.growth-floating-card-one {
    left: -2px;
    top: 105px;
}

.growth-floating-card-two {
    right: -2px;
    bottom: 95px;
}

.growth-floating-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #eef8ff;
    color: #1ab9e8;
    font-size: 16px;
}

.growth-status {
    width: 9px;
    height: 9px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #35c991;
    box-shadow: 0 0 0 5px rgba(53, 201, 145, 0.12);
}

.growth-floating-card strong {
    display: block;
    margin-bottom: 3px;
    color: #172544;
    font-size: 10px;
}

.growth-floating-card small {
    display: block;
    color: #8a93a4;
    font-size: 8px;
}


/* ---------------------------------------------------------
   Intro
   --------------------------------------------------------- */

.growing-businesses-page .growing-businesses-intro {
    padding-top: 105px;
    padding-bottom: 105px;
}

.growing-businesses-page .growing-intro-heading {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.growing-businesses-page .growing-intro-heading .eyebrow {
    margin-left: auto;
    margin-right: auto;
}


/* ---------------------------------------------------------
   Challenges
   --------------------------------------------------------- */

.growing-businesses-page .growing-challenges {
    padding-top: 110px;
    padding-bottom: 110px;
}

.growth-challenge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 55px;
    border: 1px solid rgba(20, 35, 70, 0.10);
    background: rgba(20, 35, 70, 0.10);
}

.growth-challenge-card {
    min-height: 235px;
    padding: 38px 36px 40px;
    background: #ffffff;
}

.growth-challenge-number {
    display: block;
    margin-bottom: 35px;
    color: #665be7;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.growth-challenge-card h3 {
    margin: 0 0 12px;
    color: #172544;
    font-size: 21px;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.growth-challenge-card p {
    max-width: 460px;
    margin: 0;
    color: #778196;
    font-size: 14px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   Solutions
   --------------------------------------------------------- */

.growing-businesses-page .growing-solutions {
    padding-top: 110px;
    padding-bottom: 110px;
}

.growth-solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 55px;
}

.growth-solution-card {
    position: relative;
    padding: 38px 36px 34px;
    border: 1px solid rgba(20, 35, 70, 0.09);
    border-radius: 16px;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.growth-solution-card:hover {
    transform: translateY(-5px);
    border-color: rgba(101, 86, 232, 0.18);
    box-shadow: 0 18px 45px rgba(23, 36, 75, 0.09);
}

.growth-solution-card-featured {
    background:
        linear-gradient(
            135deg,
            #fbfdff,
            #f7f6ff
        );
}

.growth-solution-number {
    position: absolute;
    top: 28px;
    right: 30px;
    color: #a0a8b7;
    font-size: 10px;
    font-weight: 700;
}

.growth-solution-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border-radius: 12px;
    background: #f1f7ff;
    color: #605be6;
    font-size: 20px;
}

.growth-solution-card h3 {
    margin: 0 0 12px;
    color: #172544;
    font-size: 21px;
    letter-spacing: -0.025em;
}

.growth-solution-card p {
    min-height: 76px;
    margin: 0 0 25px;
    color: #778196;
    font-size: 14px;
    line-height: 1.7;
}

.growth-solution-card a,
.growth-solution-card .text-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #172544;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.growth-solution-card a span,
.growth-solution-card .text-button span {
    transition: transform 0.25s ease;
}

.growth-solution-card a:hover span,
.growth-solution-card .text-button:hover span {
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   Growth Journey
   --------------------------------------------------------- */

.growing-businesses-page .growing-journey {
    padding-top: 110px;
    padding-bottom: 110px;
}

.growth-journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 60px;
    border-top: 1px solid rgba(20, 35, 70, 0.10);
}

.growth-journey-card {
    padding: 35px 28px 15px 0;
}

.growth-journey-card:not(:first-child) {
    padding-left: 28px;
    border-left: 1px solid rgba(20, 35, 70, 0.10);
}

.growth-journey-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-bottom: 27px;
    border-radius: 50%;
    background: #f1f6ff;
    color: #605be6;
    font-size: 10px;
    font-weight: 700;
}

.growth-journey-card h3 {
    margin: 0 0 12px;
    color: #172544;
    font-size: 19px;
}

.growth-journey-card p {
    margin: 0;
    color: #778196;
    font-size: 13px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   Business Value
   --------------------------------------------------------- */

.growing-businesses-page .growing-value {
    padding-top: 110px;
    padding-bottom: 110px;
}

.growth-value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 55px;
}

.growth-value-card {
    padding: 32px 28px;
    border: 1px solid rgba(20, 35, 70, 0.09);
    border-radius: 15px;
    background: #ffffff;
}

.growth-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 25px;
    border-radius: 10px;
    background: #f1f7ff;
    color: #605be6;
    font-size: 18px;
}

.growth-value-card h3 {
    margin: 0 0 10px;
    color: #172544;
    font-size: 17px;
}

.growth-value-card p {
    margin: 0;
    color: #778196;
    font-size: 13px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   Who We Help
   --------------------------------------------------------- */

.growing-businesses-page .growing-fit {
    padding-top: 110px;
    padding-bottom: 110px;
}

.growth-fit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 55px;
}

.growth-fit-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 20px;
    padding: 30px;
    border: 1px solid rgba(20, 35, 70, 0.09);
    border-radius: 14px;
    background: #ffffff;
}

.growth-fit-card > span {
    grid-row: span 2;
    padding-top: 3px;
    color: #665be7;
    font-size: 11px;
    font-weight: 700;
}

.growth-fit-card h3 {
    margin: 0 0 9px;
    color: #172544;
    font-size: 18px;
}

.growth-fit-card p {
    margin: 0;
    color: #778196;
    font-size: 13px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   Next Step
   --------------------------------------------------------- */

.growing-businesses-page .growing-next-step {
    padding-top: 100px;
    padding-bottom: 100px;
}

.growth-next-step-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 65px 70px;
    border: 1px solid rgba(20, 35, 70, 0.07);
    border-radius: 20px;
    background: #f4f7fc;
}

.growth-next-step-box .eyebrow {
    display: block;
    margin-bottom: 15px;
}

.growth-next-step-box h2 {
    max-width: 720px;
    margin: 0 0 18px;
    color: #172544;
}

.growth-next-step-box h2 span {
    display: inline;
}

.growth-next-step-box p {
    max-width: 680px;
    margin: 0;
    color: #778196;
    font-size: 14px;
    line-height: 1.8;
}

.growth-next-step-action {
    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .growing-businesses-page .page-hero {
        padding-top: 75px;
        padding-bottom: 80px;
    }

    .growing-businesses-page .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .growing-businesses-page .page-hero-content {
        max-width: 800px;
    }

    .growing-businesses-page .page-hero-content h1 {
        max-width: 760px;
    }

    .growing-businesses-page .page-hero-content > p {
        max-width: 650px;
    }

    .growth-visual {
        min-height: 540px;
    }

    .growth-dashboard {
        width: min(100%, 650px);
    }

    .growth-floating-card-one {
        left: 4%;
    }

    .growth-floating-card-two {
        right: 4%;
    }

    .growth-value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .growth-journey-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

    .growth-journey-card:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

    .growth-journey-card:nth-child(4) {
        border-left: 1px solid rgba(20, 35, 70, 0.10);
    }

    .growth-next-step-box {
        padding: 55px 50px;
    }
}


@media (max-width: 800px) {

    .growth-stats {
        grid-template-columns: 1fr;
    }

    .growth-progress {
        grid-template-columns: 1fr;
    }

    .growth-challenge-grid,
    .growth-solution-grid,
    .growth-fit-grid {
        grid-template-columns: 1fr;
    }

    .growth-challenge-card {
        min-height: auto;
    }

    .growth-solution-card p {
        min-height: auto;
    }

    .growth-next-step-box {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 600px) {

    .growing-businesses-page .page-hero {
        padding-top: 55px;
        padding-bottom: 65px;
    }

    .growing-businesses-page .page-hero-grid {
        gap: 10px;
    }

    .growing-businesses-page .page-hero-content .eyebrow {
        margin-bottom: 15px;
    }

    .growing-businesses-page .page-hero-content h1 {
        max-width: 100%;
        margin-bottom: 18px;
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.06;
    }

    .growing-businesses-page .page-hero-content > p {
        margin-bottom: 25px;
        font-size: 13px;
        line-height: 1.7;
    }

    .growing-businesses-page .page-hero-actions {
        flex-wrap: wrap;
    }

    .growing-businesses-page .page-hero-actions .btn {
        min-height: 43px;
    }

    .growth-visual {
        min-height: 430px;
        padding: 30px 5px 45px;
    }

    .growth-dashboard {
        width: 100%;
        border-radius: 17px;
        transform: none;
    }

    .growth-dashboard:hover {
        transform: none;
    }

    .growth-dashboard-body {
        padding: 20px 16px 21px;
    }

    .growth-dashboard-top {
        height: 45px;
        padding: 0 15px;
    }

    .growth-profile {
        display: none;
    }

    .growth-welcome {
        align-items: flex-start;
        margin-bottom: 18px;
    }

    .growth-welcome h2 {
        font-size: 17px;
    }

    .growth-period {
        font-size: 8px;
    }

    .growth-stat-card {
        padding: 13px;
    }

    .growth-stat-card strong {
        font-size: 18px;
    }

    .growth-chart-card {
        padding: 15px 13px 13px;
    }

    .growth-chart {
        height: 110px;
    }

    .growth-floating-card {
        padding: 10px 12px;
    }

    .growth-floating-card-one {
        left: 0;
        top: 8px;
    }

    .growth-floating-card-two {
        right: 0;
        bottom: 10px;
    }

    .growth-floating-card strong {
        font-size: 9px;
    }

    .growth-floating-card small {
        font-size: 7px;
    }

    .growth-floating-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .growth-visual::before {
        width: 300px;
        height: 300px;
    }

    .growing-businesses-page .growing-businesses-intro,
    .growing-businesses-page .growing-challenges,
    .growing-businesses-page .growing-solutions,
    .growing-businesses-page .growing-journey,
    .growing-businesses-page .growing-value,
    .growing-businesses-page .growing-fit {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .growth-challenge-grid,
    .growth-solution-grid,
    .growth-fit-grid {
        margin-top: 40px;
    }

    .growth-challenge-card {
        padding: 30px 25px;
    }

    .growth-challenge-number {
        margin-bottom: 25px;
    }

    .growth-solution-card {
        padding: 30px 25px;
    }

    .growth-journey-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .growth-journey-card,
    .growth-journey-card:not(:first-child),
    .growth-journey-card:nth-child(3),
    .growth-journey-card:nth-child(4) {
        padding: 0 0 30px;
        border-left: 0;
        border-bottom: 1px solid rgba(20, 35, 70, 0.10);
    }

    .growth-journey-card:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .growth-value-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .growth-fit-card {
        grid-template-columns: 34px 1fr;
        padding: 25px 22px;
        column-gap: 14px;
    }

    .growing-businesses-page .growing-next-step {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .growth-next-step-box {
        padding: 40px 25px;
        gap: 30px;
    }

    .growth-next-step-box p {
        font-size: 13px;
    }
}

/* =========================================================
   PRODUCTS PAGE — FINAL CSS
   ========================================================= */

.products-page {
    overflow: hidden;
}


/* =========================================================
   SECTION HEADING OVERRIDES
   ========================================================= */

.products-page .section-heading {
    display: block;
    width: 100%;
    grid-template-columns: none;
    grid-template-rows: none;
}

.products-page .section-heading > * {
    grid-column: auto;
    grid-row: auto;
}

.products-page .section-heading .eyebrow {
    display: block;
    width: fit-content;
    margin: 0 0 16px;
}

.products-page .section-heading h2,
.products-page .section-heading p {
    display: block;
    width: 100%;
}


/* =========================================================
   PRODUCTS HERO
   ========================================================= */

.products-page .products-hero {
    position: relative;
    padding-top: 110px;
    padding-bottom: 115px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 76% 42%,
            rgba(101, 88, 232, 0.075),
            transparent 31%
        ),
        radial-gradient(
            circle at 22% 70%,
            rgba(17, 185, 231, 0.05),
            transparent 29%
        ),
        #ffffff;
}

.products-page .products-hero::before {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    right: -270px;
    top: -280px;
    border-radius: 50%;
    background: rgba(101, 88, 232, 0.035);
    pointer-events: none;
}

.products-page .products-hero::after {
    content: "";
    position: absolute;
    width: 310px;
    height: 310px;
    left: -190px;
    bottom: -190px;
    border-radius: 50%;
    background: rgba(17, 185, 231, 0.035);
    pointer-events: none;
}

.products-page .products-hero .container {
    position: relative;
    z-index: 1;
}

.products-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.products-hero-content .eyebrow {
    display: inline-flex;
    margin-bottom: 20px;
}

.products-hero-content h1 {
    max-width: 850px;
    margin: 0 auto 22px;
    color: #172544;
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1.03;
    letter-spacing: -0.06em;
}

.products-hero-content h1 span {
    background: linear-gradient(
        90deg,
        #11b9e7 0%,
        #6558e8 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.products-hero-content p {
    max-width: 700px;
    margin: 0 auto;
    color: #718097;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   FEATURED PRODUCT
   ========================================================= */

.products-page .featured-product-section {
    padding-top: 110px;
    padding-bottom: 120px;
}

.products-featured-heading {
    max-width: 820px;
    margin-bottom: 55px;
}

.featured-product-card {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    align-items: center;
    gap: 65px;
    padding: 48px;
    border: 1px solid rgba(20, 35, 70, 0.08);
    border-radius: 24px;
    background: #ffffff;
    box-shadow:
        0 25px 70px rgba(23, 36, 75, 0.07),
        0 4px 18px rgba(23, 36, 75, 0.025);
}


/* =========================================================
   UNITY WELT STORE IMAGE SHOWCASE
   ========================================================= */

.featured-product-visual {
    min-width: 0;
}

.store-image-showcase {
    width: 100%;
}

.store-main-image {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(20, 35, 70, 0.08);
    border-radius: 17px;
    background: #f7f9fc;
    box-shadow:
        0 25px 55px rgba(23, 36, 75, 0.10),
        0 5px 18px rgba(23, 36, 75, 0.045);
}

.store-main-image img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: contain;
    object-position: center;
}

.store-image-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
    margin-top: 12px;
}

.store-small-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 8;
    object-fit: contain;
}

.store-small-image img {
    display: block;
    width: 100%;
    height: 92px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.store-small-image:hover img {
    transform: scale(1.035);
}


/* =========================================================
   FEATURED PRODUCT CONTENT
   ========================================================= */

.featured-product-content {
    max-width: 510px;
}

.featured-product-brand {
    display: flex;
    align-items: center;
    min-height: 48px;
    margin-bottom: 17px;
}

.featured-product-brand img {
    display: block;
    width: auto;
    max-width: 175px;
    max-height: 55px;
    object-fit: contain;
}

.product-type-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 17px;
    border-radius: 7px;
    background: #eef7ff;
    color: #168bc9;
    font-size: 10px;
    font-weight: 700;
}

.featured-product-content h3 {
    margin: 0 0 17px;
    color: #172544;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.featured-product-content > p {
    margin: 0 0 15px;
    color: #718097;
    font-size: 14px;
    line-height: 1.8;
}

.product-feature-list {
    display: grid;
    gap: 11px;
    margin: 26px 0 30px;
    padding: 0;
    list-style: none;
}

.product-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #243452;
    font-size: 13px;
    font-weight: 600;
}

.product-feature-list li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #14bd8b;
    color: #ffffff;
    font-size: 10px;
}

.featured-product-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.featured-product-actions .btn {
    min-height: 45px;
}

.featured-product-actions .text-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #172544;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.featured-product-actions .text-button:hover {
    opacity: 0.7;
}


/* =========================================================
   MOBILE APPLICATIONS SECTION
   ========================================================= */

.products-page .products-apps-section {
    padding-top: 115px;
    padding-bottom: 120px;
}

.products-apps-heading {
    max-width: 780px;
    margin-bottom: 55px;
}

.products-app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-app-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(20, 35, 70, 0.09);
    border-radius: 18px;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.product-app-card:hover {
    transform: translateY(-5px);
    border-color: rgba(101, 86, 232, 0.18);
    box-shadow:
        0 22px 50px rgba(23, 36, 75, 0.09),
        0 5px 15px rgba(23, 36, 75, 0.03);
}


/* =========================================================
   APP VISUAL AREA
   ========================================================= */

.product-app-visual {
    position: relative;
    min-height: 335px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding: 38px 25px 0;
    background:
        radial-gradient(
            circle at 50% 82%,
            rgba(101, 88, 232, 0.09),
            transparent 48%
        ),
        #f7f9fd;
}

.product-app-visual::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 45px;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(23, 36, 75, 0.09);
    filter: blur(14px);
}


/* =========================================================
   REAL APP LOGOS
   ========================================================= */

.product-app-logo {
    position: absolute;
    z-index: 4;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    overflow: hidden;
    border: 1px solid rgba(20, 35, 70, 0.07);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 7px 18px rgba(23, 36, 75, 0.08);
}

.product-app-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================================
   REAL APP SCREEN
   ========================================================= */

.app-real-screen {
    position: relative;
    z-index: 3;
    width: 150px;
    height: 270px;
    overflow: hidden;
    border: 6px solid #172544;
    border-radius: 28px 28px 24px 24px;
    background: #172544;
    box-shadow:
        0 25px 50px rgba(23, 36, 75, 0.20),
        0 7px 18px rgba(23, 36, 75, 0.08);
}

.app-real-screen::before {
    content: "";
    position: absolute;
    z-index: 5;
    top: -1px;
    left: 50%;
    width: 55px;
    height: 11px;
    transform: translateX(-50%);
    border-radius: 0 0 9px 9px;
    background: #172544;
}

.app-real-screen img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}


/* ---------------------------------------------------------
   App-specific phone frame accents
   --------------------------------------------------------- */

.halal-life-screen {
    border-color: #174c39;
    box-shadow:
        0 25px 50px rgba(23, 76, 57, 0.18),
        0 7px 18px rgba(23, 36, 75, 0.06);
}

.halal-life-screen::before {
    background: #174c39;
}


/* =========================================================
   APP CARD CONTENT
   ========================================================= */

.product-app-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px 28px 30px;
}

.product-app-content .product-type-label {
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 6px 9px;
    font-size: 9px;
}

.product-app-content h3 {
    margin: 0 0 12px;
    color: #172544;
    font-size: 24px;
    letter-spacing: -0.035em;
}

.product-app-content > p {
    margin: 0 0 20px;
    color: #778196;
    font-size: 13px;
    line-height: 1.75;
}

.product-mini-features {
    display: grid;
    gap: 8px;
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}

.product-mini-features li {
    position: relative;
    padding-left: 17px;
    color: #34435f;
    font-size: 11px;
    line-height: 1.5;
}

.product-mini-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #14b989;
    font-weight: 800;
}

.product-card-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: auto;
    padding-top: 5px;
}

.product-link,
.product-external-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #172544;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.product-link span,
.product-external-link span {
    transition: transform 0.25s ease;
}

.product-link:hover span,
.product-external-link:hover span {
    transform: translateX(4px);
}

.product-external-link {
    color: #5c6680;
}


/* =========================================================
   PRODUCT PHILOSOPHY
   ========================================================= */

.products-page .products-philosophy {
    padding-top: 115px;
    padding-bottom: 115px;
}

.products-philosophy-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.products-philosophy-heading h2 {
    max-width: 420px;
    margin: 0;
    color: #172544;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.products-philosophy-heading h2 span {
    background: linear-gradient(
        90deg,
        #11b9e7,
        #6558e8
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.products-philosophy-content > p {
    max-width: 680px;
    margin: 0 0 18px;
    color: #718097;
    font-size: 15px;
    line-height: 1.85;
}

.philosophy-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 40px;
    border: 1px solid rgba(20, 35, 70, 0.09);
    background: rgba(20, 35, 70, 0.09);
}

.philosophy-points div {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #ffffff;
}

.philosophy-points span {
    color: #665be7;
    font-size: 10px;
    font-weight: 700;
}

.philosophy-points strong {
    color: #243452;
    font-size: 12px;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .products-page .products-hero {
        padding-top: 85px;
        padding-bottom: 90px;
    }

    .featured-product-card {
        grid-template-columns: 1fr;
        gap: 55px;
        padding: 40px;
    }

    .featured-product-visual {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }

    .featured-product-content {
        max-width: 720px;
    }

    .products-app-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-app-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 10px);
        margin: 0 auto;
    }

    .products-philosophy-grid {
        gap: 60px;
    }
}


/* =========================================================
   RESPONSIVE — SMALL TABLET
   ========================================================= */

@media (max-width: 800px) {

    .products-hero-content h1 {
        font-size: clamp(42px, 8vw, 62px);
    }

    .store-main-image img {
        aspect-ratio: 16 / 10;
    }

    .products-app-grid {
        grid-template-columns: 1fr;
    }

    .product-app-card:last-child {
        grid-column: auto;
        width: 100%;
        max-width: none;
    }

    .products-philosophy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .products-page .products-hero {
        padding-top: 65px;
        padding-bottom: 70px;
    }

    .products-hero-content .eyebrow {
        margin-bottom: 15px;
    }

    .products-hero-content h1 {
        margin-bottom: 18px;
        font-size: clamp(35px, 10vw, 48px);
        line-height: 1.06;
    }

    .products-hero-content p {
        font-size: 13px;
        line-height: 1.7;
    }


    .products-page .featured-product-section,
    .products-page .products-apps-section,
    .products-page .products-philosophy {
        padding-top: 75px;
        padding-bottom: 80px;
    }

    .products-featured-heading,
    .products-apps-heading {
        margin-bottom: 40px;
    }


    /* Featured Store */

    .featured-product-card {
        gap: 35px;
        padding: 20px;
        border-radius: 17px;
    }

    .featured-product-content h3 {
        font-size: 34px;
    }

    .featured-product-content > p {
        font-size: 13px;
    }

    .featured-product-brand {
        margin-bottom: 13px;
    }

    .featured-product-brand img {
        max-width: 145px;
        max-height: 48px;
    }

    .store-image-row {
        gap: 7px;
        margin-top: 8px;
    }

    .store-small-image img {
        height: 62px;
    }

    .featured-product-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }


    /* App Cards */

    .product-app-visual {
        min-height: 325px;
        padding-top: 40px;
    }

    .app-real-screen {
        width: 145px;
        height: 265px;
    }

    .product-app-logo {
        top: 18px;
        left: 18px;
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .product-app-content {
        padding: 25px;
    }

    .product-app-content h3 {
        font-size: 23px;
    }

    .product-app-content > p {
        font-size: 13px;
    }


    /* Philosophy */

    .products-philosophy-heading h2 {
        font-size: 38px;
    }

    .products-philosophy-content > p {
        font-size: 13px;
    }

    .philosophy-points {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .featured-product-card {
        padding: 16px;
    }

    .product-app-visual {
        min-height: 310px;
    }

    .app-real-screen {
        width: 138px;
        height: 255px;
    }

    .product-app-content {
        padding: 22px;
    }

    .product-card-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .store-small-image img {
        height: 54px;
    }
}

/* =========================================================
   FLYSCOUT PRODUCT PAGE
   ========================================================= */

.flyscout-page {
    overflow: hidden;
}


/* =========================================================
   SECTION HEADING OVERRIDE
   ========================================================= */

.flyscout-page .section-heading {
    display: block;
    width: 100%;
    grid-template-columns: none;
    grid-template-rows: none;
}

.flyscout-page .section-heading > * {
    grid-column: auto;
    grid-row: auto;
}

.flyscout-page .section-heading .eyebrow {
    display: block;
    width: fit-content;
    margin: 0 0 16px;
}

.flyscout-page .section-heading h2,
.flyscout-page .section-heading p {
    display: block;
    width: 100%;
}


/* =========================================================
   PRODUCT HERO
   ========================================================= */

.product-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 95px 0 105px;
    background:
        radial-gradient(
            circle at 82% 42%,
            rgba(101, 88, 232, 0.075),
            transparent 32%
        ),
        radial-gradient(
            circle at 18% 70%,
            rgba(17, 185, 231, 0.05),
            transparent 28%
        ),
        #ffffff;
}

.product-detail-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -280px;
    top: -230px;
    border-radius: 50%;
    background: rgba(101, 88, 232, 0.035);
    pointer-events: none;
}

.product-detail-hero .container {
    position: relative;
    z-index: 1;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 80px;
    align-items: center;
}


/* =========================================================
   PRODUCT CONTENT
   ========================================================= */

.product-detail-content {
    max-width: 680px;
}

.product-brand {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.product-brand img {
    display: block;
    width: auto;
    max-width: 105px;
    height: 65px;
    object-fit: contain;
    border-radius: 14px;
}

.product-detail-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    margin-bottom: 18px;
    border-radius: 7px;
    background: #eef7ff;
    color: #168bc9;
    font-size: 10px;
    font-weight: 700;
}

.product-detail-content h1 {
    max-width: 700px;
    margin: 0 0 23px;
    color: #172544;
    font-size: clamp(43px, 5vw, 67px);
    line-height: 1.03;
    letter-spacing: -0.055em;
}

.product-detail-content h1 span {
    background: linear-gradient(
        90deg,
        #11b9e7 0%,
        #6558e8 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.product-detail-content > p {
    max-width: 650px;
    margin: 0 0 17px;
    color: #718097;
    font-size: 14px;
    line-height: 1.85;
}

.product-detail-content .product-detail-lead {
    color: #465675;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   FEATURE LIST
   ========================================================= */

.product-detail-features {
    display: grid;
    gap: 14px;
    margin: 31px 0 31px;
    padding: 0;
    list-style: none;
}

.product-detail-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.product-detail-features li > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    margin-top: 1px;
    border-radius: 50%;
    background: #14bd8b;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
}

.product-detail-features strong {
    display: block;
    margin-bottom: 2px;
    color: #243452;
    font-size: 13px;
    line-height: 1.5;
}

.product-detail-features small {
    display: block;
    color: #8a94a6;
    font-size: 10px;
    line-height: 1.55;
}


/* =========================================================
   TECHNOLOGY BADGE
   ========================================================= */

.product-tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    margin-bottom: 27px;
    border-radius: 9px;
    background: #f1f5fa;
    color: #1769e8;
    font-size: 11px;
    font-weight: 700;
}

.product-tech-badge b {
    margin: 0 3px;
    color: #8b96aa;
}

.product-tech-icon {
    font-size: 14px;
    font-weight: 800;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.product-detail-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.product-detail-actions .btn {
    min-height: 46px;
}

.product-detail-actions .google-play-link {
    display: inline-flex;
    align-items: center;
}

.product-detail-actions .google-play-badge {
    display: block;
    width: 155px;
    height: auto;
}


/* =========================================================
   PHONE / SCREENSHOT SLIDER
   ========================================================= */

.product-screenshot-area {
    position: relative;
    min-width: 0;
}

.product-screenshot-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 590px;
}

.product-phone-frame {
    position: relative;
    width: 275px;
    height: 555px;
    padding: 10px;
    border: 8px solid #172544;
    border-radius: 46px 46px 40px 40px;
    background: #172544;
    box-shadow:
        0 35px 75px rgba(23, 36, 75, 0.22),
        0 10px 25px rgba(23, 36, 75, 0.08);
}

.product-phone-frame::before {
    content: "";
    position: absolute;
    z-index: 5;
    top: -8px;
    left: 50%;
    width: 92px;
    height: 20px;
    transform: translateX(-50%);
    border-radius: 0 0 15px 15px;
    background: #172544;
}

.product-phone-frame::after {
    content: "";
    position: absolute;
    z-index: 5;
    right: -11px;
    top: 145px;
    width: 4px;
    height: 68px;
    border-radius: 0 4px 4px 0;
    background: #172544;
}

.product-phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 32px;
    background: #ffffff;
}

.product-phone-screen img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 1;
    transform: scale(1);
    transition:
        opacity 0.18s ease,
        transform 0.22s ease;
}

.product-phone-screen img.is-changing {
    opacity: 0;
    transform: scale(0.985);
}


/* =========================================================
   SLIDER BUTTONS
   ========================================================= */

.product-slider-btn {
    position: absolute;
    z-index: 7;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    transform: translateY(-50%);
    border: 1px solid rgba(20, 35, 70, 0.08);
    border-radius: 50%;
    background: #ffffff;
    color: #1769e8;
    font-family: inherit;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(23, 36, 75, 0.10);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.product-slider-btn:hover {
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 15px 35px rgba(23, 36, 75, 0.15);
}

.product-slider-prev {
    left: 0;
}

.product-slider-next {
    right: 0;
}

.product-slider-btn span {
    display: block;
    margin-top: -3px;
}


/* =========================================================
   COUNTER
   ========================================================= */

.product-screenshot-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 5px;
    color: #172544;
    font-size: 11px;
    font-weight: 700;
}

.product-screenshot-counter .counter-divider {
    color: #b0b8c6;
    font-weight: 400;
}


/* =========================================================
   DOTS
   ========================================================= */

.product-screenshot-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    max-width: 300px;
    margin: 15px auto 0;
}

.product-screenshot-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ccd5e3;
    cursor: pointer;
    transition:
        width 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.product-screenshot-dot:hover {
    transform: scale(1.2);
}

.product-screenshot-dot.active {
    width: 24px;
    border-radius: 5px;
    background: #1769e8;
}


/* =========================================================
   PRODUCT OVERVIEW
   ========================================================= */

.product-overview-section {
    padding-top: 110px;
    padding-bottom: 110px;
}

.product-overview-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 100px;
    align-items: start;
}

.product-overview-heading h2 {
    max-width: 460px;
    margin: 0;
    color: #172544;
    font-size: clamp(38px, 4.5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.product-overview-heading h2 span {
    background: linear-gradient(
        90deg,
        #11b9e7,
        #6558e8
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.product-overview-content {
    padding-top: 3px;
}

.product-overview-content p {
    max-width: 680px;
    margin: 0 0 20px;
    color: #718097;
    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   KEY FEATURES
   ========================================================= */

.product-features-section {
    padding-top: 115px;
    padding-bottom: 120px;
}

.product-features-heading {
    max-width: 780px;
    margin-bottom: 55px;
}

.product-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.product-feature-card {
    position: relative;
    min-height: 245px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(20, 35, 70, 0.08);
    border-radius: 16px;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.product-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(101, 88, 232, 0.17);
    box-shadow: 0 20px 45px rgba(23, 36, 75, 0.08);
}

.product-feature-number {
    position: absolute;
    top: 24px;
    right: 25px;
    color: #b4bdcb;
    font-size: 9px;
    font-weight: 700;
}

.product-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 25px;
    border-radius: 10px;
    background: #eef5ff;
    color: #1769e8;
    font-size: 17px;
    font-weight: 700;
}

.product-feature-card h3 {
    margin: 0 0 11px;
    color: #172544;
    font-size: 18px;
    letter-spacing: -0.025em;
}

.product-feature-card p {
    max-width: 300px;
    margin: 0;
    color: #7b8699;
    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   SCREENSHOT GALLERY
   ========================================================= */

.product-gallery-section {
    padding-top: 115px;
    padding-bottom: 120px;
}

.product-gallery-heading {
    max-width: 780px;
    margin-bottom: 55px;
}

.product-gallery-heading h2 span {
    background: linear-gradient(
        90deg,
        #11b9e7,
        #6558e8
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    gap: 18px;
}

.gallery-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-width: 0;
    min-height: 290px;
    padding: 20px 15px 0;
    overflow: hidden;
    border: 1px solid rgba(20, 35, 70, 0.07);
    border-radius: 15px;
    background: #f7f9fd;
}

.gallery-image img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 270px;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 14px 20px rgba(23, 36, 75, 0.10));
    transition: transform 0.3s ease;
}

.gallery-image:hover img {
    transform: translateY(-5px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .product-detail-hero {
        padding-top: 80px;
        padding-bottom: 90px;
    }

    .product-detail-grid {
        grid-template-columns: minmax(0, 1fr) 350px;
        gap: 45px;
    }

    .product-detail-content h1 {
        font-size: clamp(40px, 5vw, 58px);
    }

    .product-phone-frame {
        width: 245px;
        height: 500px;
    }

    .product-slider-prev {
        left: -5px;
    }

    .product-slider-next {
        right: -5px;
    }

    .product-overview-grid {
        gap: 60px;
    }

    .product-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================================================
   SMALL TABLET
   ========================================================= */

@media (max-width: 850px) {

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .product-detail-content {
        max-width: 720px;
    }

    .product-screenshot-area {
        width: 100%;
        max-width: 430px;
        margin: 0 auto;
    }

    .product-screenshot-slider {
        min-height: 560px;
    }

    .product-phone-frame {
        width: 250px;
        height: 510px;
    }

    .product-overview-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .product-overview-heading h2 {
        max-width: 600px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .product-detail-hero {
        padding-top: 60px;
        padding-bottom: 75px;
    }

    .product-detail-grid {
        gap: 55px;
    }

    .product-brand img {
        width: 58px;
        height: 58px;
        border-radius: 12px;
    }

    .product-detail-badge {
        margin-bottom: 15px;
    }

    .product-detail-content h1 {
        margin-bottom: 19px;
        font-size: clamp(35px, 10vw, 48px);
    }

    .product-detail-content > p {
        font-size: 13px;
        line-height: 1.75;
    }

    .product-detail-content .product-detail-lead {
        font-size: 14px;
    }

    .product-detail-features {
        gap: 12px;
        margin-top: 26px;
    }

    .product-detail-features strong {
        font-size: 12px;
    }

    .product-detail-features small {
        font-size: 9px;
    }

    .product-tech-badge {
        font-size: 10px;
        margin-bottom: 23px;
    }

    .product-detail-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
    }

    .product-detail-actions .google-play-badge {
        width: 145px;
    }


    /* Phone */

    .product-screenshot-slider {
        min-height: 500px;
    }

    .product-phone-frame {
        width: 215px;
        height: 445px;
        padding: 8px;
        border-width: 7px;
        border-radius: 38px 38px 34px 34px;
    }

    .product-phone-frame::before {
        width: 72px;
        height: 16px;
        top: -7px;
        border-radius: 0 0 12px 12px;
    }

    .product-phone-screen {
        border-radius: 27px;
    }

    .product-slider-btn {
        width: 42px;
        height: 42px;
        font-size: 28px;
    }

    .product-slider-prev {
        left: -2px;
    }

    .product-slider-next {
        right: -2px;
    }


    /* Sections */

    .product-overview-section,
    .product-features-section,
    .product-gallery-section {
        padding-top: 75px;
        padding-bottom: 80px;
    }

    .product-features-heading,
    .product-gallery-heading {
        margin-bottom: 40px;
    }

    .product-overview-heading h2 {
        font-size: 38px;
    }

    .product-overview-content p {
        font-size: 13px;
    }

    .product-feature-grid {
        grid-template-columns: 1fr;
    }

    .product-feature-card {
        min-height: auto;
        padding: 25px;
    }

    .product-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-image {
        min-height: 250px;
        padding: 15px 10px 0;
    }

    .gallery-image img {
        height: 235px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .product-detail-content h1 {
        font-size: 34px;
    }

    .product-phone-frame {
        width: 195px;
        height: 405px;
    }

    .product-screenshot-slider {
        min-height: 465px;
    }

    .product-slider-btn {
        width: 38px;
        height: 38px;
    }

    .product-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-image {
        min-height: 220px;
    }

    .gallery-image img {
        height: 205px;
    }
}

/* =========================================================
   HALAL LIFE PRODUCT PAGE
   ========================================================= */

.halal-life-page {
    overflow: hidden;
}


/* =========================================================
   SECTION HEADING OVERRIDE
   ========================================================= */

.halal-life-page .section-heading {
    display: block;
    width: 100%;
    grid-template-columns: none;
    grid-template-rows: none;
}

.halal-life-page .section-heading > * {
    grid-column: auto;
    grid-row: auto;
}

.halal-life-page .section-heading .eyebrow {
    display: block;
    width: fit-content;
    margin: 0 0 16px;
}

.halal-life-page .section-heading h2,
.halal-life-page .section-heading p {
    display: block;
    width: 100%;
}


/* =========================================================
   HALAL LIFE HERO
   ========================================================= */

.halal-life-page .product-detail-hero {
    background:
        radial-gradient(
            circle at 82% 42%,
            rgba(33, 139, 98, 0.075),
            transparent 32%
        ),
        radial-gradient(
            circle at 18% 70%,
            rgba(72, 176, 132, 0.045),
            transparent 28%
        ),
        #ffffff;
}

.halal-life-page .product-detail-hero::before {
    background: rgba(33, 139, 98, 0.035);
}

.halal-life-page .product-detail-content h1 span {
    background: linear-gradient(
        90deg,
        #159b6d 0%,
        #277b5d 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


/* =========================================================
   PRODUCT BRAND
   ========================================================= */

.halal-life-page .product-brand img {
    border-radius: 15px;
}


/* =========================================================
   BADGE
   ========================================================= */

.halal-life-page .product-detail-badge {
    background: #edf8f3;
    color: #16845e;
}


/* =========================================================
   LEAD TEXT
   ========================================================= */

.halal-life-page .product-detail-content .product-detail-lead {
    color: #465f55;
}


/* =========================================================
   FEATURE CHECKMARKS
   ========================================================= */

.halal-life-page .product-detail-features li > span {
    background: #159b6d;
}


/* =========================================================
   TECHNOLOGY
   ========================================================= */

.halal-life-page .product-tech-badge {
    background: #eff8f4;
    color: #16845e;
}


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.halal-life-page .product-detail-actions .btn {
    background: #159b6d;
    border-color: #159b6d;
}

.halal-life-page .product-detail-actions .btn:hover {
    background: #117d58;
    border-color: #117d58;
}


/* =========================================================
   PHONE
   ========================================================= */

.halal-life-page .product-phone-frame {
    border-color: #174c39;
    background: #174c39;
    box-shadow:
        0 35px 75px rgba(23, 76, 57, 0.20),
        0 10px 25px rgba(23, 76, 57, 0.08);
}

.halal-life-page .product-phone-frame::before,
.halal-life-page .product-phone-frame::after {
    background: #174c39;
}


/* =========================================================
   SLIDER BUTTONS
   ========================================================= */

.halal-life-page .product-slider-btn {
    color: #16845e;
}

.halal-life-page .product-slider-btn:hover {
    color: #117d58;
}


/* =========================================================
   ACTIVE DOT
   ========================================================= */

.halal-life-page .product-screenshot-dot.active {
    background: #159b6d;
}


/* =========================================================
   OVERVIEW
   ========================================================= */

.halal-life-page .product-overview-heading h2 span {
    background: linear-gradient(
        90deg,
        #159b6d,
        #277b5d
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


/* =========================================================
   FEATURE CARDS
   ========================================================= */

.halal-life-page .product-feature-card:hover {
    border-color: rgba(21, 155, 109, 0.18);
}

.halal-life-page .product-feature-icon {
    background: #edf8f3;
    color: #16845e;
}

.halal-life-page .product-feature-number {
    color: #aebeb7;
}


/* =========================================================
   GALLERY HEADING
   ========================================================= */

.halal-life-page .product-gallery-heading h2 span {
    background: linear-gradient(
        90deg,
        #159b6d,
        #277b5d
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


/* =========================================================
   GALLERY
   ========================================================= */

.halal-life-page .gallery-image {
    background: #f6faf8;
}

.halal-life-page .gallery-image img {
    filter:
        drop-shadow(
            0 14px 20px rgba(23, 76, 57, 0.10)
        );
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .halal-life-page .product-detail-content h1 {
        font-size: clamp(40px, 5vw, 58px);
    }

}


@media (max-width: 850px) {

    .halal-life-page .product-screenshot-area {
        max-width: 430px;
    }

}


@media (max-width: 600px) {

    .halal-life-page .product-detail-content h1 {
        font-size: clamp(35px, 10vw, 48px);
    }

    .halal-life-page .product-detail-content .product-detail-lead {
        font-size: 14px;
    }

    .halal-life-page .product-detail-actions {
        align-items: flex-start;
        flex-direction: column;
    }

}


@media (max-width: 400px) {

    .halal-life-page .product-detail-content h1 {
        font-size: 34px;
    }

}

/* =========================================================
   DECIDEME PRODUCT PAGE
   ========================================================= */

.decideme-page {
    overflow: hidden;
}


/* ---------------------------------------------------------
   SECTION HEADING OVERRIDE
   --------------------------------------------------------- */

.decideme-page .section-heading {
    display: block;
    width: 100%;
    grid-template-columns: none;
    grid-template-rows: none;
}

.decideme-page .section-heading > * {
    grid-column: auto;
    grid-row: auto;
}

.decideme-page .section-heading .eyebrow {
    display: block;
    width: fit-content;
    margin: 0 0 16px;
}

.decideme-page .section-heading h2,
.decideme-page .section-heading p {
    display: block;
    width: 100%;
}


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.decideme-page .product-hero {
    position: relative;
    padding: 110px 0 90px;
    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(124, 92, 255, 0.10),
            transparent 34%
        ),
        radial-gradient(
            circle at 92% 12%,
            rgba(37, 211, 255, 0.08),
            transparent 28%
        ),
        #f8faff;
}

.decideme-page .product-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 80px;
}


/* ---------------------------------------------------------
   HERO CONTENT
   --------------------------------------------------------- */

.decideme-page .product-hero-content {
    max-width: 700px;
}

.decideme-page .product-logo-wrap {
    width: 76px;
    height: 76px;
    margin-bottom: 22px;
}

.decideme-page .product-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.decideme-page .product-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 14px;
    border: 1px solid rgba(93, 78, 230, 0.18);
    border-radius: 999px;
    background: rgba(93, 78, 230, 0.07);
    color: #5d4ee6;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.decideme-page .product-hero h1 {
    margin: 22px 0 22px;
    max-width: 760px;
    color: #10172a;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.decideme-page .product-hero h1 span {
    display: block;
    color: #6657e8;
}

.decideme-page .product-hero-lead {
    max-width: 650px;
    margin: 0 0 30px;
    color: #5d6679;
    font-size: 18px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   FEATURE LIST
   --------------------------------------------------------- */

.decideme-page .product-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 28px;
    max-width: 650px;
    margin-bottom: 30px;
}

.decideme-page .product-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #30384b;
    font-size: 14px;
    line-height: 1.5;
}

.decideme-page .feature-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #25d3ff,
        #6657e8
    );
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
}


/* ---------------------------------------------------------
   TECH INFO
   --------------------------------------------------------- */

.decideme-page .product-tech {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 28px;
    color: #747c8e;
    font-size: 13px;
    font-weight: 500;
}

.decideme-page .product-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.decideme-page .product-actions .btn-primary {
    background: linear-gradient(
        135deg,
        #25c9f3,
        #6657e8
    );
    border-color: transparent;
    box-shadow: 0 14px 30px rgba(102, 87, 232, 0.18);
}

.decideme-page .product-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(102, 87, 232, 0.24);
}


/* ---------------------------------------------------------
   HERO PHONE
   --------------------------------------------------------- */

.decideme-page .product-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 620px;
}

.decideme-page .product-phone-frame {
    position: relative;
    width: min(330px, 78%);
    padding: 10px;
    border: 1px solid rgba(102, 87, 232, 0.20);
    border-radius: 44px;
    background: #111525;
    box-shadow:
        0 35px 80px rgba(30, 38, 75, 0.20),
        0 0 0 10px rgba(102, 87, 232, 0.045);
}

.decideme-page .product-phone-screen {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    background: #ffffff;
}

.decideme-page .product-phone-screen::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 50%;
    z-index: 2;
    width: 82px;
    height: 24px;
    border-radius: 999px;
    background: #111525;
    transform: translateX(-50%);
}

.decideme-page .product-main-screenshot {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* ---------------------------------------------------------
   SCREENSHOT SLIDER
   --------------------------------------------------------- */

.decideme-page .product-slider-section {
    padding: 95px 0 70px;
    background: #ffffff;
}

.decideme-page .product-slider {
    position: relative;
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
}

.decideme-page .product-slider-track {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 30px;
}

.decideme-page .product-slide {
    display: none;
    width: 100%;
}

.decideme-page .product-slide.active {
    display: block;
}

.decideme-page .product-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 30px;
}


/* ---------------------------------------------------------
   SLIDER ARROWS
   --------------------------------------------------------- */

.decideme-page .product-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(20, 30, 55, 0.10);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #20283a;
    font-size: 18px;
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 10px 25px rgba(25, 35, 60, 0.12);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.decideme-page .product-slider-arrow:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 14px 30px rgba(25, 35, 60, 0.16);
}

.decideme-page .product-slider-prev {
    left: -23px;
}

.decideme-page .product-slider-next {
    right: -23px;
}


/* ---------------------------------------------------------
   SLIDER META
   --------------------------------------------------------- */

.decideme-page .product-slider-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 430px;
    margin: 22px auto 0;
}

.decideme-page .product-slider-counter {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #20283a;
    font-size: 13px;
    font-weight: 600;
}

.decideme-page .product-slider-divider {
    color: #a8afbc;
}

.decideme-page .product-slider-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.decideme-page .product-slider-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d9deea;
    cursor: pointer;
    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.decideme-page .product-slider-dot.active {
    width: 22px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        #25c9f3,
        #6657e8
    );
}


/* ---------------------------------------------------------
   OVERVIEW
   --------------------------------------------------------- */

.decideme-page .product-overview {
    background: #f8faff;
}

.decideme-page .product-overview .section-heading {
    max-width: 820px;
    margin: 0 auto 55px;
    text-align: center;
}

.decideme-page .product-overview .section-heading .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.decideme-page .product-overview .section-heading h2 {
    margin-bottom: 20px;
}

.decideme-page .product-overview .section-heading h2 span {
    color: #6657e8;
}

.decideme-page .product-overview .section-heading p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #687184;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   OVERVIEW CARDS
   --------------------------------------------------------- */

.decideme-page .product-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.decideme-page .product-overview-card {
    padding: 32px;
    border: 1px solid rgba(40, 50, 80, 0.08);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(35, 45, 75, 0.05);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.decideme-page .product-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(35, 45, 75, 0.08);
}

.decideme-page .product-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    border-radius: 13px;
    background: linear-gradient(
        135deg,
        rgba(37, 201, 243, 0.12),
        rgba(102, 87, 232, 0.12)
    );
    color: #6657e8;
    font-size: 12px;
    font-weight: 700;
}

.decideme-page .product-overview-card h3 {
    margin: 0 0 11px;
    color: #151c30;
    font-size: 19px;
    line-height: 1.35;
}

.decideme-page .product-overview-card p {
    margin: 0;
    color: #70798b;
    font-size: 14px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   KEY FEATURES
   --------------------------------------------------------- */

.decideme-page .product-features-section {
    background: #ffffff;
}

.decideme-page .product-features-section .section-heading {
    max-width: 820px;
    margin: 0 auto 55px;
    text-align: center;
}

.decideme-page .product-features-section .section-heading .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.decideme-page .product-features-section .section-heading h2 {
    margin-bottom: 20px;
}

.decideme-page .product-features-section .section-heading h2 span {
    color: #6657e8;
}

.decideme-page .product-features-section .section-heading p {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    color: #687184;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   FEATURE CARDS
   --------------------------------------------------------- */

.decideme-page .product-feature-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.decideme-page .product-feature-card {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(40, 50, 80, 0.08);
    border-radius: 22px;
    background: #fbfcff;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.decideme-page .product-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(102, 87, 232, 0.18);
    box-shadow: 0 18px 45px rgba(35, 45, 75, 0.07);
}

.decideme-page .product-feature-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 21px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        #25c9f3,
        #6657e8
    );
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.decideme-page .product-feature-card h3 {
    margin: 0 0 10px;
    color: #151c30;
    font-size: 18px;
    line-height: 1.4;
}

.decideme-page .product-feature-card p {
    margin: 0;
    color: #70798b;
    font-size: 14px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   GALLERY
   --------------------------------------------------------- */

.decideme-page .product-gallery {
    background:
        linear-gradient(
            180deg,
            #f8faff 0%,
            #f4f6fc 100%
        );
}

.decideme-page .product-gallery .section-heading {
    max-width: 820px;
    margin: 0 auto 55px;
    text-align: center;
}

.decideme-page .product-gallery .section-heading .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.decideme-page .product-gallery .section-heading h2 {
    margin-bottom: 20px;
}

.decideme-page .product-gallery .section-heading h2 span {
    color: #6657e8;
}

.decideme-page .product-gallery .section-heading p {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: #687184;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   GALLERY GRID
   --------------------------------------------------------- */

.decideme-page .product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.decideme-page .product-gallery-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    min-height: 300px;
    padding: 18px;
    border: 1px solid rgba(40, 50, 80, 0.08);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(35, 45, 75, 0.06);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.decideme-page .product-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(35, 45, 75, 0.10);
}

.decideme-page .product-gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    border-radius: 17px;
}


/* ---------------------------------------------------------
   RESPONSIVE — TABLET
   --------------------------------------------------------- */

@media (max-width: 1024px) {

    .decideme-page .product-hero {
        padding: 90px 0 75px;
    }

    .decideme-page .product-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
        gap: 50px;
    }

    .decideme-page .product-hero h1 {
        font-size: clamp(40px, 5vw, 58px);
    }

    .decideme-page .product-hero-visual {
        min-height: 540px;
    }

    .decideme-page .product-phone-frame {
        width: min(300px, 85%);
    }

    .decideme-page .product-overview-grid,
    .decideme-page .product-feature-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .decideme-page .product-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ---------------------------------------------------------
   RESPONSIVE — MOBILE
   --------------------------------------------------------- */

@media (max-width: 767px) {

    .decideme-page .product-hero {
        padding: 65px 0 55px;
    }

    .decideme-page .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .decideme-page .product-hero-content {
        max-width: none;
        text-align: left;
    }

    .decideme-page .product-logo-wrap {
        width: 68px;
        height: 68px;
        margin-bottom: 18px;
    }

    .decideme-page .product-badge {
        font-size: 10px;
    }

    .decideme-page .product-hero h1 {
        margin-top: 18px;
        font-size: clamp(36px, 10vw, 48px);
        line-height: 1.08;
    }

    .decideme-page .product-hero-lead {
        font-size: 16px;
        line-height: 1.7;
    }

    .decideme-page .product-feature-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .decideme-page .product-tech {
        font-size: 12px;
    }

    .decideme-page .product-actions {
        width: 100%;
    }

    .decideme-page .product-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .decideme-page .product-hero-visual {
        min-height: auto;
    }

    .decideme-page .product-phone-frame {
        width: min(290px, 82%);
        border-radius: 38px;
    }

    .decideme-page .product-phone-screen {
        border-radius: 30px;
    }

    .decideme-page .product-slider-section {
        padding: 65px 0 50px;
    }

    .decideme-page .product-slider {
        max-width: 330px;
    }

    .decideme-page .product-slider-track,
    .decideme-page .product-slide img {
        border-radius: 24px;
    }

    .decideme-page .product-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .decideme-page .product-slider-prev {
        left: -14px;
    }

    .decideme-page .product-slider-next {
        right: -14px;
    }

    .decideme-page .product-slider-meta {
        max-width: 330px;
    }

    .decideme-page .product-slider-dots {
        gap: 5px;
    }

    .decideme-page .product-slider-dot {
        width: 6px;
        height: 6px;
    }

    .decideme-page .product-slider-dot.active {
        width: 18px;
    }

    .decideme-page .product-overview-grid,
    .decideme-page .product-feature-cards,
    .decideme-page .product-gallery-grid {
        grid-template-columns: 1fr;
    }

    .decideme-page .product-overview .section-heading,
    .decideme-page .product-features-section .section-heading,
    .decideme-page .product-gallery .section-heading {
        margin-bottom: 38px;
    }

    .decideme-page .product-overview-card,
    .decideme-page .product-feature-card {
        padding: 26px;
    }

    .decideme-page .product-gallery-grid {
        gap: 20px;
    }

    .decideme-page .product-gallery-item {
        min-height: auto;
        padding: 14px;
        border-radius: 22px;
    }

}


/* ---------------------------------------------------------
   RESPONSIVE — SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 480px) {

    .decideme-page .product-hero {
        padding-top: 52px;
    }

    .decideme-page .product-hero h1 {
        font-size: 34px;
    }

    .decideme-page .product-hero-lead {
        font-size: 15px;
    }

    .decideme-page .product-phone-frame {
        width: min(270px, 84%);
        padding: 8px;
        border-radius: 34px;
    }

    .decideme-page .product-phone-screen {
        border-radius: 27px;
    }

    .decideme-page .product-slider {
        max-width: 290px;
    }

    .decideme-page .product-slider-arrow {
        width: 36px;
        height: 36px;
    }

    .decideme-page .product-slider-prev {
        left: -10px;
    }

    .decideme-page .product-slider-next {
        right: -10px;
    }

    .decideme-page .product-slider-meta {
        max-width: 290px;
    }

}

/* =========================================================
   OUR WORK PAGE
   ========================================================= */

.work-page {
    overflow: hidden;
}


/* ---------------------------------------------------------
   SECTION HEADING OVERRIDE
   --------------------------------------------------------- */

.work-page .section-heading {
    display: block;
    width: 100%;
    grid-template-columns: none;
    grid-template-rows: none;
}

.work-page .section-heading > * {
    grid-column: auto;
    grid-row: auto;
}

.work-page .section-heading .eyebrow {
    display: block;
    width: fit-content;
    margin: 0 0 16px;
}

.work-page .section-heading h2,
.work-page .section-heading p {
    display: block;
    width: 100%;
}


/* =========================================================
   HERO
   ========================================================= */

.work-page .work-hero {
    position: relative;
    padding: 115px 0 105px;
    background:
        radial-gradient(
            circle at 82% 38%,
            rgba(102, 87, 232, 0.10),
            transparent 31%
        ),
        radial-gradient(
            circle at 68% 90%,
            rgba(37, 201, 243, 0.08),
            transparent 28%
        ),
        #f8faff;
}

.work-page .work-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    align-items: center;
    gap: 80px;
}

.work-page .work-hero-content {
    max-width: 720px;
}

.work-page .work-hero-content > .eyebrow {
    margin-bottom: 18px;
}

.work-page .work-hero h1 {
    max-width: 760px;
    margin: 0 0 24px;
    color: #10172a;
    font-size: clamp(46px, 5.5vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.work-page .work-hero h1 span {
    display: block;
    color: #6657e8;
}

.work-page .work-hero-content > p {
    max-width: 650px;
    margin: 0 0 34px;
    color: #626c7e;
    font-size: 18px;
    line-height: 1.8;
}

.work-page .work-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.work-page .work-hero-actions .btn-primary {
    background: linear-gradient(
        135deg,
        #25c9f3,
        #6657e8
    );
    border-color: transparent;
    box-shadow: 0 14px 32px rgba(102, 87, 232, 0.18);
}

.work-page .work-hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(102, 87, 232, 0.23);
}

.work-page .work-hero-actions .btn-secondary {
    background: #ffffff;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.work-page .work-hero-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-page .work-visual-card {
    position: relative;
    width: min(470px, 90%);
    padding: 13px;
    border: 1px solid rgba(102, 87, 232, 0.14);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow:
        0 35px 75px rgba(32, 43, 75, 0.10),
        0 0 0 12px rgba(102, 87, 232, 0.035);
    transform: rotate(-2deg);
}

.work-page .work-visual-browser {
    overflow: hidden;
    border: 1px solid rgba(35, 45, 70, 0.07);
    border-radius: 21px;
    background: #ffffff;
}

.work-page .work-browser-top {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 46px;
    padding: 0 17px;
    border-bottom: 1px solid rgba(35, 45, 70, 0.07);
    background: #f7f8fc;
}

.work-page .work-browser-top span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd1dc;
}

.work-page .work-browser-content {
    min-height: 360px;
    padding: 38px 35px;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7f9ff 100%
        );
}

.work-page .work-browser-line {
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(102, 87, 232, 0.17),
        rgba(37, 201, 243, 0.12)
    );
}

.work-page .work-browser-line.large {
    width: 68%;
    height: 25px;
    margin-bottom: 14px;
}

.work-page .work-browser-line.medium {
    width: 46%;
    height: 11px;
    margin-bottom: 45px;
    opacity: 0.65;
}

.work-page .work-browser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.work-page .work-browser-grid div {
    min-height: 145px;
    border: 1px solid rgba(102, 87, 232, 0.09);
    border-radius: 16px;
    background:
        linear-gradient(
            145deg,
            rgba(37, 201, 243, 0.08),
            rgba(102, 87, 232, 0.08)
        );
}


/* =========================================================
   HERO FLOATING CARDS
   ========================================================= */

.work-page .work-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border: 1px solid rgba(35, 45, 70, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 40px rgba(35, 45, 70, 0.10);
    backdrop-filter: blur(12px);
}

.work-page .work-floating-card strong {
    display: block;
    margin-bottom: 3px;
    color: #172038;
    font-size: 12px;
    font-weight: 700;
}

.work-page .work-floating-card small {
    display: block;
    color: #858d9e;
    font-size: 10px;
}

.work-page .work-floating-card-one {
    top: 90px;
    left: 0;
}

.work-page .work-floating-card-two {
    right: 0;
    bottom: 82px;
}

.work-page .work-floating-icon,
.work-page .work-floating-number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: linear-gradient(
        135deg,
        rgba(37, 201, 243, 0.14),
        rgba(102, 87, 232, 0.14)
    );
    color: #6657e8;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   INTRO
   ========================================================= */

.work-page .work-intro {
    background: #ffffff;
}

.work-page .work-intro .section-heading {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.work-page .work-intro .section-heading .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.work-page .work-intro h2 {
    margin-bottom: 20px;
}

.work-page .work-intro h2 span {
    color: #6657e8;
}

.work-page .work-intro p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #687184;
    line-height: 1.8;
}


/* =========================================================
   FEATURED WORK
   ========================================================= */

.work-page .work-projects {
    background: #f8faff;
}

.work-page .work-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    align-items: end;
    gap: 50px;
    margin-bottom: 60px;
}

.work-page .work-section-heading .eyebrow {
    margin-bottom: 16px;
}

.work-page .work-section-heading h2 {
    margin: 0;
}

.work-page .work-section-heading h2 span {
    color: #6657e8;
}

.work-page .work-section-heading > p {
    max-width: 430px;
    margin: 0 0 4px auto;
    color: #687184;
    line-height: 1.75;
}


/* =========================================================
   PROJECT LIST
   ========================================================= */

.work-page .work-project-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.work-page .work-project-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    align-items: center;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid rgba(35, 45, 70, 0.08);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 16px 48px rgba(35, 45, 70, 0.055);
}

.work-page .work-project-card:nth-child(even) {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.work-page .work-project-content {
    padding: 65px;
}

.work-page .work-project-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    min-height: 500px;
    padding: 50px;
    background:
        radial-gradient(
            circle at center,
            rgba(102, 87, 232, 0.09),
            transparent 65%
        ),
        #f5f7fc;
}

.work-page .work-project-image {
    width: min(285px, 82%);
    overflow: hidden;
    border-radius: 28px;
    box-shadow:
        0 28px 55px rgba(25, 35, 65, 0.16),
        0 0 0 8px rgba(255, 255, 255, 0.72);
    transform: rotate(-2deg);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.work-page .work-project-card:hover .work-project-image {
    transform: rotate(0deg) translateY(-5px);
    box-shadow:
        0 34px 65px rgba(25, 35, 65, 0.19),
        0 0 0 8px rgba(255, 255, 255, 0.82);
}

.work-page .work-project-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.work-page .work-project-category {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 18px;
    padding: 6px 12px;
    border: 1px solid rgba(102, 87, 232, 0.15);
    border-radius: 999px;
    background: rgba(102, 87, 232, 0.06);
    color: #6657e8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.work-page .work-project-content h3 {
    margin: 0 0 16px;
    color: #151c30;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.work-page .work-project-content p {
    max-width: 550px;
    margin: 0 0 24px;
    color: #6d7688;
    font-size: 15px;
    line-height: 1.8;
}

.work-page .work-project-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.work-page .work-project-tags span {
    padding: 7px 11px;
    border: 1px solid rgba(35, 45, 70, 0.08);
    border-radius: 999px;
    background: #fafbfe;
    color: #727b8d;
    font-size: 11px;
    font-weight: 600;
}

.work-page .work-project-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #6657e8;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.25s ease;
}

.work-page .work-project-link:hover {
    gap: 13px;
}


/* =========================================================
   PROJECT-SPECIFIC VISUAL ACCENTS
   ========================================================= */

.work-page .work-project-flyscout .work-project-visual {
    background:
        radial-gradient(
            circle at center,
            rgba(37, 201, 243, 0.12),
            transparent 65%
        ),
        #f4f9fc;
}

.work-page .work-project-flyscout .work-project-category {
    color: #159fc4;
    border-color: rgba(37, 201, 243, 0.18);
    background: rgba(37, 201, 243, 0.07);
}


.work-page .work-project-halal-life .work-project-visual {
    background:
        radial-gradient(
            circle at center,
            rgba(50, 170, 115, 0.11),
            transparent 65%
        ),
        #f5faf7;
}

.work-page .work-project-halal-life .work-project-category {
    color: #258c60;
    border-color: rgba(50, 170, 115, 0.18);
    background: rgba(50, 170, 115, 0.07);
}


.work-page .work-project-decideme .work-project-visual {
    background:
        radial-gradient(
            circle at center,
            rgba(102, 87, 232, 0.12),
            transparent 65%
        ),
        #f6f5fc;
}

.work-page .work-project-decideme .work-project-category {
    color: #6657e8;
}


.work-page .work-project-store .work-project-visual {
    background:
        radial-gradient(
            circle at center,
            rgba(102, 87, 232, 0.09),
            transparent 68%
        ),
        #f6f7fb;
}

.work-page .work-project-store .work-project-content {
    padding-right: 60px;
}


/* =========================================================
   STORE VISUAL
   ========================================================= */

.work-page .work-store-visual {
    padding: 55px;
}

.work-page .work-store-image {
    width: 90%;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 25px 55px rgba(30, 40, 65, 0.13);
    transform: rotate(1deg);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.work-page .work-project-store:hover .work-store-image {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: 0 32px 65px rgba(30, 40, 65, 0.17);
}

.work-page .work-store-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* =========================================================
   OUR APPROACH
   ========================================================= */

.work-page .work-approach {
    background: #ffffff;
}

.work-page .work-approach .section-heading {
    max-width: 820px;
    margin: 0 auto 55px;
    text-align: center;
}

.work-page .work-approach .section-heading .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.work-page .work-approach .section-heading h2 {
    margin-bottom: 20px;
}

.work-page .work-approach .section-heading h2 span {
    color: #6657e8;
}

.work-page .work-approach .section-heading p {
    max-width: 670px;
    margin-left: auto;
    margin-right: auto;
    color: #687184;
    line-height: 1.8;
}

.work-page .work-approach-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.work-page .work-approach-card {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(35, 45, 70, 0.08);
    border-radius: 22px;
    background: #fbfcff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.work-page .work-approach-card:hover {
    transform: translateY(-4px);
    border-color: rgba(102, 87, 232, 0.15);
    box-shadow: 0 18px 42px rgba(35, 45, 70, 0.07);
}

.work-page .work-approach-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        rgba(37, 201, 243, 0.12),
        rgba(102, 87, 232, 0.12)
    );
    color: #6657e8;
    font-size: 11px;
    font-weight: 700;
}

.work-page .work-approach-card h3 {
    margin: 0 0 11px;
    color: #171e32;
    font-size: 18px;
}

.work-page .work-approach-card p {
    margin: 0;
    color: #70798b;
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   BUSINESS CTA
   ========================================================= */

.work-page .work-business {
    background: #f8faff;
}

.work-page .work-business-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
    align-items: center;
    gap: 60px;
    overflow: hidden;
    min-height: 440px;
    padding: 65px;
    border: 1px solid rgba(102, 87, 232, 0.10);
    border-radius: 32px;
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(102, 87, 232, 0.09),
            transparent 35%
        ),
        #ffffff;
    box-shadow: 0 20px 55px rgba(35, 45, 70, 0.06);
}

.work-page .work-business-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.work-page .work-business-content .eyebrow {
    margin-bottom: 17px;
}

.work-page .work-business-content h2 {
    margin: 0 0 20px;
    color: #151c30;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.work-page .work-business-content h2 span {
    color: #6657e8;
}

.work-page .work-business-content p {
    max-width: 580px;
    margin: 0 0 28px;
    color: #697285;
    font-size: 15px;
    line-height: 1.8;
}

.work-page .work-business-content .btn-primary {
    background: linear-gradient(
        135deg,
        #25c9f3,
        #6657e8
    );
    border-color: transparent;
    box-shadow: 0 14px 30px rgba(102, 87, 232, 0.16);
}


/* =========================================================
   BUSINESS VISUAL
   ========================================================= */

.work-page .work-business-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 310px;
}

.work-page .work-business-orbit {
    position: absolute;
    border: 1px solid rgba(102, 87, 232, 0.13);
    border-radius: 50%;
}

.work-page .orbit-one {
    width: 280px;
    height: 280px;
}

.work-page .orbit-two {
    width: 190px;
    height: 190px;
    border-color: rgba(37, 201, 243, 0.15);
}

.work-page .work-business-core {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 170px;
    height: 100px;
    border: 1px solid rgba(102, 87, 232, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 18px 45px rgba(35, 45, 70, 0.09);
    backdrop-filter: blur(10px);
}

.work-page .work-business-core span {
    color: #6e7789;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.work-page .work-business-core strong {
    color: #6657e8;
    font-size: 20px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .work-page .work-hero {
        padding: 90px 0 80px;
    }

    .work-page .work-hero-grid {
        gap: 50px;
    }

    .work-page .work-hero-visual {
        min-height: 500px;
    }

    .work-page .work-visual-card {
        width: 90%;
    }

    .work-page .work-floating-card-one {
        left: -5px;
    }

    .work-page .work-floating-card-two {
        right: -5px;
    }

    .work-page .work-project-content {
        padding: 48px;
    }

    .work-page .work-project-visual {
        min-height: 460px;
        padding: 40px;
    }

    .work-page .work-approach-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .work-page .work-business-card {
        padding: 50px;
        gap: 40px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .work-page .work-hero {
        padding: 65px 0 60px;
    }

    .work-page .work-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .work-page .work-hero-content {
        max-width: none;
    }

    .work-page .work-hero h1 {
        font-size: clamp(38px, 10vw, 50px);
        line-height: 1.07;
    }

    .work-page .work-hero-content > p {
        font-size: 16px;
        line-height: 1.7;
    }

    .work-page .work-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .work-page .work-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .work-page .work-hero-visual {
        min-height: 430px;
    }

    .work-page .work-visual-card {
        width: 88%;
        padding: 9px;
        border-radius: 23px;
    }

    .work-page .work-visual-browser {
        border-radius: 17px;
    }

    .work-page .work-browser-top {
        height: 38px;
        padding: 0 13px;
    }

    .work-page .work-browser-content {
        min-height: 285px;
        padding: 28px 23px;
    }

    .work-page .work-browser-line.large {
        height: 18px;
        margin-bottom: 10px;
    }

    .work-page .work-browser-line.medium {
        height: 8px;
        margin-bottom: 30px;
    }

    .work-page .work-browser-grid {
        gap: 9px;
    }

    .work-page .work-browser-grid div {
        min-height: 105px;
        border-radius: 11px;
    }

    .work-page .work-floating-card {
        padding: 11px 13px;
        border-radius: 13px;
    }

    .work-page .work-floating-card-one {
        top: 35px;
        left: -2px;
    }

    .work-page .work-floating-card-two {
        right: -2px;
        bottom: 28px;
    }

    .work-page .work-floating-icon,
    .work-page .work-floating-number {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
        border-radius: 9px;
        font-size: 11px;
    }

    .work-page .work-floating-card strong {
        font-size: 10px;
    }

    .work-page .work-floating-card small {
        font-size: 8px;
    }


    /* INTRO */

    .work-page .work-intro .section-heading {
        text-align: left;
    }

    .work-page .work-intro .section-heading .eyebrow {
        margin-left: 0;
        margin-right: 0;
    }


    /* FEATURED HEADING */

    .work-page .work-section-heading {
        display: block;
        margin-bottom: 40px;
    }

    .work-page .work-section-heading > p {
        max-width: none;
        margin: 20px 0 0;
    }


    /* PROJECT CARDS */

    .work-page .work-project-list {
        gap: 22px;
    }

    .work-page .work-project-card,
    .work-page .work-project-card:nth-child(even) {
        display: flex;
        flex-direction: column;
        min-height: auto;
        border-radius: 24px;
    }

    .work-page .work-project-content,
    .work-page .work-project-store .work-project-content {
        order: 2;
        width: 100%;
        padding: 34px 25px 38px;
    }

    .work-page .work-project-visual {
        order: 1;
        width: 100%;
        min-height: 360px;
        padding: 40px 25px;
    }

    .work-page .work-project-image {
        width: min(245px, 75%);
        border-radius: 23px;
    }

    .work-page .work-project-content h3 {
        font-size: 32px;
    }

    .work-page .work-project-content p {
        font-size: 14px;
    }

    .work-page .work-project-tags {
        margin-bottom: 23px;
    }

    .work-page .work-store-visual {
        padding: 35px 25px;
        min-height: 270px;
    }

    .work-page .work-store-image {
        width: 92%;
        border-radius: 17px;
    }


    /* APPROACH */

    .work-page .work-approach .section-heading {
        text-align: left;
    }

    .work-page .work-approach .section-heading .eyebrow {
        margin-left: 0;
        margin-right: 0;
    }

    .work-page .work-approach-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .work-page .work-approach-card {
        padding: 25px;
    }


    /* BUSINESS CTA */

    .work-page .work-business-card {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: auto;
        padding: 38px 25px 20px;
        border-radius: 25px;
    }

    .work-page .work-business-content h2 {
        font-size: 36px;
    }

    .work-page .work-business-visual {
        min-height: 280px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .work-page .work-hero {
        padding: 52px 0 48px;
    }

    .work-page .work-hero h1 {
        font-size: 35px;
    }

    .work-page .work-hero-visual {
        min-height: 365px;
    }

    .work-page .work-visual-card {
        width: 86%;
    }

    .work-page .work-browser-content {
        min-height: 235px;
        padding: 22px 18px;
    }

    .work-page .work-browser-grid div {
        min-height: 82px;
    }

    .work-page .work-floating-card-one {
        left: -5px;
    }

    .work-page .work-floating-card-two {
        right: -5px;
    }

    .work-page .work-project-visual {
        min-height: 320px;
    }

    .work-page .work-project-image {
        width: min(220px, 76%);
    }

    .work-page .work-project-content {
        padding: 30px 21px 34px;
    }

    .work-page .work-project-content h3 {
        font-size: 29px;
    }

    .work-page .work-business-content h2 {
        font-size: 32px;
    }

    .work-page .work-business-visual {
        min-height: 250px;
    }

    .work-page .orbit-one {
        width: 225px;
        height: 225px;
    }

    .work-page .orbit-two {
        width: 155px;
        height: 155px;
    }

}

/* =========================================================
   CASE STUDY PAGE
   ========================================================= */

.case-study-page {
    overflow: hidden;
}


/* ---------------------------------------------------------
   SECTION HEADING OVERRIDE
   --------------------------------------------------------- */

.case-study-page .section-heading {
    display: block;
    width: 100%;
    grid-template-columns: none;
    grid-template-rows: none;
}

.case-study-page .section-heading > * {
    grid-column: auto;
    grid-row: auto;
}

.case-study-page .section-heading .eyebrow {
    display: block;
    width: fit-content;
    margin: 0 0 16px;
}

.case-study-page .section-heading h2,
.case-study-page .section-heading p {
    display: block;
    width: 100%;
}


/* =========================================================
   HERO
   ========================================================= */

.case-study-page .case-study-hero {
    position: relative;
    padding: 55px 0 105px;
    background:
        radial-gradient(
            circle at 82% 42%,
            rgba(102, 87, 232, 0.10),
            transparent 32%
        ),
        radial-gradient(
            circle at 68% 88%,
            rgba(37, 201, 243, 0.07),
            transparent 28%
        ),
        #f8faff;
}


/* ---------------------------------------------------------
   BREADCRUMB
   --------------------------------------------------------- */

.case-study-page .case-study-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 55px;
    color: #858d9d;
    font-size: 12px;
    font-weight: 500;
}

.case-study-page .case-study-breadcrumb a {
    color: #6657e8;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.case-study-page .case-study-breadcrumb a:hover {
    opacity: 0.7;
}

.case-study-page .case-study-breadcrumb span:first-of-type {
    color: #b2b8c4;
}


/* ---------------------------------------------------------
   HERO GRID
   --------------------------------------------------------- */

.case-study-page .case-study-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
    align-items: center;
    gap: 85px;
}

.case-study-page .case-study-hero-content {
    max-width: 720px;
}


/* ---------------------------------------------------------
   HERO TYPOGRAPHY
   --------------------------------------------------------- */

.case-study-page .case-study-hero .eyebrow {
    margin-bottom: 14px;
}

.case-study-page .case-study-category {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 21px;
    padding: 6px 12px;
    border: 1px solid rgba(102, 87, 232, 0.16);
    border-radius: 999px;
    background: rgba(102, 87, 232, 0.06);
    color: #6657e8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.case-study-page .case-study-hero h1 {
    max-width: 760px;
    margin: 0 0 23px;
    color: #10172a;
    font-size: clamp(43px, 5.2vw, 68px);
    line-height: 1.06;
    letter-spacing: -0.048em;
}

.case-study-page .case-study-hero-content > p {
    max-width: 650px;
    margin: 0 0 28px;
    color: #626c7e;
    font-size: 17px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   TAGS
   --------------------------------------------------------- */

.case-study-page .case-study-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 31px;
}

.case-study-page .case-study-tags span {
    padding: 7px 12px;
    border: 1px solid rgba(35, 45, 70, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: #70798b;
    font-size: 11px;
    font-weight: 600;
}


/* ---------------------------------------------------------
   HERO IMAGE
   --------------------------------------------------------- */

.case-study-page .case-study-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 550px;
}

.case-study-page .case-study-image-card {
    position: relative;
    width: min(355px, 82%);
    padding: 12px;
    border: 1px solid rgba(102, 87, 232, 0.15);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow:
        0 35px 80px rgba(30, 40, 70, 0.15),
        0 0 0 12px rgba(102, 87, 232, 0.035);
    transform: rotate(2deg);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.case-study-page .case-study-image-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow:
        0 40px 90px rgba(30, 40, 70, 0.18),
        0 0 0 12px rgba(102, 87, 232, 0.045);
}

.case-study-page .case-study-image-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 25px;
    object-fit: contain;
}


/* =========================================================
   PROJECT OVERVIEW
   ========================================================= */

.case-study-page .case-study-overview {
    background: #ffffff;
}

.case-study-page .case-study-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    align-items: start;
    gap: 90px;
}

.case-study-page .case-study-overview-intro {
    position: sticky;
    top: 120px;
}

.case-study-page .case-study-overview-intro .eyebrow {
    margin-bottom: 17px;
}

.case-study-page .case-study-overview-intro h2 {
    max-width: 520px;
    margin: 0;
    color: #151c30;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.case-study-page .case-study-overview-intro h2 span {
    color: #6657e8;
}

.case-study-page .case-study-overview-copy {
    padding-top: 7px;
}

.case-study-page .case-study-overview-copy p {
    max-width: 650px;
    margin: 0 0 22px;
    color: #687184;
    font-size: 16px;
    line-height: 1.85;
}

.case-study-page .case-study-overview-copy p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   STORY
   ========================================================= */

.case-study-page .case-study-story {
    background: #f8faff;
}

.case-study-page .case-study-story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.case-study-page .case-study-story-card {
    position: relative;
    min-height: 330px;
    padding: 34px;
    border: 1px solid rgba(35, 45, 70, 0.08);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(35, 45, 70, 0.045);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.case-study-page .case-study-story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 21px 50px rgba(35, 45, 70, 0.075);
}

.case-study-page .case-study-story-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 25px;
    border-radius: 13px;
    background: linear-gradient(
        135deg,
        rgba(37, 201, 243, 0.12),
        rgba(102, 87, 232, 0.12)
    );
    color: #6657e8;
    font-size: 11px;
    font-weight: 700;
}

.case-study-page .case-study-story-label {
    display: block;
    margin-bottom: 10px;
    color: #6657e8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.case-study-page .case-study-story-card h3 {
    margin: 0 0 13px;
    color: #171e32;
    font-size: 20px;
    line-height: 1.35;
}

.case-study-page .case-study-story-card p {
    margin: 0;
    color: #70798b;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   KEY FEATURES
   ========================================================= */

.case-study-page .case-study-features {
    background: #ffffff;
}

.case-study-page .case-study-features .section-heading {
    max-width: 820px;
    margin: 0 auto 55px;
    text-align: center;
}

.case-study-page .case-study-features .section-heading .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.case-study-page .case-study-features .section-heading h2 {
    margin-bottom: 20px;
}

.case-study-page .case-study-features .section-heading h2 span {
    color: #6657e8;
}

.case-study-page .case-study-features .section-heading p {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: #687184;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   FEATURE GRID
   --------------------------------------------------------- */

.case-study-page .case-study-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.case-study-page .case-study-feature-card {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 105px;
    padding: 22px;
    border: 1px solid rgba(35, 45, 70, 0.08);
    border-radius: 19px;
    background: #fbfcff;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.case-study-page .case-study-feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(102, 87, 232, 0.15);
    box-shadow: 0 15px 35px rgba(35, 45, 70, 0.06);
}

.case-study-page .case-study-feature-number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: linear-gradient(
        135deg,
        #25c9f3,
        #6657e8
    );
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
}

.case-study-page .case-study-feature-card h3 {
    margin: 0;
    color: #20283a;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   SHOWCASE
   ========================================================= */

.case-study-page .case-study-showcase {
    background:
        linear-gradient(
            180deg,
            #f8faff 0%,
            #f3f5fb 100%
        );
}

.case-study-page .case-study-showcase-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
    align-items: center;
    gap: 70px;
    min-height: 540px;
    overflow: hidden;
    padding: 65px;
    border: 1px solid rgba(102, 87, 232, 0.10);
    border-radius: 32px;
    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(102, 87, 232, 0.10),
            transparent 35%
        ),
        #ffffff;
    box-shadow: 0 20px 55px rgba(35, 45, 70, 0.06);
}

.case-study-page .case-study-showcase-content {
    max-width: 650px;
}

.case-study-page .case-study-showcase-content .eyebrow {
    margin-bottom: 17px;
}

.case-study-page .case-study-showcase-content h2 {
    margin: 0 0 20px;
    color: #151c30;
    font-size: clamp(35px, 4vw, 53px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.case-study-page .case-study-showcase-content h2 span {
    color: #6657e8;
}

.case-study-page .case-study-showcase-content p {
    max-width: 590px;
    margin: 0 0 28px;
    color: #697285;
    font-size: 15px;
    line-height: 1.8;
}

.case-study-page .case-study-showcase-content .btn-primary {
    background: linear-gradient(
        135deg,
        #25c9f3,
        #6657e8
    );
    border-color: transparent;
    box-shadow: 0 14px 30px rgba(102, 87, 232, 0.16);
}


/* ---------------------------------------------------------
   SHOWCASE IMAGE
   --------------------------------------------------------- */

.case-study-page .case-study-showcase-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 390px;
}

.case-study-page .case-study-showcase-image {
    width: min(280px, 82%);
    overflow: hidden;
    border-radius: 27px;
    box-shadow:
        0 30px 60px rgba(30, 40, 70, 0.15),
        0 0 0 8px rgba(255, 255, 255, 0.75);
    transform: rotate(-2deg);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.case-study-page .case-study-showcase-image:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow:
        0 35px 70px rgba(30, 40, 70, 0.18),
        0 0 0 8px rgba(255, 255, 255, 0.85);
}

.case-study-page .case-study-showcase-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* =========================================================
   NEXT PROJECT / CTA
   ========================================================= */

.case-study-page .case-study-next {
    background: #ffffff;
}

.case-study-page .case-study-next-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 52px 60px;
    border: 1px solid rgba(102, 87, 232, 0.10);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(37, 201, 243, 0.07),
            transparent 32%
        ),
        #f8faff;
}

.case-study-page .case-study-next-card .eyebrow {
    margin-bottom: 14px;
}

.case-study-page .case-study-next-card h2 {
    margin: 0 0 13px;
    color: #151c30;
    font-size: clamp(30px, 3.5vw, 45px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.case-study-page .case-study-next-card h2 span {
    color: #6657e8;
}

.case-study-page .case-study-next-card p {
    max-width: 600px;
    margin: 0;
    color: #6d7688;
    font-size: 14px;
    line-height: 1.75;
}

.case-study-page .case-study-next-card .btn-primary {
    flex: 0 0 auto;
    background: linear-gradient(
        135deg,
        #25c9f3,
        #6657e8
    );
    border-color: transparent;
    box-shadow: 0 14px 30px rgba(102, 87, 232, 0.15);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .case-study-page .case-study-hero {
        padding: 45px 0 80px;
    }

    .case-study-page .case-study-hero-grid {
        gap: 55px;
    }

    .case-study-page .case-study-hero-visual {
        min-height: 480px;
    }

    .case-study-page .case-study-image-card {
        width: min(310px, 88%);
    }

    .case-study-page .case-study-overview-grid {
        gap: 55px;
    }

    .case-study-page .case-study-story-card {
        min-height: 350px;
    }

    .case-study-page .case-study-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .case-study-page .case-study-showcase-card {
        gap: 45px;
        padding: 50px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .case-study-page .case-study-hero {
        padding: 35px 0 60px;
    }

    .case-study-page .case-study-breadcrumb {
        margin-bottom: 38px;
    }

    .case-study-page .case-study-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .case-study-page .case-study-hero h1 {
        font-size: clamp(37px, 10vw, 50px);
        line-height: 1.07;
    }

    .case-study-page .case-study-hero-content > p {
        font-size: 15px;
        line-height: 1.75;
    }

    .case-study-page .case-study-hero-visual {
        min-height: auto;
    }

    .case-study-page .case-study-image-card {
        width: min(285px, 78%);
        padding: 9px;
        border-radius: 28px;
    }

    .case-study-page .case-study-image-card img {
        border-radius: 21px;
    }


    /* OVERVIEW */

    .case-study-page .case-study-overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .case-study-page .case-study-overview-intro {
        position: static;
    }

    .case-study-page .case-study-overview-intro h2 {
        font-size: 35px;
    }

    .case-study-page .case-study-overview-copy p {
        font-size: 14px;
        line-height: 1.8;
    }


    /* STORY */

    .case-study-page .case-study-story-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .case-study-page .case-study-story-card {
        min-height: auto;
        padding: 27px;
    }


    /* FEATURES */

    .case-study-page .case-study-features .section-heading {
        margin-bottom: 38px;
    }

    .case-study-page .case-study-feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .case-study-page .case-study-feature-card {
        min-height: 88px;
        padding: 18px;
    }


    /* SHOWCASE */

    .case-study-page .case-study-showcase-card {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: auto;
        padding: 38px 25px 25px;
        border-radius: 25px;
    }

    .case-study-page .case-study-showcase-content h2 {
        font-size: 36px;
    }

    .case-study-page .case-study-showcase-content p {
        font-size: 14px;
    }

    .case-study-page .case-study-showcase-visual {
        min-height: 320px;
    }

    .case-study-page .case-study-showcase-image {
        width: min(245px, 72%);
    }


    /* NEXT CTA */

    .case-study-page .case-study-next-card {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
        padding: 35px 25px;
        border-radius: 24px;
    }

    .case-study-page .case-study-next-card h2 {
        font-size: 34px;
    }

    .case-study-page .case-study-next-card .btn-primary {
        width: 100%;
        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .case-study-page .case-study-hero {
        padding-top: 28px;
    }

    .case-study-page .case-study-breadcrumb {
        margin-bottom: 30px;
        font-size: 11px;
    }

    .case-study-page .case-study-hero h1 {
        font-size: 34px;
    }

    .case-study-page .case-study-category {
        font-size: 9px;
    }

    .case-study-page .case-study-image-card {
        width: min(255px, 78%);
    }

    .case-study-page .case-study-overview-intro h2 {
        font-size: 32px;
    }

    .case-study-page .case-study-story-card {
        padding: 24px;
    }

    .case-study-page .case-study-feature-card {
        gap: 14px;
    }

    .case-study-page .case-study-feature-number {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
    }

    .case-study-page .case-study-feature-card h3 {
        font-size: 13px;
    }

    .case-study-page .case-study-showcase-content h2 {
        font-size: 32px;
    }

    .case-study-page .case-study-showcase-visual {
        min-height: 275px;
    }

    .case-study-page .case-study-showcase-image {
        width: min(215px, 72%);
    }

    .case-study-page .case-study-next-card h2 {
        font-size: 31px;
    }

}

/* =========================================================
   ABOUT PAGE — FINAL
   ========================================================= */

.about-page {
    overflow: hidden;
}

/* ---------------------------------------------------------
   SECTION HEADING FIX
   --------------------------------------------------------- */

.about-page .section-heading {
    display: block;
    width: 100%;
    grid-template-columns: none;
    grid-template-rows: none;
}

.about-page .section-heading > * {
    grid-column: auto;
    grid-row: auto;
}

.about-page .section-heading .eyebrow {
    display: block;
    width: fit-content;
    margin: 0 0 16px;
}

.about-page .section-heading h2,
.about-page .section-heading p {
    display: block;
    width: 100%;
}


/* =========================================================
   HERO
   ========================================================= */

.about-page .about-hero {
    position: relative;
    padding: 110px 0 105px;
    background:
        radial-gradient(
            circle at 82% 38%,
            rgba(72, 105, 255, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 78%,
            rgba(116, 73, 255, 0.055),
            transparent 28%
        );
}

.about-page .about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 80px;
}

.about-page .about-hero-content {
    max-width: 720px;
}

.about-page .about-hero .eyebrow {
    margin-bottom: 20px;
}

.about-page .about-hero h1 {
    max-width: 760px;
    margin: 0 0 25px;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.about-page .about-hero h1 span {
    display: inline;
    background: linear-gradient(135deg, #168cff 0%, #6948ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-page .about-hero-content > p {
    max-width: 650px;
    margin: 0 0 32px;
    color: #667085;
    font-size: 17px;
    line-height: 1.75;
}

.about-page .about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
}


/* ---------------------------------------------------------
   HERO VISUAL
   --------------------------------------------------------- */

.about-page .about-hero-visual {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page .about-hero-card {
    position: relative;
    z-index: 2;
    width: min(100%, 480px);
    padding: 55px 42px;
    border: 1px solid rgba(24, 42, 75, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow:
        0 25px 70px rgba(24, 42, 75, 0.08),
        0 5px 20px rgba(24, 42, 75, 0.035);
    text-align: center;
    backdrop-filter: blur(12px);
}

.about-page .about-hero-logo img {
    display: block;
    width: min(100%, 290px);
    height: auto;
    margin: 0 auto;
}

.about-page .about-hero-line {
    width: 55px;
    height: 2px;
    margin: 25px auto 20px;
    border-radius: 10px;
    background: linear-gradient(90deg, #168cff, #6948ff);
}

.about-page .about-hero-card p {
    margin: 0;
    color: #697386;
    font-size: 14px;
    line-height: 1.7;
}

.about-page .about-hero-orbit {
    position: absolute;
    border: 1px solid rgba(72, 105, 255, 0.11);
    border-radius: 50%;
    pointer-events: none;
}

.about-page .about-hero-orbit.orbit-one {
    width: 390px;
    height: 390px;
    top: 5px;
    right: -15px;
}

.about-page .about-hero-orbit.orbit-two {
    width: 270px;
    height: 270px;
    bottom: 0;
    left: -20px;
}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.about-page .about-intro {
    padding: 105px 0;
    background: #ffffff;
}

.about-page .about-intro-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 85px;
    align-items: start;
}

.about-page .about-intro-heading {
    max-width: 480px;
}

.about-page .about-intro-heading .eyebrow {
    margin-bottom: 17px;
}

.about-page .about-intro-heading h2 {
    margin: 0;
    font-size: clamp(35px, 4vw, 53px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.about-page .about-intro-heading h2 span {
    display: inline;
    background: linear-gradient(135deg, #168cff, #6948ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-page .about-intro-content {
    max-width: 750px;
}

.about-page .about-intro-lead {
    margin: 0 0 27px;
    color: #17233b;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.about-page .about-intro-content > p:not(.about-intro-lead) {
    margin: 0 0 20px;
    color: #697386;
    font-size: 16px;
    line-height: 1.8;
}

.about-page .about-intro-content > p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   WHAT WE DO
   ========================================================= */

.about-page .about-build {
    padding: 110px 0;
    background: #f7f9fc;
}

.about-page .about-build .section-heading {
    max-width: 780px;
    margin-bottom: 58px;
}

.about-page .about-build .section-heading h2 {
    margin: 0 0 17px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.about-page .about-build .section-heading h2 span {
    background: linear-gradient(135deg, #168cff, #6948ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-page .about-build .section-heading p {
    max-width: 650px;
    margin: 0;
    color: #697386;
    line-height: 1.7;
}

.about-page .about-build-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.about-page .about-build-card {
    position: relative;
    min-height: 300px;
    padding: 30px;
    border: 1px solid #e5eaf1;
    border-radius: 23px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.about-page .about-build-card:hover {
    transform: translateY(-5px);
    border-color: rgba(71, 117, 255, 0.18);
    box-shadow: 0 18px 45px rgba(24, 42, 75, 0.08);
}

.about-page .about-build-number {
    display: block;
    color: #98a2b3;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.about-page .about-build-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 38px 0 28px;
    border-radius: 15px;
    background: #eef4ff;
    color: #4775ff;
    font-size: 20px;
}

.about-page .about-build-card h3 {
    margin: 0 0 11px;
    color: #17233b;
    font-size: 22px;
    line-height: 1.25;
}

.about-page .about-build-card p {
    margin: 0;
    color: #707887;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   BUSINESS MODEL
   ========================================================= */

.about-page .about-model {
    padding: 115px 0;
    background: #ffffff;
}

.about-page .about-model .section-heading {
    max-width: 780px;
    margin-bottom: 58px;
}

.about-page .about-model .section-heading h2 {
    margin: 0 0 17px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.about-page .about-model .section-heading h2 span {
    background: linear-gradient(135deg, #168cff, #6948ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-page .about-model .section-heading p {
    max-width: 680px;
    margin: 0;
    color: #697386;
    line-height: 1.7;
}

.about-page .about-model-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.about-page .about-model-card {
    position: relative;
    min-height: 470px;
    padding: 42px;
    border: 1px solid #e5eaf1;
    border-radius: 27px;
    overflow: hidden;
}

.about-page .about-model-products {
    background:
        linear-gradient(
            145deg,
            #f3f8ff 0%,
            #fbfcff 55%,
            #f8f6ff 100%
        );
    border-color: rgba(71, 117, 255, 0.12);
}

.about-page .about-model-solutions {
    background: #f8fafc;
}

.about-page .about-model-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 38px;
}

.about-page .about-model-label {
    color: #4775ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.about-page .about-model-number {
    color: #98a2b3;
    font-size: 12px;
    font-weight: 700;
}

.about-page .about-model-card h3 {
    max-width: 480px;
    margin: 0 0 17px;
    color: #17233b;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.about-page .about-model-card h3 span {
    display: inline;
    color: #4775ff;
}

.about-page .about-model-card > p {
    max-width: 550px;
    margin: 0 0 28px;
    color: #697386;
    font-size: 15px;
    line-height: 1.75;
}

.about-page .about-model-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 20px;
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
}

.about-page .about-model-card li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #475467;
    font-size: 14px;
}

.about-page .about-model-card li > span {
    color: #4775ff;
    font-weight: 700;
}

.about-page .about-model-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #17233b;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.about-page .about-model-link span {
    transition: transform 0.2s ease;
}

.about-page .about-model-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   WHY UNITY WELT
   ========================================================= */

.about-page .about-values {
    padding: 110px 0;
    background: #f7f9fc;
}

.about-page .about-values-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 85px;
    align-items: start;
}

.about-page .about-values-heading {
    max-width: 500px;
}

.about-page .about-values-heading .eyebrow {
    margin-bottom: 18px;
}

.about-page .about-values-heading h2 {
    margin: 0 0 20px;
    font-size: clamp(35px, 4vw, 53px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.about-page .about-values-heading h2 span {
    background: linear-gradient(135deg, #168cff, #6948ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-page .about-values-heading > p {
    margin: 0;
    color: #697386;
    font-size: 16px;
    line-height: 1.75;
}

.about-page .about-values-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 38px;
}

.about-page .about-value-item {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 18px;
    padding: 0 0 31px;
    margin-bottom: 31px;
    border-bottom: 1px solid #e1e6ee;
}

.about-page .about-value-item:nth-last-child(-n + 2) {
    margin-bottom: 0;
}

.about-page .about-value-number {
    color: #4775ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.about-page .about-value-item h3 {
    margin: 0 0 9px;
    color: #17233b;
    font-size: 19px;
    line-height: 1.3;
}

.about-page .about-value-item p {
    margin: 0;
    color: #707887;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   VISION
   ========================================================= */

.about-page .about-vision {
    padding: 115px 0;
    background: #ffffff;
}

.about-page .about-vision-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
    align-items: center;
    gap: 70px;
    min-height: 470px;
    padding: 65px 70px;
    border: 1px solid #e6eaf1;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(70, 106, 255, 0.07),
            transparent 35%
        ),
        #fbfcfe;
}

.about-page .about-vision-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
}

.about-page .about-vision-content .eyebrow {
    margin-bottom: 18px;
}

.about-page .about-vision-content h2 {
    margin: 0 0 23px;
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.about-page .about-vision-content h2 span {
    background: linear-gradient(135deg, #168cff, #6948ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-page .about-vision-content p {
    max-width: 620px;
    margin: 0 0 17px;
    color: #697386;
    font-size: 16px;
    line-height: 1.8;
}

.about-page .about-vision-content p:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   VISION MARK
   --------------------------------------------------------- */

.about-page .about-vision-mark {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page .about-vision-ring {
    position: absolute;
    border: 1px solid rgba(71, 117, 255, 0.13);
    border-radius: 50%;
}

.about-page .about-vision-ring.ring-one {
    width: 340px;
    height: 340px;
}

.about-page .about-vision-ring.ring-two {
    width: 235px;
    height: 235px;
}

.about-page .about-vision-core {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: linear-gradient(135deg, #168cff, #6948ff);
    box-shadow:
        0 20px 55px rgba(71, 93, 255, 0.22),
        0 0 0 15px rgba(71, 117, 255, 0.045);
}

.about-page .about-vision-core span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.about-page .about-vision-core strong {
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.08em;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .about-page .about-hero-grid {
        gap: 50px;
    }

    .about-page .about-build-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-page .about-intro-grid,
    .about-page .about-values-grid {
        gap: 55px;
    }

    .about-page .about-vision-card {
        padding: 55px;
        gap: 45px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .about-page .about-hero {
        padding: 70px 0 75px;
    }

    .about-page .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-page .about-hero h1 {
        font-size: clamp(38px, 10vw, 54px);
    }

    .about-page .about-hero-content > p {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-page .about-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-page .about-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .about-page .about-hero-visual {
        min-height: 350px;
    }

    .about-page .about-hero-card {
        padding: 43px 28px;
    }

    .about-page .about-hero-logo img {
        width: min(100%, 255px);
    }

    .about-page .about-hero-orbit.orbit-one {
        width: 290px;
        height: 290px;
        right: -35px;
    }

    .about-page .about-hero-orbit.orbit-two {
        width: 200px;
        height: 200px;
        left: -45px;
    }


    .about-page .about-intro,
    .about-page .about-build,
    .about-page .about-model,
    .about-page .about-values,
    .about-page .about-vision {
        padding: 75px 0;
    }

    .about-page .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-page .about-intro-heading {
        max-width: 100%;
    }

    .about-page .about-intro-heading h2 {
        font-size: 38px;
    }

    .about-page .about-intro-lead {
        font-size: 21px;
    }


    .about-page .about-build .section-heading,
    .about-page .about-model .section-heading {
        margin-bottom: 40px;
    }

    .about-page .about-build-grid {
        grid-template-columns: 1fr;
    }

    .about-page .about-build-card {
        min-height: auto;
    }


    .about-page .about-model-grid {
        grid-template-columns: 1fr;
    }

    .about-page .about-model-card {
        min-height: auto;
        padding: 32px 26px;
    }

    .about-page .about-model-card h3 {
        font-size: 27px;
    }


    .about-page .about-values-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-page .about-values-heading {
        max-width: 100%;
    }

    .about-page .about-values-list {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-page .about-value-item {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }

    .about-page .about-value-item:last-child {
        margin-bottom: 0;
    }


    .about-page .about-vision-card {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 45px 28px;
    }

    .about-page .about-vision-content h2 {
        font-size: 40px;
    }

    .about-page .about-vision-mark {
        min-height: 300px;
    }

    .about-page .about-vision-ring.ring-one {
        width: 285px;
        height: 285px;
    }

    .about-page .about-vision-ring.ring-two {
        width: 200px;
        height: 200px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .about-page .about-hero {
        padding: 55px 0 65px;
    }

    .about-page .about-hero h1 {
        font-size: 36px;
    }

    .about-page .about-hero-card {
        padding: 36px 20px;
    }

    .about-page .about-hero-logo img {
        width: 225px;
    }

    .about-page .about-intro-heading h2,
    .about-page .about-build .section-heading h2,
    .about-page .about-model .section-heading h2 {
        font-size: 34px;
    }

    .about-page .about-model-card {
        padding: 28px 22px;
    }

    .about-page .about-model-card ul {
        grid-template-columns: 1fr;
    }

    .about-page .about-values-heading h2 {
        font-size: 36px;
    }

    .about-page .about-vision-card {
        padding: 38px 22px;
    }

    .about-page .about-vision-content h2 {
        font-size: 35px;
    }

    .about-page .about-vision-mark {
        min-height: 275px;
    }

    .about-page .about-vision-ring.ring-one {
        width: 250px;
        height: 250px;
    }

    .about-page .about-vision-ring.ring-two {
        width: 175px;
        height: 175px;
    }

    .about-page .about-vision-core {
        width: 100px;
        height: 100px;
    }
}

/* =========================================================
   CONTACT PAGE — FINAL
   ========================================================= */

.contact-page {
    overflow: hidden;
}


/* =========================================================
   SECTION HEADING FIX
   ========================================================= */

.contact-page .section-heading {
    display: block;
    width: 100%;
    grid-template-columns: none;
    grid-template-rows: none;
}

.contact-page .section-heading > * {
    grid-column: auto;
    grid-row: auto;
}

.contact-page .section-heading .eyebrow {
    display: block;
    width: fit-content;
    margin: 0 0 16px;
}

.contact-page .section-heading h2,
.contact-page .section-heading p {
    display: block;
    width: 100%;
}


/* =========================================================
   IMPORTANT — HIDDEN ELEMENTS
   ========================================================= */

.contact-page [hidden] {
    display: none !important;
}


/* =========================================================
   HERO
   ========================================================= */

.contact-page .contact-hero {
    position: relative;
    padding: 105px 0 100px;
    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(72, 105, 255, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 75%,
            rgba(116, 73, 255, 0.055),
            transparent 28%
        );
}

.contact-page .contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
    align-items: center;
    gap: 80px;
}

.contact-page .contact-hero-content {
    max-width: 760px;
}

.contact-page .contact-hero .eyebrow {
    margin-bottom: 20px;
}

.contact-page .contact-hero h1 {
    max-width: 760px;
    margin: 0 0 25px;
    font-size: clamp(46px, 5.2vw, 70px);
    line-height: 1.07;
    letter-spacing: -0.045em;
}

.contact-page .contact-hero h1 span {
    display: inline;
    background: linear-gradient(135deg, #168cff 0%, #6948ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-page .contact-hero-content > p {
    max-width: 680px;
    margin: 0;
    color: #667085;
    font-size: 18px;
    line-height: 1.75;
}


/* =========================================================
   HERO MARK
   ========================================================= */

.contact-page .contact-hero-mark {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page .contact-mark-ring {
    position: absolute;
    border: 1px solid rgba(71, 117, 255, 0.12);
    border-radius: 50%;
}

.contact-page .contact-mark-ring.ring-one {
    width: 350px;
    height: 350px;
}

.contact-page .contact-mark-ring.ring-two {
    width: 245px;
    height: 245px;
}

.contact-page .contact-mark-core {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: linear-gradient(135deg, #168cff, #6948ff);
    box-shadow:
        0 22px 60px rgba(71, 93, 255, 0.22),
        0 0 0 16px rgba(71, 117, 255, 0.045);
}

.contact-page .contact-mark-core span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.contact-page .contact-mark-core strong {
    color: #ffffff;
    font-size: 17px;
    letter-spacing: 0.08em;
}


/* =========================================================
   MAIN CONTACT
   ========================================================= */

.contact-page .contact-main {
    padding: 110px 0;
    background: #ffffff;
}

.contact-page .contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
    gap: 85px;
    align-items: start;
}


/* =========================================================
   CONTACT INFO
   ========================================================= */

.contact-page .contact-info {
    max-width: 520px;
}

.contact-page .contact-info .eyebrow {
    margin-bottom: 18px;
}

.contact-page .contact-info h2 {
    margin: 0 0 21px;
    font-size: clamp(36px, 4vw, 53px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.contact-page .contact-info h2 span {
    background: linear-gradient(135deg, #168cff, #6948ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-page .contact-info-intro {
    max-width: 500px;
    margin: 0 0 40px;
    color: #697386;
    font-size: 16px;
    line-height: 1.8;
}

.contact-page .contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.contact-page .contact-info-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 17px;
    align-items: start;
}

.contact-page .contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #eef4ff;
    color: #4775ff;
    font-size: 17px;
    font-weight: 700;
}

.contact-page .contact-info-item > div:last-child {
    padding-top: 2px;
}

.contact-page .contact-info-item > div:last-child > span {
    display: block;
    margin-bottom: 6px;
    color: #98a2b3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-page .contact-info-item a {
    color: #17233b;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.contact-page .contact-info-item a:hover {
    color: #4775ff;
}

.contact-page .contact-info-item p {
    max-width: 430px;
    margin: 0;
    color: #697386;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FORM CARD
   ========================================================= */

.contact-page .contact-form-card {
    padding: 43px;
    border: 1px solid #e5eaf1;
    border-radius: 27px;
    background: #fbfcfe;
    box-shadow: 0 18px 50px rgba(24, 42, 75, 0.045);
}

.contact-page .contact-form-heading {
    margin-bottom: 30px;
}

.contact-page .contact-form-label {
    display: block;
    margin-bottom: 11px;
    color: #4775ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.contact-page .contact-form-heading h3 {
    margin: 0;
    color: #17233b;
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -0.025em;
}


/* =========================================================
   FORM
   ========================================================= */

.contact-page .contact-form {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.contact-page .contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.contact-page .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-page .form-group label {
    color: #344054;
    font-size: 13px;
    font-weight: 600;
}

.contact-page .form-group label span {
    color: #4775ff;
}

.contact-page .form-group input,
.contact-page .form-group textarea {
    width: 100%;
    border: 1px solid #dfe4ec;
    border-radius: 12px;
    outline: none;
    background: #ffffff;
    color: #17233b;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    box-sizing: border-box;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-page .form-group input {
    min-height: 49px;
    padding: 0 15px;
}

.contact-page .form-group textarea {
    min-height: 155px;
    padding: 13px 15px;
    resize: vertical;
}

.contact-page .form-group input::placeholder,
.contact-page .form-group textarea::placeholder {
    color: #98a2b3;
}

.contact-page .form-group input:focus,
.contact-page .form-group textarea:focus {
    border-color: #7091ff;
    box-shadow: 0 0 0 4px rgba(71, 117, 255, 0.08);
}

.contact-page .contact-submit {
    width: fit-content;
    margin-top: 4px;
}

.contact-page .contact-form-note {
    margin: -4px 0 0;
    color: #98a2b3;
    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   ERROR
   ========================================================= */

.contact-page .contact-form-error {
    margin-bottom: 23px;
    padding: 13px 15px;
    border: 1px solid rgba(220, 38, 38, 0.14);
    border-radius: 11px;
    background: rgba(220, 38, 38, 0.045);
    color: #b42318;
    font-size: 13px;
    line-height: 1.6;
}

.contact-page .contact-form-error a {
    color: inherit;
    font-weight: 600;
}


/* =========================================================
   SUCCESS
   ========================================================= */

.contact-page .contact-form-success {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 390px;
}

.contact-page .contact-success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border-radius: 17px;
    background: #eef4ff;
    color: #4775ff;
    font-size: 22px;
    font-weight: 700;
}

.contact-page .contact-form-success h3 {
    margin: 0 0 13px;
    color: #17233b;
    font-size: 27px;
    line-height: 1.3;
}

.contact-page .contact-form-success p {
    max-width: 480px;
    margin: 0 0 27px;
    color: #697386;
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   SERVICES
   ========================================================= */

.contact-page .contact-services {
    padding: 110px 0;
    background: #f7f9fc;
}

.contact-page .contact-services .section-heading {
    max-width: 780px;
    margin-bottom: 58px;
}

.contact-page .contact-services .section-heading h2 {
    margin: 0 0 17px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.contact-page .contact-services .section-heading h2 span {
    background: linear-gradient(135deg, #168cff, #6948ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-page .contact-services .section-heading p {
    max-width: 650px;
    margin: 0;
    color: #697386;
    line-height: 1.7;
}

.contact-page .contact-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.contact-page .contact-service-card {
    min-height: 265px;
    padding: 30px;
    border: 1px solid #e4e9f1;
    border-radius: 22px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.contact-page .contact-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(71, 117, 255, 0.18);
    box-shadow: 0 18px 45px rgba(24, 42, 75, 0.07);
}

.contact-page .contact-service-number {
    display: block;
    margin-bottom: 48px;
    color: #98a2b3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.contact-page .contact-service-card h3 {
    margin: 0 0 11px;
    color: #17233b;
    font-size: 20px;
    line-height: 1.3;
}

.contact-page .contact-service-card p {
    margin: 0;
    color: #707887;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .contact-page .contact-hero-grid {
        gap: 50px;
    }

    .contact-page .contact-grid {
        gap: 55px;
    }

    .contact-page .contact-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .contact-page .contact-hero {
        padding: 70px 0 75px;
    }

    .contact-page .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-page .contact-hero h1 {
        font-size: clamp(38px, 10vw, 54px);
    }

    .contact-page .contact-hero-content > p {
        font-size: 16px;
        line-height: 1.7;
    }

    .contact-page .contact-hero-mark {
        min-height: 300px;
    }

    .contact-page .contact-mark-ring.ring-one {
        width: 285px;
        height: 285px;
    }

    .contact-page .contact-mark-ring.ring-two {
        width: 200px;
        height: 200px;
    }

    .contact-page .contact-mark-core {
        width: 110px;
        height: 110px;
    }


    .contact-page .contact-main,
    .contact-page .contact-services {
        padding: 75px 0;
    }

    .contact-page .contact-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-page .contact-info {
        max-width: 100%;
    }

    .contact-page .contact-info h2 {
        font-size: 39px;
    }


    .contact-page .contact-form-card {
        padding: 32px 26px;
        border-radius: 23px;
    }

    .contact-page .contact-form-row {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .contact-page .contact-submit {
        width: 100%;
        justify-content: center;
    }


    .contact-page .contact-services .section-heading {
        margin-bottom: 40px;
    }

    .contact-page .contact-services-grid {
        grid-template-columns: 1fr;
    }

    .contact-page .contact-service-card {
        min-height: auto;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .contact-page .contact-hero {
        padding: 55px 0 65px;
    }

    .contact-page .contact-hero h1 {
        font-size: 36px;
    }

    .contact-page .contact-hero-mark {
        min-height: 270px;
    }

    .contact-page .contact-mark-ring.ring-one {
        width: 250px;
        height: 250px;
    }

    .contact-page .contact-mark-ring.ring-two {
        width: 175px;
        height: 175px;
    }

    .contact-page .contact-mark-core {
        width: 98px;
        height: 98px;
    }

    .contact-page .contact-info h2 {
        font-size: 35px;
    }

    .contact-page .contact-form-card {
        padding: 28px 20px;
    }

    .contact-page .contact-form-heading h3 {
        font-size: 24px;
    }

    .contact-page .contact-form-success {
        min-height: 340px;
    }

    .contact-page .contact-services .section-heading h2 {
        font-size: 34px;
    }

    .contact-page .contact-service-card {
        padding: 27px 23px;
    }

}

/* =========================================================
   PRIVACY POLICY PAGE
   ========================================================= */

.privacy-policy-page {
    background: #ffffff;
    color: #172033;
}

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.privacy-policy-page .legal-hero {
    position: relative;
    overflow: hidden;
    padding: 145px 0 82px;
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(86, 91, 255, 0.08),
            transparent 32%
        ),
        radial-gradient(
            circle at 12% 75%,
            rgba(0, 190, 255, 0.055),
            transparent 30%
        ),
        #ffffff;
}

.privacy-policy-page .legal-hero::after {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    top: -220px;
    right: -160px;
    border: 1px solid rgba(79, 70, 229, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.privacy-policy-page .legal-hero .container {
    position: relative;
    z-index: 1;
}

.privacy-policy-page .legal-hero .eyebrow {
    display: block;
    width: fit-content;
    margin: 0 0 18px;
}

.privacy-policy-page .legal-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(46px, 5vw, 70px);
    line-height: 1.05;
    letter-spacing: -0.045em;
    color: #101828;
}

.privacy-policy-page .legal-hero h1 span {
    color: #5b61f6;
}

.privacy-policy-page .legal-hero p {
    max-width: 700px;
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: #667085;
}

.privacy-policy-page .legal-meta {
    display: inline-flex;
    align-items: center;
    margin-top: 25px;
    padding: 8px 14px;
    border: 1px solid #e4e7ec;
    border-radius: 999px;
    background: #f8f9fb;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: #667085;
}

/* ---------------------------------------------------------
   CONTENT
   --------------------------------------------------------- */

.privacy-policy-page .legal-content {
    padding: 78px 0 115px;
    border-top: 1px solid #eef0f4;
}

.privacy-policy-page .legal-layout {
    display: grid;
    grid-template-columns: 245px minmax(0, 820px);
    gap: 70px;
    align-items: start;
}

/* ---------------------------------------------------------
   SIDEBAR
   --------------------------------------------------------- */

.privacy-policy-page .legal-sidebar {
    position: sticky;
    top: 110px;
    width: 100%;
}

.privacy-policy-page .legal-sidebar-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.privacy-policy-page .legal-sidebar-inner > span {
    display: block;
    margin: 0 0 16px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #98a2b3;
}

.privacy-policy-page .legal-sidebar-inner > a {
    display: block;
    width: 100%;
    padding: 7px 10px;
    border-left: 2px solid transparent;
    border-radius: 0 6px 6px 0;
    box-sizing: border-box;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
    color: #667085;
    text-decoration: none;
    white-space: normal;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.privacy-policy-page .legal-sidebar-inner > a:hover {
    color: #4f46e5;
    background: #f7f7ff;
    border-left-color: #4f46e5;
}

/* ---------------------------------------------------------
   ARTICLE
   --------------------------------------------------------- */

.privacy-policy-page .legal-article {
    width: 100%;
    max-width: 820px;
    min-width: 0;
}

.privacy-policy-page .legal-section {
    margin: 0 0 52px;
    padding: 0 0 52px;
    border-bottom: 1px solid #eef0f4;
}

.privacy-policy-page .legal-section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.privacy-policy-page .legal-section-number {
    display: block;
    margin: 0 0 9px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
    color: #6b70ff;
}

.privacy-policy-page .legal-section h2 {
    margin: 0 0 18px;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.025em;
    color: #101828;
}

.privacy-policy-page .legal-section h3 {
    margin: 29px 0 11px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
    color: #1d2939;
}

.privacy-policy-page .legal-section p {
    margin: 0 0 17px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
    color: #667085;
}

.privacy-policy-page .legal-section p:last-child {
    margin-bottom: 0;
}

.privacy-policy-page .legal-section strong {
    color: #344054;
    font-weight: 600;
}

.privacy-policy-page .legal-section a {
    color: #4f46e5;
    text-decoration: underline;
    text-decoration-color: rgba(79, 70, 229, 0.22);
    text-underline-offset: 3px;
}

/* ---------------------------------------------------------
   LISTS
   --------------------------------------------------------- */

.privacy-policy-page .legal-section ul,
.privacy-policy-page .legal-section ol {
    margin: 15px 0 20px;
    padding-left: 23px;
}

.privacy-policy-page .legal-section li {
    margin: 0 0 9px;
    padding-left: 4px;
    font-size: 14px;
    line-height: 1.75;
    color: #667085;
}

.privacy-policy-page .legal-section li:last-child {
    margin-bottom: 0;
}

.privacy-policy-page .legal-section li::marker {
    color: #7379ff;
}

/* ---------------------------------------------------------
   SMALL NOTE
   --------------------------------------------------------- */

.privacy-policy-page .legal-note {
    margin-top: 20px !important;
    padding: 17px 20px;
    border-left: 3px solid #dfe2ff;
    border-radius: 0 10px 10px 0;
    background: #f8f9ff;
    font-size: 13px !important;
    line-height: 1.7 !important;
    color: #667085;
}

/* ---------------------------------------------------------
   ADVERTISING CALLOUT
   --------------------------------------------------------- */

.privacy-policy-page .legal-callout {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 25px;
    padding: 19px 21px;
    border: 1px solid #e3e5ff;
    border-radius: 13px;
    background:
        linear-gradient(
            135deg,
            rgba(79, 70, 229, 0.045),
            rgba(0, 190, 255, 0.03)
        );
    font-size: 13px;
    line-height: 1.7;
    color: #667085;
}

.privacy-policy-page .legal-callout strong {
    flex-shrink: 0;
    color: #4f46e5;
}

/* ---------------------------------------------------------
   CONTACT CARD
   --------------------------------------------------------- */

.privacy-policy-page .legal-contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    margin-top: 24px;
    padding: 23px 25px;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    background:
        linear-gradient(
            135deg,
            rgba(79, 70, 229, 0.045),
            rgba(0, 190, 255, 0.03)
        ),
        #ffffff;
}

.privacy-policy-page .legal-contact-card strong {
    font-size: 17px;
    color: #101828;
}

.privacy-policy-page .legal-contact-card a {
    font-size: 14px;
    color: #4f46e5;
}

/* ---------------------------------------------------------
   DISCLAIMER
   --------------------------------------------------------- */

.privacy-policy-page .legal-disclaimer {
    margin-top: 48px;
    padding: 22px 24px;
    border: 1px solid #eaecf0;
    border-radius: 14px;
    background: #f8f9fb;
}

.privacy-policy-page .legal-disclaimer strong {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #344054;
}

.privacy-policy-page .legal-disclaimer p {
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
    color: #667085;
}

/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1050px) {

    .privacy-policy-page .legal-layout {
        grid-template-columns: 210px minmax(0, 1fr);
        gap: 45px;
    }

    .privacy-policy-page .legal-sidebar-inner > a {
        font-size: 11px;
    }
}

/* ---------------------------------------------------------
   TABLET / SMALL LAPTOP
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .privacy-policy-page .legal-hero {
        padding: 120px 0 65px;
    }

    .privacy-policy-page .legal-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .privacy-policy-page .legal-sidebar {
        position: static;
    }

    .privacy-policy-page .legal-sidebar-inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2px 10px;
        padding: 18px;
        border: 1px solid #eaecf0;
        border-radius: 14px;
        background: #fafbfc;
    }

    .privacy-policy-page .legal-sidebar-inner > span {
        grid-column: 1 / -1;
        margin-bottom: 8px;
    }

    .privacy-policy-page .legal-sidebar-inner > a {
        border-left: 0;
        border-radius: 7px;
        padding: 8px 10px;
        font-size: 12px;
    }

    .privacy-policy-page .legal-sidebar-inner > a:hover {
        border-left: 0;
        background: #f1f2ff;
    }

    .privacy-policy-page .legal-content {
        padding: 60px 0 90px;
    }
}

/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 640px) {

    .privacy-policy-page .legal-hero {
        padding: 100px 0 55px;
    }

    .privacy-policy-page .legal-hero h1 {
        font-size: 40px;
        letter-spacing: -0.04em;
    }

    .privacy-policy-page .legal-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .privacy-policy-page .legal-meta {
        margin-top: 20px;
        font-size: 11px;
    }

    .privacy-policy-page .legal-content {
        padding: 48px 0 70px;
    }

    .privacy-policy-page .legal-layout {
        gap: 30px;
    }

    .privacy-policy-page .legal-sidebar-inner {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .privacy-policy-page .legal-sidebar-inner > span {
        margin-bottom: 7px;
    }

    .privacy-policy-page .legal-sidebar-inner > a {
        padding: 7px 9px;
        font-size: 12px;
    }

    .privacy-policy-page .legal-section {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .privacy-policy-page .legal-section h2 {
        font-size: 23px;
        line-height: 1.3;
    }

    .privacy-policy-page .legal-section h3 {
        font-size: 16px;
        margin-top: 25px;
    }

    .privacy-policy-page .legal-section p,
    .privacy-policy-page .legal-section li {
        font-size: 14px;
        line-height: 1.8;
    }

    .privacy-policy-page .legal-callout {
        flex-direction: column;
        gap: 4px;
        padding: 17px 18px;
    }

    .privacy-policy-page .legal-contact-card {
        padding: 20px;
    }

    .privacy-policy-page .legal-disclaimer {
        padding: 19px 20px;
    }
}

/* =========================================================
   TERMS & CONDITIONS PAGE
   ========================================================= */

.terms-page {
    background: #ffffff;
    color: #172033;
}

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.terms-page .legal-hero {
    position: relative;
    overflow: hidden;
    padding: 145px 0 82px;
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(86, 91, 255, 0.08),
            transparent 32%
        ),
        radial-gradient(
            circle at 12% 75%,
            rgba(0, 190, 255, 0.055),
            transparent 30%
        ),
        #ffffff;
}

.terms-page .legal-hero::after {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    top: -220px;
    right: -160px;
    border: 1px solid rgba(79, 70, 229, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.terms-page .legal-hero .container {
    position: relative;
    z-index: 1;
}

.terms-page .legal-hero .eyebrow {
    display: block;
    width: fit-content;
    margin: 0 0 18px;
}

.terms-page .legal-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(46px, 5vw, 70px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.045em;
    color: #101828;
}

.terms-page .legal-hero h1 span {
    color: #5b61f6;
}

.terms-page .legal-hero p {
    max-width: 720px;
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: #667085;
}

.terms-page .legal-meta {
    display: inline-flex;
    align-items: center;
    margin-top: 25px;
    padding: 8px 14px;
    border: 1px solid #e4e7ec;
    border-radius: 999px;
    background: #f8f9fb;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: #667085;
}

/* ---------------------------------------------------------
   CONTENT
   --------------------------------------------------------- */

.terms-page .legal-content {
    padding: 78px 0 115px;
    border-top: 1px solid #eef0f4;
}

.terms-page .legal-layout {
    display: grid;
    grid-template-columns: 245px minmax(0, 820px);
    gap: 70px;
    align-items: start;
}

/* ---------------------------------------------------------
   SIDEBAR
   --------------------------------------------------------- */

.terms-page .legal-sidebar {
    position: sticky;
    top: 110px;
    width: 100%;
}

.terms-page .legal-sidebar-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.terms-page .legal-sidebar-inner > span {
    display: block;
    margin: 0 0 16px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #98a2b3;
}

.terms-page .legal-sidebar-inner > a {
    display: block;
    width: 100%;
    padding: 7px 10px;
    border-left: 2px solid transparent;
    border-radius: 0 6px 6px 0;
    box-sizing: border-box;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
    color: #667085;
    text-decoration: none;
    white-space: normal;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.terms-page .legal-sidebar-inner > a:hover {
    color: #4f46e5;
    background: #f7f7ff;
    border-left-color: #4f46e5;
}

/* ---------------------------------------------------------
   ARTICLE
   --------------------------------------------------------- */

.terms-page .legal-article {
    width: 100%;
    max-width: 820px;
    min-width: 0;
}

.terms-page .legal-section {
    margin: 0 0 52px;
    padding: 0 0 52px;
    border-bottom: 1px solid #eef0f4;
}

.terms-page .legal-section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.terms-page .legal-section-number {
    display: block;
    margin: 0 0 9px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
    color: #6b70ff;
}

.terms-page .legal-section h2 {
    margin: 0 0 18px;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.025em;
    color: #101828;
}

.terms-page .legal-section h3 {
    margin: 29px 0 11px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
    color: #1d2939;
}

.terms-page .legal-section p {
    margin: 0 0 17px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
    color: #667085;
}

.terms-page .legal-section p:last-child {
    margin-bottom: 0;
}

.terms-page .legal-section strong {
    color: #344054;
    font-weight: 600;
}

.terms-page .legal-section a {
    color: #4f46e5;
    text-decoration: underline;
    text-decoration-color: rgba(79, 70, 229, 0.22);
    text-underline-offset: 3px;
}

.terms-page .legal-section a:hover {
    color: #3730a3;
}

/* ---------------------------------------------------------
   LISTS
   --------------------------------------------------------- */

.terms-page .legal-section ul,
.terms-page .legal-section ol {
    margin: 15px 0 20px;
    padding-left: 23px;
}

.terms-page .legal-section li {
    margin: 0 0 9px;
    padding-left: 4px;
    font-size: 14px;
    line-height: 1.75;
    color: #667085;
}

.terms-page .legal-section li:last-child {
    margin-bottom: 0;
}

.terms-page .legal-section li::marker {
    color: #7379ff;
}

/* ---------------------------------------------------------
   CALLOUT
   --------------------------------------------------------- */

.terms-page .legal-callout {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 25px;
    padding: 19px 21px;
    border: 1px solid #e3e5ff;
    border-radius: 13px;
    background:
        linear-gradient(
            135deg,
            rgba(79, 70, 229, 0.045),
            rgba(0, 190, 255, 0.03)
        );
    font-size: 13px;
    line-height: 1.7;
    color: #667085;
}

.terms-page .legal-callout strong {
    flex-shrink: 0;
    color: #4f46e5;
}

/* ---------------------------------------------------------
   CONTACT CARD
   --------------------------------------------------------- */

.terms-page .legal-contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    margin-top: 24px;
    padding: 23px 25px;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    background:
        linear-gradient(
            135deg,
            rgba(79, 70, 229, 0.045),
            rgba(0, 190, 255, 0.03)
        ),
        #ffffff;
}

.terms-page .legal-contact-card strong {
    font-size: 17px;
    color: #101828;
}

.terms-page .legal-contact-card a {
    font-size: 14px;
    color: #4f46e5;
}

/* ---------------------------------------------------------
   GENERAL NOTICE
   --------------------------------------------------------- */

.terms-page .legal-disclaimer {
    margin-top: 48px;
    padding: 22px 24px;
    border: 1px solid #eaecf0;
    border-radius: 14px;
    background: #f8f9fb;
}

.terms-page .legal-disclaimer strong {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #344054;
}

.terms-page .legal-disclaimer p {
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
    color: #667085;
}

/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1050px) {

    .terms-page .legal-layout {
        grid-template-columns: 210px minmax(0, 1fr);
        gap: 45px;
    }

    .terms-page .legal-sidebar-inner > a {
        font-size: 11px;
    }
}

/* ---------------------------------------------------------
   TABLET / SMALL LAPTOP
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .terms-page .legal-hero {
        padding: 120px 0 65px;
    }

    .terms-page .legal-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .terms-page .legal-sidebar {
        position: static;
    }

    .terms-page .legal-sidebar-inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2px 10px;
        padding: 18px;
        border: 1px solid #eaecf0;
        border-radius: 14px;
        background: #fafbfc;
    }

    .terms-page .legal-sidebar-inner > span {
        grid-column: 1 / -1;
        margin-bottom: 8px;
    }

    .terms-page .legal-sidebar-inner > a {
        border-left: 0;
        border-radius: 7px;
        padding: 8px 10px;
        font-size: 12px;
    }

    .terms-page .legal-sidebar-inner > a:hover {
        border-left: 0;
        background: #f1f2ff;
    }

    .terms-page .legal-content {
        padding: 60px 0 90px;
    }
}

/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 640px) {

    .terms-page .legal-hero {
        padding: 100px 0 55px;
    }

    .terms-page .legal-hero h1 {
        font-size: 40px;
        letter-spacing: -0.04em;
    }

    .terms-page .legal-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .terms-page .legal-meta {
        margin-top: 20px;
        font-size: 11px;
    }

    .terms-page .legal-content {
        padding: 48px 0 70px;
    }

    .terms-page .legal-layout {
        gap: 30px;
    }

    .terms-page .legal-sidebar-inner {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .terms-page .legal-sidebar-inner > span {
        margin-bottom: 7px;
    }

    .terms-page .legal-sidebar-inner > a {
        padding: 7px 9px;
        font-size: 12px;
    }

    .terms-page .legal-section {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .terms-page .legal-section h2 {
        font-size: 23px;
        line-height: 1.3;
    }

    .terms-page .legal-section h3 {
        font-size: 16px;
        margin-top: 25px;
    }

    .terms-page .legal-section p,
    .terms-page .legal-section li {
        font-size: 14px;
        line-height: 1.8;
    }

    .terms-page .legal-callout {
        flex-direction: column;
        gap: 4px;
        padding: 17px 18px;
    }

    .terms-page .legal-contact-card {
        padding: 20px;
    }

    .terms-page .legal-disclaimer {
        padding: 19px 20px;
    }
}

/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    visibility: hidden;
    pointer-events: none;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 35, 0.42);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(88%, 390px);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 25px;
    box-sizing: border-box;
    background: #ffffff;
    box-shadow: -20px 0 60px rgba(15, 23, 42, 0.12);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
}

.mobile-menu.is-open {
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu.is-open .mobile-menu-overlay {
    opacity: 1;
}

.mobile-menu.is-open .mobile-menu-panel {
    transform: translateX(0);
}


/* ---------------------------------------------------------
   MOBILE MENU HEADER
   --------------------------------------------------------- */

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 28px;
}

.mobile-menu-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.mobile-menu-logo img {
    display: block;
    width: 190px;
    height: auto;
}


/* ---------------------------------------------------------
   CLOSE BUTTON
   --------------------------------------------------------- */

.mobile-menu-close {
    position: relative;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #e4e7ec;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}

.mobile-menu-close span {
    position: absolute;
    width: 17px;
    height: 1.5px;
    background: #172033;
    border-radius: 2px;
}

.mobile-menu-close span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: rotate(-45deg);
}


/* ---------------------------------------------------------
   MOBILE NAVIGATION
   --------------------------------------------------------- */

.mobile-navigation {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.mobile-navigation a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 4px;
    border-bottom: 1px solid #eef0f4;
    color: #172033;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    transition:
        color 0.2s ease,
        padding 0.2s ease;
}

.mobile-navigation a span {
    font-size: 20px;
    font-weight: 400;
    color: #667085;
    transition: transform 0.2s ease;
}

.mobile-navigation a:hover {
    color: #4f46e5;
    padding-left: 5px;
}

.mobile-navigation a:hover span {
    transform: translateX(4px);
    color: #4f46e5;
}


/* ---------------------------------------------------------
   MOBILE MENU FOOTER
   --------------------------------------------------------- */

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 35px;
}

.mobile-menu-project-btn {
    width: 100%;
    justify-content: center;
}

.mobile-menu-footer p {
    margin: 20px 0 0;
    font-size: 12px;
    line-height: 1.7;
    color: #98a2b3;
}


/* ---------------------------------------------------------
   BODY LOCK
   --------------------------------------------------------- */

body.mobile-menu-open {
    overflow: hidden;
}


/* ---------------------------------------------------------
   HAMBURGER
   --------------------------------------------------------- */

.mobile-menu-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #172033;
    transition:
        transform 0.25s ease,
        opacity 0.2s ease;
}

.mobile-menu-toggle.is-active span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}


/* ---------------------------------------------------------
   HEADER SCROLL STATE
   --------------------------------------------------------- */

.site-header {
    transition:
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}


/* ---------------------------------------------------------
   REVEAL ANIMATIONS
   --------------------------------------------------------- */

[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ---------------------------------------------------------
   ACCESSIBILITY
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .mobile-menu-panel,
    .mobile-menu-overlay,
    .mobile-menu-toggle span,
    .mobile-navigation a,
    .mobile-navigation a span,
    [data-reveal] {
        transition: none !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }

}


/* ---------------------------------------------------------
   MOBILE BREAKPOINT
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .main-navigation,
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .site-header .header-inner {
        justify-content: space-between;
    }

}


/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 480px) {

    .mobile-menu-panel {
        width: 92%;
        padding: 22px;
    }

    .mobile-menu-logo img {
        width: 170px;
    }

    .mobile-navigation a {
        min-height: 54px;
        font-size: 17px;
    }

}

/* =========================================================
   MAIN SITE FOOTER
   ========================================================= */

.site-footer {
    position: relative;
    background: #081120;
    color: #ffffff;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.035);
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}


/* ---------------------------------------------------------
   MAIN FOOTER
   --------------------------------------------------------- */

.site-footer .footer-main {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 70px;
    padding: 82px 0 70px;
}


/* ---------------------------------------------------------
   BRAND
   --------------------------------------------------------- */

.site-footer .footer-brand {
    max-width: 390px;
}

.site-footer .footer-logo {
    display: inline-flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 14px;
    background: #ffffff;
    text-decoration: none;
}

.site-footer .footer-logo img {
    display: block;
    width: 225px;
    height: auto;
}

.site-footer .footer-brand-tagline {
    margin: 26px 0 17px;
    max-width: 370px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.65;
    color: #ffffff;
}

.site-footer .footer-brand-description {
    margin: 0;
    max-width: 390px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
}


/* ---------------------------------------------------------
   SOCIAL MEDIA
   --------------------------------------------------------- */

.site-footer .footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
}

.site-footer .footer-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.025);
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.site-footer .footer-social a:hover {
    color: #ffffff;
    background: linear-gradient(
        135deg,
        #08bce8,
        #5261f5
    );
    border-color: transparent;
    transform: translateY(-3px);
}

.site-footer .footer-social svg {
    width: 18px;
    height: 18px;
    display: block;
}


/* ---------------------------------------------------------
   FOOTER COLUMNS
   --------------------------------------------------------- */

.site-footer .footer-column h3 {
    margin: 0 0 23px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
}

.site-footer .footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer .footer-column li {
    margin: 0;
    padding: 0;
}

.site-footer .footer-column a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.site-footer .footer-column a:hover {
    color: #ffffff;
    transform: translateX(3px);
}


/* ---------------------------------------------------------
   FOOTER CTA
   --------------------------------------------------------- */

.site-footer .footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 54px 0 58px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.site-footer .footer-cta-label {
    display: block;
    margin-bottom: 13px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #12c4eb;
}

.site-footer .footer-cta h2 {
    margin: 0;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.045em;
    color: #ffffff;
}

.site-footer .footer-cta h2 span {
    background: linear-gradient(
        90deg,
        #08bce8,
        #5261f5
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.site-footer .footer-cta .btn {
    flex-shrink: 0;
}


/* ---------------------------------------------------------
   FOOTER BOTTOM
   --------------------------------------------------------- */

.site-footer .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    min-height: 78px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}


/* ---------------------------------------------------------
   COPYRIGHT
   --------------------------------------------------------- */

.site-footer .footer-copyright {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.62);
}


/* ---------------------------------------------------------
   VISITOR COUNTER
   --------------------------------------------------------- */

.site-footer .footer-visitors {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 12px;
    line-height: 1.5;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.68);
}

.site-footer .footer-visitors-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #12c4eb;
}

.site-footer .footer-visitors-icon svg {
    width: 19px;
    height: 19px;
    display: block;
}

.site-footer .footer-visitors strong {
    font-weight: 700;
    color: #ffffff;
}


/* ---------------------------------------------------------
   LEGAL LINKS
   --------------------------------------------------------- */

.site-footer .footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.site-footer .footer-legal a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer .footer-legal a:hover {
    color: #ffffff;
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1050px) {

    .site-footer .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 50px;
    }

    .site-footer .footer-brand {
        grid-column: 1 / -1;
        max-width: 520px;
    }

}


/* ---------------------------------------------------------
   TABLET / SMALL LAPTOP
   --------------------------------------------------------- */

@media (max-width: 800px) {

    .site-footer .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 45px 35px;
        padding: 65px 0 55px;
    }

    .site-footer .footer-brand {
        grid-column: 1 / -1;
    }

    .site-footer .footer-cta {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
        padding: 45px 0 50px;
    }

    .site-footer .footer-cta .btn {
        width: auto;
    }

    .site-footer .footer-bottom {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px 0 28px;
    }

    .site-footer .footer-visitors {
        justify-content: flex-start;
    }

    .site-footer .footer-legal {
        justify-content: flex-start;
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 560px) {

    .site-footer .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 38px 24px;
        padding: 55px 0 45px;
    }

    .site-footer .footer-brand {
        grid-column: 1 / -1;
    }

    .site-footer .footer-logo {
        padding: 10px 14px;
    }

    .site-footer .footer-logo img {
        width: 190px;
    }

    .site-footer .footer-brand-tagline {
        margin-top: 22px;
        font-size: 16px;
    }

    .site-footer .footer-brand-description {
        font-size: 13px;
        line-height: 1.75;
    }

    .site-footer .footer-social {
        margin-top: 22px;
    }

    .site-footer .footer-social a {
        width: 36px;
        height: 36px;
    }

    .site-footer .footer-column h3 {
        margin-bottom: 18px;
        font-size: 13px;
    }

    .site-footer .footer-column ul {
        gap: 11px;
    }

    .site-footer .footer-column a {
        font-size: 12px;
    }

    .site-footer .footer-cta {
        padding: 40px 0 42px;
    }

    .site-footer .footer-cta h2 {
        font-size: 34px;
    }

    .site-footer .footer-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .site-footer .footer-bottom {
        gap: 17px;
    }

    .site-footer .footer-copyright {
        font-size: 11px;
    }

    .site-footer .footer-visitors {
        font-size: 11px;
    }

    .site-footer .footer-legal {
        gap: 18px;
        flex-wrap: wrap;
    }

    .site-footer .footer-legal a {
        font-size: 11px;
    }

}


/* ---------------------------------------------------------
   VERY SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 380px) {

    .site-footer .footer-main {
        grid-template-columns: 1fr;
    }

    .site-footer .footer-brand {
        grid-column: auto;
    }

}

 /* =========================================================
    FOOTER SPACING & ALIGNMENT FIX
    ========================================================= */

.site-footer .footer-main {
    align-items: start;
    padding-top: 48px;
    padding-bottom: 48px;
}


/* ---------------------------------------------------------
   BRAND
   --------------------------------------------------------- */

.site-footer .footer-brand {
    align-self: start;
}


/* ---------------------------------------------------------
   FOOTER COLUMNS
   --------------------------------------------------------- */

.site-footer .footer-column {
    align-self: start;
}


/* ---------------------------------------------------------
   LOGO
   --------------------------------------------------------- */

.site-footer .footer-logo {
    margin-top: 0;
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.site-footer .footer-cta {
    padding-top: 42px;
    padding-bottom: 42px;
}


/* ---------------------------------------------------------
   BOTTOM
   --------------------------------------------------------- */

.site-footer .footer-bottom {
    min-height: 68px;
}


/* ---------------------------------------------------------
   DESKTOP
   --------------------------------------------------------- */

@media (min-width: 901px) {

    .site-footer .footer-main {
        min-height: 0;
    }

}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 800px) {

    .site-footer .footer-main {
        align-items: start;
        padding-top: 50px;
        padding-bottom: 45px;
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 560px) {

    .site-footer .footer-main {
        align-items: start;
        padding-top: 45px;
        padding-bottom: 40px;
    }

    .site-footer .footer-cta {
        padding-top: 38px;
        padding-bottom: 38px;
    }

}

 /* =========================================================
    FOOTER - MORE COMPACT SPACING
    ========================================================= */

.site-footer .footer-main {
    padding-top: 30px;
    padding-bottom: 32px;
}

.site-footer .footer-brand-tagline {
    margin-top: 18px;
    margin-bottom: 12px;
}

.site-footer .footer-social {
    margin-top: 18px;
}

.site-footer .footer-column h3 {
    margin-bottom: 17px;
}

.site-footer .footer-column ul {
    gap: 10px;
}

.site-footer .footer-cta {
    padding-top: 30px;
    padding-bottom: 32px;
}

.site-footer .footer-bottom {
    min-height: 58px;
}


/* Desktop */
@media (min-width: 901px) {

    .site-footer .footer-main {
        padding-top: 30px;
        padding-bottom: 32px;
    }

}


/* Mobile */
@media (max-width: 800px) {

    .site-footer .footer-main {
        padding-top: 38px;
        padding-bottom: 35px;
    }

    .site-footer .footer-cta {
        padding-top: 35px;
        padding-bottom: 35px;
    }

}
