.new-arrivals-section {
    background: #f4f5f7;
    padding: 60px 0 70px;
}

.new-arrivals-section .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.new-arrivals-section .section-divider {
    width: 48px;
    height: 3px;
    background: #111;
    margin: 8px auto 6px;
    border-radius: 2px;
}

.new-arrivals-section .section-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: #000000;
    letter-spacing: 0.02em;
}

/* ---- Product Card ---- */
.product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    border: 1px solid #ebebeb;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.product-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.11);
    transform: translateY(-3px);
}

/* ---- Badge ---- */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: #111;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
}

.product-badge.badge-hot   { background: #e63946; }
.product-badge.badge-trend { background: #2b7a78; }
.product-badge.badge-sale  { background: #f4a261; color: #111; }
.product-badge.badge-new   { background: #111; }

/* ---- Action Buttons ---- */
.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.16s, border-color 0.16s;
    text-decoration: none;
    color: #444;
}

.action-btn:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.action-btn svg {
    width: 15px;
    height: 15px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---- Product Image ---- */
.product-img-wrap {
    position: relative;
    background: #f9f9f9;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.04);
}

/* ---- Product Info ---- */
.product-info {
    padding: 14px 14px 16px;
}

.product-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-pricing {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-bottom: 12px;
}

.price-original {
    font-size: 0.78rem;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 400;
}

.price-current {
    font-size: 1.05rem;
    font-weight: 800;
    color: #111;
}

/* ---- Add to Cart Button ---- */
.btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    background: black;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.18s ease;
    text-decoration: none;
}


.btn-add-cart svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.white-section{
    background: #ffffff;
    padding: 60px 0 70px;
}

.white-section .section-divider {
    width: 48px;
    height: 3px;
    background: #111;
    margin: 8px auto 6px;
    border-radius: 2px;
}
.white-section .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}
.white-section .section-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: #000000;
    letter-spacing: 0.02em;
}
/* ---- Responsive Grid ---- */
/* Mobile: 2 columns, Desktop: 4 columns handled by Bootstrap col classes */

@media (max-width: 575.98px) {
    .new-arrivals-section {
        padding: 40px 0 50px;
    }
    .white-section{padding:40px 0 50px;}
    .white-section .section-title{font-size: 1.5rem;}
    .new-arrivals-section .section-title {
        font-size: 1.5rem;
    }
    .product-info {
        padding: 10px 10px 12px;
    }
    .product-name {
        font-size: 0.8rem;
    }
    .price-current {
        font-size: 0.95rem;
    }
    .btn-add-cart {
        font-size: 0.75rem;
        padding: 9px 0;
    }
}

/* --brandcss--- */

  
    .brands-header{
        background:linear-gradient(90deg,#255ea8,#f0b27a);
        border-radius:20px;
        padding:70px 20px;
        text-align:center;
        margin-bottom:-30px;
    }

    .brands-header h2{
        margin:0;
        font-size:40px;
        font-weight:800;
        color:#ffffff;
        letter-spacing:2px;
    }

    .brands-grid{
        display:grid;
        grid-template-columns:repeat(4,1fr);
        gap:18px;
        position:relative;
        z-index:2;
        padding:0 25px;
    }

    .brand-card{
        background:#fff;
        border-radius:15px;
        min-height:110px;
        display:flex;
        align-items:center;
        justify-content:center;
        box-shadow:0 5px 18px rgba(0,0,0,.08);
        transition:.3s;
        text-decoration:none;
        padding:15px;
    }

    .brand-card:hover{
        transform:translateY(-5px);
    }

    .brand-card img{
        max-width:180px;
        max-height:60px;
        width:auto;
        height:auto;
        object-fit:contain;
    }

    .brand-card span{
        color:#222;
        font-weight:600;
    }

    @media(max-width:768px){

        .brands-header{
            padding:40px 15px;
        }

        .brands-header h2{
            font-size:28px;
        }

        .brands-grid{
            grid-template-columns:repeat(2,1fr);
            padding:0;
        }

        .brand-card{
            min-height:90px;
        }

        .brand-card img{
            max-width:120px;
        }
}

/* ==========================================
   Home Slider (Shortcode Customization)
   ========================================== */

/* Slider Container */
#homeSlider {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
    min-height: 400px; /* PC par height fix rakhne ke liye */
}

/* Slider Images */
#homeSlider .carousel-inner,
#homeSlider .carousel-item {
    height: 100%;
}

#homeSlider .carousel-item picture,
#homeSlider .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover; /* Isse image stretch nahi hogi, perfect fit aayegi */
}

/* Carousel Indicators (Dots) */
#homeSlider .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    margin: 0 5px;
    border: none;
}
#homeSlider .carousel-indicators button.active {
    opacity: 1;
    background-color: var(--theme-orange, #f58634);
    transform: scale(1.2);
}

/* Mobile responsive height */
@media (max-width: 768px) {
    #homeSlider {
        min-height: 200px; 
    }
}

    
    
/* ==========================================
   Trending Categories Square Box Layout
   ========================================== */

.trending-cat-card {
    transition: transform 0.25s ease;
}

/* Square Box Container (1:1 Ratio) */
.trending-cat-img-box {
    width: 100%;
    aspect-ratio: 1 / 1; /* Perfect Square Box */
    border-radius: 12px;
    overflow: hidden;
    background-color: #f8f9fa;
    border: 1px solid #ebebeb;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

/* Image inside Square Box */
.trending-cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Stretch hone se bachayega */
    transition: transform 0.35s ease;
}

/* Hover Animations */
.trending-cat-card:hover .trending-cat-img-box {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-color: var(--theme-orange, #f58634);
}

.trending-cat-card:hover .trending-cat-img-box img {
    transform: scale(1.08); /* Zoom Effect */
}

/* Text Under Image */
.trending-cat-title {
    font-size: 14px;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.trending-cat-card:hover .trending-cat-title {
    color: var(--theme-orange, #f58634) !important;
}
/* ROOT VARIABLES[cite: 4] */
:root {
    --blue: #0759B8;
    --navy: #0A2138;
    --ink: #102A43;
    --muted: #61758A;
    --bg: #F5F8FC;
    --mint: #E8F7F1;
    --green: #159A72;
    --line: #DCE6EF;
}

/* GENERAL STYLES[cite: 4] */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.wrap {
    width: min(1240px, calc(100% - 48px));
    margin: auto;
}
.eyebrow {
    font: 600 12px ui-monospace, monospace;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
}

/* HEADER & NAV[cite: 4] */
header {
    position: fixed;
    z-index: 50;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1240px, calc(100% - 28px));
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(220, 230, 239, .9);
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(16, 42, 67, .08);
}
.nav {
    height: 68px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 20px;
}
.brand img {
    width: 39px;
    height: 39px;
    object-fit: contain;
}
.brand span span { color: var(--blue); }
.navlinks {
    display: flex;
    gap: 26px;
    font-size: 13px;
    color: #3d5369;
}
.navlinks a:hover { color: var(--blue); }
.navcta {
    background: var(--blue);
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 8px 22px rgba(7, 89, 184, .22);
}
.menu { display: none; }

/* HERO SECTION[cite: 4] */
.hero {
    min-height: 850px;
    padding: 170px 0 70px;
    background: radial-gradient(circle at 78% 28%, rgba(46, 134, 215, .16), transparent 28%), linear-gradient(135deg, #F9FBFD 0%, #EEF5FB 55%, #F6FBF8 100%);
    position: relative;
    overflow: hidden;
}
.hero:before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(7, 89, 184, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 89, 184, .035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}
.hero h1 {
    font: 700 clamp(58px, 7vw, 104px)/.91 'Space Grotesk';
    letter-spacing: -.065em;
    margin: 18px 0 24px;
    max-width: 850px;
}
.hero h1 .blue { color: var(--blue); }
.hero p {
    font-size: 19px;
    line-height: 1.65;
    color: #526B82;
    max-width: 650px;
    margin: 0;
}
.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 34px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 21px;
    border-radius: 12px;
    font-weight: 700;
    border: 1px solid var(--line);
}
.btn.primary {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    box-shadow: 0 12px 30px rgba(7, 89, 184, .2);
}
.btn.secondary { background: #fff; }
.hero-proof {
    margin-top: 52px;
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}
.proof {
    padding: 0 26px;
    border-left: 1px solid var(--line);
}
.proof:first-child {
    padding-left: 0;
    border-left: 0;
}
.proof strong {
    display: block;
    font: 700 31px 'Space Grotesk';
}
.proof small { color: var(--muted); }

/* HERO ART / GRAPHICS[cite: 4] */
.hero-art {
    position: relative;
    height: 510px;
}
.orbit {
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px solid rgba(7, 89, 184, .15);
    transform: rotate(-12deg);
}
.orbit.o2 {
    inset: 70px;
    border-color: rgba(21, 154, 114, .2);
    transform: rotate(24deg);
}
.orbit.o3 {
    inset: 125px;
    border-color: rgba(7, 89, 184, .13);
}
.hero-node {
    position: absolute;
    right: 11%;
    top: 23%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff, #EAF4FC);
    border: 1px solid #D7E5F1;
    box-shadow: 0 30px 80px rgba(16, 42, 67, .14);
    display: grid;
    place-items: center;
}
.hero-node-inner {
    width: 116px;
    height: 116px;
    border-radius: 34px;
    background: linear-gradient(145deg, var(--blue), #0D4B93);
    display: grid;
    place-items: center;
    color: #fff;
    font: 700 28px 'Space Grotesk';
    transform: rotate(-8deg);
}
.float {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 15px;
    box-shadow: 0 16px 35px rgba(16, 42, 67, .1);
    font-size: 12px;
}
.f1 { top: 12%; left: 6%; }
.f2 { right: 2%; bottom: 17%; }
.f3 {
    left: 4%;
    bottom: 10%;
    background: var(--mint);
    border-color: #CDEBDD;
}
.growthline {
    position: absolute;
    left: 5%;
    right: 5%;
    bottom: 12%;
    height: 150px;
}
.growthline svg { width: 100%; height: 100%; }
.hero-note {
    position: absolute;
    bottom: 0;
    right: 8%;
    font: 600 11px ui-monospace, monospace;
    color: var(--muted);
}

/* SECTIONS BASE[cite: 4] */
.section { padding: 120px 0; }
.section.alt { background: #fff; }
.section.mint { background: var(--mint); }
.section.dark { background: var(--navy); color: #fff; }
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 55px;
}
h2 {
    font: 700 clamp(42px, 5vw, 72px)/.98 'Space Grotesk';
    letter-spacing: -.05em;
    margin: 12px 0 0;
}
.lead {
    font-size: 17px;
    color: var(--muted);
    max-width: 590px;
}
.dark .lead { color: #A8BACB; }

/* LOGO WALL[cite: 4] */
.logo-wall {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.logo-tile {
    min-height: 82px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    display: grid;
    place-items: center;
    padding: 15px;
    text-align: center;
    font: 600 14px 'Space Grotesk';
    color: #37526A;
    transition: .25s;
}
.logo-tile:hover {
    transform: translateY(-4px);
    border-color: #B9D0E5;
    box-shadow: 0 12px 28px rgba(16, 42, 67, .07);
}

/* BENTO GRID (SERVICES)[cite: 4] */
.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}
.bento-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 30px;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    transition: .3s;
}
.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 45px rgba(16, 42, 67, .09);
}
.bento-card.large {
    grid-column: span 7;
    min-height: 390px;
    background: linear-gradient(145deg, #fff, #EDF5FC);
}
.bento-card.med { grid-column: span 5; }
.bento-card.small { grid-column: span 4; }
.bento-num {
    font: 700 12px ui-monospace, monospace;
    color: var(--blue);
}
.bento-card h3 {
    font: 700 31px 'Space Grotesk';
    margin: 18px 0 10px;
    letter-spacing: -.035em;
}
.bento-card p {
    color: var(--muted);
    max-width: 470px;
}
.tagrow {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}
.tag {
    font: 600 11px ui-monospace, monospace;
    border: 1px solid var(--line);
    padding: 7px 9px;
    border-radius: 99px;
    color: #496278;
    background: #FAFCFE;
}
.mini-chart {
    position: absolute;
    right: 25px;
    bottom: 20px;
    width: 48%;
    height: 120px;
}
.mini-chart svg { width: 100%; height: 100%; }

/* PROBLEM & SOLUTION[cite: 4] */
.problem {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.problem-list { border-top: 1px solid var(--line); }
.problem-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
    cursor: pointer;
    display: flex;
    gap: 18px;
    align-items: center;
    color: var(--ink);
}
.problem-btn .num {
    color: #8BA1B5;
    font: 600 12px ui-monospace, monospace;
}
.problem-btn strong { font: 600 20px 'Space Grotesk'; }
.problem-btn.active strong, .problem-btn:hover strong { color: var(--blue); }
.problem-panel {
    background: var(--navy);
    color: #fff;
    border-radius: 26px;
    padding: 42px;
    min-height: 410px;
    position: sticky;
    top: 110px;
}
.problem-panel .label {
    color: #8FD9C4;
    font: 600 11px ui-monospace, monospace;
}
.problem-panel h3 {
    font: 700 42px 'Space Grotesk';
    letter-spacing: -.04em;
    margin: 18px 0;
}
.problem-panel p {
    color: #B8C7D4;
    font-size: 16px;
    max-width: 560px;
}
.solution {
    display: inline-flex;
    margin-top: 24px;
    background: #fff;
    color: var(--navy);
    padding: 11px 14px;
    border-radius: 10px;
    font-weight: 700;
}

/* RESULTS / METRICS[cite: 4] */
.results {
    background: #0A2138;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.results:after {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    border: 1px solid rgba(143, 217, 196, .12);
    right: -180px;
    top: -180px;
}
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.result-card {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .045);
    border-radius: 26px;
    padding: 34px;
    min-height: 330px;
    position: relative;
    overflow: hidden;
    transition: .3s;
}
.result-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, .07);
}
.result-client {
    font: 600 12px ui-monospace, monospace;
    letter-spacing: .1em;
    color: #8FD9C4;
    text-transform: uppercase;
}
.result-card h3 {
    font: 700 38px 'Space Grotesk';
    margin: 14px 0 8px;
}
.result-desc {
    color: #AFC0D0;
    max-width: 480px;
}
.metrics {
    display: flex;
    gap: 36px;
    margin-top: 34px;
    flex-wrap: wrap;
}
.metric strong {
    font: 700 48px 'Space Grotesk';
    letter-spacing: -.04em;
    color: #fff;
}
.metric span {
    display: block;
    color: #8FA6BA;
    font: 600 10px ui-monospace, monospace;
    text-transform: uppercase;
}
.result-index {
    position: absolute;
    right: 28px;
    top: 24px;
    color: rgba(255, 255, 255, .18);
    font: 700 12px ui-monospace, monospace;
}
.result-card .arrow {
    position: absolute;
    bottom: 28px;
    right: 30px;
    color: #8FD9C4;
    font-size: 22px;
}

/* WORK GRID[cite: 4] */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.work-card {
    padding: 25px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    min-height: 180px;
    transition: .25s;
}
.work-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(16, 42, 67, .07);
}
.work-card .client { font: 700 20px 'Space Grotesk'; }
.work-card .service {
    margin-top: 10px;
    color: var(--blue);
    font: 600 10px ui-monospace, monospace;
    text-transform: uppercase;
}
.work-card p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 0;
}

/* PROCESS[cite: 4] */
.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.step {
    padding: 30px 24px;
    border-right: 1px solid var(--line);
}
.step:last-child { border-right: 0; }
.step .n {
    font: 600 12px ui-monospace, monospace;
    color: var(--blue);
}
.step h3 {
    font: 700 25px 'Space Grotesk';
    margin: 15px 0 8px;
}
.step p {
    font-size: 14px;
    color: var(--muted);
}

/* FOUNDER / TESTIMONIAL[cite: 4] */
.founder {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.portrait {
    min-height: 500px;
    border-radius: 28px;
    background: linear-gradient(145deg, #E7F1F8, #DDEFE8);
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
}
.portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.portrait-placeholder {
    font: 600 12px ui-monospace, monospace;
    color: #6C8295;
    text-align: center;
    padding: 30px;
}
.founder h3 {
    font: 700 48px 'Space Grotesk';
    letter-spacing: -.04em;
    margin: 15px 0;
}
.quote {
    border-left: 3px solid var(--green);
    padding-left: 18px;
    font: 600 24px 'Space Grotesk';
    margin: 30px 0;
}
.cred {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}
.cred span {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 99px;
    padding: 9px 12px;
    font-size: 12px;
    color: #52697E;
}
.testimonial {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}
.quote-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 42px;
}
.quote-card blockquote {
    font: 600 clamp(25px, 3vw, 38px)/1.2 'Space Grotesk';
    letter-spacing: -.035em;
    margin: 0;
}
.quote-card cite {
    display: block;
    margin-top: 28px;
    color: var(--muted);
    font-style: normal;
    font-size: 14px;
}

/* FAQ[cite: 4] */
.faq { max-width: 900px; }
details {
    border-top: 1px solid var(--line);
    padding: 22px 0;
}
details:last-child { border-bottom: 1px solid var(--line); }
summary {
    cursor: pointer;
    font: 600 19px 'Space Grotesk';
    list-style: none;
    display: flex;
    justify-content: space-between;
}
summary::-webkit-details-marker { display: none; }
summary:after {
    content: '+';
    color: var(--blue);
    font-size: 25px;
}
details[open] summary:after { content: '−'; }
details p {
    color: var(--muted);
    max-width: 760px;
    margin: 15px 0 0;
}

/* REACH / LOCATIONS[cite: 4] */
.reach {
    background: var(--navy);
    color: #fff;
    overflow: hidden;
}
.reach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.reach h2 { font-size: clamp(55px, 7vw, 100px); }
.reach .lead { color: #AFC0D0; }
.places {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.place {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 25px;
    background: rgba(255, 255, 255, .04);
}
.place strong { font: 700 30px 'Space Grotesk'; }
.place small {
    display: block;
    color: #91A7BA;
    margin-top: 5px;
}

/* CTA[cite: 4] */
.cta {
    padding: 110px 0;
    background: linear-gradient(135deg, #EAF4FF, #E9F8F1);
}
.cta-box {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: end;
}
.cta h2 { max-width: 780px; }
.cta p {
    color: var(--muted);
    max-width: 620px;
    font-size: 17px;
}

/* FOOTER[cite: 4] */
footer {
    padding: 45px 0;
    background: #fff;
    border-top: 1px solid var(--line);
}
.footer {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.footer-brand { font: 700 20px 'Space Grotesk'; }
.footer-brand span { color: var(--blue); }
.footer p {
    color: var(--muted);
    max-width: 420px;
    font-size: 13px;
}
.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #52697E;
}

/* ANIMATIONS[cite: 4] */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
    opacity: 1;
    transform: none;
}

/* MEDIA QUERIES[cite: 4] */
@media(max-width:900px) {
    .navlinks, .navcta { display: none; }
    .menu {
        display: block;
        border: 0;
        background: none;
        font-size: 26px;
    }
    .hero-grid, .problem, .founder, .testimonial, .reach-grid { grid-template-columns: 1fr; }
    .hero {
        min-height: auto;
        padding-top: 140px;
    }
    .hero-art {
        height: 360px;
        order: -1;
    }
    .hero-node {
        right: 25%;
        width: 190px;
        height: 190px;
    }
    .hero-node-inner {
        width: 90px;
        height: 90px;
        font-size: 22px;
    }
    .bento-card.large, .bento-card.med, .bento-card.small { grid-column: span 12; }
    .results-grid { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: repeat(2, 1fr); }
    .process { grid-template-columns: repeat(2, 1fr); }
    .step:nth-child(2) { border-right: 0; }
    .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .logo-wall { grid-template-columns: repeat(3, 1fr); }
    .cta-box { display: block; }
}

@media(max-width:600px) {
    .wrap { width: min(100% - 30px, 1240px); }
    header { top: 8px; }
    .nav { height: 60px; }
    .hero h1 { font-size: 55px; }
    .hero p { font-size: 16px; }
    .hero-art { height: 290px; }
    .hero-node {
        right: 17%;
        top: 20%;
        width: 160px;
        height: 160px;
    }
    .hero-node-inner {
        width: 72px;
        height: 72px;
        font-size: 18px;
    }
    .float {
        font-size: 10px;
        padding: 9px 11px;
    }
    .hero-proof { gap: 22px; }
    .proof { padding: 0 15px; }
    .proof strong { font-size: 25px; }
    .section { padding: 82px 0; }
    h2 { font-size: 45px; }
    .section-head {
        display: block;
        margin-bottom: 38px;
    }
    .logo-wall { grid-template-columns: repeat(2, 1fr); }
    .bento-card {
        padding: 23px;
        min-height: 190px;
    }
    .bento-card.large { min-height: 300px; }
    .bento-card h3 { font-size: 27px; }
    .problem-panel {
        position: static;
        min-height: 330px;
        padding: 28px;
    }
    .problem-panel h3 { font-size: 33px; }
    .result-card {
        min-height: 300px;
        padding: 27px;
    }
    .result-card h3 { font-size: 30px; }
    .metric strong { font-size: 38px; }
    .work-grid { grid-template-columns: 1fr; }
    .process { grid-template-columns: 1fr; }
    .step {
        border-right: 0 !important;
        border-bottom: 1px solid var(--line) !important;
    }
    .step:last-child { border-bottom: 0 !important; }
    .portrait { min-height: 360px; }
    .founder h3 { font-size: 38px; }
    .places { grid-template-columns: 1fr; }
    .cta { padding: 80px 0; }
    .cta h2 { font-size: 45px; }
}