:root {
    --ink: #2f3138;
    --muted: #69717c;
    --line: #e9edf4;
    --brand: #ff6b2b;
    --brand-dark: #ef5520;
    --rose: #dc4d72;
    --blue-soft: #eef6ff;
    --bg: #ffffff;
    --shadow: 0 18px 48px rgba(35, 42, 55, 0.12);
    --radius: 40px;
    font-family: "Source Sans Pro", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
    font-family: "Source Sans Pro";
    src: url("https://pa-cdn.freecharge.in/pwa/fonts/sourcesanspro/SourceSansPro-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Source Sans Pro";
    src: url("https://pa-cdn.freecharge.in/pwa/fonts/sourcesanspro/SourceSansPro-Semibold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Source Sans Pro";
    src: url("https://pa-cdn.freecharge.in/pwa/fonts/sourcesanspro/SourceSansPro-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Source Sans Pro";
    src: url("https://pa-cdn.freecharge.in/pwa/fonts/sourcesanspro/SourceSansPro-Black.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-size: 15px;
    line-height: 1.5;
    font-family: "Source Sans Pro", sans-serif;
    ;
}

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

.page {
    overflow: hidden;
}

.container {
    /* width: min(1320px, calc(100% - 40px)); */
    margin: 0 auto;
}

/* HEADER */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(16px, 3vw, 40px);
    gap: 16px;
}

.logo-img {
    display: block;
    width: 110px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: clamp(18px, 2.5vw, 40px);
}

.nav-links a {
    text-decoration: none;
    color: #555d69;
    font-size: 16px;
    font-weight: 400;
}

.nav-links a.active {
    color: #f36c21;
    font-weight: 600;
}

.menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.menu-icon {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    outline: none;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 18px;
    border: 0;
    border-radius: 10px;
    background: var(--brand);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 18px rgba(255, 105, 43, 0.2);
}

.btn.square {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.btn.square img {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
}

.btn:hover {
    background: var(--brand-dark);
}

.btn.light {
    background: #fff;
    color: var(--brand);
    border: 1px solid #ffd8c7;
    box-shadow: none;
}

.btn.small {
    min-height: 32px;
    padding: 0 14px;
    font-size: 11px;
}

.btn.square {
    width: 50px;
    height: 50px;
    min-height: 50px;
    border-radius: 50%;
    padding: 0;
    background: #7d838c;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    font-size: 28px;
    font-weight: 400;
    transition: all 0.25s ease;
}

.btn.square:hover {
    background: #626872;
    transform: translateY(-2px);
}

/* Explore Opportunities buttons: 257 × 60 */
.btn:not(.square):not(.small) {
    width: 257px;
    min-height: 60px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 12px;
    border: 1px solid #9dc4ff;
    border-radius: 999px;
    color: #111;
    background: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 15px;
}

#culture .eyebrow,
#benefits .eyebrow,
#testimonials .eyebrow {
    border-color: #407BFF;
    color: #407BFF;
}

.hero {
    position: relative;
    text-align: center;
    background: url("https://pa-cdn.freecharge.in/pwa-static/pwa/images/careers/lines.png");
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(0deg,
            #dff3ff 0%,
            #eef8ff 35%,
            #f6f3ff 70%,
            #fdeef6 100%);
}

h1,
h2,
h3,
p {
    margin: 0;
}

.hero h1 {
    margin-top: 20px;
    font-size: 60px;
    line-height: 65px;
    letter-spacing: 0;
}

.hero h1 em {
    display: block;
    letter-spacing: -2px;
    background: linear-gradient(90deg,
            #ff6b2b 18%,
            #ff6a1f 0%,
            #ea4b73 68%,
            #ff5b45 42%,
            #b4237a 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero .btn {
    margin-top: 28px;
}

.hero-media {
    position: relative;
    width: min(1320px, calc(100% - 40px));
    max-width: 100%;
    margin: 40px auto 0;
}

/* ─── HERO CAROUSEL ─── */
.hc-stage {
    --hc-gap: 22px;
    --hc-preview-width: 332px;
    --hc-main-width: calc(100% - var(--hc-preview-width) - var(--hc-gap));
    position: relative;
    width: 100%;
    height: 474px;
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.hc-stage.is-dragging {
    cursor: grabbing;
}

.hc-stage.is-dragging .hc-card {
    transition: none !important;
}

.hc-card {
    position: absolute;
    top: 0;
    height: 474px;
    padding: 0;
    border: 0;
    overflow: hidden;
    background: #d8e4ef;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    will-change: left, width, border-radius, box-shadow, opacity, transform;
}

.hc-slide {
    position: absolute;
    inset: 0;
    display: block;
}

.hc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.hc-card.is-main {
    left: 0;
    width: var(--hc-main-width);
    border-radius: 34px;
    /* box-shadow: 0 18px 48px rgba(35, 42, 55, 0.13); */
}

.hc-card.is-preview {
    left: calc(var(--hc-main-width) + var(--hc-gap));
    width: var(--hc-preview-width);
    border-radius: 22px;
    /* box-shadow: 0 12px 32px rgba(35, 42, 55, 0.14); */
}

.hc-card.is-entering-preview {
    left: 100%;
    width: var(--hc-preview-width);
    border-radius: 22px;
    /* box-shadow: 0 12px 32px rgba(35, 42, 55, 0.14); */
}

.hc-stage.is-animating .hc-card {
    transition:
        left 1.05s cubic-bezier(0.22, 1, 0.36, 1),
        width 1.05s cubic-bezier(0.22, 1, 0.36, 1),
        border-radius 1.05s cubic-bezier(0.22, 1, 0.36, 1),
        /* box-shadow 1.05s cubic-bezier(0.22, 1, 0.36, 1), */
        opacity 0.95s ease,
        transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Previous card starts at width:0 at left:0, expands to cover current main */
.hc-card.is-prev-main {
    left: 0;
    width: 0;
    border-radius: 22px;
    z-index: 2;
}

/* Prev card expands to full main size */
.hc-card.is-entering-main {
    left: 0;
    width: var(--hc-main-width);
    border-radius: 34px;
    /* box-shadow: 0 18px 48px rgba(35, 42, 55, 0.13); */
    z-index: 2;
}

/* Current main fades out in place while entering-main covers it */
.hc-card.is-exiting-right {
    left: 0;
    width: var(--hc-main-width);
    border-radius: 34px;
    opacity: 0;
    z-index: 1;
}

.hc-card.is-exiting {
    left: 0;
    width: 0;
    border-radius: 22px;
    opacity: 0;
}

.hc-card.is-promoting {
    left: 0;
    width: var(--hc-main-width);
    border-radius: 34px;
    /* box-shadow: 0 18px 48px rgba(35, 42, 55, 0.13); */
}

.hc-card.is-arrived-preview {
    left: calc(var(--hc-main-width) + var(--hc-gap));
    width: var(--hc-preview-width);
    border-radius: 22px;
    /* box-shadow: 0 12px 32px rgba(35, 42, 55, 0.14); */
}

.hc-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: transparent;
    transform-origin: left center;
    transform: scaleX(0);
    border-radius: 0 3px 0 0;
}

.hc-card.is-preview::after,
.hc-card.is-entering-preview::after,
.hc-card.is-arrived-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    /* background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.30) 100%); */
    pointer-events: none;
}

.hc-card.is-preview:hover img {
    transform: scale(1.05);
}


.placeholder {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(21, 32, 48, 0.16), rgba(255, 255, 255, 0.04)),
        linear-gradient(120deg, #d8e4ef, #b7c5d5 50%, #f7d1b8);
    /* box-shadow: var(--shadow); */
    transition: opacity 180ms ease, transform 220ms ease;
}

.placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
}

.placeholder::after {
    position: absolute;
    left: 16px;
    bottom: 14px;
    padding: 8px 11px;
    border-radius: 999px;
    color: white;
    background: rgba(26, 31, 40, 0.55);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.placeholder.tall {
    min-height: 316px;
}

.placeholder.office {
    background: linear-gradient(120deg, #ccd7e2, #e9efe9 46%, #c9a88d);
}

.placeholder.people {
    background: linear-gradient(130deg, #9db8d8, #ffcf78 48%, #754a85);
}

.placeholder.benefit {
    background: linear-gradient(130deg, #ebf5ff, #c6d9ea 52%, #161d28);
}

.placeholder.full {
    min-height: 540px;
    border-radius: 0;
    box-shadow: none;
}

.card-image {
    display: block;
    width: 100%;
    min-height: 220px;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.carousel-dots {
    display: inline-flex;
    gap: 5px;
    margin-top: 20px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #858b91;
    margin-bottom: 20px;
}

.carousel-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.52);
    cursor: pointer;
}

.carousel-dots button.active {
    width: 18px;
    border-radius: 99px;
    background: #fff;
}

.section {
    padding: 100px 0;
    text-align: center;
}

.section h2 {
    margin-top: 16px;
    line-height: 1.12;
    font-weight: 600;
    font-size: 54px;
}

.section h2 em {
    color: var(--brand);
    font-style: normal;
}

.section-copy {
    width: min(1120px, 100%);
    margin: 16px auto 0;
    color: var(--muted);
    font-weight: 400;
    font-size: 20px;
}

#culture,
#benefits,
#testimonials {
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 316px;
    gap: 28px;
    margin-top: 44px;
    align-items: stretch;
}

.culture-grid .card-image {
    height: 100%;
    min-height: unset;
    border-radius: 25px;
}

.culture-card,
.testimonial-card {
    border: 1px solid #F161224D;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(35, 42, 55, 0.05);
    padding: 15px;
}

.idea-card {
    border-radius: 25px;
    background: #fff;
}

.culture-card {
    display: flex;
    min-height: 226px;
    padding: 32px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.icon {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: white;
    background: var(--brand);
    font-weight: 900;
}

.icon img {
    display: block;
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.culture-card h3,
.idea-card h3,
.testimonial-card h3 {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 600;
}

.culture-card p,
.idea-card p,
.testimonial-card p {
    color: var(--muted);
    font-size: 14px;
    font-weight: 400;
}

.idea-band {
    position: relative;
    overflow: hidden;
    padding: 78px 0;
    background: #eef6ff;
}

.idea-band::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:

        /* LEFT SIDE */
        linear-gradient(-28deg,
            transparent 0%,
            transparent 25%,
            rgba(255, 255, 255, 0.55) 25%,
            rgba(255, 255, 255, 0.55) 28%,
            transparent 28%),

        linear-gradient(-28deg,
            transparent 0%,
            transparent 38%,
            rgba(255, 255, 255, 0.35) 38%,
            rgba(255, 255, 255, 0.35) 41%,
            transparent 41%),

        /* RIGHT SIDE */
        linear-gradient(-28deg,
            transparent 0%,
            transparent 68%,
            rgba(255, 255, 255, 0.35) 68%,
            rgba(255, 255, 255, 0.35) 71%,
            transparent 71%),

        linear-gradient(-28deg,
            transparent 0%,
            transparent 78%,
            rgba(255, 255, 255, 0.28) 78%,
            rgba(255, 255, 255, 0.28) 81%,
            transparent 81%),

        linear-gradient(-28deg,
            transparent 0%,
            transparent 88%,
            rgba(255, 255, 255, 0.22) 88%,
            rgba(255, 255, 255, 0.22) 91%,
            transparent 91%);
}

.idea-layout {
    width: min(1360px, calc(100% - 40px));
    display: grid;
    grid-template-columns: 650px 1fr;
    gap: 56px;
    align-items: center;
    text-align: left;
    position: relative;
    z-index: 2;
}

.idea-layout h2 {
    font-size: 54px;
    line-height: 1.08;
    font-weight: 600;
}

.idea-layout h2 em {
    display: block;
    font-style: italic;
}

.idea-layout p {
    margin-top: 18px;
    color: #53606e;
    font-weight: 400;
    font-size: 20px;
}

.slider-controls {
    display: flex;
    gap: 14px;
    margin-top: 56px;
}

.idea-window {
    overflow: hidden;
    width: 100%;
}

.idea-track {
    display: flex;
    gap: 22px;
    transition: transform 320ms ease;
    will-change: transform;
}

.idea-card {
    flex: 0 0 314px;
    width: 314px;
    height: 470px;
    overflow: hidden;
    padding: 10px;
}

.idea-card .placeholder {
    min-height: 176px;
    border-radius: 12px;
    box-shadow: none;
}

.idea-card .card-image {
    min-height: 260px;
    height: 260px;
    border-radius: 14px;
    box-shadow: none;
}

.idea-card h3 {
    margin: 18px 12px 6px;
    font-size: 24px;
}

.idea-card p {
    margin: 0 12px 18px;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 0.84fr 1fr;
    gap: 54px;
    margin-top: 50px;
    align-items: center;
    text-align: left;
}

.benefits-layout .card-image {
    width: 100%;
    height: 562px;
    object-fit: cover;
    border: 15px solid #FFF3E9;
    border-radius: 40px;
}

.benefit-panel {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 22px;
    align-items: start;
}

.benefit-rail {
    position: relative;
    display: grid;
    gap: 12px;
    padding: 4px 0;
    min-height: 294px;
}

.benefit-rail::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 4px;
    bottom: 4px;
    width: 5px;
    border-radius: 99px;
    background: #ffe0d3;
}

.benefit-rail-progress {
    position: absolute;
    left: 6px;
    top: 4px;
    width: 5px;
    height: 25%;
    border-radius: 99px;
    background: var(--brand);
    transition: transform 260ms ease, width 260ms ease, height 260ms ease;
}

.benefit-dot {
    position: relative;
    display: none;
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.benefit-dot::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffc8b2;
    transition: background 180ms ease, transform 180ms ease;
}

.benefit-dot.active::before {
    background: var(--brand);
    transform: scale(1.25);
}

.benefit-content {
    transition: opacity 180ms ease, transform 220ms ease;
}

.benefit-panel h3 {
    font-size: 54px;
    line-height: 1.1;
    font-weight: 600;
}

.benefit-panel p {
    margin-top: 10px;
    color: var(--muted);
    font-weight: 400;
    font-size: 20px;
}

.benefit-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.benefit-tab {
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid #ffd8c7;
    border-radius: 999px;
    color: var(--brand);
    background: #fff;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.benefit-tab.active {
    color: #fff;
    background: var(--brand);
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 34px;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: #374151;
    font-size: 18px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #1fc777;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
}

.gallery {
    position: relative;
    color: #fff;
}

.gallery-frame {
    overflow: hidden;
    height: 540px;
}

.gallery-track {
    display: flex;
    height: 100%;
    will-change: transform;
    transition: transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-image {
    flex: 0 0 100%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-tabs {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 2;

    display: flex;
    gap: 8px;

    width: min(850px, calc(100% - 36px));
    padding: 8px;
    transform: translateX(-50%);
    border-radius: 999px;
    /* Glass Effect */
    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.18),
        inset 0 1px 1px rgba(255, 255, 255, 0.18);
}

.gallery-tabs button {
    flex: 1;
    min-height: 32px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: transparent;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
}

.gallery-tabs button.active {
    background: #222222;
}

.testimonials {
    background: #fff;
}

/* ─── TESTIMONIAL MARQUEE ─────────────────────── */
.testimonial-marquee {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
    height: 584px;
    overflow: hidden;
    /* premium edge-fade */
    -webkit-mask-image: linear-gradient(to bottom,
            transparent 0%,
            #000 52px,
            #000 calc(100% - 52px),
            transparent 100%);
    mask-image: linear-gradient(to bottom,
            transparent 0%,
            #000 52px,
            #000 calc(100% - 52px),
            transparent 100%);
}

.marquee-track {
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.marquee-track .testimonial-card {
    flex: 0 0 280px;
    /* height: 280px; */
    height: auto;
    margin-bottom: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    cursor: default;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.marquee-track .testimonial-card:hover {
    box-shadow: 0 24px 56px rgba(35, 42, 55, 0.14);
    transform: translateY(-3px);
}

/* clamp body text so cards stay equal height */
/* .marquee-track .testimonial-card p {
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    padding: 0;
} */

/* col 0 & 2 — content drifts downward (enters from top) */
@keyframes marquee-down {
    from {
        transform: translateY(-50%);
    }

    to {
        transform: translateY(0);
    }
}

/* col 1 — content drifts upward (enters from bottom) */
@keyframes marquee-up {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    padding: 26px;
    height: 100%;
}

.person {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-card p {
    flex: 1;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.avatar {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f0f0f0;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.person span {
    display: block;
    color: #111;
    font-size: 12px;
    font-weight: 600;
}

.cta {
    padding: 72px 0;
    color: white;
    text-align: center;
    background: linear-gradient(118deg, #ff6b2b 0%, #f15d35 44%, #d44b79 100%);
}

.cta .eyebrow {
    color: white;
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.18);
}

.cta h2 {
    margin-top: 18px;
    font-size: 54px;
    line-height: 1.08;
    font-weight: 600;
}

.cta p {
    width: min(725px, 100%);
    margin: 18px auto 28px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: 20px;
}

footer {
    background: #f5f5f5;
}

.footer {
    max-width: 1200px;
    margin: auto;
    min-height: 80px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px clamp(16px, 3vw, 40px);
    padding: 16px clamp(16px, 3vw, 40px);
}

.footer-logo {
    font-size: 14px;
    color: #f36c21;
    font-weight: bold;
}

.footer-logo-img {
    display: block;
    width: 110px;
    height: auto;
    flex-shrink: 0;
}

.footer-links {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 32px);
    justify-content: center;
    align-items: center;
}

.footer-links a {
    text-decoration: none;
    color: #555d69;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
}

.footer-links a.active {
    color: #f36c21;
    font-weight: 600;
}

.menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.menu-icon {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding: 10px clamp(16px, 3vw, 40px) 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-copyright {
    color: #888;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
}

.footer-rights {
    display: inline;
}

.footer-certifications {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-certifications img {
    height: 20px;
    width: auto;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
    transition: opacity 0.2s ease;
}

.footer-certifications img:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 8px 0 16px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
        z-index: 99;
        border-top: 1px solid #f0f0f0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 13px 24px;
        font-size: 14px;
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .menu-btn {
        display: flex;
    }

    .footer {
        gap: 16px;
        padding: 20px clamp(16px, 4vw, 32px);
    }

    .footer-links {
        gap: 12px 20px;
        display: grid;
        grid-template-columns: repeat(3, auto);
        justify-content: center;
    }
}

@media (max-width: 920px) {

    .idea-layout,
    .benefits-layout {
        grid-template-columns: 1fr;
    }

    .hc-stage {
        --hc-gap: 14px;
        --hc-preview-width: min(30vw, 210px);
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .hc-card {
        height: 100%;
    }

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

    .culture-grid {
        grid-auto-rows: clamp(220px, 32vw, 316px);
    }

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

    .testimonial-marquee .marquee-track:nth-child(3) {
        display: none;
    }

    .idea-card {
        flex-basis: calc((100% - 22px) / 2);
        width: auto;
        height: auto;
        min-height: 432px;
    }

    .idea-card .card-image {
        height: clamp(180px, 22vw, 260px);
        min-height: clamp(180px, 22vw, 260px);
    }

    .benefits-layout .card-image {
        height: clamp(320px, 45vw, 480px);
    }

    .idea-layout {
        text-align: center;
    }

    .slider-controls {
        justify-content: center;
        margin-top: 28px;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    /* --- NAVBAR MOBILE --- */
    .navbar {
        padding: 0 16px;
        height: 56px;
    }

    .logo-img {
        width: 88px;
    }

    .nav-links {
        top: 56px;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 40px;
    }

    .section h2 {
        font-size: 25px;
        line-height: 38px;
    }
    #benefits {
    padding-top: 40px;
    }

    .idea-layout h2 {
        font-size: 25px;
        line-height: 38px;
    }

    .benefit-panel h3 {
        font-size: 24px;
        line-height: 36px;
    }

    .cta h2 {
        font-size: 28px;
        line-height: 38px;
    }

    .check-list li {
        font-size: 12px;
    }

    .btn:not(.square):not(.small) {
        width: 200px;
        min-height: 48px;
        font-size: 12px;
        padding: 0 16px;
    }

    .section-copy,
    .idea-layout p,
    .benefit-panel p,
    .cta p {
        font-size: 16px;
        line-height: 24px;
    }

    .menu-btn {
        width: 32px;
        height: 32px;
    }

    .hero {
        padding-top: 44px;
    }

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

    .hc-stage {
        display: block !important;
        /* height:420px !important; */
    }

    .hc-card.is-preview {
        display: none !important;
    }

    .hc-card.is-main {
        display: block;
        width: 100% !important;
        height: 100%
            /* height:420px !important; */
    }

    .hc-stage {
        overflow: hidden;
        object-fit: contain;
    }

    /* Sirf active/main image dikhe */
    .hc-card:not(.is-main):not(.is-promoting):not(.is-entering-main) {
        display: none !important;
    }

    .hc-stage {
        height: 214px !important;
        width: 100% !important;
    }

    .hc-card.is-main,
    .hc-card.is-promoting,
    .hc-card.is-entering-main {
        left: 0 !important;
        width: 100% !important;
        /* height: 420px !important; */
        border-radius: 24px !important;
    }

    .testimonial-marquee {
        grid-template-columns: 1fr;
        height: 620px;
    }

    .testimonial-marquee .marquee-track:nth-child(n+2) {
        display: none;
    }

    .idea-card {
        flex-basis: 100%;
        min-height: 0;
    }

    .testimonial-marquee .marquee-track {
        animation: marquee-up 50s linear infinite !important;
    }

    .idea-card .card-image {
        min-height: 220px;
        height: 220px;
    }

    .benefits-layout .card-image {
        height: 260px;
    }

    .benefits-scroll-wrapper {
        overflow: hidden;
    }

    #benefits {
        text-align: center;
    }

    #benefits.section {
        padding-left: 0;
        padding-right: 0;
    }

    #benefits .section-copy {
        margin-top: 12px;
    }

    .benefits-layout {
        display: flex;
        flex-direction: column;
        gap: 22px;
        margin-top: 24px;
        text-align: left;
        touch-action: pan-x;
        overscroll-behavior: contain;
        user-select: none;
        -webkit-user-select: none;
    }

    .benefit-panel {
        display: flex;
        flex-direction: column;
        gap: 22px;
        min-width: 0;
        touch-action: pan-x;
    }

    .benefit-rail {
        order: 0;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        align-items: center;
        gap: 0;
        width: 100%;
        min-height: 26px;
        height: 26px;
        padding: 0;
        margin: 2px 0 0;
    }

    .benefit-rail::before {
        left: 0;
        right: 0;
        top: 50%;
        bottom: auto;
        width: auto;
        height: 5px;
        transform: translateY(-50%);
    }

    .benefit-rail-progress {
        left: 0;
        top: 50%;
        width: 20%;
        height: 5px;
        transform: translate3d(0, -50%, 0);
    }

    .benefit-dot {
        /* display: block; */
        width: 100%;
        height: 26px;
        border-radius: 0;
        z-index: 1;
    }

    .benefit-dot::before {
        left: 50%;
        top: 50%;
        width: 10px;
        height: 10px;
        transform: translate(-50%, -50%);
    }

    .benefit-dot.active::before {
        transform: translate(-50%, -50%) scale(1.25);
    }

    .benefit-content {
        min-height: 330px;
        will-change: opacity, transform;
    }

    .benefit-panel h3 {
        margin-top: 0;
    }

    .benefit-panel p {
        margin-top: 8px;
    }

    .check-list {
        gap: 10px;
        margin: 12px 0 14px;
    }

    .benefits-layout .card-image {
        width: 100%;
        height: clamp(240px, 72vw, 320px);
        border-width: 10px;
        border-radius: 24px;
        object-fit: cover;
        transition: opacity 180ms ease, transform 220ms ease;
        will-change: opacity, transform;
        touch-action: pan-y;
        user-select: none;
        -webkit-user-select: none;
        -webkit-user-drag: none;
        margin: -50px 0;
    }

    .placeholder.full {
        height: 390px;
        min-height: 390px;
    }

    .gallery-frame {
        height: 390px;
    }

    .gallery-tabs {
        left: 50%;
        right: auto;
        bottom: 18px;
        width: min(100% - 28px, 520px);
        max-width: 520px;
        padding: 7px;
        gap: 6px;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.18),
            inset 0 1px 1px rgba(255, 255, 255, 0.18);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-tabs::-webkit-scrollbar {
        display: none;
    }

    .gallery-tabs button {
        flex: 0 0 auto;
        min-width: 126px;
        min-height: 32px;
        padding: 0 14px;
        color: #fff;
        white-space: nowrap;
    }

    .gallery-tabs button.active {
        background: #222222;
    }

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

    #culture.section {
        padding-left: 0;
        padding-right: 0;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        padding: 20px 16px;
        gap: 16px;
        min-height: unset;
        text-align: center;
    }

    .footer-logo-img {
        width: 90px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
        display: grid;
        grid-template-columns: repeat(2, minmax(max-content, 1fr));
        flex: unset;
    }

    .footer-links a {
        white-space: nowrap;
    }

    /* --- FOOTER BOTTOM --- */
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        padding: 14px 16px;
        gap: 12px;
        text-align: center;
    }

    .footer-copyright {
        white-space: normal;
        text-align: center;
        order: 2;
    }

    .footer-certifications {
        justify-content: center;
        gap: 10px;
        order: 1;
    }

    .footer-certifications img {
        height: 28px;
        width: auto;
        max-width: 100%;
        display: inline-block;
    }
}