/* ========================================
   CHICKIN INDONESIA — WEBSITE 2026 (REBRAND)
   Design system aligned with Brand Identity 2025
   Primary: Steel Blue #435D6E
   Mood: Modern corporate, tech-forward, hangat
   ======================================== */

:root {
    /* === BRAND PALETTE (sesuai Brand Identity 2025) === */
    --color-primary: #435D6E;
    /* Steel Blue — logo, CTA, heading */
    --color-primary-hover: #36495A;
    /* Hover state */
    --color-dark: #233845;
    /* Deep Navy — header, dark sections */
    --color-darker: #1A2A35;
    /* Extra deep navy */
    --color-secondary: #D6F0F5;
    /* Sky Blue — badge, highlight */
    --color-bg-soft: #E5F4F7;
    /* Frost Blue — section bg */
    --color-bg: #FFFFFF;
    --color-text: #191919;
    /* Rich Black */
    --color-text-muted: #5A6B78;
    --color-text-on-dark: rgba(255, 255, 255, 0.85);
    --color-text-on-dark-muted: rgba(255, 255, 255, 0.65);
    --color-border: #DCE3EA;
    --color-border-soft: #EEF2F5;

    /* === SCALE === */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-xs: 0 1px 3px rgba(35, 56, 69, 0.06);
    --shadow-sm: 0 4px 12px rgba(35, 56, 69, 0.06);
    --shadow-md: 0 12px 28px rgba(35, 56, 69, 0.08);
    --shadow-lg: 0 24px 56px rgba(35, 56, 69, 0.12);

    --container-max: 1240px;
    --header-height: 76px;

    /* Brand uses Plus Jakarta-style geometric sans. System stack as fallback for performance. */
    --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    /* Smooth transitions */
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

::selection {
    background: var(--color-secondary);
    color: var(--color-dark);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.18;
    color: var(--color-dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h4 {
    font-size: 1.1rem;
}

h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.eyebrow-pill {
    background: var(--color-secondary);
    padding: 6px 16px;
    border-radius: 999px;
    color: var(--color-primary);
}

.lead {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    line-height: 1;
}

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

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-dark {
    background: var(--color-dark);
    color: white;
}

.btn-dark:hover {
    background: var(--color-darker);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

.btn-light {
    background: white;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.btn-light:hover {
    background: var(--color-secondary);
}

.btn-ghost {
    color: var(--color-primary);
    padding-left: 0;
    padding-right: 0;
    font-weight: 600;
}

.btn-ghost:hover {
    color: var(--color-primary-hover);
    gap: 12px;
}

.btn-arrow::after {
    content: "→";
    transition: transform var(--transition);
    display: inline-block;
}

.btn-arrow:hover::after {
    transform: translateX(4px);
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--color-border-soft);
}

.nav-wrapper {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 130px;
    height: 36px;
    object-fit: contain;
}

.brand-logo-white {
    filter: brightness(0) invert(1);
}

/* Editable image slots — preserve aspect ratio while user swaps files */
.editable-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editable-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 6px;
    list-style: none;
}

.nav-menu a {
    display: block;
    padding: 8px 14px;
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.93rem;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}

.nav-menu a:hover {
    color: var(--color-primary);
    background: var(--color-bg-soft);
}

.nav-menu a.active {
    color: var(--color-primary);
    background: var(--color-secondary);
}

.nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Language toggle */
.lang-toggle {
    display: inline-flex;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 4px;
    background: white;
}

.lang-toggle button {
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: all var(--transition);
}

.lang-toggle button.active {
    background: var(--color-primary);
    color: white;
}

.nav-toggle {
    display: none;
}

.nav-toggle img {
    width: 22px;
    height: 22px;
}

@media (max-width: 1024px) {
    .nav-cta .btn-outline {
        display: none;
    }

    .nav-toggle {
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: var(--color-bg-soft);
        padding: 10px;
    }

    /* Mobile menu drawer */
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 4px;
        padding: 24px 24px 32px;
        box-shadow: 0 12px 28px rgba(35, 56, 69, 0.1);
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: 10px;
    }

    /* Backdrop overlay */
    body.menu-open::after {
        content: "";
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(35, 56, 69, 0.4);
        z-index: 99;
        animation: fadeIn 0.2s ease;
    }

    body.menu-open {
        overflow: hidden;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }
}

/* Safety: prevent horizontal overflow */
html,
body {
    overflow-x: hidden;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    padding: 80px 0 110px;
    background: linear-gradient(180deg, var(--color-bg-soft) 0%, #FFFFFF 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    right: -180px;
    top: -100px;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(67, 93, 110, 0.12), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(214, 240, 245, 0.6), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 1000px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.hero h1 {
    margin-bottom: 22px;
}

.hero h1 .accent {
    color: var(--color-primary);
    position: relative;
    white-space: nowrap;
}

.hero h1 .accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 8px;
    background: var(--color-secondary);
    z-index: -1;
    border-radius: 4px;
}

.hero .subline {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.65;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero stats */
.hero-stats {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
    max-width: 540px;
}

@media (max-width: 540px) {
    .hero-stats {
        grid-template-columns: repeat(2, auto);
        gap: 24px;
    }
}

.hero-stat .num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat .label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Hero visual */
.hero-visual {
    position: relative;
    aspect-ratio: 4 / 4;
}

.hero-visual-frame {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-bg-soft);
}

.hero-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    background: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    z-index: 2;
    transition: transform var(--transition);
    padding: 26px;
}

.hero-play img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-play:hover {
    transform: translate(-50%, -50%) scale(1.06);
}

.hero-video-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 2;
}

/* Floating ecosystem badges on hero visual */
.hero-pillar-badge {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
    z-index: 2;
    animation: floatBadge 6s ease-in-out infinite;
}

.hero-pillar-badge .pillar-dot {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--color-secondary);
    display: grid;
    place-items: center;
    padding: 8px;
}

.hero-pillar-badge .pillar-dot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-pillar-badge.farm {
    top: 8%;
    left: -8%;
    animation-delay: 0s;
}

.hero-pillar-badge.tech {
    top: 38%;
    right: -12%;
    animation-delay: 1.5s;
}

.hero-pillar-badge.fresh {
    bottom: 22%;
    left: -10%;
    animation-delay: 3s;
}

.hero-pillar-badge.fnb {
    bottom: 4%;
    right: -6%;
    animation-delay: 4.5s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 1000px) {
    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-pillar-badge {
        display: none;
    }
}

/* ========================================
   SECTION
   ======================================== */
.section {
    padding: 100px 0;
}

.section-soft {
    background: var(--color-bg-soft);
}

.section-dark {
    background: var(--color-dark);
    color: var(--color-text-on-dark);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: white;
}

.section-dark .eyebrow {
    color: var(--color-secondary);
}

.section-dark .lead {
    color: var(--color-text-on-dark);
}

.section-head {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-head .lead {
    margin-top: 16px;
}

@media (max-width: 700px) {
    .section {
        padding: 70px 0;
    }

    .section-head {
        margin-bottom: 40px;
    }
}

/* ========================================
   VIDEO SHOWCASE (Company Profile)
   ======================================== */
.video-section {
    padding: 90px 0;
    background: var(--color-bg-soft);
}

.video-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.video-section-head .lead {
    margin-top: 14px;
}

.video-showcase {
    max-width: 1080px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    background: var(--color-dark);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: transform var(--transition);
}

.video-showcase:hover {
    transform: translateY(-4px);
}

.video-showcase img.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.video-showcase:hover img.video-poster {
    transform: scale(1.04);
}

.video-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(35, 56, 69, 0.55) 100%);
    pointer-events: none;
}

.video-play-big {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
    transition: transform var(--transition);
    padding: 34px 30px 34px 38px;
    z-index: 2;
}

.video-play-big img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-showcase:hover .video-play-big {
    transform: translate(-50%, -50%) scale(1.08);
}

.video-play-big::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    animation: videoPulse 2.4s ease-out infinite;
}

@keyframes videoPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

.video-showcase-meta {
    position: absolute;
    bottom: 28px;
    left: 32px;
    right: 32px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    color: white;
}

.video-showcase-meta .video-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.video-showcase-meta .video-duration {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
}

.video-showcase-meta .video-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

@media (max-width: 700px) {
    .video-section {
        padding: 60px 0;
    }

    .video-play-big {
        width: 80px;
        height: 80px;
        padding: 24px 22px 24px 28px;
    }

    .video-showcase-meta {
        flex-direction: column;
        align-items: flex-start;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .video-showcase-meta .video-title {
        font-size: 1rem;
    }
}

/* ========================================
   ECOSYSTEM FLOW (4 pillars visualization)
   ======================================== */
.ecosystem-flow {
    background: linear-gradient(135deg, var(--color-dark) 0%, #2E4655 100%);
    border-radius: var(--radius-xl);
    padding: 64px 56px;
    color: white;
    position: relative;
    overflow: hidden;
}

.ecosystem-flow::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 100%, rgba(214, 240, 245, 0.12), transparent 50%),
        radial-gradient(circle at 80% 0%, rgba(214, 240, 245, 0.08), transparent 50%);
}

.ecosystem-flow-head {
    position: relative;
    text-align: center;
    margin-bottom: 56px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.ecosystem-flow-head h2 {
    color: white;
    margin-bottom: 14px;
}

.ecosystem-flow-head p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.flow-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .flow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 540px) {
    .flow-grid {
        grid-template-columns: 1fr;
    }
}

.flow-step {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    position: relative;
    transition: transform var(--transition), background var(--transition);
}

.flow-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.flow-step .step-num {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
    font-family: var(--font-display);
}

.flow-step .step-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(214, 240, 245, 0.18);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    padding: 12px;
}

.flow-step .step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.flow-step h4 {
    color: white;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.flow-step .step-tag {
    display: inline-block;
    background: rgba(214, 240, 245, 0.15);
    color: var(--color-secondary);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.flow-step p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

/* Connector arrows between flow steps */
.flow-grid::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 6%;
    right: 6%;
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(214, 240, 245, 0.3) 0 6px, transparent 6px 12px);
    z-index: -1;
}

@media (max-width: 900px) {
    .flow-grid::before {
        display: none;
    }
}

/* ========================================
   ABOUT BLOCK
   ======================================== */
.about-block {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 900px) {
    .about-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-image {
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--color-bg-soft);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-block p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-block p strong {
    color: var(--color-text);
}

/* ========================================
   PRODUCT CARDS (4 pillars)
   ======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--color-border-soft);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.product-card .pillar-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    background: var(--color-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.product-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--color-bg-soft);
    color: var(--color-primary);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    padding: 14px;
}

.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.product-card .desc {
    color: var(--color-text-muted);
    margin-bottom: 22px;
    font-size: 0.94rem;
    flex: 1;
    line-height: 1.6;
}

.product-stats {
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    background: var(--color-bg-soft);
    border-radius: var(--radius-sm);
    margin-bottom: 22px;
}

.product-stats .stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    gap: 8px;
}

.product-stats .label {
    color: var(--color-text-muted);
}

.product-stats .value {
    font-weight: 700;
    color: var(--color-dark);
}

.product-card .btn-ghost {
    align-self: flex-start;
}

.products-cta {
    text-align: center;
    margin-top: 48px;
}

/* ========================================
   TESTIMONIALS (real peternak quotes)
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 30px 28px;
    border: 1px solid var(--color-border-soft);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

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

.testimonial-card .quote-mark {
    font-size: 3.5rem;
    color: var(--color-secondary);
    font-family: Georgia, serif;
    line-height: 0.5;
    margin-bottom: 6px;
    font-weight: 700;
}

.testimonial-card .quote {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 22px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--color-border-soft);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    flex-shrink: 0;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.testimonial-meta .name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--color-dark);
}

.testimonial-meta .role {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ========================================
   AWARDS CAROUSEL
   ======================================== */
.awards-carousel-wrap {
    position: relative;
    margin: 0 -10px;
}

.awards-carousel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 12px 10px 20px;
    -webkit-overflow-scrolling: touch;
}

.awards-carousel::-webkit-scrollbar {
    display: none;
}

/* Edge fade hint that more content exists */
.awards-carousel-wrap::before,
.awards-carousel-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.2s ease;
}

.awards-carousel-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg) 0%, transparent 100%);
}

.awards-carousel-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, var(--color-bg) 0%, transparent 100%);
}

.awards-carousel-wrap.at-start::before {
    opacity: 0;
}

.awards-carousel-wrap.at-end::after {
    opacity: 0;
}

.award {
    flex: 0 0 220px;
    scroll-snap-align: start;
    text-align: center;
    padding: 28px 18px;
    border-radius: var(--radius-md);
    background: white;
    border: 1px solid var(--color-border-soft);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.award:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.award-medal {
    width: 80px;
    height: 80px;
    margin: 0 auto 14px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-bg-soft);
    transition: transform var(--transition);
}

.award:hover .award-medal {
    transform: scale(1.05);
}

.award-medal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.award-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.4;
    margin-bottom: 8px;
}

.award-source {
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.award-source::after {
    content: "↗";
    transition: transform var(--transition);
}

.award:hover .award-source::after {
    transform: translate(2px, -2px);
}

/* Carousel nav buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--color-border);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 5;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    padding: 14px;
}

.carousel-nav img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter var(--transition);
}

.carousel-nav:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-50%) scale(1.05);
}

.carousel-nav:hover img {
    filter: brightness(0) invert(1);
}

.carousel-nav:disabled,
.carousel-nav[aria-disabled="true"] {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-nav.prev {
    left: -24px;
}

.carousel-nav.next {
    right: -24px;
}

@media (max-width: 700px) {
    .carousel-nav.prev {
        left: 4px;
    }

    .carousel-nav.next {
        right: 4px;
    }

    .award {
        flex: 0 0 180px;
    }
}

/* ========================================
   BLOG / NEWS
   ======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

@media (max-width: 1000px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Compact horizontal card di mobile */
    .blog-card {
        flex-direction: row;
        align-items: stretch;
    }

    .blog-thumb {
        flex: 0 0 110px;
        aspect-ratio: 1;
    }

    .blog-body {
        padding: 14px 14px 14px 0;
        flex: 1;
    }

    .blog-body .blog-tag {
        font-size: 0.62rem;
        margin-bottom: 4px;
        letter-spacing: 0.04em;
    }

    .blog-body h4 {
        font-size: 0.92rem;
        line-height: 1.35;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-body .excerpt {
        display: none;
    }

    .blog-body .date {
        font-size: 0.72rem;
    }
}

.blog-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border-soft);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

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

.blog-thumb {
    aspect-ratio: 16/10;
    background: var(--color-bg-soft);
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-body h4 {
    font-size: 1.02rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-body .excerpt {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    margin-bottom: 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-body .date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ========================================
   CAREERS BANNER
   ======================================== */
.careers-banner {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    color: white;
    border-radius: var(--radius-xl);
    padding: 64px 60px;
    position: relative;
    overflow: hidden;
}

.careers-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(214, 240, 245, 0.22), transparent 55%);
    pointer-events: none;
}

.careers-banner>* {
    position: relative;
    z-index: 1;
}

.careers-banner h2 {
    color: white;
    margin-bottom: 14px;
}

.careers-banner .eyebrow {
    color: var(--color-secondary);
}

.careers-banner p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
}

.careers-banner .btn {
    display: inline-flex;
}

/* Two-column humanist layout (with photos) */
.careers-banner.with-photos {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    text-align: left;
}

.careers-banner.with-photos p {
    max-width: 520px;
}

.careers-banner-photos {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    aspect-ratio: 1.05;
    position: relative;
}

.careers-banner-photo {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    transition: transform var(--transition);
}

.careers-banner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.careers-banner-photo:hover {
    transform: translateY(-4px);
}

.careers-banner-photo:nth-child(1) {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}

.careers-banner-photo:nth-child(2) {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}

.careers-banner-photo:nth-child(3) {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}

/* Floating stat pill on photo */
.careers-banner-stat {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: white;
    color: var(--color-dark);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.careers-banner-stat .num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--color-primary);
    line-height: 1;
}

.careers-banner-stat .label {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.2;
    font-weight: 600;
}

@media (max-width: 900px) {
    .careers-banner.with-photos {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 32px;
        text-align: center;
    }

    .careers-banner.with-photos p {
        margin-left: auto;
        margin-right: auto;
    }

    .careers-banner-photos {
        aspect-ratio: 1.4;
    }

    .careers-banner-stat {
        left: 50%;
        transform: translateX(-50%);
        bottom: -22px;
    }
}

@media (max-width: 540px) {
    .careers-banner.with-photos {
        padding: 40px 24px;
    }
}

/* ========================================
   PARTNERS
   ======================================== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
}

@media (max-width: 1000px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 540px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    /* Tampilkan max 20 logo (4 kolom × 5 baris) di mobile */
    .partners-grid .partner:nth-child(n+21) {
        display: none;
    }
}

.partners-more {
    display: none;
    text-align: center;
    margin-top: 24px;
    color: var(--color-text-muted);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.5;
}

.partners-more strong {
    color: var(--color-primary);
    font-weight: 700;
}

@media (max-width: 540px) {
    .partners-more {
        display: block;
    }
}

.partner {
    aspect-ratio: 1.4;
    background: white;
    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 12px;
    transition: border-color var(--transition), transform var(--transition);
}

.partner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter var(--transition), opacity var(--transition);
}

.partner:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.partner:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========================================
   CTA STRIP
   ======================================== */
.cta-strip {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    color: white;
    border-radius: var(--radius-xl);
    padding: 60px 56px;
    display: grid;
    grid-template-columns: 2fr auto;
    align-items: center;
    gap: 40px;
}

@media (max-width: 800px) {
    .cta-strip {
        grid-template-columns: 1fr;
        padding: 40px 28px;
        text-align: center;
    }
}

.cta-strip h2 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.8rem;
}

.cta-strip p {
    color: rgba(255, 255, 255, 0.82);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--color-darker);
    color: rgba(255, 255, 255, 0.72);
    padding: 80px 0 28px;
    font-size: 0.92rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 800px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.site-footer .brand-logo {
    color: white;
    margin-bottom: 16px;
}

.footer-tagline {
    margin-bottom: 22px;
    line-height: 1.6;
}

.site-footer h5 {
    color: white;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}

.footer-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-list a {
    transition: color var(--transition);
}

.footer-list a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.7);
    transition: background var(--transition), color var(--transition);
    padding: 9px;
}

.social-links a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity var(--transition);
}

.social-links a:hover {
    background: var(--color-primary);
}

.social-links a:hover img {
    opacity: 1;
}

/* ========================================
   WHATSAPP FLOATING WIDGET
   ======================================== */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition);
    text-decoration: none;
    padding: 14px;
}

.wa-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wa-float:hover {
    transform: scale(1.06);
}

.wa-float::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 3px solid #25D366;
    opacity: 0.4;
    animation: waPulse 2s ease-out infinite;
}

.wa-float-tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--color-dark);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.wa-float:hover .wa-float-tooltip {
    opacity: 1;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* ========================================
   PAGE HERO (sub pages)
   ======================================== */
.page-hero {
    padding: 70px 0 60px;
    background: linear-gradient(180deg, var(--color-bg-soft) 0%, #FFFFFF 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(67, 93, 110, 0.08), transparent 70%);
}

.page-hero .container {
    position: relative;
}

.page-hero .lead {
    max-width: 720px;
    margin: 22px auto 0;
}

/* ========================================
   ABOUT — VISION & MISSION
   ======================================== */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 800px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }
}

.vm-card {
    padding: 44px 40px;
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.vm-card.vision {
    background: linear-gradient(135deg, var(--color-bg-soft) 0%, var(--color-secondary) 100%);
    border-color: rgba(67, 93, 110, 0.18);
}

.vm-card.mission {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    color: white;
    border-color: transparent;
}

.vm-card.mission h3 {
    color: white;
}

.vm-card.mission p {
    color: rgba(255, 255, 255, 0.88);
}

.vm-card .icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    padding: 14px;
}

.vm-card .icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vm-card.mission .icon-box {
    background: rgba(255, 255, 255, 0.18);
}

.vm-card.mission .icon-box img {
    filter: brightness(0) invert(1);
}

.vm-card h3 {
    margin-bottom: 14px;
    font-size: 1.4rem;
}

.vm-card p {
    line-height: 1.7;
}

/* Impact stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (max-width: 800px) {
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.impact-stat {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-md);
    background: white;
    border: 1px solid var(--color-border-soft);
    transition: transform var(--transition), border-color var(--transition);
}

.impact-stat:hover {
    transform: translateY(-3px);
    border-color: var(--color-primary);
}

.impact-stat .num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.impact-stat .label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    top: 36px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--color-primary) 0 8px, transparent 8px 14px);
    z-index: 0;
}

@media (max-width: 900px) {
    .timeline {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .timeline::before {
        display: none;
    }
}

.timeline-item {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 4px;
}

.timeline-year {
    display: inline-grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--color-primary);
    color: var(--color-dark);
    font-weight: 800;
    font-size: 1.05rem;
    margin: 0 auto 18px;
    transition: all var(--transition);
}

.timeline-item:hover .timeline-year {
    background: var(--color-primary);
    color: white;
    transform: scale(1.05);
}

.timeline-item.current .timeline-year {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 8px 24px rgba(67, 93, 110, 0.3);
}

.timeline-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Founders */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 800px) {
    .founders-grid {
        grid-template-columns: 1fr;
    }
}

.founder-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    text-align: center;
    border: 1px solid var(--color-border-soft);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.founder-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 22px;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(67, 93, 110, 0.2);
    background: var(--color-bg-soft);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-card h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.founder-role {
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 18px;
}

.founder-bio {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    margin-bottom: 22px;
    line-height: 1.6;
}

.founder-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0A66C2;
    transition: color var(--transition);
}

.founder-linkedin:hover {
    color: #084d92;
}

/* ========================================
   PRODUCT DETAIL (Products page)
   ======================================== */
.product-detail {
    padding: 90px 0;
    border-bottom: 1px solid var(--color-border-soft);
}

.product-detail.alt {
    background: var(--color-bg-soft);
}

.product-detail.dark {
    background: var(--color-dark);
    color: var(--color-text-on-dark);
}

.product-detail.dark h2 {
    color: white;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}

.product-detail.reverse .product-detail-grid>.visual {
    order: 2;
}

@media (max-width: 900px) {
    .product-detail.reverse .product-detail-grid>.visual {
        order: -1;
    }
}

.product-detail .visual {
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--color-bg-soft);
}

.product-detail .visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-detail .badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    background: var(--color-secondary);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.product-detail.dark .badge {
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-secondary);
}

.product-detail h2 {
    margin-bottom: 18px;
}

.product-detail .lead {
    margin-bottom: 26px;
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.55;
}

.feature-list li::before {
    content: "";
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-primary);
    margin-top: 2px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px;
}

.product-detail.dark .feature-list li::before {
    background-color: var(--color-secondary);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%23435D6E" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>');
}

/* Tech modules (CI-Touch & CI-Fisc) */
.tech-modules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 700px) {
    .tech-modules {
        grid-template-columns: 1fr;
    }
}

.tech-module {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.tech-module .module-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 6px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.tech-module h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.tech-module p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.93rem;
    margin-bottom: 16px;
    line-height: 1.55;
}

.tech-module ul {
    list-style: none;
    display: grid;
    gap: 8px;
    font-size: 0.88rem;
}

.tech-module ul li {
    padding-left: 22px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.tech-module ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

/* ========================================
   COMMUNITY CARDS
   ======================================== */
.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .community-grid {
        grid-template-columns: 1fr;
    }
}

.community-card {
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--color-border-soft);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.community-card .icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--color-bg-soft);
    color: var(--color-primary);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    padding: 14px;
}

.community-card .icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.community-card h3 {
    margin-bottom: 14px;
    font-size: 1.25rem;
}

.community-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
    flex: 1;
}

.community-card ul li {
    padding-left: 22px;
    position: relative;
    color: var(--color-text-muted);
    font-size: 0.93rem;
    line-height: 1.55;
}

.community-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
}

.community-card .stats-row {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: var(--color-bg-soft);
    border-radius: var(--radius-sm);
    margin-bottom: 22px;
}

.community-card .stats-row .stat {
    flex: 1;
    text-align: center;
}

.community-card .stats-row .num {
    font-weight: 800;
    color: var(--color-primary);
    font-size: 1.3rem;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.community-card .stats-row .label {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-grid>div:first-child {
    display: flex;
    flex-direction: column;
}

.contact-team-photo {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 28px;
    background: var(--color-bg-soft);
    box-shadow: var(--shadow-sm);
    position: relative;
    flex: 1 1 auto;
    min-height: 480px;
}

@media (max-width: 900px) {
    .contact-team-photo {
        flex: none;
        aspect-ratio: 16 / 10;
        min-height: 0;
    }
}

.contact-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-team-caption {
    position: absolute;
    bottom: 14px;
    left: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-team-caption::before {
    content: "👋 ";
}

.trust-list {
    list-style: none;
    margin-top: 28px;
    display: grid;
    gap: 12px;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text);
    font-size: 0.95rem;
}

.trust-list .check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--color-secondary);
    color: var(--color-primary);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.85rem;
}

/* WhatsApp button variant */
.btn-wa {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
    background: #1FAA52;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.info-list {
    list-style: none;
    display: grid;
    gap: 20px;
    margin-top: 28px;
}

.info-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.info-list .icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-bg-soft);
    color: var(--color-primary);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    padding: 12px;
}

.info-list .icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-list .info-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-dark);
    margin-bottom: 2px;
}

.info-list .info-value {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-soft);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 600px) {
    .contact-form {
        padding: 28px 24px;
    }
}

.contact-form h3 {
    margin-bottom: 6px;
}

.contact-form .form-intro {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-field {
    display: grid;
    gap: 6px;
    margin-bottom: 14px;
}

.form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--color-bg-soft);
    transition: border-color var(--transition), background var(--transition);
    color: var(--color-text);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
}

.form-field textarea {
    resize: vertical;
    min-height: 130px;
}

/* ========================================
   BROILER CULTURE (Company Values)
   ======================================== */
.broiler-section {
    position: relative;
    overflow: hidden;
}

.broiler-display {
    display: flex;
    justify-content: center;
    gap: clamp(6px, 1.4vw, 18px);
    margin: 30px 0 60px;
    flex-wrap: wrap;
    line-height: 1;
}

.broiler-letter {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3rem, 11vw, 7.5rem);
    color: var(--color-dark);
    letter-spacing: -0.04em;
    line-height: 1;
    transition: color var(--transition), transform var(--transition);
    cursor: default;
}

.broiler-letter:hover {
    color: var(--color-primary);
    transform: translateY(-6px);
}

@media (max-width: 540px) {
    .broiler-display {
        gap: 4px;
    }
}

.broiler-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (max-width: 1100px) {
    .broiler-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .broiler-grid {
        grid-template-columns: 1fr;
    }
}

.broiler-card {
    background: white;
    padding: 30px 26px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-soft);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.broiler-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.broiler-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.broiler-card:hover::before {
    transform: scaleX(1);
}

.broiler-card-letter {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 3.2rem;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 14px;
}

.broiler-card h4 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--color-dark);
    line-height: 1.3;
}

.broiler-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    flex: 1;
}

/* Compact BROILER (for About page) */
.broiler-compact {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
}

@media (max-width: 1100px) {
    .broiler-compact {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 700px) {
    .broiler-compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

.broiler-compact-item {
    text-align: center;
    padding: 22px 14px;
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border-soft);
    transition: transform var(--transition), border-color var(--transition);
}

.broiler-compact-item:hover {
    transform: translateY(-3px);
    border-color: var(--color-primary);
}

.broiler-compact-letter {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.broiler-compact-item .label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
}

/* ========================================
   CAREERS PAGE
   ======================================== */
.careers-hero {
    position: relative;
    padding: 100px 0 110px;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    color: white;
    overflow: hidden;
}

.careers-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(214, 240, 245, 0.18), transparent 60%);
    pointer-events: none;
}

.careers-hero .container {
    position: relative;
    max-width: 880px;
    text-align: center;
}

.careers-hero .eyebrow {
    color: var(--color-secondary);
}

.careers-hero h1 {
    color: white;
    margin-bottom: 22px;
}

.careers-hero h1 .accent {
    color: var(--color-secondary);
}

.careers-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.7;
}

.careers-hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Why Chickin — value props */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--color-border-soft);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.why-card .icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--color-bg-soft);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    padding: 12px;
}

.why-card .icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Life at Chickin — single big photo */
.life-photo-single {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-soft);
    box-shadow: var(--shadow-md);
    max-width: 1080px;
    margin: 0 auto;
}

.life-photo-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 540px) {
    .life-photo-single {
        aspect-ratio: 4 / 3;
    }
}

/* Life at Chickin — event collage (editorial feature mosaic) */
.life-collage {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    max-width: 1080px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
}

.collage-tile {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--color-bg-soft);
    display: block;
    min-height: 0;
}

.collage-tile.is-feature {
    grid-column: 1;
    grid-row: 1 / span 2;
    border-radius: var(--radius-lg);
}

.collage-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

.collage-tile:hover img {
    transform: scale(1.05);
}

.collage-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 2px;
    padding: 12px 14px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 55%);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition);
}

.collage-tile:hover .collage-overlay {
    opacity: 1;
    transform: translateY(0);
}

.collage-title {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.25;
}

.collage-date {
    font-size: 0.78rem;
    opacity: 0.85;
}

@media (max-width: 700px) {
    .life-collage {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 1fr;
        aspect-ratio: auto;
    }

    .collage-tile {
        aspect-ratio: 1;
    }

    .collage-tile.is-feature {
        grid-column: 1 / span 2;
        grid-row: auto;
        aspect-ratio: 16 / 10;
    }
}

/* Instagram preview section */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    max-width: 1080px;
    margin: 0 auto;
}

@media (max-width: 1000px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 540px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}

.instagram-post {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    position: relative;
    background: var(--color-bg-soft);
    transition: transform var(--transition);
    display: block;
}

.instagram-post:hover {
    transform: translateY(-3px);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.instagram-post:hover img {
    transform: scale(1.06);
}

.instagram-post::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.5), rgba(253, 29, 29, 0.4) 50%, rgba(252, 175, 69, 0.3));
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.instagram-post:hover::after {
    opacity: 1;
}

.instagram-post .ig-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    display: grid;
    place-items: center;
    z-index: 2;
    color: #C13584;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.instagram-post:hover .ig-badge {
    opacity: 1;
}

/* Smash Balloon Instagram Feed overrides */
.instagram-grid-sbi {
    max-width: 1080px;
    margin: 0 auto;
}

.instagram-grid-sbi #sb_instagram {
    padding: 0 !important;
}

.instagram-grid-sbi #sb_instagram #sbi_images {
    gap: 8px !important;
}

.instagram-grid-sbi .sbi_item {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.instagram-grid-sbi .sbi_photo {
    border-radius: var(--radius-sm);
}

.instagram-grid-sbi .sbi_photo img {
    transition: transform 0.4s ease;
}

.instagram-grid-sbi .sbi_item:hover .sbi_photo img {
    transform: scale(1.06);
}

/* Instagram CTA button */
.btn-instagram {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(131, 58, 180, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(131, 58, 180, 0.4);
}

.btn-instagram img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* Benefits list */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

@media (max-width: 700px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px 24px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-soft);
}

.benefit-item .check-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--color-secondary);
    color: var(--color-primary);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1rem;
}

.benefit-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--color-dark);
}

.benefit-item p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Open positions */
.openings-list {
    display: grid;
    gap: 14px;
}

.opening {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 24px 28px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-soft);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

@media (max-width: 800px) {
    .opening {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.opening:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--color-primary);
}

.opening-title h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--color-dark);
}

.opening-title .dept {
    font-size: 0.82rem;
    color: var(--color-primary);
    font-weight: 600;
}

.opening-meta {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.opening-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-bg-soft);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* Process timeline */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (max-width: 800px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.process-step {
    text-align: center;
    padding: 28px 20px;
    position: relative;
}

.process-step .step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-secondary);
    color: var(--color-primary);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    margin: 0 auto 18px;
}

.process-step h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.optional-badge {
    display: inline-block;
    margin-bottom: 8px;
    padding: 3px 10px;
    background: var(--color-bg-soft);
    color: var(--color-primary);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px dashed var(--color-primary);
}

/* Embedded Google Form */
.form-embed-wrap {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-soft);
    padding: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-top: 24px;
}

.form-embed {
    width: 100%;
    height: 1400px;
    border: 0;
    border-radius: var(--radius-md);
    display: block;
}

@media (max-width: 700px) {
    .form-embed {
        height: 1700px;
    }
}

.form-embed-fallback {
    text-align: center;
    padding: 20px;
    color: var(--color-text-muted);
    font-size: 0.88rem;
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none !important;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   VIDEO MODAL
   ======================================== */
#video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.88);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#video-modal.open {
    display: flex;
}

.video-modal-inner {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

#video-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.85;
    transition: opacity 0.15s;
}

#video-modal-close:hover,
#video-modal-close:focus {
    opacity: 1;
    outline: none;
}

#video-modal-body {
    width: 100%;
    height: 100%;
}

#video-modal-body iframe,
#video-modal-body video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

body.modal-open {
    overflow: hidden;
}

/* Hide GTranslate widget visually but keep it in DOM for initialization */
.gtranslate_wrapper {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    pointer-events: none !important;
}