/* =========================================================
   MAKEIN DIGITAL
   MASTER WEBSITE CSS
   FINAL SPACING / LIGHT-DARK VERSION
   Matches current index.html
   ========================================================= */


/* =========================================================
   1. ROOT / RESET
   ========================================================= */

:root {
    --navy: #0b2a5b;
    --navy-deep: #071d3f;
    --blue: #0b63ce;
    --blue-bright: #1479e8;
    --blue-soft: #eaf3ff;

    --ink: #10233f;
    --text: #40516a;
    --muted: #708096;

    --white: #ffffff;
    --light: #f6f9fc;
    --light-blue: #eef5ff;

    --border: #dce5ef;
    --border-dark: rgba(255,255,255,0.14);

    --green: #1f9d68;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 30px;

    --shadow-sm: 0 8px 25px rgba(11,42,91,0.07);
    --shadow-md: 0 18px 50px rgba(11,42,91,0.11);
    --shadow-lg: 0 25px 70px rgba(11,42,91,0.16);

    --container: 1180px;

    /* MAIN SECTION SPACING */
    --section-space: 15px;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

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

    font-size: 16px;
    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;
}


button {
    cursor: pointer;
}


p,
h1,
h2,
h3,
h4 {
    margin-top: 0;
}


ul {
    margin: 0;
    padding: 0;
}


.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}


/* =========================================================
   2. HEADER
   ========================================================= */

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

    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(12px);
}


.header-inner {
    min-height: 76px;

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

    gap: 28px;
}


.brand {
    display: inline-flex;
    align-items: center;

    min-width: 230px;

    gap: 11px;
}


.brand-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

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

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


.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}


.brand-name {
    color: var(--navy);

    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.4px;
}


.brand-tagline {
    margin-top: 4px;

    color: var(--muted);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.9px;
}


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

    gap: 27px;
}


.main-nav a {
    color: #44536a;

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

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.main-nav a:hover {
    color: var(--blue);
    transform: translateY(-1px);
}


.btn {
    min-height: 46px;

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

    padding: 11px 11px;

    border: 1px solid transparent;
    border-radius: 10px;

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

    line-height: 1.2;
    white-space: nowrap;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}


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


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

    box-shadow: 0 8px 22px rgba(11,99,206,0.22);
}


.btn-primary:hover {
    background: #095ab9;
}


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

    border-color: #cbd8e7;
}


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


.header-cta {
    min-height: 42px;
    padding-inline: 17px;
}


.mobile-menu-btn {
    display: none;

    width: 42px;
    height: 42px;

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

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

    font-size: 21px;
}


/* =========================================================
   3. COMMON SECTION SYSTEM
   ========================================================= */

.section {
    position: relative;

    /*
       Main section spacing.
       15px is intentional.
    */
    padding: var(--section-space) 0;
}


.section-heading {
    display: grid;

    /*
       Desktop:
       left = section label
       right = heading + description
    */
    grid-template-columns:
        175px
        minmax(0, 1fr);

    align-items: start;

    column-gap: 40px;

    margin-bottom: 15px;
}


.section-heading > .eyebrow {
    grid-column: 1;
    grid-row: 1;

    padding-top: 7px;
}


.section-heading > h2 {
    grid-column: 2;
    grid-row: 1;

    margin: 0;

    color: var(--navy);

    font-size: clamp(34px, 3.5vw, 50px);
    line-height: 1.08;

    letter-spacing: -1.8px;
}


.section-heading > p {
    grid-column: 2;
    grid-row: 2;

    max-width: 720px;

    margin: 8px 0 0;

    color: var(--text);

    font-size: 16px;
    line-height: 1.6;
}


.section-heading > h2 span,
.support-content h2 span,
.contact-content h2 span,
.flagship-header h2 span {
    display: block;
    color: var(--blue);
}


.eyebrow {
    color: var(--blue);

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

    line-height: 1.3;
    letter-spacing: 1.25px;
}


/* =========================================================
   4. LIGHT / DARK SECTION SYSTEM
   ========================================================= */

/*
   Alternating visual rhythm:

   Hero       = Light
   About      = Dark
   Shopify    = Light
   Plans      = Dark
   4-IN-1     = Special
   Portfolio  = Dark
   Growth     = Light
   Services   = Dark
   Support    = Light
   Contact    = Dark
*/


.section-light {
    background: #ffffff;
    color: var(--ink);
}


.section-dark {
    background:
        linear-gradient(
            145deg,
            #071d3f 0%,
            #0b2a5b 60%,
            #0a336c 100%
        );

    color: white;
}


/* ABOUT */

#about {
    background:
        linear-gradient(
            145deg,
            #071d3f 0%,
            #0b2a5b 60%,
            #0a336c 100%
        );

    color: white;
}


#about .section-heading > h2 {
    color: white;
}


#about .section-heading > p {
    color: rgba(255,255,255,0.72);
}


#about .section-heading > .eyebrow {
    color: #72b3ff;
}


/* SHOPIFY */

#shopify {
    background: #ffffff;
    color: var(--ink);
}


#shopify .section-heading > h2 {
    color: var(--navy);
}


#shopify .section-heading > p {
    color: var(--text);
}


/* PLANS */

#plans {
    background:
        linear-gradient(
            135deg,
            #071d3f 0%,
            #0b2a5b 60%,
            #0a336c 100%
        );

    color: white;
}


#plans .section-heading > h2 {
    color: white;
}


#plans .section-heading > p {
    color: rgba(255,255,255,0.72);
}


#plans .section-heading > .eyebrow {
    color: #72b3ff;
}


/* PORTFOLIO */

#portfolio {
    background:
        linear-gradient(
            145deg,
            #071d3f,
            #0b2a5b
        );

    color: white;
}


#portfolio .section-heading > h2 {
    color: white;
}


#portfolio .section-heading > p {
    color: rgba(255,255,255,0.72);
}


#portfolio .section-heading > .eyebrow {
    color: #72b3ff;
}


/* GROWTH */

#growth {
    background: #ffffff;
    color: var(--ink);
}


/* SERVICES */

#services {
    background:
        linear-gradient(
            145deg,
            #071d3f 0%,
            #0b2a5b 60%,
            #0a336c 100%
        );

    color: white;
}


#services .section-heading > h2 {
    color: white;
}


#services .section-heading > p {
    color: rgba(255,255,255,0.72);
}


#services .section-heading > .eyebrow {
    color: #72b3ff;
}


/* SUPPORT */

#support {
    background: #ffffff;
    color: var(--ink);
}


/* =========================================================
   5. HERO
   ========================================================= */

.hero {
    position: relative;

    overflow: hidden;

    padding: 15px 0;

    background:
        radial-gradient(
            circle at 88% 30%,
            rgba(27,117,222,0.12),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #f7fbff 0%,
            #ffffff 55%,
            #edf5ff 100%
        );
}


.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(390px, 0.95fr);

    align-items: center;

    gap: 25px;
}


.hero-content {
    position: relative;
    z-index: 2;

    max-width: 720px;
}


.hero .eyebrow {
    margin-bottom: 5px;
}


.hero h1 {
    max-width: 720px;

    margin: 0 0 10px;

    color: var(--navy);

    font-size: clamp(52px, 5.4vw, 76px);
    line-height: 0.99;

    letter-spacing: -3.3px;
    font-weight: 800;
}


.hero h1 span {
    display: block;
    color: var(--blue);
}


.hero-lead {
    max-width: 650px;

    margin: 0 0 10px;

    color: #4b5d73;

    font-size: 18px;
    line-height: 1.6;
}


.hero-points {
    display: grid;

    grid-template-columns: repeat(2, max-content);

    gap: 5px 15px;

    margin-bottom: 10px;
}


.hero-points span {
    color: #263e5d;

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


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

    gap: 12px;

    margin-bottom: 2px;
}


.hero-note {
    color: #77879a;

    font-size: 16px;
    font-weight: 600;
}


.hero-visual {
    position: relative;

    min-height: 500px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 25px;

    overflow: hidden;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(75,164,255,0.28),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #092858 0%,
            #0b3d89 52%,
            #082452 100%
        );

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


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

    position: absolute;

    width: 280px;
    height: 280px;

    right: -90px;
    bottom: -100px;

    border-radius: 50%;

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


.hero-visual-label {
    position: relative;
    z-index: 1;

    margin-bottom: 11px;

    color: #7fc0ff;

    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.3px;
}


.hero-visual-title {
    position: relative;
    z-index: 1;

    max-width: 440px;

    margin-bottom: 22px;

    color: white;

    font-size: 31px;
    line-height: 1.13;
    font-weight: 500;

    letter-spacing: -0.9px;
}


.hero-visual-title strong {
    display: block;

    margin-top: 4px;

    color: #78baff;

    font-weight: 800;
}


.hero-stack {
    position: relative;
    z-index: 2;

    display: grid;

    gap: 10px;
}


.hero-stack-item {
    display: grid;

    grid-template-columns: 38px 1fr auto;

    align-items: center;

    column-gap: 12px;

    min-height: 68px;

    padding: 12px 16px;

    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 14px;

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

    backdrop-filter: blur(8px);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.hero-stack-item:hover {
    transform: translateX(5px);

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


.hero-stack-item > span {
    color: #78baff;

    font-size: 14px;
    font-weight: 800;
}


.hero-stack-item > strong {
    color: white;

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


.hero-stack-item > small {
    color: rgba(255,255,255,0.62);

    font-size: 13px;
    line-height: 1.3;

    text-align: right;
}


/* =========================================================
   6. WHY MAKEIN DIGITAL
   ========================================================= */

.experience-grid {
    display: grid;

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

    gap: 15px;

    margin-bottom: 15px;
}


.experience-card {
    min-height: 205px;

    padding: 23px;

    border: 1px solid rgba(255,255,255,0.13);
    border-radius: var(--radius-md);

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

    box-shadow: none;
}


#about .card-number {
    color: #72b3ff;
}


.experience-card h3 {
    margin-bottom: 9px;

    color: white;

    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}


.experience-card p {
    margin: 0;

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

    font-size: 15px;
    line-height: 1.55;
}


.focus-strip {
    display: grid;

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

    align-items: center;

    border: 1px solid rgba(255,255,255,0.13);
    border-radius: var(--radius-md);

    overflow: hidden;

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


.focus-strip strong,
.focus-strip span {
    min-height: 58px;

    display: flex;
    align-items: center;

    padding: 12px 17px;
}


.focus-strip strong {
    color: white;

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


.focus-strip span {
    border-left: 1px solid rgba(255,255,255,0.12);

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

    font-size: 13px;
    line-height: 1.4;
}


/* =========================================================
   7. SHOPIFY ENGINEERING
   ========================================================= */

/* =========================================================
   SHOPIFY ENGINEERING
   D2C + B2B VISUAL SHOWCASE
   ========================================================= */

.commerce-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}


/* ---------------------------------------------------------
   MAIN SHOWCASE CARD
   --------------------------------------------------------- */

.commerce-showcase-card {
    position: relative;

    display: grid;
    grid-template-columns: 42% 58%;
    align-items: stretch;

    min-height: 430px;

    overflow: hidden;

    border: 1px solid #dce8f5;
    border-radius: 28px;

    background: #ffffff;

    box-shadow:
        0 14px 40px rgba(20, 55, 100, 0.08);
}


/* ---------------------------------------------------------
   TEXT SIDE
   --------------------------------------------------------- */

.commerce-copy {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 12px 20px 42px 14px;

    background: #ffffff;
}


.commerce-copy .card-label {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    margin-bottom: 20px;
    padding: 8px 15px;

    border: 1px solid rgba(120, 190, 255, 0.30);
    border-radius: 999px;

    background: rgba(70, 150, 240, 0.14);

    color: #71b8ff;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
    line-height: 1;
}


.commerce-copy h3 {
    margin: 0 0 17px;

    color: #123b73;

    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.05;

    letter-spacing: -1.5px;
}


.commerce-copy p {
    max-width: 470px;

    margin: 0 0 28px;

    color: #52647d;

    font-size: 17px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.commerce-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: fit-content;

    padding: 13px 21px;

    border-radius: 999px;

    background: #1677ee;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 10px 25px rgba(0, 105, 235, 0.28);

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


.commerce-cta span {
    font-size: 21px;
    line-height: 1;
}


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

    background: #2385f5;

    box-shadow:
        0 14px 30px rgba(0, 105, 235, 0.35);
}


/* ---------------------------------------------------------
   CAROUSEL
   --------------------------------------------------------- */

.commerce-carousel {
    position: relative;

    min-width: 0;
    min-height: 430px;

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

    overflow: hidden;

    padding: 5px 42px 5px;

    background:
        radial-gradient(
            circle at 50% 50%,
            #eef8ff 0%,
            #f8fbff 58%,
            #ffffff 100%
        );
}


.carousel-track {
    position: relative;

    width: 100%;
    height: 100%;
}


.carousel-slide {
    position: absolute;

    inset: 0;

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

    opacity: 0;

    transform: translateX(18px) scale(0.985);

    transition:
        opacity 0.55s ease,
        transform 0.55s ease;

    pointer-events: none;
}


.carousel-slide.is-active {
    opacity: 1;

    transform: translateX(0) scale(1);

    pointer-events: auto;
}


.carousel-slide img {
    display: block;

    width: 100%;
    max-width: 650px;

    height: auto;
    max-height: 370px;

    object-fit: contain;

    border-radius: 18px;

    filter:
        drop-shadow(0 18px 30px rgba(0, 0, 0, 0.22));
}


/* ---------------------------------------------------------
   CAROUSEL ARROWS
   --------------------------------------------------------- */

.carousel-arrow {
    position: absolute;

    top: 50%;
    z-index: 5;

    width: 48px;
    height: 48px;

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

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;

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

    color: #123d78;

    font-family: inherit;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;

    cursor: pointer;

    transform: translateY(-50%);

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.carousel-arrow:hover {
    background: #ffffff;

    transform:
        translateY(-50%)
        scale(1.06);
}


.carousel-prev {
    left: 12px;
}


.carousel-next {
    right: 12px;
}


/* ---------------------------------------------------------
   CAROUSEL DOTS
   --------------------------------------------------------- */

.carousel-dots {
    position: absolute;

    bottom: 17px;
    left: 50%;

    z-index: 5;

    display: flex;
    align-items: center;
    gap: 7px;

    transform: translateX(-50%);
}


.carousel-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 0;
    border-radius: 50%;

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

    cursor: pointer;

    transition:
        width 0.25s ease,
        background 0.25s ease;
}


.carousel-dot.is-active {
    width: 24px;

    border-radius: 999px;

    background: #2c8cff;
}


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

@media (max-width: 900px) {

    .commerce-showcase-card {
        grid-template-columns: 1fr;
    }


    .commerce-copy {
        padding: 5px 32px 5px;
    }


    .commerce-copy p {
        max-width: 650px;
    }


    .commerce-carousel {
        min-height: 360px;

        padding:
            12px
            38px
            45px;
    }


    .carousel-slide img {
        max-height: 310px;
    }

}


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

@media (max-width: 600px) {

    .commerce-grid {
        gap: 8px;
    }


    .commerce-showcase-card {
        display: flex;
        flex-direction: column;

        min-height: auto;

        border-radius: 22px;
    }


.commerce-copy {
    order: 1;

    padding: 5px 15px 6px;

    background: #ffffff;
}


    .commerce-copy .card-label {
        margin-bottom: 5px;

        padding: 5px 13px;

        font-size: 11px;
    }


    .commerce-copy h3 {
        margin-bottom: 5px;

        font-size: 34px;
        line-height: 1.06;

        letter-spacing: -1px;
    }


    .commerce-copy p {
        margin-bottom: 5px;

        font-size: 16px;
        line-height: 1.55;
    }


    .commerce-cta {
        padding: 12px 18px;

        font-size: 14px;
    }


 .commerce-carousel {
    order: 2;

    min-height: 270px;

    padding: 5px 20px 5px;

    background:
        radial-gradient(
            circle at 50% 50%,
            #eef8ff 0%,
            #f8fbff 60%,
            #ffffff 100%
        );
}


    .carousel-slide img {
        width: 100%;

        max-height: 245px;

        border-radius: 14px;
    }


    .carousel-arrow {
        width: 38px;
        height: 38px;

        font-size: 27px;
    }


    .carousel-prev {
        left: 7px;
    }


    .carousel-next {
        right: 7px;
    }


    .carousel-dots {
        bottom: 14px;
    }


    .carousel-dot {
        width: 7px;
        height: 7px;
    }


    .carousel-dot.is-active {
        width: 19px;
    }

}


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

@media (max-width: 380px) {

    .commerce-copy {
        padding-left: 20px;
        padding-right: 20px;
    }


    .commerce-copy h3 {
        font-size: 30px;
    }


    .commerce-copy p {
        font-size: 15px;
    }


    .commerce-carousel {
        min-height: 235px;
    }


    .carousel-slide img {
        max-height: 215px;
    }

}

.engineering-foundation {
    display: grid;

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

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

    overflow: hidden;

    background: var(--light);
}


.engineering-foundation > div {
    min-height: 115px;

    padding: 17px 14px;

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


.engineering-foundation > div:last-child {
    border-right: 0;
}


.engineering-foundation span {
    display: block;

    margin-bottom: 10px;

    color: var(--blue);

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


.engineering-foundation strong {
    display: block;

    margin-bottom: 4px;

    color: var(--navy);

    font-size: 14px;
}


.engineering-foundation small {
    display: block;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.4;
}


/* =========================================================
   8. DUPLICATE PROCESS SECTION
   Hidden because Shopify Engineering already
   contains the process.
   ========================================================= */

#process {
    display: none !important;
}


/* =========================================================
   9. SHOPIFY PLANS
   ========================================================= */

.pricing-grid {
    display: grid;

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

    align-items: stretch;

    gap: 15px;
}


.pricing-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 440px;

    padding: 25px;

    border: 1px solid rgba(255,255,255,0.13);
    border-radius: var(--radius-lg);

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


.pricing-card-featured {
    border: 2px solid #4ba4ff;

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

    box-shadow:
        0 20px 50px rgba(0,0,0,0.16);

    transform: translateY(-5px);
}


.pricing-badge {
    position: absolute;

    top: 15px;
    right: 16px;

    padding: 5px 9px;

    border-radius: 999px;

    background: var(--blue);

    color: white;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.7px;
}


.pricing-name {
    margin-bottom: 10px;

    color: #72b3ff;

    font-size: 17px;
    font-weight: 850;
    letter-spacing: 1.5px;
}


.pricing-price {
    margin-bottom: 5px;

    color: white;

    font-size: 38px;
    line-height: 1.05;
    font-weight: 800;

    letter-spacing: -1.5px;
}

/* =========================================================
   PRICING OFFER PRICE
========================================================= */

.pricing-price-wrap {
    margin-bottom: 5px;
}

.pricing-old-price {
    display: block;

    margin-bottom: 3px;

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

    font-size: 18px;
    font-weight: 600;

    line-height: 1;

    text-decoration-line: line-through;
    text-decoration-thickness: 1.5px;
    text-decoration-color: rgba(255,255,255,0.55);
}

.pricing-subtitle {
    margin-bottom: 20px;

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

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


.pricing-card ul {
    list-style: none;

    display: grid;

    gap: 10px;

    margin-bottom: 24px;
}


.pricing-card li {
    position: relative;

    padding-left: 19px;

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

    font-size: 14px;
    line-height: 1.45;
}


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

    position: absolute;
    left: 0;

    color: #67b5ff;

    font-weight: 800;
}


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

    margin-top: auto;
}


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

    padding: 13px 17px;

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;

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

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

    font-size: 18px;

    text-align: center;
}

.pricing-offer-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 12px;
    padding: 8px 14px;

    border: 1px solid rgba(255,210,70,0.65);
    border-radius: 999px;

    background: rgba(255,210,70,0.14);

    color: #ffd45a;

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

    line-height: 1.35;

    text-align: center;

    animation: pricingOfferPulse 2.2s ease-in-out infinite;
}

@keyframes pricingOfferPulse {
    0%, 100% {
        box-shadow: 0 0 0 rgba(255,210,70,0);
    }

    50% {
        box-shadow: 0 0 18px rgba(255,210,70,0.28);
    }
}

.pricing-note strong {
    color: white;
}


.pricing-note span {
    margin-left: 8px;
}

/* =========================================================
   10. 4-IN-1 FLAGSHIP
   ========================================================= */

.flagship-section {
    padding: 28px 0;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(30,121,230,0.22),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #082452,
            #0b3d89
        );

    color: white;
}


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

.flagship-header {
    display: grid;

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

    align-items: start;

    gap: 30px;

    margin-bottom: 20px;
}


.flagship-header .eyebrow {
    margin-bottom: 10px;

    color: #72b3ff;
}


.flagship-header h2 {
    margin: 0 0 12px;

    color: white;

    font-size: clamp(40px, 4.6vw, 62px);
    line-height: 0.98;

    letter-spacing: -2.4px;
}


.flagship-header p {
    max-width: 560px;

    margin: 0;

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

    font-size: 16px;
    line-height: 1.45;
}


/* =========================================================
   PROJECT PRICE
========================================================= */

.flagship-price {
    display: flex;
    flex-direction: column;

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

    width: 100%;
    min-height: 82px;

    box-sizing: border-box;

    padding: 12px 18px;

    border: 2px solid #e2bd3b;
    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.98),
            rgba(255,250,229,0.98)
        );

    text-align: center;

    overflow: hidden;
}


/* Hide whatever old crown/text was inside the small element */

.flagship-price small {
    display: block;

    margin: 0 0 5px;

    color: #53627a;

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

    line-height: 1;

    letter-spacing: 1.2px;

    text-align: center;
}


/* If the old small element contains a crown,
   hide the original content and show clean text */

.flagship-price small {
    font-size: 0;
}

.flagship-price small::after {
    content: "PROJECT PRICE";

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

    letter-spacing: 1.2px;
}


/* PRICE */

.flagship-price strong {
    display: block;

    margin: 0;

    color: #c28a05;

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

    line-height: 1;

    letter-spacing: -0.8px;

    text-align: center;
}

.flagship-price span {
    display: block;

    margin-top: 5px;

    color: #53627a;

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

    line-height: 1.2;

    text-align: center;
}


/* =========================================================
   FOUR BUSINESS CHANNELS
========================================================= */

.four-model-grid {
    display: grid;

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

    gap: 12px;

    margin-bottom: 15px;
}


.four-model-card {
    min-height: 190px;

    padding: 12px;

    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 17px;

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

    color: #082452;
}


/* Remove 01 / 02 / 03 / 04 */

.four-model-number {
    display: none;
}


/* TITLE = GOLD BAR */

.four-model-card h3 {
    min-height: 0;

    margin: 0 0 18px;

    padding: 8px 10px;

    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            #f4df9a,
            #e9c95b
        );

    color: #082452;

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

    line-height: 1.15;

    letter-spacing: -0.2px;
}


/* DESCRIPTION */

.four-model-card p {
    margin: 0;

    color: #53627a;

    font-size: 16px;
    line-height: 1.45;
}


/* =========================================================
   INCLUDED / METRICS
========================================================= */

.flagship-includes {
    display: grid;

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

    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 16px;

    overflow: hidden;

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


.flagship-includes > div {
    display: flex;
    flex-direction: column;

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

    min-height: 85px;

    padding: 15px;

    border-right: 1px solid rgba(8,36,82,0.10);

    text-align: center;
}


.flagship-includes > div:last-child {
    border-right: 0;
}


.flagship-includes strong {
    margin-bottom: 4px;

    color: #b47c00;

    font-size: 23px;
    line-height: 1.1;
}


.flagship-includes span {
    color: #53627a;

    font-size: 12px;
}


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

.flagship-cta {
    display: flex;
    align-items: center;

    gap: 2px;

    margin-top: 14px;
}


.flagship-cta span {
    color: rgba(255,255,255,0.52);

    font-size: 12px;
}


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

@media (max-width: 600px) {

    .flagship-section {
        padding: 24px 0;
    }


    .flagship-header {
        display: flex;
        flex-direction: column;

        gap: 14px;

        margin-bottom: 14px;
    }


    .flagship-header h2 {
        font-size: 40px;
        line-height: 0.98;
        letter-spacing: -1.5px;
    }


    .flagship-header p {
        font-size: 16px;
        line-height: 1.45;
    }


    /* FULL-WIDTH PRICE CARD */

    .flagship-price {
        width: 100%;

        min-height: 82px;

        padding: 11px 16px;

        border-radius: 15px;
    }


    .flagship-price strong {
        font-size: 32px;
    }


    /* TWO COLUMN CARDS */

    .four-model-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;

        margin-bottom: 12px;
    }


    .four-model-card {
        min-height: 175px;

        padding: 10px;

        border-radius: 16px;
    }


    .four-model-card h3 {
        margin-bottom: 16px;

        padding: 7px 9px;

        font-size: 17px;

        line-height: 1.15;
    }


    .four-model-card p {
        font-size: 16px;

        line-height: 1.45;
    }


    /* METRICS */

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

        border-radius: 16px;
    }


    .flagship-includes > div {
        min-height: 82px;

        padding: 10px 6px;
    }


    .flagship-includes strong {
        font-size: 22px;
    }


    .flagship-includes span {
        font-size: 11px;

        line-height: 1.3;
    }


    /* CTA */

    .flagship-cta {
        margin-top: 12px;
    }
}


/* =========================================================
   11. PORTFOLIO
   ========================================================= */

.portfolio-grid {
    display: grid;

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

    gap: 15px;
}


.portfolio-card {
    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 17px;

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


.portfolio-image-placeholder {
    aspect-ratio: 4 / 4.6;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            145deg,
            #123b72,
            #0b2a5b
        );

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

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.1px;
}


.portfolio-info {
    padding: 15px 17px 17px;
}


.portfolio-info span {
    color: #70b5ff;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}


.portfolio-info h3 {
    margin: 6px 0 0;

    color: white;

    font-size: 17px;
    line-height: 1.25;
}


.portfolio-note {
    margin-top: 15px;

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

    font-size: 12px;
    text-align: center;
}


/* =========================================================
   12. GROWTH / CASE STUDIES
   ========================================================= */

/* =========================================================
   GROWTH — REPORTED RESULTS
========================================================= */

.growth-section {
    overflow: hidden;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.growth-heading {
    max-width: 850px;

    margin-bottom: 46px;
}


.growth-heading h2 {
    max-width: 780px;
}


/* =========================================================
   RESULTS GRID
========================================================= */

.growth-results-grid {
    display: grid;

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

    gap: 20px;

    margin-bottom: 30px;
}


/* =========================================================
   RESULT CARD
========================================================= */

.growth-result-card {
    position: relative;

    overflow: hidden;

    margin: 0;

    border: 1px solid #d9e3ee;
    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 10px 35px rgba(8,36,82,0.06);

    transition:
        transform 250ms ease,
        box-shadow 250ms ease;
}


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

    box-shadow:
        0 18px 48px rgba(8,36,82,0.10);
}


/* =========================================================
   GRAPHIC
========================================================= */

.growth-result-card img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 16 / 10;

    object-fit: cover;
}


/* =========================================================
   GROWTH DISCLAIMER
========================================================= */

.growth-disclaimer {
    max-width: 900px;

    margin: 20px auto 0;

    color: #718096;

    font-size: 12px;
    line-height: 1.55;

    text-align: center;
}


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

@media (max-width: 600px) {

    .growth-heading {
        margin-bottom: 28px;
    }


    .growth-heading h2 {
        font-size: 40px;

        line-height: 1.03;
    }


    .growth-heading p {
        font-size: 15px;

        line-height: 1.55;
    }


    .growth-results-grid {
        grid-template-columns: 1fr;

        gap: 16px;

        margin-bottom: 24px;
    }


    .growth-result-card {
        border-radius: 17px;

        box-shadow:
            0 8px 25px rgba(8,36,82,0.06);
    }


    .growth-result-card img {
        aspect-ratio: 16 / 10;
    }


    .growth-disclaimer {
        margin-top: 16px;

        padding: 0 8px;

        font-size: 11px;

        line-height: 1.5;
    }

}

.result-card strong {
    display: block;

    margin-bottom: 2px;

    color: var(--navy);

    font-size: 34px;
    line-height: 1.05;

    letter-spacing: -1.2px;
}


.result-card > span {
    display: block;

    margin-bottom: 11px;

    color: var(--muted);

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


.result-card p {
    margin: 0;

    color: var(--text);

    font-size: 13px;
    line-height: 1.5;
}


.growth-system {
    padding: 20px 23px;

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

    border-radius: 17px;

    background: var(--light);
}


.growth-system-title {
    margin-bottom: 15px;

    color: var(--blue);

    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.1px;

    text-align: center;
}


.growth-steps {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}


.growth-steps span {
    padding: 8px 12px;

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

    background: white;

    color: #344d6b;

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


.growth-steps b {
    color: #91a2b6;

    font-size: 14px;
}

/* =========================================================
   13. SERVICES — BEYOND SHOPIFY
========================================================= */

.services-section {
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(30,121,230,0.20),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #071f49,
            #0b3475
        );

    color: white;
}


/* =========================================================
   HEADING
========================================================= */

.services-heading {
    max-width: 900px;
    margin-bottom: 42px;
}

.services-heading .eyebrow {
    color: #72b3ff;
}

.services-heading h2 {
    color: white;
}

.services-heading h2 span {
    color: #1769d5;
}

.services-heading p {
    max-width: 760px;

    color: rgba(255,255,255,0.70);
}


/* =========================================================
   SERVICE GRID
========================================================= */

.services-grid {
    display: grid;

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

    gap: 18px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
    overflow: hidden;

    border: 1px solid rgba(83,164,255,0.28);
    border-radius: 22px;

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

    transition:
        transform 220ms ease,
        border-color 220ms ease,
        background 220ms ease;
}


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

    border-color: rgba(83,164,255,0.52);

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


/* =========================================================
   SERVICE IMAGE
========================================================= */

.service-card img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 12 / 5;

    object-fit: cover;

    object-position: center;

    border: 0;
}


/* =========================================================
   SERVICE HEADING
========================================================= */

.service-card h3 {
    margin: 0;

    padding: 18px 22px 21px;

    color: white;

    font-size: 23px;
    line-height: 1.2;

    letter-spacing: -0.35px;
}


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

@media (max-width: 600px) {

    .services-heading {
        margin-bottom: 28px;
    }


    .services-heading h2 {
        font-size: 40px;
        line-height: 1.02;
    }


    .services-heading p {
        font-size: 16px;
        line-height: 1.55;
    }


    /* TWO COLUMNS ON MOBILE */

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 12px;
    }


    .service-card {
        border-radius: 18px;
    }


    .service-card img {
        aspect-ratio: 1 / 0.72;

        object-fit: cover;
    }


    .service-card h3 {
        padding: 13px 12px 16px;

        font-size: 16px;
        line-height: 1.18;

        letter-spacing: -0.2px;
    }
}

/* =========================================================
   14. SUPPORT / AMC
   ========================================================= */

.support-layout {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 45px;
}


.support-content .eyebrow {
    margin-bottom: 10px;
}


.support-content h2 {
    margin-bottom: 14px;

    color: var(--navy);

    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.05;

    letter-spacing: -1.8px;
}


.support-content p {
    max-width: 570px;

    margin: 0;

    color: var(--text);

    font-size: 16px;
    line-height: 1.6;
}


.support-cards {
    display: grid;

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

    gap: 12px;
}


.support-card {
    min-height: 135px;

    display: flex;
    flex-direction: column;

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

    padding: 16px;

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

    background: var(--light);

    text-align: center;
}


.support-card strong {
    margin-bottom: 6px;

    color: var(--navy);

    font-size: 23px;
    line-height: 1.1;
}


.support-card span {
    color: var(--muted);

    font-size: 11px;
    line-height: 1.35;
}


/* =========================================================
   15. CONTACT
   ========================================================= */

.contact-section {
    padding: var(--section-space) 0;

    background:
        linear-gradient(
            145deg,
            #071d3f,
            #0b2a5b
        );

    color: white;
}


.contact-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(430px, 0.8fr);

    align-items: start;

    gap: 55px;
}


.contact-content {
    padding-top: 5px;
}


.contact-content .eyebrow {
    margin-bottom: 10px;

    color: #72b3ff;
}


.contact-content h2 {
    max-width: 600px;

    margin-bottom: 15px;

    color: white;

    font-size: clamp(40px, 4vw, 57px);
    line-height: 1.02;

    letter-spacing: -2px;
}


.contact-content p {
    max-width: 590px;

    margin-bottom: 22px;

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

    font-size: 16px;
    line-height: 1.6;
}


.contact-points {
    display: grid;

    gap: 11px;
}


.contact-points > div {
    display: flex;
    flex-direction: column;

    padding-bottom: 11px;

    border-bottom: 1px solid rgba(255,255,255,0.12);
}


.contact-points strong {
    margin-bottom: 2px;

    color: white;

    font-size: 13px;
}


.contact-points span {
    color: rgba(255,255,255,0.57);

    font-size: 12px;
}


.contact-card {
    padding: 25px;

    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;

    background: white;

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


.contact-form {
    display: grid;

    gap: 13px;
}


.form-group {
    display: grid;

    gap: 5px;
}


.form-group label {
    color: #263d5a;

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


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

    padding: 10px 12px;

    border: 1px solid #d4dfeb;
    border-radius: 9px;

    background: #fbfdff;

    color: var(--ink);

    font-size: 14px;

    outline: none;
}


.form-group input,
.form-group select {
    min-height: 44px;
}


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

    resize: vertical;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(11,99,206,0.10);
}


.contact-form > .btn {
    width: 100%;

    margin-top: 2px;
}


.form-note {
    display: block;

    color: #7a899a;

    font-size: 10px;
    line-height: 1.45;

    text-align: center;
}


/* =========================================================
   16. FOOTER
   ========================================================= */

.site-footer {
    background: #06172f;

    color: white;
}


.footer-grid {
    display: grid;

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

    gap: 45px;

    padding-top: 40px;
    padding-bottom: 35px;
}


.footer-brand-name {
    margin-bottom: 10px;

    color: white;

    font-size: 20px;
    font-weight: 800;
}


.footer-brand p {
    max-width: 310px;

    margin: 0 0 8px;

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

    font-size: 12px;
    line-height: 1.55;
}


.footer-column {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 8px;
}


.footer-column h4 {
    margin: 0 0 6px;

    color: white;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}


.footer-column a {
    color: rgba(255,255,255,0.52);

    font-size: 12px;

    transition: color 0.2s ease;
}


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


.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
}


.footer-bottom-inner {
    min-height: 55px;

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

    gap: 20px;

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

    font-size: 10px;
}


/* =========================================================
   17. LARGE TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 18px;
    }


    .header-cta {
        display: none;
    }


    .hero-grid {
        gap: 20px;
    }


    .section-heading {
        grid-template-columns:
            145px
            minmax(0, 1fr);

        column-gap: 25px;
    }


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


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


    .four-model-card {
        min-height: 180px;
    }
}


/* =========================================================
   18. TABLET
   ========================================================= */

@media (max-width: 820px) {

    .container {
        width: min(
            var(--container),
            calc(100% - 36px)
        );
    }


.main-nav {
    display: none;
}


/* MOBILE MENU — OPEN STATE */

.main-nav.mobile-open {
    display: flex;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 14px 14px;

    /* SOLID MENU BACKGROUND */
    background: #ffffff;

    border-bottom: 1px solid var(--border);
    box-shadow: 0 14px 30px rgba(8,47,103,0.12);

    z-index: 9999;
}


/* MOBILE MENU LINKS */

.main-nav.mobile-open a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;

    color: var(--navy);
    background: #ffffff;

    font-size: 15px;
    font-weight: 650;
    border-radius: 9px;
}


.main-nav.mobile-open a:hover {
    background: #f2f6fb;
    color: var(--blue);

    transform: none;
}


/* MENU BUTTON */

.mobile-menu-btn {
    display: grid;
    place-items: center;

    cursor: pointer;

    position: relative;
    z-index: 1001;
}

    .hero {
        padding: 15px 0;
    }


    .hero-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .hero-content {
        max-width: 760px;
    }


    .hero h1 {
        font-size: clamp(46px, 8vw, 65px);
    }


    .hero-visual {
        min-height: auto;
    }


    /*
       Mobile/tablet:
       the whole section remains one theme.
       Desktop two-column content simply stacks.
    */
    .section-heading {
        grid-template-columns: 1fr;

        gap: 7px;

        margin-bottom: 15px;
    }


    .section-heading > .eyebrow,
    .section-heading > h2,
    .section-heading > p {
        grid-column: 1;
        grid-row: auto;
    }


    .section-heading > .eyebrow {
        padding-top: 0;
    }


    .section-heading > p {
        max-width: 650px;

        margin-top: 0;
    }


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


    .focus-strip {
        grid-template-columns: 1fr;
    }


    .focus-strip strong,
    .focus-strip span {
        min-height: auto;

        padding: 12px 15px;
    }


    .focus-strip span {
        border-top: 1px solid rgba(255,255,255,0.12);
        border-left: 0;
    }


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


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


    .engineering-foundation > div:nth-child(3) {
        border-right: 0;
    }


    .engineering-foundation > div:nth-child(n+4) {
        border-top: 1px solid var(--border);
    }


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


    .pricing-card {
        min-height: auto;
    }


    .pricing-card-featured {
        transform: none;
    }


    .flagship-header {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .flagship-price {
        max-width: 330px;
    }


    .support-layout,
    .contact-layout {
        grid-template-columns: 1fr;

        gap: 25px;
    }


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

        gap: 30px;
    }
}


/* =========================================================
   19. MOBILE
   ========================================================= */

@media (max-width: 560px) {

    .container {
        width: calc(100% - 28px);
    }


    .header-inner {
        min-height: 66px;
    }


    .brand {
        min-width: 0;
    }


    .brand-name {
        font-size: 16px;
    }


    .brand-tagline {
        font-size: 8px;
    }


    .hero {
        padding: 15px 0;
    }


    .hero h1 {
        margin-bottom: 12px;

        font-size: 45px;
        line-height: 1.01;

        letter-spacing: -2px;
    }


    .hero-lead {
        font-size: 16px;
    }


    .hero-points {
        grid-template-columns: 1fr;

        gap: 7px;
    }


    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }


    .hero-actions .btn {
        width: 100%;
    }


    .hero-visual {
        padding: 18px 12px;

        border-radius: 22px;
    }


    .hero-visual-title {
        font-size: 27px;
    }


    .hero-stack-item {
        grid-template-columns: 32px 1fr;

        min-height: 65px;
    }


    .hero-stack-item > small {
        grid-column: 2;

        text-align: left;
    }


    .section-heading > h2 {
        font-size: 35px;

        letter-spacing: -1.2px;
    }


    .section-heading > p {
        font-size: 15px;
    }


    .experience-card,
    .commerce-card {
        padding: 21px;
    }


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


    .engineering-foundation > div {
        border-right: 1px solid var(--border);
    }


    .engineering-foundation > div:nth-child(2n) {
        border-right: 0;
    }


    .engineering-foundation > div:nth-child(n+3) {
        border-top: 1px solid var(--border);
    }


    .pricing-card {
        padding: 22px;
    }


    .pricing-price {
        font-size: 34px;
    }


    .pricing-note {
        text-align: left;
    }


    .pricing-note span {
        display: block;

        margin: 5px 0 0;
    }


    .flagship-section {
        padding: 20px 0;
    }


    .flagship-header h2 {
        font-size: 43px;
    }


    .four-model-grid {
        grid-template-columns: 1fr;
    }


    .four-model-card {
        min-height: auto;
    }


    .flagship-includes {
        grid-template-columns: 1fr;
    }


    .flagship-includes > div {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }


    .flagship-includes > div:last-child {
        border-bottom: 0;
    }


    .flagship-cta {
        flex-direction: column;
        align-items: stretch;
    }


    .flagship-cta .btn {
        width: 100%;
    }


    .flagship-cta span {
        text-align: center;
    }


.portfolio-grid,
.results-grid {
    grid-template-columns: 1fr;
}


    .portfolio-image-placeholder {
        aspect-ratio: 1 / 1.05;
    }


    .growth-steps {
        justify-content: flex-start;
    }


    .growth-steps b {
        display: none;
    }


    .support-cards {
        grid-template-columns: 1fr;
    }


    .support-card {
        min-height: 105px;
    }


    .contact-section {
        padding: 15px 0;
    }


    .contact-content h2 {
        font-size: 40px;

        letter-spacing: -1.5px;
    }


    .contact-card {
        padding: 21px 17px;
    }


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

        gap: 25px;

        padding-top: 35px;
        padding-bottom: 32px;
    }


    .footer-bottom-inner {
        min-height: 65px;

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

        flex-direction: column;

        gap: 3px;
    }
}


/* =========================================================
   20. ACCESSIBILITY / MOTION
   ========================================================= */

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

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}

/* =========================================================
   4-IN-1 PREMIUM FLAGSHIP SECTION
   LIGHT + GOLD + BLUE
   ========================================================= */

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

    margin: 15px 0;
    padding: 42px 0 38px;

    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(55, 135, 225, 0.13),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #f9fcff 0%,
            #eef6ff 48%,
            #dcecff 100%
        ) !important;

    color: #0b3268 !important;

    border-top: 1px solid #c8ddf5;
    border-bottom: 1px solid #c8ddf5;

    box-shadow:
        0 18px 55px rgba(20, 75, 135, 0.10);
}


/* subtle premium glow */

.flagship-section::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    top: -240px;
    right: -100px;

    background: radial-gradient(
        circle,
        rgba(244, 195, 65, 0.16),
        transparent 68%
    );

    pointer-events: none;
}

.flagship-section::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -200px;
    left: -100px;

    background: radial-gradient(
        circle,
        rgba(31, 112, 211, 0.10),
        transparent 70%
    );

    pointer-events: none;
}


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

.flagship-header {
    position: relative;
    z-index: 2;
}


/* Flagship label */

.flagship-header .eyebrow {
    display: inline-flex;
    align-items: center;

    padding: 9px 18px;

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

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

    color: #1268d5 !important;

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

    letter-spacing: 0.10em;

    box-shadow:
        0 5px 18px rgba(30,90,160,0.06);
}


/* =========================================================
   MAIN HEADING
   ========================================================= */

.flagship-header h2 {
    color: #1268d5 !important;

       margin: 0 !important;
}


/* GOLD 4-IN-1 */

.flagship-header h2::first-line {
    /* intentionally left normal;
       exact gold is handled below */
}


/*
   Your HTML has:

   4-IN-1
   <span>E-commerce Solution</span>

   So the span remains BLUE and the h2 itself gets the
   gold treatment only where applicable through markup.
*/

.flagship-header h2 {
    background: none !important;
    -webkit-text-fill-color: #A87400 !important;
}


/* span = blue */

.flagship-header h2 span {
    color: #D6A21C !important;
    background: none !important;
    -webkit-text-fill-color: #D6A21C !important;
}


/* If 4-IN-1 is plain text before the span,
   use text-shadow to give it premium depth */

.flagship-header h2 {
    text-shadow: none;
}


/* =========================================================
   PRICE CARD
   ========================================================= */

.flagship-price {
    position: relative;

    padding: 12px 22px;
    padding-left: 95px;

    border: 2px solid #e2bd3b;
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.98),
            rgba(255,250,229,0.98)
        );

    text-align: center;
}
.flagship-price img {
    position: absolute;

    left: 18px;
    top: 50%;

    width: 58px;
    height: 58px;

    object-fit: contain;

    transform: translateY(-50%);
}
/* =========================================================
   KING CROWN — LEFT OF PRICE
========================================================= */

.flagship-price::before {
    content: "♛";

    position: absolute;

    top: 50%;
    left: 18px;

    transform: translateY(-50%);

    font-family: Georgia, serif;
    font-size: 48px;
    line-height: 1;

    color: #d6a21c;

    text-shadow:
        0 2px 0 #956400,
        0 4px 12px rgba(137, 91, 0, 0.28);

    z-index: 10;
}


/* Crown glow */

.flagship-price::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 18px;

    width: 58px;
    height: 58px;

    transform: translateY(-50%);

    background: radial-gradient(
        ellipse,
        rgba(244, 198, 67, 0.25),
        transparent 70%
    );

    filter: blur(5px);

    z-index: 1;
}

/* =========================================================
   PRICE CARD TEXT
   ========================================================= */

.flagship-price h3,
.flagship-price h4 {
    color: #173b6d !important;
}


/* Project Price */

.flagship-price .pricing-label,
.flagship-price .price-label,
.flagship-price .project-price-label {
    color: #667892 !important;
}


/* ₹2,99,999 */

.flagship-price .pricing-price,
.flagship-price .price,
.flagship-price strong {
    color: #b57b00 !important;

    background: linear-gradient(
        180deg,
        #936200 0%,
        #e0b638 38%,
        #b87900 72%,
        #936000 100%
    );

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

    -webkit-text-fill-color: transparent;

    text-shadow: none;
}


/* GST MUST REMAIN VISIBLE */

.flagship-price .pricing-note,
.flagship-price .price-note,
.flagship-price small,
.flagship-price p {
    color: #64748b !important;
}


/* =========================================================
   FOUR BUSINESS MODEL CARDS
   ========================================================= */

.four-model-grid {
    position: relative;
    z-index: 2;
}


.four-model-card {
    background: rgba(255,255,255,0.96) !important;

    color: #173b6d !important;

    border: 1px solid #cbdff5 !important;

    border-radius: 22px;

    box-shadow:
        0 10px 28px rgba(25, 75, 125, 0.07);

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


.four-model-card:hover {
    transform: translateY(-5px);

    border-color: #e0b83f !important;

    box-shadow:
        0 18px 38px rgba(25, 75, 125, 0.11),
        0 5px 18px rgba(220, 170, 45, 0.08);
}


/* Numbers */

.four-model-number {
    background: linear-gradient(
        145deg,
        #fff8d9,
        #f3d36c
    ) !important;

    color: #916200 !important;

    border: 1px solid #e3bd4e !important;
}


/* Card headings */

.four-model-card h3,
.four-model-card h4 {
    color: #082f67 !important;
}


/* Card descriptions */

.four-model-card p {
    color: #526b89 !important;
}


/* =========================================================
   BOTTOM BENEFIT STRIP
   ========================================================= */

.flagship-includes {
    position: relative;
    z-index: 2;

    background: rgba(255,255,255,0.92) !important;

    color: #173b6d !important;

    border: 1px solid #cbdff5 !important;

    border-radius: 20px;

    box-shadow:
        0 10px 28px rgba(25,75,125,0.07);
}


/* benefit numbers */

.flagship-includes strong {
    color: #b57b00 !important;
}


/* benefit labels */

.flagship-includes span,
.flagship-includes p {
    color: #60748d !important;
}


/* separators */

.flagship-includes > * + * {
    border-color: #dce7f4 !important;
}


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

.flagship-cta {
    position: relative;
    z-index: 2;
}


.flagship-cta .btn-primary {
    background: linear-gradient(
        135deg,
        #0b3268,
        #1268d5
    ) !important;

    color: #ffffff !important;

    border: 0 !important;

    box-shadow:
        0 10px 24px rgba(11,50,104,0.20);
}


.flagship-cta .btn-primary:hover {
    transform: translateY(-2px);
}


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

@media (max-width: 820px) {

    .flagship-header {
        text-align: left;
    }

    .flagship-price {
        margin-top: 42px;
    }

}


@media (max-width: 560px) {

    .flagship-section {
        padding: 18px 0 20px;
    }

    .flagship-header h2 {
        margin: 0 !important;
        padding: 0 !important;

        font-size: clamp(42px, 12vw, 64px);
        line-height: 0.95;
    }


    .four-model-card {
        border-radius: 18px;
    }

}

/* =========================================================
   WHY MAKEIN DIGITAL — SHOWCASE
   ========================================================= */

#about .about-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}


/* =========================================================
   LEFT VISUAL
   ========================================================= */

#about .about-visual {
    min-height: 470px;
    padding: 12px;
    border-radius: 26px;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(54,117,255,0.20),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 85%,
            rgba(116,72,255,0.16),
            transparent 30%
        ),
        #07152d;

    box-shadow:
        0 24px 60px rgba(7,21,45,0.16),
        inset 0 1px 0 rgba(255,255,255,0.08);
}


#about .about-visual-inner {
    min-height: 446px;
    height: 100%;

    padding: 24px;

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

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.015)
        );

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


#about .visual-topbar {
    display: flex;
    align-items: center;
    gap: 9px;

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

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
}


#about .visual-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #ffffff;
}


#about .visual-status {
    margin-left: auto;

    padding: 5px 9px;

    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;

    font-size: 9px;
    letter-spacing: 0.12em;
}


/* =========================================================
   VISUAL CENTER
   ========================================================= */

#about .visual-main {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;

    gap: 20px;

    align-items: center;

    margin: 28px 0;
}


#about .visual-code {
    padding: 20px 16px;

    border-radius: 14px;

    background: rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.07);

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

    font-family: monospace;
    font-size: 11px;
    line-height: 2;
}


#about .visual-code > span:first-child,
#about .visual-code > span:last-child {
    color: rgba(255,255,255,0.85);
}


#about .code-line {
    display: block;

    width: 88%;
    height: 5px;

    margin: 5px 0;

    border-radius: 10px;

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


#about .code-line.short {
    width: 48%;
}


#about .code-line.medium {
    width: 68%;
}


/* =========================================================
   SHOPIFY MOCKUP
   ========================================================= */

#about .visual-store {
    padding: 14px;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 18px 35px rgba(0,0,0,0.20);
}


#about .store-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 3px 3px 12px;

    color: #10213d;

    font-size: 10px;
    letter-spacing: 0.08em;
}


#about .store-header span {
    opacity: 0.45;
}


#about .store-content {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 10px;

    align-items: center;
}


#about .store-image {
    height: 115px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(31,76,145,0.18),
            rgba(31,76,145,0.04)
        ),
        #eef3f8;
}


#about .store-lines span {
    display: block;

    height: 7px;

    margin: 10px 0;

    border-radius: 10px;

    background: #dfe5ec;
}


#about .store-lines span.short {
    width: 55%;
}


#about .store-footer {
    margin-top: 12px;
    padding-top: 10px;

    border-top: 1px solid #edf0f4;

    color: #526176;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
}


#about .store-footer b {
    margin: 0 5px;
    opacity: 0.35;
}


/* =========================================================
   VISUAL STATS
   ========================================================= */

#about .visual-bottom {
    display: grid;

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

    gap: 10px;
}


#about .visual-bottom > div {
    padding: 14px;

    border-radius: 12px;

    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.07);
}


#about .visual-bottom strong {
    display: block;

    margin-bottom: 4px;

    color: #ffffff;

    font-size: 15px;
}


#about .visual-bottom span {
    display: block;

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

    font-size: 10px;
}


/* =========================================================
   RIGHT CONTENT
   ========================================================= */

#about .about-content {
    max-width: 650px;
}


#about .about-content .eyebrow {
    margin-bottom: 15px;
}


#about .about-content h2 {
    max-width: 620px;

    margin: 0;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.05;

    letter-spacing: -0.035em;
}


#about .about-content h2 span {
    display: block;

    color: #41658f;
}


#about .about-intro {
    max-width: 560px;

    margin: 20px 0 28px;

    color: #59697e;

    font-size: 17px;
    line-height: 1.65;
}


/* =========================================================
   THREE POINTS
   ========================================================= */

#about .about-points {
    display: flex;
    flex-direction: column;
}


#about .about-point {
    display: grid;

    grid-template-columns: 48px 1fr;

    gap: 17px;

    padding: 17px 0;

    border-top: 1px solid rgba(20,48,82,0.12);
}


#about .about-point:last-child {
    border-bottom: 1px solid rgba(20,48,82,0.12);
}


#about .about-point-icon {
    width: 40px;
    height: 40px;

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

    border-radius: 11px;

    background: #e9f0f8;

    color: #183b65;

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


#about .about-point h3 {
    margin: 0 0 5px;

    color: #10213d;

    font-size: 18px;
    line-height: 1.25;
}


#about .about-point p {
    margin: 0;

    color: #65748a;

    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   OUR FOCUS
   ========================================================= */

#about .about-focus {
    margin-top: 24px;

    padding: 17px 19px;

    border-radius: 14px;

    background: #f2f6fa;

    border: 1px solid rgba(20,48,82,0.08);
}


#about .about-focus > strong {
    display: block;

    margin-bottom: 10px;

    color: #10213d;

    font-size: 12px;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}


#about .focus-items {
    display: flex;
    flex-wrap: wrap;

    gap: 8px 18px;
}


#about .focus-items span {
    color: #59697e;

    font-size: 12px;
    line-height: 1.5;
}


#about .focus-items span::before {
    content: "✓";

    margin-right: 6px;

    color: #183b65;

    font-weight: 800;
}


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

@media (max-width: 900px) {

    #about .about-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #about .about-content {
        max-width: none;
    }

}


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

@media (max-width: 600px) {

   #about .about-showcase {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

    #about .about-visual {
        min-height: auto;
        border-radius: 20px;
    }



    #about .about-content h2 {
        font-size: 38px;
    }

#about .about-content {
    order: 1;
}

#about .about-visual {
    order: 2;
}
  
   #about .about-intro {
    margin: 16px 0 20px;
    font-size: 15px;
    color: rgba(255,255,255,0.72);
}


    #about .about-point {
        grid-template-columns: 40px 1fr;

        gap: 12px;

        padding: 15px 0;
    }


    #about .about-point-icon {
        width: 36px;
        height: 36px;
    }


    #about .about-point h3 {
    font-size: 16px;
    color: #ffffff;
}

   #about .about-point p {
    font-size: 13px;
    color: rgba(255,255,255,0.72);
}

    #about .about-focus {
        margin-top: 18px;
    }


    #about .focus-items {
        flex-direction: column;
        gap: 5px;
    }

}

/* ABOUT — MOBILE/DARK SECTION TEXT CONTRAST */

#about .about-point h3 {
    color: #ffffff !important;
}

#about .about-point p {
    color: rgba(255,255,255,0.72) !important;
}

#about .about-intro {
    color: rgba(255,255,255,0.72) !important;
}

/* =========================================================
   CAROUSEL SAFETY FIX
   Narrow mobile devices / iPhone 8 and similar
   ========================================================= */

@media (max-width: 600px) {

    .commerce-carousel {
        position: relative !important;
        overflow: hidden !important;
    }

    .carousel-track {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
    }

    .carousel-slide {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;

        width: 100% !important;
        height: 100% !important;

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

        opacity: 0 !important;
        visibility: hidden !important;

        transform: translateX(18px) scale(.985) !important;

        pointer-events: none !important;
    }

    .carousel-slide.is-active {
        opacity: 1 !important;
        visibility: visible !important;

        transform: translateX(0) scale(1) !important;

        pointer-events: auto !important;
    }

    .carousel-slide img {
        display: block !important;

        width: 100% !important;
        height: auto !important;

        max-width: 100% !important;
        max-height: 245px !important;

        object-fit: contain !important;
    }
}


/* Extra protection for iPhone 8 / narrow phones */

@media (max-width: 380px) {

    .commerce-carousel {
        min-height: 250px !important;
    }

    .carousel-slide img {
        max-height: 225px !important;
    }

}

/* =========================================================
   SHOPIFY BUILD JOURNEY — FINAL MOBILE LAYOUT
   ========================================================= */

@media (max-width: 600px) {

    /* Keep the whole process compact */
    .shopify-build-journey {
        margin-top: 8px !important;
        padding: 18px 12px !important;
        border-radius: 20px !important;
    }

    /* Compact heading */
    .journey-header {
        margin-bottom: 14px !important;
    }

    .journey-header h3 {
        font-size: 27px !important;
        line-height: 1.05 !important;
        margin-bottom: 6px !important;
    }

    .journey-header p {
        font-size: 13px !important;
        line-height: 1.35 !important;
    }

    /* SIX STEPS = 2 columns × 3 rows */
    .journey-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 7px !important;
    }

    /* Small compact cards */
    .journey-step {
        min-height: 92px !important;
        padding: 12px !important;
        border-radius: 14px !important;
    }

    .journey-top {
        margin-bottom: 4px !important;
    }

    .journey-number {
        font-size: 10px !important;
    }

    .journey-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 15px !important;
    }

    .journey-step h4 {
        margin: 0 0 3px !important;
        font-size: 15px !important;
        line-height: 1.15 !important;
    }

    .journey-step p {
        font-size: 10.5px !important;
        line-height: 1.25 !important;
    }

    /* Compact bottom strip */
    .journey-footer {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;

        margin-top: 8px !important;
        padding: 10px 12px !important;
    }

    .journey-footer strong {
        font-size: 12px !important;
    }

    .journey-footer span {
        font-size: 9px !important;
    }

    .journey-footer a {
        width: auto !important;
        flex-shrink: 0 !important;
        padding: 8px 11px !important;
        font-size: 10px !important;
    }
}

/* =========================================================
   SHOPIFY BUILD JOURNEY — FINAL LAYOUT
   ========================================================= */

/* DESKTOP */

.shopify-build-journey {
    width: 100% !important;
    box-sizing: border-box !important;
    margin-top: 15px !important;
    padding: 30px !important;

    border: 1px solid #dce8f5 !important;
    border-radius: 26px !important;

    background: linear-gradient(
        135deg,
        #f8fbff 0%,
        #ffffff 55%,
        #f2f8ff 100%
    ) !important;

    box-shadow: 0 12px 35px rgba(20,55,100,.06) !important;
}

.journey-header {
    max-width: 760px !important;
    margin: 0 0 22px !important;
}

.journey-header h3 {
    margin: 0 0 8px !important;
    font-size: clamp(30px, 3vw, 44px) !important;
    line-height: 1.05 !important;
}

.journey-header p {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
}


/* 3 COLUMNS × 2 ROWS */

.journey-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
}

.journey-step {
    min-height: 135px !important;
    box-sizing: border-box !important;

    padding: 17px !important;

    border: 1px solid #dce8f5 !important;
    border-radius: 17px !important;

    background: rgba(255,255,255,.92) !important;
}

.journey-top {
    margin-bottom: 12px !important;
}

.journey-number {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #1677ee !important;
}

.journey-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 18px !important;
}

.journey-step h4 {
    margin: 0 0 5px !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
}

.journey-step p {
    margin: 0 !important;
    max-width: 260px !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
}


/* BOTTOM STRIP */

.journey-footer {
    margin-top: 10px !important;
    padding: 15px 18px !important;

    border-radius: 15px !important;
}


/* TABLET */

@media (max-width: 900px) {

    .journey-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .shopify-build-journey {
        margin-top: 8px !important;
        padding: 18px 12px !important;
        border-radius: 20px !important;
    }

    .journey-header {
        margin-bottom: 14px !important;
    }

    .journey-header h3 {
        font-size: 27px !important;
        line-height: 1.05 !important;
    }

    .journey-header p {
        font-size: 13px !important;
        line-height: 1.35 !important;
    }

    .journey-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 7px !important;
    }

    .journey-step {
        min-height: 92px !important;
        padding: 12px !important;
        border-radius: 14px !important;
    }

    .journey-top {
        margin-bottom: 4px !important;
    }

    .journey-number {
        font-size: 10px !important;
    }

    .journey-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 15px !important;
    }

    .journey-step h4 {
        margin-bottom: 3px !important;
        font-size: 15px !important;
    }

    .journey-step p {
        font-size: 10.5px !important;
        line-height: 1.25 !important;
    }

    .journey-footer {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;

        gap: 8px !important;
        margin-top: 8px !important;
        padding: 10px 12px !important;
    }

    .journey-footer strong {
        font-size: 14px !important;
    }

    .journey-footer span {
        font-size: 9px !important;
    }

    .journey-footer a {
        width: auto !important;
        flex-shrink: 0 !important;
        padding: 8px 11px !important;
        font-size: 10px !important;
    }
}

/* =========================================================
   4-IN-1 FLAGSHIP — MOBILE COMPACT LAYOUT
   Desktop remains unchanged
   ========================================================= */

@media (max-width: 600px) {

    #four-in-one.flagship-section {
    padding: 5px 14px !important;
}

#four-in-one .flagship-header {
    margin-bottom: 2px !important;
}

    #four-in-one .flagship-header h2 {
        margin: 2px 0 2px !important;
        font-size: 42px !important;
        line-height: 0.98 !important;
        letter-spacing: -1.2px !important;
    }

    #four-in-one .flagship-header p {
        margin: 0 !important;
        font-size: 14px !important;
        line-height: 1.4 !important;
    }


    /* Price */
    #four-in-one .flagship-price {
    margin: 6px 0 10px !important;
    padding: 11px 18px !important;
        min-height: auto !important;
        border-radius: 20px !important;
    }

    #four-in-one .flagship-price strong {
        font-size: 30px !important;
    }


    /* FOUR BUSINESS MODELS
       2 × 2 instead of four vertical cards */
    #four-in-one .four-model-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;

        margin: 0 !important;
    }


    #four-in-one .four-model-card {
        min-height: 145px !important;

        padding: 10px !important;

        border-radius: 17px !important;
    }


    #four-in-one .four-model-card h3 {
        margin: 10px 0 7px !important;

        font-size: 17px !important;
        line-height: 1.15 !important;
    }


    #four-in-one .four-model-card p {
        margin: 0 !important;

        font-size: 11.5px !important;
        line-height: 1.35 !important;
    }


    /* Number strip */
    #four-in-one .four-model-card .model-number {
        font-size: 10px !important;
    }


    /* Includes / 75 / 8–10 / 4-IN-1 */
    #four-in-one .flagship-includes {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;

        margin: 10px 0 !important;
        padding: 0 !important;

        border-radius: 17px !important;
        overflow: hidden !important;
    }


    #four-in-one .flagship-includes > div {
        padding: 5px 6px !important;
        min-height: 82px !important;
    }


    #four-in-one .flagship-includes strong {
        font-size: 21px !important;
    }


    #four-in-one .flagship-includes span {
        font-size: 10px !important;
        line-height: 1.25 !important;
    }


    /* CTA */
    #four-in-one .flagship-cta {
        margin-top: 10px !important;
    }


    #four-in-one .flagship-cta a,
    #four-in-one .flagship-cta button {
        width: 100% !important;
        min-height: 46px !important;

        padding: 11px 16px !important;

        font-size: 13px !important;
    }


    /* Small final note */
    #four-in-one .flagship-note {
        margin-top: 8px !important;
        font-size: 9px !important;
        line-height: 1.3 !important;
    }

}

/* =========================================================
   4-IN-1 — FINAL MOBILE SPACING + TEXT FIX
   ========================================================= */

@media (max-width: 600px) {

    /* Keep heading tight */
    #four-in-one .flagship-header {
        margin-bottom: 0 !important;
        gap: 0 !important;
    }

    #four-in-one .flagship-header h2 {
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Description — make it visible on light background */
    #four-in-one .flagship-header p {
        margin: 3px 0 0 !important;
        padding: 0 !important;

        color: #526b89 !important;

        font-size: 14px !important;
        line-height: 1.35 !important;
    }

    /* Bring price card much closer to heading/description */
    #four-in-one .flagship-price {
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }

    
}

/* =========================================================
   PORTFOLIO — FULL PAGE SLIDE SHOWCASE
========================================================= */

.portfolio-section {
    overflow: hidden;
}

.portfolio-heading {
    max-width: 850px;
    margin-bottom: 48px;
}

.portfolio-heading h2 {
    max-width: 760px;
}


/* =========================================================
   TRUE PAGE SLIDER TRACK
========================================================= */

.portfolio-showcase {
    position: relative;

    width: 100%;

    overflow: hidden;

    touch-action: pan-y;
}

.portfolio-slide-track {
    display: flex;

    width: 100%;

    transform: translate3d(0, 0, 0);

    will-change: transform;
}

/* =========================================================
   ONE PROJECT = ONE FULL SLIDE
========================================================= */

.portfolio-slide {
    flex: 0 0 100%;
    width: 100%;

    scroll-snap-align: start;
    scroll-snap-stop: always;

    padding: 0;
}


/* =========================================================
   IMAGE
========================================================= */

.portfolio-image-wrap {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 10;

    overflow: hidden;

    border-radius: 22px;

    background: #111827;
    border: 1px solid rgba(255,255,255,0.12);
}

.portfolio-image-wrap img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 700ms cubic-bezier(.2,.7,.2,1),
        filter 500ms ease;
}

.portfolio-slide:hover .portfolio-image-wrap img {
    transform: scale(1.012);
}


/* =========================================================
   VIEW DETAILS
========================================================= */

.portfolio-view {
    position: absolute;

    right: 22px;
    bottom: 22px;

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

    min-height: 46px;
    padding: 0 18px;

    border-radius: 999px;

    background: rgba(255,255,255,0.95);
    color: #111827;

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

    text-decoration: none;

    box-shadow: 0 8px 30px rgba(0,0,0,0.16);

    transition:
        transform 250ms ease,
        background 250ms ease;
}

.portfolio-view:hover {
    transform: translateY(-2px);
    background: #ffffff;
}


/* =========================================================
   PROJECT INFORMATION
========================================================= */

.portfolio-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 24px;

    padding: 22px 4px 4px;
}

.portfolio-number {
    display: block;

    margin-bottom: 8px;

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

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

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.portfolio-meta h3 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 27px;
    line-height: 1.15;

    letter-spacing: -0.025em;
}

.portfolio-meta p {
    margin: 0;

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

    font-size: 14px;
    line-height: 1.5;
}

.portfolio-category {
    flex-shrink: 0;

    padding: 9px 14px;

    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;

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

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

    letter-spacing: 0.12em;
}


/* =========================================================
   BOTTOM INDICATOR
========================================================= */

.portfolio-controls {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 28px;

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

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

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portfolio-scroll-line {
    position: relative;

    width: 120px;
    height: 1px;

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

.portfolio-scroll-line span {
    display: block;

    width: 34%;
    height: 1px;

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


/* =========================================================
   PORTFOLIO DETAIL VIEW
========================================================= */

.portfolio-modal {
    position: fixed;
    inset: 0;

    z-index: 9999;

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

    padding: 30px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    background: rgba(5,8,14,0.88);

    transition:
        opacity 250ms ease,
        visibility 250ms ease;

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

.portfolio-modal:target {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.portfolio-modal-content {
    position: relative;

    width: min(1180px, 94vw);
    max-height: 92vh;

    overflow: auto;

    border-radius: 22px;

    background: #ffffff;

    box-shadow: 0 30px 100px rgba(0,0,0,0.45);

    transform: translateY(20px) scale(0.98);

    transition:
        transform 300ms cubic-bezier(.2,.7,.2,1);
}

.portfolio-modal:target .portfolio-modal-content {
    transform: translateY(0) scale(1);
}

.portfolio-modal-content > img {
    display: block;

    width: 100%;
    height: auto;

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

.portfolio-modal-close {
    position: absolute;

    top: 16px;
    right: 16px;

    z-index: 2;

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

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: rgba(255,255,255,0.95);
    color: #111827;

    font-size: 27px;
    line-height: 1;

    text-decoration: none;

    box-shadow: 0 5px 20px rgba(0,0,0,0.18);
}

.portfolio-modal-info {
    padding: 24px 28px 30px;
}

.portfolio-modal-info span {
    display: block;

    margin-bottom: 7px;

    color: #6b7280;

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

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.portfolio-modal-info h3 {
    margin: 0 0 7px;

    color: #111827;

    font-size: 28px;
    line-height: 1.2;
}

.portfolio-modal-info p {
    margin: 0;

    color: #6b7280;

    font-size: 14px;
    line-height: 1.5;
}


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

@media (max-width: 600px) {

    .portfolio-heading {
        margin-bottom: 28px;
    }

    .portfolio-heading h2 {
        font-size: 38px;
        line-height: 1.03;
    }

    .portfolio-heading p {
        font-size: 15px;
        line-height: 1.55;
    }


    /* ONE FULL SCREEN-LIKE PROJECT */

    .portfolio-showcase {
        margin: 0 -1px;
    }

    .portfolio-slide {
        flex: 0 0 100%;
        width: 100%;
    }


    /* IMAGE */

    .portfolio-image-wrap {
        aspect-ratio: 16 / 10;

        border-radius: 17px;
    }


    /* DETAILS BUTTON */

    .portfolio-view {
        right: 12px;
        bottom: 12px;

        min-height: 42px;
        padding: 0 15px;

        font-size: 12px;
    }


    /* PROJECT TEXT */

    .portfolio-meta {
        gap: 15px;

        padding: 17px 2px 2px;
    }

    .portfolio-number {
        margin-bottom: 7px;

        font-size: 12px;
    }

    .portfolio-meta h3 {
        margin-bottom: 7px;

        font-size: 24px;
        line-height: 1.15;
    }

    .portfolio-meta p {
        font-size: 13px;
        line-height: 1.5;
    }

    .portfolio-category {
        padding: 8px 11px;

        font-size: 9px;
    }


    /* BOTTOM */

    .portfolio-controls {
        margin-top: 20px;

        gap: 10px;

        font-size: 9px;
    }

    .portfolio-scroll-line {
        width: 70px;
    }


    /* DETAIL VIEW */

    .portfolio-modal {
        padding: 12px;
    }

    .portfolio-modal-content {
        width: 100%;
        max-height: 94vh;

        border-radius: 17px;
    }

    .portfolio-modal-content > img {
        border-radius: 17px 17px 0 0;
    }

    .portfolio-modal-close {
        top: 10px;
        right: 10px;

        width: 38px;
        height: 38px;

        font-size: 24px;
    }

    .portfolio-modal-info {
        padding: 18px 18px 22px;
    }

    .portfolio-modal-info h3 {
        font-size: 24px;
    }

    .portfolio-modal-info p {
        font-size: 13px;
    }
}
/* =========================================================
   PORTFOLIO CAROUSEL ARROWS
========================================================= */

.portfolio-arrow {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

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

    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;

    background: rgba(255,255,255,0.06);
    color: #ffffff;

    font-size: 18px;
    line-height: 1;

    cursor: pointer;

    transition:
        background 200ms ease,
        border-color 200ms ease,
        transform 200ms ease,
        opacity 200ms ease;
}

.portfolio-arrow:hover:not(:disabled) {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-1px);
}

.portfolio-arrow:disabled {
    opacity: 0.25;
    cursor: default;
}


/* MOBILE */

@media (max-width: 600px) {

    .portfolio-arrow {
        width: 36px;
        height: 36px;

        flex-basis: 36px;

        font-size: 15px;
    }
}

/* =========================================================
   MAKEIN DIGITAL HEADER LOGO
========================================================= */

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

/* =========================================================
   MAKEIN DIGITAL HEADER LOGO
========================================================= */

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    object-fit: contain;
}

@media (max-width: 820px) {

    .brand-logo {
        width: 58px !important;
        height: 58px !important;
        max-width: 58px !important;
    }

}
/* =========================================================
   CONTACT — LOCATIONS
========================================================= */

.contact-locations {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.16);
}

.locations-heading {
    margin-bottom: 10px;
    color: #72b3ff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.location-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.location-item:last-child {
    margin-bottom: 0;
}

.location-item strong {
    color: white;
    font-size: 15px;
    line-height: 1.35;
}

.location-item span {
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    line-height: 1.5;
}

/* =========================================================
   CONTACT DETAILS — FINAL
========================================================= */

.contact-points {
    margin-top: 8px;
}

.contact-points > div {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
    padding: 5px 0;
    border-bottom: 0;
}

.contact-points > div:first-child {
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.contact-points strong {
    color: white;
    font-size: 17px;
    font-weight: 750;
    white-space: nowrap;
}

.contact-points span {
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    line-height: 1.1;
}
/* MOBILE */

@media (max-width: 820px) {

    .contact-points {
        margin-top: 24px;
    }

    .contact-points > div {
        padding: 12px 0;
    }

    .contact-points strong {
        font-size: 16px;
    }

    .contact-points span {
        font-size: 15px;
    }

    .contact-locations {
        margin-top: 5px;
        padding-top: 10px;
    }

    .location-item {
        margin-bottom: 14px;
    }

}

/* =========================================================
   HERO — GYFTZEE COMMERCE PROOF
========================================================= */

.gyftzee-hero-visual {
    min-height: auto !important;

    justify-content: flex-start !important;

    background:
        linear-gradient(
            145deg,
            #f7fbff,
            #eef6ff
        ) !important;

    border: 1px solid #dbe9f8;
    box-shadow: 0 20px 50px rgba(20,70,130,0.12) !important;
}

.gyftzee-hero-visual::before {
    display: none;
}

.gyftzee-hero-top {
    position: relative;
    z-index: 2;
    padding: 4px 5px 4px;
}

.gyftzee-hero-label {
    margin-bottom: 5px;

    color: #2775d4;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.gyftzee-hero-top h2 {
    margin: 0;

    color: #0b2a5b;
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -0.8px;
}

.gyftzee-hero-top h2 span {
    display: block;

    margin-top: 4px;

    color: #1769d5;
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

.gyftzee-hero-image {
    position: relative;
    z-index: 1;

    display: block;

    width: 100%;
    height: 255px;

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

    border-radius: 18px;
}

.gyftzee-hero-bottom {
    position: relative;
    z-index: 2;

    padding: 12px 4px 2px;
}

.gyftzee-models {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.gyftzee-models span {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;
    padding: 5px 6px;

    border-radius: 8px;

    background: white;
    border: 1px solid #dce9f6;

    color: #173761;

    font-size: 10px;
    font-weight: 750;
    line-height: 1.15;
    text-align: center;
}

.gyftzee-hero-proof {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-top: 9px;
    padding-top: 9px;

    border-top: 1px solid #dbe7f3;
}

.gyftzee-hero-proof strong {
    color: #52657c;
    font-size: 14px;
    font-weight: 650;
}

.gyftzee-hero-proof a {
    flex-shrink: 0;

    color: #1769d5;
    font-size: 14px
    font-weight: 800;
}


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

@media (max-width: 820px) {

    .gyftzee-hero-visual {
        padding: 12px !important;
        border-radius: 22px !important;
    }

    .gyftzee-hero-top {
        padding: 2px 3px 8px;
    }

    .gyftzee-hero-label {
        font-size: 9px;
        letter-spacing: 1.1px;
    }

    .gyftzee-hero-top h2 {
        font-size: 23px;
    }

    .gyftzee-hero-top h2 span {
        font-size: 14px;
    }

    .gyftzee-hero-image {
        height: 185px;
        border-radius: 15px;
    }

    .gyftzee-hero-bottom {
        padding-top: 8px;
    }

    .gyftzee-models {
        gap: 4px;
    }

    .gyftzee-models span {
        min-height: 30px;
        padding: 4px 3px;

        font-size: 8px;
    }

    .gyftzee-hero-proof {
        margin-top: 7px;
        padding-top: 7px;
    }

    .gyftzee-hero-proof strong,
    .gyftzee-hero-proof a {
        font-size: 9px;
    }
}

/* =========================================================
   MODERN FOOTER — FINAL OVERRIDE
========================================================= */

.site-footer {
    background: #061a35 !important;
    color: #ffffff;

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


.footer-top {
    display: grid;

    grid-template-columns:
        minmax(280px, 1.5fr)
        repeat(3, minmax(150px, 1fr));

    gap: 60px;

    padding-top: 64px;
    padding-bottom: 56px;
}


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

.footer-brand-name {
    margin-bottom: 14px;

    color: #ffffff;

    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.footer-brand-tagline {
    max-width: 330px;

    margin: 0 0 12px;

    color: #9fb4d0;

    font-size: 14px;
    line-height: 1.6;
}

.footer-brand-description {
    max-width: 330px;

    margin: 0;

    color: #8299b7;

    font-size: 13px;
    line-height: 1.65;
}


.footer-cta {
    display: inline-flex;
    align-items: center;

    margin-top: 24px;
    padding: 11px 18px;

    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 9px;

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

    color: #ffffff;

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

    text-decoration: none;

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

.footer-cta:hover {
    background: rgba(255,255,255,0.11);
    border-color: rgba(255,255,255,0.3);

    transform: translateY(-1px);
}


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

.footer-group {
    min-width: 0;
}

.footer-group summary {
    list-style: none;

    margin: 0 0 18px;

    color: #ffffff;

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

    cursor: pointer;
}

.footer-group summary::-webkit-details-marker {
    display: none;
}

.footer-group summary span {
    display: none;
}


.footer-links {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-links a {
    color: #8fa7c5;

    font-size: 13px;
    line-height: 1.4;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(2px);
}


/* =========================================================
   BOTTOM
========================================================= */

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer .footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 58px;

    color: #7188a6;

    font-size: 11px;
}


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

@media (max-width: 820px) {

    .footer-top {
        display: block;

        padding-top: 42px;
        padding-bottom: 24px;
    }


    .footer-brand {
        padding-bottom: 28px;
    }

    .footer-brand-name {
        font-size: 21px;
    }

    .footer-brand-tagline {
        font-size: 13px;
    }

    .footer-brand-description {
        font-size: 12px;
    }

    .footer-cta {
        margin-top: 18px;
    }


    /* ACCORDION */

    .footer-group {
        border-top: 1px solid rgba(255,255,255,0.10);
    }

    .footer-group:last-child {
        border-bottom: 1px solid rgba(255,255,255,0.10);
    }

    .footer-group summary {
        display: flex;
        align-items: center;
        justify-content: space-between;

        min-height: 54px;

        margin: 0;

        color: #ffffff;

        font-size: 14px;
    }

    .footer-group summary span {
        display: block;

        color: #8fa7c5;

        font-size: 20px;
        font-weight: 400;

        transition: transform 0.2s ease;
    }

    .footer-group[open] summary span {
        transform: rotate(45deg);
    }

    .footer-links {
        padding: 0 0 18px;
        gap: 11px;
    }

    .footer-links a {
        font-size: 13px;
    }


    /* BOTTOM */

    .site-footer .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        gap: 5px;

        min-height: 72px;

        padding-top: 14px;
        padding-bottom: 14px;
    }
}

/* =========================================================
   STICKY BOTTOM CTA
========================================================= */

.site-sticky-cta {

    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 99999;

    display: flex;

    justify-content: center;

    gap: 10px;

    padding: 10px 16px;

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

    border-top: 1px solid #dce8f5;

    box-shadow:
        0 -8px 25px rgba(8,47,103,0.10);

    backdrop-filter: blur(10px);

}


/* BUTTON */

.sticky-cta-btn {

    min-height: 46px;

    padding: 0 26px;

    display: inline-flex;

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

    border-radius: 9px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 750;

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

}


.sticky-cta-btn:hover {

    transform: translateY(-1px);

}


/* PRIMARY */

.sticky-cta-primary {

    background: #1268d5;

    color: #ffffff;

    box-shadow:
        0 6px 16px rgba(18,104,213,0.20);

}


.sticky-cta-primary:hover {

    background: #0d5abc;

    color: #ffffff;

}


/* WHATSAPP */

.sticky-cta-whatsapp {

    background: #ffffff;

    color: #1268d5;

    border: 1px solid #cbdff5;

}


.sticky-cta-whatsapp:hover {

    background: #f5f9ff;

    color: #1268d5;

}


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

@media (max-width: 600px) {

    .site-sticky-cta {

        gap: 8px;

        padding:
            8px 10px;

    }


    .sticky-cta-btn {

        flex: 1;

        min-height: 46px;

        padding: 0 8px;

        font-size: 11px;

        white-space: nowrap;

    }

}

body {

    padding-bottom: 68px;

}

@media (max-width: 600px) {

    body {

        padding-bottom: 62px;

    }

}

/* =========================================================
   WHATSAPP ICON — V1
========================================================= */

.sticky-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #25D366;
}

.whatsapp-icon svg {
    display: block;
}
/* =========================================================
   OPENING BRAND VIDEO — FLOATING PLAYER
   MakeIn Digital
   ========================================================= */

.brand-video-overlay {
    position: fixed;
    right: 30px;
    bottom: 80px;

    z-index: 9990;

    width: 260px;

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

    pointer-events: none;
    background: transparent;
}

.brand-video-card {
    position: relative;

    width: 260px;
    max-width: 260px;

    border-radius: 14px;
    overflow: hidden;

    background: #000;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.28),
        0 2px 8px rgba(0, 0, 0, 0.16);

    pointer-events: auto;
}

/* Video itself */

.brand-video {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 12 / 22;

    object-fit: cover;

    background: #000;
}

/* =========================================================
   CLOSE BUTTON
   ========================================================= */

.brand-video-close {
    position: absolute;

    top: 8px;
    right: 8px;

    z-index: 10;

    width: 32px;
    height: 32px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.75);
    color: #fff;

    font-size: 22px;
    line-height: 32px;

    cursor: pointer;

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

.brand-video-close:hover {
    background: rgba(0, 0, 0, 0.95);
}

/* =========================================================
   SOUND BUTTON
   ========================================================= */


/* =========================================================
   REOPEN / WATCH AGAIN BUTTON
   ========================================================= */

.brand-video-replay {
    position: fixed;

    right: 30px;
    bottom: 100px;

    z-index: 9985;

    display: none;

    border: 0;
    border-radius: 999px;

    padding: 9px 14px;

    background: #0b2a5b;
    color: #fff;

    font-family: inherit;
    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.brand-video-replay:hover {
    opacity: 0.92;
}

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

@media (max-width: 600px) {

    .brand-video-overlay {
        right: 30px;
        bottom: 100px;

        width: 200px;
    }

    .brand-video-card {
        width: 200px;
        max-width: 200px;

        border-radius: 12px;
    }

    .brand-video-close {
    width: 28px;
    height: 28px;

    font-size: 18px;
    line-height: 28px;
}

    .brand-video-close {
        top: 5px;
        right: 5px;
    }


    .brand-video-replay {
        right: 30px;
        bottom: 100px;

        padding: 8px 12px;

        font-size: 12px;
    }
}

/* =========================================================
   FULLSCREEN BUTTON
   ========================================================= */

.brand-video-fullscreen {
    position: absolute;

    right: 5px;
    bottom: 5px;

    z-index: 5;

    width: 28px;
    height: 28px;
    
    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.65);
    color: #fff;

    font-size: 16px;
    line-height: 28px;

    cursor: pointer;

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

.brand-video-fullscreen:hover {
    background: rgba(0, 0, 0, 0.88);
}
/* =========================================================
   MOBILE HORIZONTAL OVERFLOW FIX
   ========================================================= */
/* =========================================================
   PREMIUM BRAND OWNER PROGRAM
   6-MONTH BUSINESS LAUNCH & GROWTH PROGRAM
   ========================================================= */

.premium-brand-section {
    position: relative;
    overflow: hidden;

    margin: 15px 0;
    padding: 48px 0 44px;

    background:
        radial-gradient(
            circle at 8% 10%,
            rgba(214, 166, 42, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(35, 100, 180, 0.14),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #071f45 0%,
            #0b3268 48%,
            #102f59 100%
        );

    color: #ffffff;
}


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

.premium-brand-header {
    display: grid;

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

    align-items: center;

    gap: 35px;

    margin-bottom: 25px;
}


.premium-brand-heading .eyebrow {
    color: #f2c94c;

    margin-bottom: 12px;
}


.premium-brand-heading h2 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 64px);

    line-height: 0.98;

    letter-spacing: -2px;
}


.premium-brand-heading h2 span {
    display: block;

    color: #f0b92f;
}


.premium-brand-heading p {
    max-width: 700px;

    margin: 0;

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

    font-size: 17px;

    line-height: 1.55;
}


/* =========================================================
   PRICE
   ========================================================= */

.premium-brand-price {
    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    min-height: 155px;

    padding: 22px;

    border: 1px solid #e7b52f;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #fffdf4,
            #f7edc9
        );

    box-shadow:
        0 15px 40px rgba(0,0,0,0.22);

    text-align: center;
}


.premium-brand-price small {
    margin-bottom: 5px;

    color: #7b5b00;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.premium-brand-price strong {
    color: #b47c00;

    font-size: 40px;

    line-height: 1.1;

    letter-spacing: -1.5px;
}


.premium-brand-price span {
    margin-top: 5px;

    color: #53627a;

    font-size: 13px;

    font-weight: 700;
}


/* =========================================================
   POSITIONING STRIP
   ========================================================= */

.premium-brand-positioning {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;

    padding: 15px 20px;

    border: 1px solid rgba(240,185,47,0.35);

    border-radius: 14px;

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


.premium-brand-positioning strong {
    color: #f3c84b;

    font-size: 16px;
}


.premium-brand-positioning span {
    color: rgba(255,255,255,0.68);

    font-size: 13px;

    text-align: right;
}


/* =========================================================
   FOUR PROGRAM BLOCKS
   ========================================================= */

.premium-brand-grid {
    display: grid;

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

    gap: 12px;

    margin-bottom: 22px;
}


.premium-brand-card {
    min-height: 180px;

    padding: 10px;

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

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.12),
            rgba(255,255,255,0.055)
        );

    box-shadow:
        0 12px 30px rgba(0,0,0,0.12);
}


.premium-brand-number {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 35px;
    height: 35px;

    margin-bottom: 15px;

    border-radius: 50%;

    background: #f0bd35;

    color: #082d5e;

    font-size: 12px;

    font-weight: 900;
}


.premium-brand-card h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 20px;

    line-height: 1.15;
}


.premium-brand-card ul {
    margin: 0;

    padding: 0;

    list-style: none;
}


.premium-brand-card li {
    position: relative;

    margin-bottom: 0px;

    padding-left: 17px;

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

    font-size: 14px;

    line-height: 1.4;
}


.premium-brand-card li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: #f0bd35;

    font-weight: 800;
}


/* =========================================================
   6 MONTH JOURNEY
   ========================================================= */

.premium-brand-journey {
    margin-bottom: 20px;

    padding: 22px;

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

    border-radius: 18px;

    background: rgba(0,0,0,0.13);
}


.premium-brand-journey-title {
    margin-bottom: 15px;

    color: #f0bd35;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1.8px;

    text-align: center;
}


.premium-brand-journey-grid {
    display: grid;

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

    gap: 12px;
}


.premium-brand-phase {
    padding: 18px;

    border-radius: 14px;

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

    text-align: center;
}


.premium-brand-phase span {
    display: block;

    margin-bottom: 4px;

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

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}


.premium-brand-phase strong {
    display: block;

    color: #ffffff;

    font-size: 22px;
}


.premium-brand-phase p {
    margin: 7px 0 0;

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

    font-size: 12px;

    line-height: 1.4;
}


/* =========================================================
   INCLUDED / EXCLUSIONS
   ========================================================= */

.premium-brand-bottom {
    display: grid;

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

    align-items: center;

    gap: 20px;

    margin-bottom: 20px;

    padding: 18px 20px;

    border-radius: 16px;

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


.premium-brand-included {
    display: flex;

    align-items: center;

    gap: 13px;
}


.premium-check {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 35px;
    height: 35px;

    border-radius: 50%;

    background: #f0bd35;

    color: #082d5e;

    font-weight: 900;
}


.premium-brand-included strong {
    display: block;

    color: #ffffff;

    font-size: 15px;
}


.premium-brand-included p {
    margin: 3px 0 0;

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

    font-size: 11px;
}


.premium-brand-exclusions {
    display: flex;

    flex-direction: column;

    gap: 5px;

    text-align: right;
}


.premium-brand-exclusions span {
    color: #f0bd35;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.5px;
}


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

.premium-brand-cta {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 10px;
}


.premium-brand-cta .btn {
    white-space: nowrap;
}


.premium-brand-cta > span {
    color: rgba(255,255,255,0.52);

    font-size: 11px;
}


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

@media (max-width: 900px) {

    .premium-brand-header {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .premium-brand-price {
        width: 100%;
    }


    .premium-brand-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 600px) {

    .premium-brand-section {
    margin: 0;

    padding: 30px 0 28px;
    }


    .premium-brand-header {
        gap: 16px;

        margin-bottom: 18px;
    }


    .premium-brand-heading h2 {
        font-size: 42px;

        line-height: 0.98;

        letter-spacing: -1.5px;
    }


    .premium-brand-heading p {
        font-size: 14px;

        line-height: 1.45;
    }


    .premium-brand-price {
        min-height: 105px;

        padding: 14px;

        border-radius: 17px;
    }


    .premium-brand-price strong {
        font-size: 32px;
    }


    .premium-brand-positioning {
        flex-direction: column;

        align-items: flex-start;

        gap: 5px;

        padding: 13px 15px;
    }


    .premium-brand-positioning span {
        text-align: left;

        font-size: 11px;
    }


    .premium-brand-grid {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 8px;

    /* Do not force equal-height rows */
    grid-auto-rows: max-content;

    align-items: start;
    }
    
    
    .premium-brand-card {
        min-height: 0;
    
        height: auto;
    
        align-self: start;
    
        padding: 12px;
    
        border-radius: 15px;
    }


    .premium-brand-number {
        width: 29px;
        height: 29px;

        margin-bottom: 10px;

        font-size: 10px;
    }


    .premium-brand-card h3 {
        margin-bottom: 11px;

        font-size: 16px;
    }


    .premium-brand-card li {
        margin-bottom: 7px;

        padding-left: 14px;

        font-size: 10.5px;

        line-height: 1.35;
    }


    .premium-brand-journey {
        padding: 14px;

        border-radius: 15px;
    }


    .premium-brand-journey-grid {
        gap: 7px;
    }


    .premium-brand-phase {
        padding: 12px 8px;

        border-radius: 12px;
    }


    .premium-brand-phase strong {
        font-size: 17px;
    }


    .premium-brand-phase p {
        font-size: 9.5px;

        line-height: 1.3;
    }


    .premium-brand-bottom {
        grid-template-columns: 1fr;

        gap: 13px;

        padding: 14px;
    }


    .premium-brand-exclusions {
        text-align: left;
    }


    .premium-brand-exclusions span {
        font-size: 9px;
    }


    .premium-brand-cta {
        flex-direction: column;

        align-items: stretch;

        gap: 9px;
    }


    .premium-brand-cta .btn {
        width: 100%;

        text-align: center;
    }


    .premium-brand-cta > span {
        text-align: center;

        font-size: 10px;
    }

}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}



/* =========================================================
   GROWTH RESULTS — FULL WIDTH CAROUSEL
========================================================= */

.growth-carousel {
    position: relative;

    width: 100%;

    margin: 0 auto 10px;

    padding: 0 10px 10px;

    overflow: hidden;
}


/* ---------------------------------------------------------
   TRACK
--------------------------------------------------------- */

.growth-carousel-track {
    position: relative;

    width: 100%;

    min-height: 0;
}


/* ---------------------------------------------------------
   SLIDE
--------------------------------------------------------- */

.growth-carousel .growth-result-card {
    display: none;

    width: 100%;

    margin: 0;

    overflow: hidden;

    border: 1px solid #d9e3ee;

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 10px 35px rgba(8,36,82,0.07);
}


/* ACTIVE SLIDE */

.growth-carousel .growth-result-card.is-active {
    display: block;

    animation:
        growthSlideIn 0.45s ease;
}


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

.growth-carousel .growth-result-card img {
    display: block;

    width: 100%;

    height: auto;

    aspect-ratio: 16 / 10;

    object-fit: cover;
}


/* ---------------------------------------------------------
   SLIDE ANIMATION
--------------------------------------------------------- */

@keyframes growthSlideIn {

    from {
        opacity: 0;

        transform:
            translateX(25px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }

}


/* ---------------------------------------------------------
   ARROWS
--------------------------------------------------------- */

.growth-carousel-arrow {
    position: absolute;

    top: 50%;

    z-index: 10;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: 1px solid #d5e0ec;

    border-radius: 50%;

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

    color: #123b73;

    font-size: 34px;

    font-weight: 400;

    line-height: 1;

    cursor: pointer;

    transform: translateY(-50%);

    box-shadow:
        0 8px 24px rgba(8,36,82,0.16);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.growth-carousel-arrow:hover {

    background: #ffffff;

    transform:
        translateY(-50%)
        scale(1.06);

    box-shadow:
        0 12px 30px rgba(8,36,82,0.20);
}


.growth-carousel-prev {
    left: 8px;
}


.growth-carousel-next {
    right: 8px;
}


/* ---------------------------------------------------------
   DOTS
--------------------------------------------------------- */

.growth-carousel-dots {
    position: absolute;

    bottom: 2px;

    left: 50%;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 7px;

    transform: translateX(-50%);
}


.growth-carousel-dot {
    width: 9px;

    height: 9px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #c9d7e7;

    cursor: pointer;

    transition:
        width 0.25s ease,
        background 0.25s ease;
}


.growth-carousel-dot.is-active {
    width: 14px;

    border-radius: 999px;

    background: #176fe5;
}


/* ---------------------------------------------------------
   COUNTER
--------------------------------------------------------- */

.growth-carousel-counter {
    position: absolute;

    right: 78px;

    bottom: 10px;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 5px;

    color: #718096;

    font-size: 12px;

    font-weight: 750;

    letter-spacing: 0.5px;
}


#growthCurrentSlide {
    color: #0b63ce;

    font-weight: 850;
}


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

@media (max-width: 600px) {

    .growth-carousel {

        padding:
            0
            12px
            18px;

        margin-bottom: 5px;
    }


    .growth-carousel .growth-result-card {

        border-radius: 17px;

        box-shadow:
            0 8px 25px rgba(8,36,82,0.07);
    }


    .growth-carousel .growth-result-card img {

        aspect-ratio: 16 / 10;

        object-fit: cover;
    }


    .growth-carousel-arrow {

        width: 38px;

        height: 38px;

        font-size: 27px;
    }


    .growth-carousel-prev {

        left: 2px;
    }


    .growth-carousel-next {

        right: 2px;
    }


    .growth-carousel-dots {

        bottom: 9px;
    }


    .growth-carousel-counter {

        right: 4px;

        bottom: 2px;

        font-size: 10px;
    }

}

/* =========================================================
   HERO — PREMIUM FLOATING HEADLINE
   ========================================================= */
.hero h1 .hero-title-line {
    display: block;
    opacity: 0;
    transform: translateY(-45px);
    filter: blur(4px);
    will-change: transform, opacity, filter;

    animation:
        makeinHeroFloat
        1.25s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}

/* First line */
.hero h1 .hero-title-main {
    animation-delay: 0.15s;
}

/* Second line */
.hero h1 .hero-title-accent {
    animation-delay: 0.42s;
}

@keyframes makeinHeroFloat {
    0% {
        opacity: 0;
        transform: translateY(-45px);
        filter: blur(4px);
    }

    65% {
        opacity: 1;
        transform: translateY(5px);
        filter: blur(0.5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero h1 .hero-title-line {
        animation: none;
        opacity: 1;
        transform: none;
        filter: none;
    }
}

/* =========================================================
   STICKY HEADER
   ========================================================= */
.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;

    width: 100% !important;

    z-index: 99990 !important;

    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
body {
    padding-top: 76px;
}
@media (max-width: 600px) {
    body {
        padding-top: 64px;
    }
}

/* =========================================================
   SECTION SCROLL REVEAL
   ========================================================= */

.section {
    opacity: 0;
    transform: translateY(28px);

    transition:
        opacity 1.1s ease,
        transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.section.is-visible {
    opacity: 1;
    transform: translateY(0);
}


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

    .section {
        opacity: 1;
        transform: none;
        transition: none;
    }

}
/* CLICKABLE D2C / B2B MODEL BOXES */
/* DARK CLICKABLE D2C / B2B BUTTONS */

.gyftzee-models a {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex-direction: column;
    min-height: 46px;
    padding: 7px 8px;

    border-radius: 9px;

    background: #173761;
    border: 1px solid #173761;

    color: #ffffff;

    font-size: 11px;
    font-weight: 750;
    line-height: 1;
    text-align: center;

    text-decoration: none;
    white-space: nowrap;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

/* subtle moving shine */
.gyftzee-models a::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;

    width: 45%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.65),
        transparent
    );

    transform: skewX(-20deg);

    animation: gyftzeeButtonShine 3.5s ease-in-out infinite;
}

/* second button shines slightly later */
.gyftzee-models a:nth-child(2)::after {
    animation-delay: 1.7s;
}

@keyframes gyftzeeButtonShine {
    0% {
        left: -75%;
    }

    35% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}

/* button text */
.gyftzee-models a small {
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
}

/* hover */
.gyftzee-models a:hover {
    background: #0d2d52;
    border-color: #0d2d52;
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(23,105,213,0.22);
}