:root {
    --primary-green: #2b4227;
    --primary-green-light: #3e5e39;
    --accent-gold: #d4af37;
    --accent-gold-hover: #b8962c;
    --bg-cream: #fcfbf8;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #555555;
    --border-color: #e5e5e5;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-padding {
    padding: 80px 0;
}

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

.text-gold {
    color: var(--accent-gold);
}

.bg-light {
    background-color: var(--bg-cream);
}

.bg-dark {
    background-color: var(--primary-green);
    color: var(--bg-white);
}

.bg-dark h2,
.bg-dark p {
    color: var(--bg-white);
}

.mt-2 {
    margin-top: 10px;
}

.mt-3 {
    margin-top: 15px;
}

.mt-4 {
    margin-top: 30px;
}

.mt-5 {
    margin-top: 50px;
}

.w-100 {
    width: 100%;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.bg-dark p {
    color: #d0d0d0;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--accent-gold);
    margin: 15px auto 30px;
}

.align-left {
    margin-left: 0;
}

.align-center {
    margin: 15px auto 30px;
}

.border-gold {
    background-color: var(--accent-gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 2px;
    font-weight: 500;
    font-family: var(--font-body);
    letter-spacing: 0.02em;
    cursor: pointer;
    text-align: center;
    border: 1.5px solid transparent;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    font-size: 0.95rem;
    line-height: 1.2;
    text-decoration: none;
}

.btn i {
    font-size: 0.95em;
}

.btn-primary {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #1a1a1a;
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(43, 66, 39, 0.12);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--bg-white);
    transform: translateY(-1px);
}

.btn-outline {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: transparent;
    padding: 9px 18px;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: #1a1a1a;
}

.btn-lg {
    padding: 16px 34px;
    font-size: 1rem;
    letter-spacing: 0.03em;
}

.btn-whatsapp {
    background-color: transparent;
    border-color: #25D366;
    color: #128C7E;
}

.btn-whatsapp:hover {
    background-color: #25D366;
    border-color: #25D366;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.18);
}

/* Footer / closing CTA - light fill + ghost pair */
.final-cta .btn-primary,
.exp-close .btn-primary {
    background: #fcfbf8;
    border-color: #fcfbf8;
    color: var(--primary-green);
}

.final-cta .btn-primary:hover,
.exp-close .btn-primary:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #1a1a1a;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.final-cta .btn-whatsapp,
.exp-close .btn-whatsapp,
.final-cta .btn-ghost,
.exp-close .btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.final-cta .btn-whatsapp:hover,
.exp-close .btn-whatsapp:hover,
.final-cta .btn-ghost:hover,
.exp-close .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    box-shadow: none;
}

/* Navbar */
.site-header {
    position: relative;
    z-index: 1000;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease;
}

.navbar.is-scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
    background: transparent;
    padding: 0;
}

.nav-panel {
    display: none;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 8px 12px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 8px;
    letter-spacing: 0.01em;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
    color: var(--primary-green);
    background-color: rgba(43, 66, 39, 0.06);
}

.nav-menu .menu-item-has-children {
    position: relative;
}

.nav-menu .menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-menu .menu-item-has-children > a::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.65;
    margin-top: 1px;
}

.nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 200px;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: #ffffff;
    border: 1px solid rgba(43, 66, 39, 0.08);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(26, 26, 26, 0.12);
    z-index: 1100;
}

.nav-menu .sub-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.nav-menu .menu-item-has-children:hover > .sub-menu,
.nav-menu .menu-item-has-children:focus-within > .sub-menu,
.nav-menu .menu-item-has-children.is-open > .sub-menu {
    display: block;
}

.nav-menu .sub-menu a {
    padding: 10px 14px;
    font-size: 0.9rem;
    white-space: nowrap;
    border-radius: 8px;
}

.nav-submenu-toggle {
    display: none;
}

.nav-cta {
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
    overflow: hidden;
}

.nav-close {
    display: none;
}

.nav-panel-label {
    display: none;
}

.nav-panel-inner {
    display: contents;
}

/* Home brand mark */
.brand-mark {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.home-hero .brand-mark + h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

/* Page hero (inner pages) */
.page-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background:
        linear-gradient(180deg, rgba(252, 251, 248, 0.95) 0%, rgba(255, 255, 255, 1) 100%),
        radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.12), transparent 55%);
}

.page-hero-inner {
    max-width: 720px;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.page-hero-lead {
    font-size: 1.15rem;
    max-width: 560px;
}

/* Pillars (home) */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.pillar-card {
    display: block;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 32px 28px;
    transition: var(--transition);
    color: inherit;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(43, 66, 39, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
}

.pillar-card .icon-box {
    margin-bottom: 18px;
}

.pillar-card h3 {
    margin-bottom: 10px;
}

.pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--accent-gold-hover);
}

.solution-container.reverse {
    direction: rtl;
}

.solution-container.reverse > * {
    direction: ltr;
}

/* Footer */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    text-align: left;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 28px;
}

.footer-logo {
    height: 42px;
    width: auto;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-contact p,
.footer-contact a,
.footer-menu a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer h4 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-menu .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-menu .menu-item-has-children > a::after {
    display: none;
}

.footer-menu .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: static;
    margin: 6px 0 4px 12px;
    padding: 0;
    min-width: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.footer-menu .sub-menu a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.62);
}

.footer-menu a:hover,
.footer-contact a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    padding-top: 8px;
}

.contact-address {
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold-hover);
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    max-width: 100%;
}

.badge i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
    line-height: 1;
    width: 1em;
    flex-shrink: 0;
}

.badge-warning {
    background-color: rgba(255, 0, 0, 0.05);
    color: var(--text-gray);
    border: 1px solid #ddd;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
    padding-top: 80px;
    /* Offset for navbar */
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    padding-right: 20px;
}

.hero h1 .highlight {
    color: #b28e17;
    font-size: 0.65em;
    display: block;
    line-height: 1.1;
    margin-top: 0;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
    transform: translateY(0px);
    transition: transform 0.1s linear;
}

.image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transform: scale(1.05);
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.problem-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-gold);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.strong-line {
    font-size: 1.3rem;
    color: var(--primary-green);
}

.strong-line.large {
    font-size: 2rem;
    font-family: var(--font-heading);
}

/* Solution Section */
.solution-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.image-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-box img {
    width: 100%;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: 16px;
    background: var(--bg-white);
    padding: 15px 25px;
    border-radius: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-float-badge {
    bottom: 40px;
    right: 16px;
}

.floating-badge i {
    color: var(--accent-gold);
}

.benefit-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefit-list li i {
    margin-top: 5px;
}

.highlight-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-green);
    font-weight: 700;
}

/* Sateri Trading Section */
.sateri-trading {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
}

.sateri-trading-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sateri-trading-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.sateri-trading-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(252, 251, 248, 0.96) 0%,
        rgba(252, 251, 248, 0.88) 42%,
        rgba(252, 251, 248, 0.35) 68%,
        rgba(252, 251, 248, 0.12) 100%
    );
}

.sateri-trading-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    /* Keep side padding - section-padding on same node would otherwise wipe it */
    padding-left: 20px;
    padding-right: 20px;
}

.sateri-trading-content {
    max-width: 560px;
}

.sateri-trading-content h2 {
    color: var(--primary-green);
}

.sateri-trading-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 10px 18px;
    background-color: rgba(252, 251, 248, 0.92);
}

.sateri-trading-content > p {
    color: var(--text-gray);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.sateri-domains {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.sateri-domain {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 4px 14px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(43, 66, 39, 0.12);
}

.sateri-domain:last-child {
    border-bottom: none;
}

.sateri-domain i {
    grid-row: 1 / span 2;
    color: var(--accent-gold);
    font-size: 1.35rem;
    margin-top: 4px;
}

.sateri-domain h4 {
    margin: 0;
    font-size: 1.15rem;
}

.sateri-domain p {
    margin: 0;
    font-size: 0.95rem;
}

.sateri-years-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    background: var(--bg-white);
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    font-weight: 700;
    color: var(--primary-green);
}

.sateri-years-badge i {
    color: var(--accent-gold);
}

/* Showcase Section */
.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) rgba(255, 255, 255, 0.1);
}

.horizontal-scroll::-webkit-scrollbar {
    height: 8px;
}

.horizontal-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

.grade-card {
    min-width: 250px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px 70px; /* Extra bottom padding for absolute button */
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.grade-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.card-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.grade-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 20px;
    font-size: 0.9rem;
    z-index: 10; /* Ensure button sits above the overlay for clicking */
}

.grade-card:hover .grade-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.grade-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background: var(--bg-white);
}

.grade-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.grade-use {
    font-size: 0.95rem;
    color: #ccc;
}

/* USP Section */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.usp-block {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.usp-block i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.usp-block h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.usp-block p {
    font-size: 0.95rem;
}

/* Value Section */
.value-container {
    max-width: 800px;
    margin: 0 auto;
}

.value-checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checklist-item {
    display: flex;
    gap: 20px;
    background: var(--bg-cream);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    transition: var(--transition);
}

.checklist-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.check-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checklist-item h5 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.checklist-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Audience Section */
.audience-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.audience-card {
    background: var(--bg-white);
    padding: 25px 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    min-width: 200px;
    transition: var(--transition);
}

.audience-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.audience-card i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.audience-card h5 {
    font-family: var(--font-body);
    font-size: 1.1rem;
}

/* How It Works */
.steps-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    text-align: center;
}

.step {
    flex: 1;
    padding: 0 20px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h4 {
    margin-bottom: 10px;
}

.step p {
    font-size: 0.95rem;
}

.step-connector {
    color: var(--border-color);
    font-size: 2rem;
}

/* Lead Form Section */
.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    border-top: 5px solid var(--accent-gold);
}

.custom-form .form-group {
    margin-bottom: 20px;
}

.custom-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.custom-form input,
.custom-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-cream);
}

.custom-form input:focus,
.custom-form select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: var(--bg-white);
}

.form-note {
    font-size: 0.85rem;
    color: #888;
}

/* Final CTA */
.final-cta {
    position: relative;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(212, 175, 55, 0.16) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 100%, rgba(255, 255, 255, 0.06) 0%, transparent 45%),
        linear-gradient(165deg, #243821 0%, #1a2818 48%, #142016 100%);
    color: var(--bg-white);
    overflow: hidden;
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.12), transparent);
    opacity: 0.35;
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.final-cta h2 {
    color: #fcfbf8;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

.final-cta .subtitle {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.1rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.cta-actions .btn-lg {
    min-width: 220px;
}

/* Footer */
.footer {
    background: #111;
    color: #888;
    padding: 56px 0 30px;
    font-size: 0.9rem;
}

.footer-marketed-by {
    color: #aaa;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.copyright-text {
    font-size: 0.8rem;
    color: #666;
}

/* WhatsApp Sticky */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

/* Story Features Section */
.story-features {
    background-color: var(--bg-cream);
}

.wrapper-box {
    background: #fbf8f1;
    border: 1px solid #e0d7c6;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.sf-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr;
    gap: 40px;
}

.sf-col-middle {
    border-left: 1px solid #e0d7c6;
    border-right: 1px solid #e0d7c6;
    padding: 0 40px;
    text-align: center;
}

.sf-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #635741;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.sf-col-left .sf-title {
    border: none;
    padding-bottom: 0;
}

.sf-col-right .sf-title {
    border-bottom: 1px solid #c8bba3;
    padding-bottom: 10px;
}

.sf-col-left p {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #4a4238;
}

.sf-middle-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #4a4238;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.sf-middle-header .subtitle {
    font-size: 1.1rem;
    color: #635741;
}

.sf-map-illustration img {
    width: 100%;
    margin: 30px 0;
    mix-blend-mode: multiply;
    opacity: 0.85;
}

.sf-badges {
    display: flex;
    justify-content: space-between;
    gap: 0;
    border: 1px solid #c8bba3;
    border-radius: 8px;
    padding: 0;
    background: transparent;
    overflow: hidden;
}

.sf-badge {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #635741;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
    padding: 10px;
    border-right: 1px solid #c8bba3;
    text-transform: uppercase;
}

.sf-badge:last-child {
    border-right: none;
}

.sf-badge i {
    font-size: 1.3rem;
}

.sf-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sf-features-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.sf-feature-icon {
    width: 35px;
    height: 35px;
    border: 1px solid #c8bba3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #635741;
    flex-shrink: 0;
}

.sf-features-list i {
    font-size: 1rem;
    margin: 0;
    width: auto;
}

.sf-features-list strong {
    font-size: 0.95rem;
    color: #4a4238;
}

.sf-features-list span {
    font-size: 0.75rem;
    color: #635741;
}

/* Products hub */
.products-showcase .section-title {
    margin-bottom: 48px;
}

.product-line {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    margin-bottom: clamp(56px, 8vw, 96px);
}

.product-line:last-of-type {
    margin-bottom: 0;
}

.product-line-alt {
    grid-template-columns: 0.95fr 1.05fr;
}

.product-line-media {
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-cream);
}

.product-line-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.product-line-copy h2 {
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    margin-bottom: 8px;
}

.product-line-copy > p {
    color: var(--text-gray);
    font-size: 1.05rem;
    max-width: 34em;
}

.products-quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.products-quick-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 22px 24px;
    border-top: 2px solid rgba(43, 66, 39, 0.12);
    background: transparent;
    transition: var(--transition);
}

.products-quick-link:hover {
    border-top-color: var(--accent-gold);
    transform: translateY(-2px);
}

.products-quick-label {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary-green);
    font-weight: 600;
}

.products-quick-cta {
    font-size: 0.9rem;
    color: var(--accent-gold-hover);
    font-weight: 500;
}

/* Related products cross-links */
.related-products {
    border-top: 1px solid var(--border-color);
}

.related-products-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}

.related-product-link {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-white);
    transition: var(--transition);
}

.related-product-link:hover {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 12px 28px rgba(43, 66, 39, 0.08);
    transform: translateY(-2px);
}

.related-product-link img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.related-product-link h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.related-product-link p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

.related-product-link .related-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-gold-hover);
}

/* Responsive - tablet */
@media (max-width: 992px) {
    .nav-desktop {
        display: none !important;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
        position: relative;
        z-index: 1001;
    }

    body.nav-open .nav-toggle {
        visibility: hidden;
        pointer-events: none;
    }

    .nav-panel {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        width: 100dvw;
        height: 100vh;
        height: 100dvh;
        max-width: none;
        margin: 0;
        padding: 0;
        background:
            linear-gradient(165deg, #fcfbf8 0%, #ffffff 48%, #f7f4ec 100%);
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.35s;
        z-index: 10050;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-panel.is-open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .nav-panel-inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        min-height: 100%;
        min-height: 100dvh;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 96px 28px 48px;
        box-sizing: border-box;
        position: relative;
    }

    .nav-close {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: absolute;
        top: max(16px, env(safe-area-inset-top));
        right: max(16px, env(safe-area-inset-right));
        min-width: 48px;
        height: 48px;
        padding: 0 14px;
        border: 1px solid rgba(43, 66, 39, 0.18);
        border-radius: 999px;
        background: #ffffff;
        box-shadow: 0 4px 16px rgba(43, 66, 39, 0.08);
        cursor: pointer;
        z-index: 3;
        color: var(--primary-green);
        font-family: var(--font-body);
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.02em;
    }

    .nav-close-text {
        display: inline;
    }

    .nav-close:hover,
    .nav-close:focus-visible {
        background: #ffffff;
        border-color: rgba(43, 66, 39, 0.35);
        outline: none;
    }

    .nav-close:active {
        transform: scale(0.96);
    }

    .nav-close-icon {
        position: relative;
        display: block;
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .nav-close-icon::before,
    .nav-close-icon::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--primary-green);
        border-radius: 2px;
    }

    .nav-close-icon::before {
        transform: translateY(-50%) rotate(45deg);
    }

    .nav-close-icon::after {
        transform: translateY(-50%) rotate(-45deg);
    }

    .nav-panel-label {
        display: block !important;
        margin: 0 0 28px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--accent-gold-hover);
    }

    .nav-panel .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        width: 100%;
    }

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

    .nav-panel .nav-menu a {
        font-size: 1.35rem;
        padding: 14px 4px;
        border-radius: 0;
        background: transparent;
        border-bottom: 1px solid rgba(43, 66, 39, 0.08);
        color: var(--primary-green);
        font-family: var(--font-heading);
        font-weight: 600;
    }

    .nav-panel .nav-menu a:hover,
    .nav-panel .nav-menu .current-menu-item > a,
    .nav-panel .nav-menu .current_page_item > a {
        background: transparent;
        color: var(--accent-gold-hover);
    }

    .nav-panel .nav-menu .menu-item-has-children {
        position: relative;
    }

    .nav-panel .nav-menu .menu-item-has-children > a {
        display: flex;
        width: 100%;
        padding-right: 48px;
    }

    .nav-panel .nav-menu .menu-item-has-children > a::after {
        display: none;
    }

    .nav-panel .menu-item-has-children {
        display: block;
    }

    .nav-panel .menu-item-has-children.is-open > .nav-submenu-toggle::before {
        transform: rotate(45deg);
    }

    .nav-panel .nav-menu .sub-menu {
        display: none;
        position: static;
        min-width: 0;
        margin: 0;
        padding: 4px 0 8px 12px;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    .nav-panel .nav-menu .sub-menu::before {
        display: none;
    }

    .nav-panel .nav-menu .menu-item-has-children.is-open > .sub-menu {
        display: block;
    }

    .nav-panel .nav-menu .sub-menu a {
        font-size: 1.05rem;
        font-family: var(--font-body);
        font-weight: 500;
        padding: 10px 4px;
        border-bottom: none;
    }

    .nav-panel .nav-menu .sub-menu .current-menu-item > a {
        color: var(--accent-gold-hover);
    }

    .nav-panel .nav-cta {
        display: inline-flex;
        margin-top: 36px;
        padding: 14px 22px;
        text-align: center;
        justify-content: center;
        font-size: 0.95rem;
        width: 100%;
        max-width: 320px;
        align-self: center;
    }

    @media (prefers-reduced-motion: reduce) {
        .nav-panel {
            transition: none;
        }
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer-menu .nav-menu,
    .footer-menu {
        align-items: center;
    }

    .solution-container.reverse {
        direction: ltr;
    }

    .product-line,
    .product-line-alt {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-line-alt .product-line-copy {
        order: 1;
    }

    .product-line-alt .product-line-media {
        order: 0;
    }

    .product-line-media img {
        min-height: 240px;
    }

    .products-quick-links {
        grid-template-columns: 1fr;
    }

    .related-products-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding-top: 120px;
        text-align: center;
    }

    .page-hero .divider.align-left {
        margin-left: auto;
        margin-right: auto;
    }

    .page-hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .container {
        padding: 0 24px;
    }

    .hero-container,
    .solution-container,
    .sf-grid {
        grid-template-columns: 1fr;
    }

    .sf-col-middle {
        border-left: none;
        border-right: none;
        border-top: 1px solid #e0d7c6;
        border-bottom: 1px solid #e0d7c6;
        padding: 40px 0;
        margin: 40px 0;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        margin-top: 32px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .floating-badge {
        right: 16px;
        bottom: 20px;
        padding: 12px 18px;
        font-size: 0.9rem;
    }

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

    .steps-flow {
        flex-direction: column;
        gap: 24px;
    }

    .step-connector {
        transform: rotate(90deg);
        margin: 0;
    }

    .solution-image {
        max-width: 560px;
        margin: 0 auto;
    }

    .solution-content {
        text-align: center;
    }

    .solution-content .divider {
        margin-left: auto;
        margin-right: auto;
    }

    .benefit-list {
        display: inline-block;
        text-align: left;
    }

    .sateri-trading {
        min-height: auto;
    }

    .sateri-trading-overlay {
        background: linear-gradient(
            180deg,
            rgba(252, 251, 248, 0.94) 0%,
            rgba(252, 251, 248, 0.9) 55%,
            rgba(252, 251, 248, 0.72) 100%
        );
    }

    .sateri-trading-inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .sateri-trading-content {
        max-width: 100%;
    }

    .wrapper-box {
        padding: 32px 24px;
    }

    .final-cta h2 {
        font-size: 2.4rem;
    }
}

/* Responsive - mobile */
@media (max-width: 768px) {
    .section-padding {
        padding: 56px 0;
    }

    .container {
        padding: 0 16px;
    }

    /* Center content on mobile where it reads cleanly */
    .hero,
    .hero-content,
    .home-hero .hero-content,
    .exp-hero-content,
    .page-hero,
    .page-hero-inner,
    .section-title,
    .exp-chapter-copy,
    .exp-strip-copy,
    .solution-content,
    .form-header,
    .mango-hero-content,
    .mango-hscroll-intro,
    .product-line-copy,
    .related-products,
    .final-cta .container,
    .audience-note,
    .exp-note,
    .text-center {
        text-align: center;
    }

    .exp-hero-content,
    .page-hero-inner,
    .exp-chapter-copy,
    .solution-content,
    .mango-hero-content,
    .product-line-copy {
        margin-left: auto;
        margin-right: auto;
    }

    .divider.align-left,
    .page-hero .divider,
    .exp-chapter-copy .divider,
    .solution-content .divider {
        margin-left: auto;
        margin-right: auto;
    }

    .benefit-list,
    .benefit-list li {
        text-align: left;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .cta-actions,
    .exp-hero .hero-actions,
    .mango-hero .hero-actions {
        justify-content: center;
        align-items: stretch;
    }

    .exp-path-step,
    .mango-serve-node,
    .usp-block,
    .problem-card,
    .audience-card,
    .pillar-card,
    .step {
        text-align: center;
    }

    .checklist-item {
        text-align: left;
    }

    .sf-col-left,
    .sf-col-right,
    .sf-col-middle,
    .sf-middle-header {
        text-align: center;
    }

    .sf-features-list li {
        text-align: left;
        justify-content: flex-start;
    }

    .exp-lead,
    .page-hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .nav-panel-inner {
        text-align: left;
    }

    .nav-panel .nav-cta {
        align-self: center;
    }

    .navbar {
        padding: 10px 0;
    }

    .logo-img {
        height: 40px;
    }

    .nav-content {
        justify-content: space-between;
    }

    h1 {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
        margin-bottom: 14px;
    }

    h2 {
        font-size: clamp(1.45rem, 5.5vw, 1.85rem);
    }

    h3 {
        font-size: 1.25rem;
    }

    p {
        font-size: 1rem;
    }

    .subtitle {
        font-size: 1.05rem;
    }

    .hero {
        padding: 96px 0 48px;
    }

    .hero h1 .highlight {
        font-size: clamp(1.15rem, 5vw, 1.45rem);
        white-space: normal;
        display: block;
        margin-top: 8px;
    }

    .badge {
        white-space: normal;
        text-align: center;
        font-size: 0.72rem;
        padding: 8px 12px;
        line-height: 1.35;
        max-width: 100%;
    }

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

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

    .problem-grid,
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 28px;
    }

    .problem-card {
        padding: 28px 22px;
    }

    .strong-line {
        font-size: 1.15rem;
    }

    .strong-line.large {
        font-size: 1.5rem;
    }

    .highlight-text {
        font-size: 1.3rem;
    }

    .floating-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 16px auto 0;
        width: fit-content;
        max-width: calc(100% - 16px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        font-size: 0.85rem;
        padding: 12px 16px;
    }

    .hero-image .floating-badge {
        position: relative;
        bottom: auto;
        right: auto;
    }

    .sateri-trading-inner {
        padding: 56px 20px;
    }

    .sateri-trading-content {
        max-width: 100%;
    }

    .sateri-trading-content h2 {
        font-size: clamp(1.4rem, 6vw, 1.75rem);
        line-height: 1.25;
        word-wrap: break-word;
    }

    .sateri-trading-content .badge {
        white-space: normal;
        text-align: left;
        justify-content: flex-start;
        font-size: 0.72rem;
        padding: 8px 12px;
        line-height: 1.35;
    }

    .sateri-trading-content > p {
        font-size: 0.98rem;
        line-height: 1.65;
        margin-bottom: 22px;
    }

    .sateri-domains {
        gap: 0;
    }

    .sateri-domain {
        grid-template-columns: 36px 1fr;
        gap: 2px 12px;
        padding: 16px 0;
    }

    .sateri-domain i {
        font-size: 1.2rem;
        margin-top: 2px;
    }

    .sateri-domain h4 {
        font-size: 1.05rem;
    }

    .sateri-domain p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .sateri-trading-content .highlight-text {
        font-size: clamp(1.2rem, 5vw, 1.4rem);
        line-height: 1.3;
    }

    .sateri-years-badge {
        margin-top: 20px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .wrapper-box {
        padding: 24px 16px;
        border-radius: 10px;
    }

    .sf-grid {
        gap: 0;
    }

    .sf-col-middle {
        padding: 28px 0;
        margin: 28px 0;
    }

    .sf-title {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }

    .sf-middle-header h2 {
        font-size: 1.6rem;
    }

    .sf-map-illustration img {
        margin: 20px 0;
    }

    .sf-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        border: none;
        background: transparent;
        padding: 0;
        overflow: visible;
    }

    .sf-badge {
        background: #fff;
        border: 1px solid #c8bba3;
        border-radius: 8px;
        padding: 14px 8px;
        margin: 0;
        border-right: 1px solid #c8bba3;
        font-size: 0.62rem;
    }

    .sf-badge:last-child {
        grid-column: span 2;
        border-right: 1px solid #c8bba3;
    }

    .sf-features-list {
        gap: 14px;
    }

    .sf-features-list strong {
        font-size: 0.9rem;
    }

    .showcase-feature-img {
        margin-bottom: 24px;
        border-radius: 8px;
    }

    .horizontal-scroll {
        margin: 0 -16px;
        padding: 12px 16px 28px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .grade-card {
        min-width: min(72vw, 260px);
        max-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 22px 16px 70px;
    }

    /* Always show quote buttons on touch / no-hover devices */
    .grade-btn {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .grade-name {
        font-size: 1.6rem;
    }

    .usp-block {
        padding: 24px 18px;
    }

    .checklist-item {
        padding: 18px;
        gap: 14px;
    }

    .checklist-item:hover {
        transform: none;
    }

    .audience-grid {
        gap: 12px;
        margin-top: 28px;
    }

    .audience-card {
        min-width: calc(50% - 12px);
        flex: 1 1 calc(50% - 12px);
        padding: 20px 14px;
    }

    .steps-flow {
        margin-top: 32px;
        gap: 8px;
    }

    .step {
        padding: 0;
        width: 100%;
    }

    .form-wrapper {
        padding: 28px 18px;
        border-radius: 10px;
    }

    .custom-form input,
    .custom-form select {
        padding: 14px;
        font-size: 16px; /* prevents iOS zoom on focus */
    }

    .cta-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

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

    .final-cta h2 {
        font-size: clamp(1.75rem, 7vw, 2.2rem);
    }

    .btn-lg {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .whatsapp-sticky {
        width: 52px;
        height: 52px;
        bottom: 18px;
        right: 16px;
        font-size: 1.6rem;
    }

    .footer {
        padding: 32px 0 24px;
    }

    .footer-marketed-by {
        font-size: 0.8rem;
        padding: 0 8px 14px;
    }

    /* Disable hover transforms that feel sticky on touch */
    .problem-card:hover,
    .grade-card:hover,
    .audience-card:hover,
    .checklist-item:hover {
        transform: none;
    }
}

/* Responsive - small phones */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .section-padding {
        padding: 44px 0;
    }

    .navbar .btn {
        padding: 7px 10px;
        font-size: 0.72rem;
    }

    .logo-img {
        height: 36px;
    }

    .hero {
        padding: 88px 0 40px;
    }

    .image-wrapper img {
        transform: scale(1);
    }

    .icon-box {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }

    .audience-card {
        min-width: 100%;
        flex: 1 1 100%;
    }

    .audience-note .badge {
        font-size: 0.7rem;
        padding: 8px 12px;
    }

    .step-number {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }

    .horizontal-scroll {
        margin: 0 -14px;
        padding: 12px 14px 24px;
    }

    .grade-card {
        min-width: 78vw;
    }

    .sf-badges {
        grid-template-columns: 1fr 1fr;
    }

    .sf-badge:last-child {
        grid-column: span 2;
    }

    .sateri-trading-inner {
        padding: 48px 18px;
    }

    .sateri-trading-content h2 {
        font-size: 1.4rem;
    }

    .sateri-domain {
        grid-template-columns: 32px 1fr;
        gap: 2px 10px;
    }

    .btn {
        padding: 13px 22px;
    }
}

/* Prefer reduced motion / touch: keep grade CTAs visible */
@media (hover: none), (pointer: coarse) {
    .grade-btn {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .grade-card:hover {
        transform: none;
    }
}

/* Additional Animations */
@keyframes wiggleEffect {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg) scale(1.1);
    }

    50% {
        transform: rotate(10deg) scale(1.1);
    }

    75% {
        transform: rotate(-5deg) scale(1.05);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.wiggle {
    animation: wiggleEffect 2.5s ease-in-out infinite;
}

.wiggle-active {
    animation: wiggleEffect 0.6s ease-in-out;
}

.parallax-el {
    will-change: transform;
}

.showcase-feature-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    display: block;
}
/* =========================================================
   HOME EXPERIENCE - Konkan storytelling
   ========================================================= */

.home-experience {
    overflow-x: clip;
}

.exp-kicker {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-gold-hover);
    margin-bottom: 14px;
}

.exp-kicker.light {
    color: rgba(212, 175, 55, 0.95);
}

/* Full-bleed hero */
.exp-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden;
}

.exp-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.exp-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transform: scale(1.08);
    will-change: transform;
}

.exp-sky-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20, 32, 24, 0.25) 0%, rgba(20, 32, 24, 0.15) 35%, rgba(20, 32, 24, 0.55) 70%, rgba(12, 18, 14, 0.88) 100%);
    pointer-events: none;
}

.exp-mist {
    position: absolute;
    left: -10%;
    right: -10%;
    height: 55%;
    pointer-events: none;
    will-change: transform, opacity;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 45%, transparent 70%);
    filter: blur(18px);
    opacity: 0.55;
}

.exp-mist-1 {
    top: 8%;
    animation: mistDrift 28s ease-in-out infinite alternate;
}

.exp-mist-2 {
    top: 22%;
    height: 45%;
    opacity: 0.4;
    animation: mistDrift 36s ease-in-out infinite alternate-reverse;
}

.exp-mist-3 {
    top: 38%;
    height: 40%;
    opacity: 0.3;
    background: radial-gradient(ellipse at 30% 50%, rgba(252, 251, 248, 0.35) 0%, transparent 65%);
    animation: mistDrift 42s ease-in-out infinite alternate;
}

@keyframes mistDrift {
    from { transform: translate3d(-3%, 0, 0) scale(1); }
    to { transform: translate3d(4%, 2%, 0) scale(1.05); }
}

.exp-hero-gradient {
    position: absolute;
    inset: auto 0 0 0;
    height: 45%;
    background: linear-gradient(180deg, transparent, rgba(10, 14, 12, 0.75));
    pointer-events: none;
}

.exp-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px 100px;
    max-width: 780px;
    margin: 0;
    margin-right: auto;
}

.exp-brand {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 0.95;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}

.exp-hero h1 {
    color: #fff;
    font-size: clamp(1.85rem, 4.2vw, 3rem);
    margin-bottom: 18px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.exp-hero .highlight {
    color: var(--accent-gold);
}

.exp-lead {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
    max-width: 540px;
    margin-bottom: 28px;
    line-height: 1.65;
}

.exp-btn-ghost {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
    background: transparent;
}

.exp-btn-ghost:hover {
    background: #fff;
    color: var(--primary-green);
    border-color: #fff;
}

.exp-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    animation: scrollPulse 2.4s ease-in-out infinite;
}

.exp-scroll-hint i {
    font-size: 0.85rem;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.45; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* Chapters */
.exp-chapter-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.exp-chapter-grid.reverse {
    grid-template-columns: 1.05fr 1fr;
}

.exp-chapter-copy h2 {
    font-size: clamp(1.85rem, 3.5vw, 2.6rem);
}

.exp-chapter-copy p {
    margin-bottom: 16px;
}

.exp-chapter-media {
    margin: 0;
    position: relative;
}

.exp-chapter-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 24px 60px rgba(43, 66, 39, 0.12);
}

.exp-chapter-media figcaption {
    margin-top: 14px;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.5;
}

/* Harvest strip */
.exp-strip {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
}

.exp-strip-bg {
    position: absolute;
    inset: 0;
}

.exp-strip-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.06);
    will-change: transform;
}

.exp-strip-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 18, 14, 0.82) 0%, rgba(12, 18, 14, 0.45) 55%, rgba(12, 18, 14, 0.25) 100%);
}

.exp-strip-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.exp-strip-copy {
    max-width: 560px;
}

.exp-strip-copy h2 {
    color: #fff;
    margin-bottom: 16px;
}

.exp-strip-copy p {
    color: rgba(255, 255, 255, 0.85);
}

/* Path steps */
.exp-path-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 12px;
}

.exp-path-step {
    padding: 28px 22px;
    border-top: 2px solid var(--accent-gold);
    background: transparent;
    transition: var(--transition);
    outline: none;
}

.exp-path-step:hover,
.exp-path-step:focus-visible,
.exp-path-step.is-active {
    background: rgba(43, 66, 39, 0.04);
    transform: translateY(-4px);
}

.exp-path-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
    line-height: 1;
}

.exp-path-step h3 {
    margin-bottom: 10px;
}

.exp-path-step p {
    font-size: 0.98rem;
    margin: 0;
}

.exp-note {
    margin-top: 36px;
}

.exp-close .exp-kicker {
    margin-bottom: 14px;
}

.exp-close h2 {
    color: #fcfbf8;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .exp-mist,
    .exp-scroll-hint,
    .exp-hero-img,
    .exp-strip-bg img {
        animation: none !important;
        transform: none !important;
    }
}

@media (max-width: 992px) {
    .exp-chapter-grid,
    .exp-chapter-grid.reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .exp-path-track {
        grid-template-columns: 1fr 1fr;
    }

    .exp-hero-content {
        padding-bottom: 88px;
        text-align: left;
    }

    .exp-strip {
        min-height: 60vh;
    }

    .exp-strip-veil {
        background: linear-gradient(180deg, rgba(12, 18, 14, 0.35) 0%, rgba(12, 18, 14, 0.88) 100%);
    }
}

@media (max-width: 768px) {
    .exp-hero {
        min-height: 92vh;
    }

    .exp-brand {
        font-size: clamp(2.4rem, 12vw, 3.2rem);
    }

    .exp-path-track {
        grid-template-columns: 1fr;
    }

    .exp-scroll-hint {
        display: none;
    }

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

    .exp-hero .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   MANGO PULP - Hapus bulk page
   ========================================================= */

.mango-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
}

.mango-hero-media {
    position: absolute;
    inset: 0;
}

.mango-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mango-hero-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(28, 18, 8, 0.2) 0%, rgba(28, 18, 8, 0.35) 40%, rgba(18, 12, 6, 0.88) 100%);
}

.mango-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px 72px;
    max-width: 760px;
    margin: 0;
}

.mango-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    margin-bottom: 16px;
}

.mango-hero .page-hero-lead {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
}

/* Horizontal industry gallery - JS-pinned (sticky broken by overflow-x on html/body) */
.mango-hscroll-wrap {
    position: relative;
    background: #1a140c;
    /* pixel height applied by JS */
    min-height: 100vh;
}

.mango-hscroll-sticky {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 96px 0 28px;
    box-sizing: border-box;
    z-index: 2;
    background: #1a140c;
}

.mango-hscroll-sticky.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.mango-hscroll-sticky.is-end {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
}

.mango-hscroll-intro {
    padding: 0 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    color: #fff;
    flex-shrink: 0;
}

.mango-hscroll-intro h2 {
    color: #fcfbf8;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin-bottom: 8px;
}

.mango-hscroll-hint {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.mango-hscroll-hint span {
    color: #e8a317;
    font-weight: 600;
}

.mango-hscroll-viewport {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.mango-hscroll-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 28px;
    padding-left: 40px;
    padding-right: 60px;
    width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.mango-hpanel {
    flex: 0 0 720px;
    width: 720px;
    max-width: 85vw;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    background: #fcfbf8;
    overflow: hidden;
    height: min(56vh, 460px);
}

.mango-hpanel-media {
    position: relative;
    min-height: 280px;
}

.mango-hpanel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mango-hpanel-num {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
    line-height: 1;
}

.mango-hpanel-copy {
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mango-hpanel-copy h3 {
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    margin-bottom: 12px;
}

.mango-hpanel-copy > p {
    font-size: 0.98rem;
    margin-bottom: 14px;
}

.mango-use-when {
    font-size: 0.78rem;
    font-weight: 600;
    color: #c4840e;
    margin-bottom: 10px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
}

.mango-served {
    font-size: 0.88rem !important;
    color: var(--text-dark) !important;
    margin-bottom: 0 !important;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}

.mango-hscroll-progress {
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
    margin: 22px 40px 0;
    max-width: 1200px;
    width: calc(100% - 80px);
    align-self: center;
    border-radius: 2px;
    overflow: hidden;
    flex-shrink: 0;
}

.mango-hscroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #e8a317, #fcfbf8);
    transition: width 0.05s linear;
}

.mango-serve-map {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.mango-serve-node {
    flex: 1 1 160px;
    min-width: 140px;
    padding: 22px 18px;
    border: 1px solid var(--border-color);
    background: var(--bg-cream);
    text-align: center;
}

.mango-serve-step {
    display: block;
    font-family: var(--font-heading);
    color: #c4840e;
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.mango-serve-node h4 {
    margin-bottom: 8px;
}

.mango-serve-node p {
    font-size: 0.92rem;
    margin: 0;
}

.mango-serve-arrow {
    display: flex;
    align-items: center;
    color: var(--accent-gold);
    padding: 0 4px;
}

.mango-buyer-grid {
    margin-top: 48px;
}

@media (max-width: 992px) {
    /* Keep vertical→horizontal pin on tablet/mobile (same interaction as desktop) */
    .mango-hscroll-wrap {
        background: #1a140c;
        min-height: 100vh;
    }

    .mango-hscroll-sticky {
        padding: 88px 0 24px;
    }

    .mango-hscroll-intro {
        color: #fff;
        padding: 0 20px 14px;
        text-align: center;
    }

    .mango-hscroll-intro h2 {
        color: #fcfbf8;
        font-size: clamp(1.35rem, 5vw, 1.85rem);
    }

    .mango-hscroll-hint {
        display: flex;
        justify-content: center;
        font-size: 0.75rem;
    }

    .mango-hscroll-viewport {
        overflow: hidden;
    }

    .mango-hscroll-track {
        padding-left: 20px;
        padding-right: 40px;
        gap: 16px;
        width: max-content;
    }

    .mango-hpanel {
        flex: 0 0 min(86vw, 380px);
        width: min(86vw, 380px);
        max-width: none;
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }

    .mango-hpanel-media {
        height: 200px;
        min-height: 200px;
    }

    .mango-hpanel-copy {
        padding: 18px 16px 20px;
        text-align: left;
    }

    .mango-hscroll-progress {
        display: block;
        margin: 18px 20px 0;
        width: calc(100% - 40px);
        max-width: none;
    }

    .mango-serve-arrow {
        display: none;
    }

    .mango-hero {
        min-height: 70vh;
    }
}

@media (max-width: 768px) {
    .mango-hero-content {
        padding-bottom: 48px;
    }

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

    .mango-hero .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .mango-hpanel-copy {
        padding: 20px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mango-hscroll-wrap {
        height: auto !important;
        min-height: 0;
        background: var(--bg-cream);
    }

    .mango-hscroll-sticky,
    .mango-hscroll-sticky.is-fixed,
    .mango-hscroll-sticky.is-end {
        position: relative !important;
        height: auto;
        top: auto;
        bottom: auto;
        background: transparent;
        padding: 56px 0 40px;
        overflow: visible;
    }

    .mango-hscroll-intro {
        color: var(--text-dark);
    }

    .mango-hscroll-intro h2 {
        color: var(--primary-green);
    }

    .mango-hscroll-hint,
    .mango-hscroll-progress {
        display: none;
    }

    .mango-hscroll-viewport {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .mango-hscroll-track {
        transform: none !important;
        flex-wrap: nowrap;
        width: max-content;
        padding: 0 20px;
    }

    .mango-hpanel {
        flex: 0 0 min(88vw, 380px);
        width: min(88vw, 380px);
        max-width: none;
        height: auto;
        scroll-snap-align: start;
    }
}
