/* ==========================================================================
   CSS STYLING SYSTEM FOR CV ANEUK COKLAT LANDING PAGE
   ========================================================================== */

:root {
    --primary: #5C3D2E;         /* Warm Cacao Brown */
    --primary-dark: #3E2723;    /* Rich Espresso Dark */
    --secondary: #2E5A44;       /* Deep Leaf Forest Green */
    --secondary-light: #E8F5E9; /* Light Mint Green */
    --accent: #C5A059;          /* Cacao Pod Gold */
    --accent-gold: #C5A059;     /* Accent Gold Token */
    --bg-light: #FAF6F0;        /* Warm Smooth Cream */
    --bg-white: #FFFFFF;
    --text-dark: #2C1B12;       /* Charcoal Coffee */
    --text-muted: #4A3E37;
    --text-tertiary: #8A7A6E;
    --border-color: #E6DFD9;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 999px;

    --transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.2s ease, background-color 0.2s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Accessibility Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background-color: var(--secondary);
    color: var(--bg-white);
    padding: 12px 20px;
    z-index: 9999;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.skip-link:focus,
.skip-link:focus-visible {
    top: 20px;
    outline: 2px solid var(--accent-gold, #C5A059);
    outline-offset: 3px;
}

/* Keyboard Accessibility Focus-Visible Ring */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.social-icon:focus-visible {
    outline: 2px solid var(--accent-gold, #C5A059) !important;
    outline-offset: 3px !important;
    border-radius: 6px;
}

/* Global Reset & Base Styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px; /* Offset for sticky fixed navbar */
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.25;
}

p {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2-col {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3-col {
    grid-template-columns: repeat(3, 1fr);
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

/* 1. Buttons Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: #204130;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 90, 68, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.btn-accent {
    background-color: var(--accent);
    color: #2C1B12;
    font-weight: 700;
}

.btn-accent:hover {
    background-color: #B48E47;
    color: #2C1B12;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* 2. Navigation Bar (Sticky & Glassmorphism) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(230, 223, 217, 0.4);
    transition: var(--transition);
    padding: 20px 0;
}

.navbar.scrolled {
    padding: 12px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(44, 27, 18, 0.05);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--secondary);
    width: 28px;
    height: 28px;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--secondary);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary);
}

.nav-link.active {
    border-bottom-color: var(--secondary);
}

.btn-contact-nav {
    background-color: var(--secondary);
    color: var(--bg-white);
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
}

.btn-contact-nav:hover, .nav-link.btn-contact-nav.active {
    background-color: var(--primary);
    color: var(--bg-white);
    border-bottom-color: transparent;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
}

/* 3. Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(44, 27, 18, 0.75), rgba(46, 90, 68, 0.8)), url('/assets/cacao_nursery_hero_mobile.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding-top: 80px; /* Offset for sticky navbar */
}

@media (min-width: 769px) {
    .hero {
        background-image: linear-gradient(rgba(44, 27, 18, 0.75), rgba(46, 90, 68, 0.8)), url('/assets/cacao_nursery_hero.webp');
    }
}

.hero-content {
    color: var(--bg-white);
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    background-color: rgba(197, 160, 89, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #F7F5F2;
    font-weight: 300;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll-indicator i {
    color: var(--bg-white);
    width: 32px;
    height: 32px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.hero-scroll-indicator i:hover {
    opacity: 1;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* 4. Section Headers */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* 5. Tentang Kami Section */
.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(44, 27, 18, 0.08);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 24px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(92, 61, 46, 0.25);
    text-align: center;
    border: 3px solid var(--bg-white);
}

.badge-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.badge-txt {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    color: var(--secondary);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-item h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

.feature-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* 6. Klon Unggul Section */
.card-grid {
    margin-bottom: 50px;
}

.clone-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(44, 27, 18, 0.02);
    overflow: hidden;
    transition: var(--transition);
}

.clone-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(92, 61, 46, 0.08);
    border-color: rgba(92, 61, 46, 0.15);
}

.clone-card-header {
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.clone-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.accent-mcc {
    background-color: rgba(46, 90, 68, 0.1);
    color: var(--secondary);
}

.accent-bb {
    background-color: rgba(92, 61, 46, 0.1);
    color: var(--primary);
}

.accent-s2 {
    background-color: rgba(197, 160, 89, 0.15);
    color: #7E5B18;
}

.clone-card-header h3 {
    font-size: 2rem;
    margin-bottom: 2px;
    color: var(--primary-dark);
}

.clone-fullname {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
}

.clone-card-body {
    padding: 30px;
}

.clone-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.clone-specs li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
}

.clone-specs i {
    color: var(--secondary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.multiclone-info-box {
    background-color: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.01);
}

.multiclone-desc {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.info-icon {
    color: var(--accent);
    width: 36px;
    height: 36px;
    margin-bottom: 15px;
}

.multiclone-desc h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.multiclone-desc p {
    margin: 0;
    font-size: 0.95rem;
}

/* 7. Kalkulator Section */
.calc-grid-box {
    background: linear-gradient(135deg, #FAF6F0 0%, #F5EDE2 100%);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(92, 61, 46, 0.05);
    align-items: center;
}

.calc-intro {
    padding-right: 40px;
}

.intro-tag {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.calc-guide-tips {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tip-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.tip-item i {
    color: var(--accent);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.tip-item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.calc-card {
    background-color: var(--bg-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(44, 27, 18, 0.06);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

.input-with-select {
    display: flex;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
}

.input-with-select:focus-within {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(46, 90, 68, 0.1);
}

.input-with-select input {
    flex-grow: 1;
    border: none;
    padding: 14px;
    font-size: 1rem;
    outline: none;
    width: 100%;
    min-width: 0;
}

.input-with-select select {
    border: none;
    background-color: var(--bg-light);
    padding: 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    outline: none;
    border-left: 1.5px solid var(--border-color);
    cursor: pointer;
}

.form-group > select, .form-group input[type="text"], .form-group input[type="tel"], .form-group input[type="number"], .form-group textarea {
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    padding: 14px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
    width: 100%;
    max-width: 100%;
}

.form-group > select:focus, .form-group input:focus, .form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(46, 90, 68, 0.1);
}

/* Calculator Results Style */
.calc-results {
    display: none; /* Shown dynamically with JS */
    margin-top: 30px;
    border-top: 2px dashed var(--border-color);
    padding-top: 30px;
    animation: fadeIn 0.4s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.results-title {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.result-highlight {
    background-color: var(--secondary-light);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid rgba(46, 90, 68, 0.15);
}

.res-num {
    display: block;
    font-size: clamp(1.6rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 5px;
    word-break: break-word;
}

.res-lbl {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.result-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.det-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-light);
    flex-wrap: wrap;
}

.det-title {
    font-size: 0.95rem;
    font-weight: 500;
}

.det-val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.planting-layout-box {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 25px;
    border-left: 4px solid var(--accent);
}

.planting-layout-box h5 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.planting-layout-box p {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
}

/* 8. Proses Pembibitan (Grafting) */
.process-grid {
    align-items: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-card {
    display: flex;
    gap: 20px;
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.step-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.8;
    line-height: 1;
}

.step-info h4 {
    color: var(--primary);
    margin-bottom: 6px;
    font-size: 1.15rem;
}

.step-info p {
    margin: 0;
    font-size: 0.9rem;
}

.process-visual-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 27, 18, 0.06);
}

.process-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.visual-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 27, 18, 0.9) 0%, rgba(44, 27, 18, 0.2) 100%);
    padding: 40px 30px 30px 30px;
    color: var(--bg-white);
}

.visual-caption h5 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--accent);
}

.visual-caption p {
    color: #E6DFD9;
    font-size: 0.9rem;
    margin: 0;
}

/* 9. Kontak Section */
.contact-grid-box {
    align-items: stretch;
}

.contact-info-panel {
    background: linear-gradient(145deg, #3E2723 0%, #2A1A17 100%);
    color: var(--bg-white);
    border-radius: 24px;
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(44, 27, 18, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.contact-info-panel .section-title {
    color: var(--bg-white);
    margin-bottom: 12px;
}

.contact-info-panel > p {
    color: #D7CCC8;
    font-size: 0.98rem;
    line-height: 1.6;
}

.contact-details-list {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.25s ease;
}

.contact-detail-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(197, 160, 89, 0.4);
    transform: translateX(4px);
}

.contact-detail-item i, .detail-icon-box i {
    color: var(--accent-gold);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail-item h5 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    color: #FFF8E1;
    font-weight: 700;
}

.contact-detail-item p {
    margin: 0;
    font-size: 0.92rem;
    color: #D7CCC8;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.contact-detail-item a {
    color: #FFE082;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 224, 130, 0.5);
    transition: all 0.2s ease;
}

.contact-detail-item a:hover {
    color: #FFFFFF;
    border-bottom-color: #FFFFFF;
}

.nursery-guarantee-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: #FFE082;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
}

.nursery-guarantee-tag i {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--bg-white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.contact-form-panel {
    background-color: var(--bg-white);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    padding: 50px;
    box-shadow: 0 10px 30px rgba(44, 27, 18, 0.02);
}

.form-panel-title {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent);
    padding-left: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-form-panel textarea {
    resize: vertical;
}

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background-color: var(--secondary);
    color: var(--bg-white);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(46, 90, 68, 0.25);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    transform: translateY(50px);
    opacity: 0;
    animation: toastIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes toastIn {
    to { transform: translateY(0); opacity: 1; }
}

/* 10. Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 80px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: var(--bg-white);
}

.footer-brand p {
    color: #B2A296;
    font-size: 0.9rem;
    max-width: 450px;
    margin: 0;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B2A296;
    transition: var(--transition);
}

.footer-social-links a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}


.footer-links, .footer-products {
    display: flex;
    flex-direction: column;
}

.footer-links h3, .footer-products h3, .footer-column h3,
.footer-links h4, .footer-products h4, .footer-column h4,
.footer-links h5, .footer-products h5 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-links a {
    color: #B2A296;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-products ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-products li {
    font-family: 'Inter', sans-serif;
    color: #B2A296;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: #BFAEA3;
}

.heart-icon {
    display: inline-block;
    color: #E25822;
    fill: #E25822;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    animation: beat 1s infinite alternate;
}

@keyframes beat {
    to { transform: scale(1.15); }
}

.contact-map-wrapper {
    margin-top: 50px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(44, 27, 18, 0.05);
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
}

.clone-card-price {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.price-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.price-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
}

.price-val small {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.price-highlight {
    background-color: var(--secondary-light) !important;
    border-color: rgba(46, 90, 68, 0.15) !important;
}

.price-highlight .res-num {
    color: var(--secondary) !important;
}

/* ==========================================================================
   Responsive Styles (Breakpoints)
   ========================================================================== */

@media (max-width: 992px) {
    .grid-3-col {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .calc-grid-box {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .calc-intro {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

/* Intermediate tablet breakpoint to prevent menu wrapping */
@media (max-width: 992px) {
    .navbar-container {
        position: relative;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        border-top: 1px solid var(--border-color);
        display: none; /* Controlled by JS class 'open' */
        z-index: 1000;
    }
    
    .nav-menu.open {
        display: flex;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .nav-link {
        padding: 10px 0;
    }
    
    .btn-contact-nav {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .grid-2-col {
        grid-template-columns: 1fr;
    }
    
    .navbar-container {
        position: relative;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        border-top: 1px solid var(--border-color);
        display: none; /* Controlled by JS class 'open' */
    }
    
    .nav-menu.open {
        display: flex;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .nav-link {
        padding: 10px 0;
    }
    
    .btn-contact-nav {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .about-image {
        height: 320px;
    }
    
    .about-badge {
        padding: 16px 20px;
        bottom: -10px;
        right: -10px;
    }
    
    .badge-num {
        font-size: 1.5rem;
    }

    .clone-badge {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
    }

    .clone-card-header h3 {
        font-size: 1.6rem;
    }
    
    .contact-form-panel {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .grid-3-col {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container, .navbar-container {
        padding: 0 16px;
    }
    
    .about-badge {
        right: 10px;
        bottom: 10px;
        padding: 12px 18px;
    }
    
    .badge-num {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .clone-card-header, .clone-card-body {
        padding: 20px 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    h3, .clone-card-header h3 {
        font-size: 1.4rem;
    }

    #applyToForm {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
    
    .btn-block {
        padding: 12px 18px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .about-image {
        height: 250px;
    }
    
    .calc-grid-box {
        padding: 24px 16px;
        border-radius: 20px;
    }
    
    .calc-card {
        padding: 20px 16px;
    }
    
    .input-with-select {
        flex-direction: column;
    }
    
    .input-with-select select {
        border-left: none;
        border-top: 1.5px solid var(--border-color);
        background-color: var(--bg-white);
        width: 100%;
        max-width: 100%;
    }
    
    .step-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .toast-container {
        right: 16px;
        left: 16px;
        bottom: 20px;
    }
    
    .contact-info-panel {
        padding: 30px 20px;
    }
    
    .contact-form-panel {
        padding: 30px 20px;
    }
}

/* Motion & Animation Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .bounce, .heart-icon, .toast {
        animation: none !important;
    }
}

/* ==========================================================================
   ADSTERRA PUBLISHER SPONSORED NATIVE AD CARD STYLING
   ========================================================================== */
.adsterra-sponsored-card {
    background: linear-gradient(135deg, #1b4332 0%, #0d2319 100%);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 20px;
    padding: 1.75rem 2.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.adsterra-ad-badge {
    position: absolute;
    top: 0.8rem;
    right: 1.25rem;
    background: rgba(197, 160, 89, 0.25);
    color: #ffe082;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.adsterra-ad-content {
    flex: 1;
    padding-right: 2rem;
}

.adsterra-ad-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffe082;
    margin: 0 0 0.4rem 0;
}

.adsterra-ad-desc {
    font-size: 0.88rem;
    color: #d1d5db;
    margin: 0;
    line-height: 1.5;
}

.btn-adsterra-cta {
    background: linear-gradient(135deg, #c5a059 0%, #a37f38 100%);
    color: #0d2319;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 0.75rem 1.4rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-adsterra-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.5);
    background: #ffffff;
    color: #1b4332;
}

@media (max-width: 768px) {
    .adsterra-sponsored-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }
    .adsterra-ad-content {
        padding-right: 0;
        margin-bottom: 1rem;
    }
    .btn-adsterra-cta {
        width: 100%;
        justify-content: center;
    }
}


/* PDF CATALOG DOWNLOAD BUTTON STYLES */
.btn-download-pdf-gold {
    background: linear-gradient(135deg, #c5a059, #a37d38);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.35);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-download-pdf-gold:hover {
    background: linear-gradient(135deg, #b38c47, #8e6a27);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(197, 160, 89, 0.5);
    color: #ffffff !important;
}

.btn-download-pdf-green {
    background: #1b4332;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 1.4rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none !important;
    border: 1px solid #2d6a4f;
    transition: all 0.3s ease;
}

.btn-download-pdf-green:hover {
    background: #2d6a4f;
    transform: translateY(-2px);
    color: #ffffff !important;
}


/* ==========================================================================
   PERFORMANCE & SMOOTH 60FPS HARDWARE ACCELERATION (GPU OPTIMIZATION)
   ========================================================================== */

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    touch-action: manipulation;
}

/* Hardware Acceleration for Sticky Header */
header.navbar, #navbar {
    will-change: transform, background-color;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Hardware Acceleration for Cards & Modals */
.mag-card, .magazine-hero, .itb-portal-wrapper, .cta-banner-card {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Optimized Backdrop Filter fallback for low-end GPUs */
@supports not (backdrop-filter: blur(10px)) {
    .navbar.scrolled, .mag-modal-overlay {
        background: rgba(13, 35, 25, 0.98) !important;
    }
}


/* MULTI-LANGUAGE SWITCHER WIDGET STYLES */
.lang-switcher-container {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 30px;
    padding: 3px;
    margin-left: 12px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #cbd5e1;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25 ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.lang-btn.active {
    background: #c5a059;
    color: #0d2319 !important;
    box-shadow: 0 2px 8px rgba(197, 160, 89, 0.4);
}

.lang-btn:hover {
    color: #ffffff;
}

        .guide-accordion-header i,
        .guide-accordion-header svg {
            transition: transform 0.3s ease;
        }

        .guide-accordion-item.active .guide-accordion-header i,
        .guide-accordion-item.active .guide-accordion-header svg {
            transform: rotate(180deg);
        }

/* --- NATIVE HTML DETAILS ACCORDION STYLING --- */
.guide-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

details.guide-accordion-item {
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.25s ease;
}

details.guide-accordion-item summary.guide-accordion-header {
    padding: 1.2rem 1.5rem;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: #1b4332;
    font-size: 1rem;
    user-select: none;
    list-style: none;
}

details.guide-accordion-item summary.guide-accordion-header::-webkit-details-marker,
details.guide-accordion-item summary.guide-accordion-header::marker {
    display: none;
    content: "";
}

details.guide-accordion-item summary.guide-accordion-header:hover {
    background: #f1f5f9;
}

details.guide-accordion-item .guide-accordion-body {
    padding: 1.25rem 1.5rem;
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.7;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    animation: detailsFadeIn 0.3s ease-in-out;
}

@keyframes detailsFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

details.guide-accordion-item[open] {
    border-color: #2d6a4f;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.08);
}

details.guide-accordion-item[open] summary.guide-accordion-header {
    background: #edf7f2;
    color: #2d6a4f;
}

details.guide-accordion-item summary.guide-accordion-header i,
details.guide-accordion-item summary.guide-accordion-header svg {
    transition: transform 0.3s ease;
}

details.guide-accordion-item[open] summary.guide-accordion-header i,
details.guide-accordion-item[open] summary.guide-accordion-header svg {
    transform: rotate(180deg);
}

/* BULLETPROOF MULTI-LANGUAGE SWITCHER WIDGET STYLES */
.lang-switcher-container {
    display: inline-flex !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.25) !important;
    border: 1.5px solid rgba(197, 160, 89, 0.7) !important;
    border-radius: 30px !important;
    padding: 3px !important;
    margin-left: 12px !important;
    position: relative !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.lang-btn {
    background: transparent !important;
    border: none !important;
    color: #1e293b !important;
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    padding: 5px 12px !important;
    border-radius: 20px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.lang-btn.active {
    background: #c5a059 !important;
    color: #0d2319 !important;
    box-shadow: 0 2px 10px rgba(197, 160, 89, 0.6) !important;
}

.lang-btn:hover {
    color: #0d2319 !important;
}

/* =========================================================================
   IMMUTABLE FIXED HEIGHT HEADER & NON-WRAPPING NAV LINKS (ID / EN NO-JUMP)
   ========================================================================= */
header.navbar, .navbar {
    height: 76px !important;
    display: flex !important;
    align-items: center !important;
}

.navbar-container {
    height: 76px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    max-width: 1240px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

.logo {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

.logo-text {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    font-size: 1.25rem !important;
}

.nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 1.1rem !important;
    flex-wrap: nowrap !important;
    flex-shrink: 1 !important;
}

.nav-link {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    font-size: 0.9rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 40px !important;
    line-height: 1 !important;
    padding: 0 4px !important;
}

.btn-contact-nav {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 40px !important;
    padding: 0 16px !important;
    line-height: 1 !important;
    border-radius: 8px !important;
}

.lang-switcher-container {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

@media (max-width: 1180px) and (min-width: 769px) {
    .nav-menu {
        gap: 0.65rem !important;
    }
    .nav-link {
        font-size: 0.82rem !important;
    }
    .btn-contact-nav {
        padding: 0 12px !important;
        font-size: 0.82rem !important;
    }
    .logo-text {
        font-size: 1.1rem !important;
    }
}

/* ROI & DUAL CALCULATOR TAB STYLES (GLASSMORPHISM & ANIMATION ENHANCEMENTS) */
@keyframes calcCardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.calc-tabs-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 2.5rem;
}

.calc-tabs-nav {
    display: inline-flex;
    background: rgba(13, 35, 25, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(197, 160, 89, 0.4);
    border-radius: 40px;
    padding: 5px;
    gap: 6px;
    box-shadow: 0 8px 24px rgba(44, 27, 18, 0.06);
    transition: all 0.3s ease;
}

.calc-tab-btn {
    background: transparent;
    border: none;
    padding: 12px 24px;
    min-height: 44px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark, #3E2723);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.calc-tab-btn i,
.calc-tab-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
}

.calc-tab-btn.active {
    background: var(--secondary, #2E5A44);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(46, 90, 68, 0.35);
}

.calc-tab-btn.active i,
.calc-tab-btn.active svg {
    transform: scale(1.1);
    color: var(--accent-gold, #C5A059);
}

.calc-tab-btn:hover:not(.active) {
    background: rgba(197, 160, 89, 0.2);
    color: var(--primary-dark, #3E2723);
}

.calc-tab-btn:focus-visible {
    outline: 2px solid var(--accent-gold, #C5A059) !important;
    outline-offset: 2px !important;
}

/* Calculator Card Glassmorphism Aesthetics */
.seed-calc-card,
.roi-calc-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 45px rgba(44, 27, 18, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.3);
    animation: calcCardFadeIn 0.35s ease-out forwards;
}

.roi-calc-card {
    background: linear-gradient(145deg, rgba(27, 67, 50, 0.96) 0%, rgba(13, 35, 25, 0.98) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #ffffff;
    border: 1.5px solid rgba(197, 160, 89, 0.45);
    box-shadow: 0 20px 45px rgba(13, 35, 25, 0.35);
}

.roi-calc-card label {
    color: #ffe082 !important;
    font-weight: 700;
}

.roi-calc-card input[type="number"],
.roi-calc-card select {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #1b4332 !important;
    font-weight: 600 !important;
    border: 1.5px solid rgba(197, 160, 89, 0.5) !important;
    min-height: 46px;
}

.roi-calc-card input[type="number"]:focus,
.roi-calc-card select:focus {
    border-color: #c5a059 !important;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.35) !important;
}

.roi-results .results-title {
    color: #ffe082 !important;
    border-bottom: 1px dashed rgba(197, 160, 89, 0.4);
    padding-bottom: 10px;
}

.roi-grid-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.roi-res-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.25s ease;
}

.roi-res-box:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(197, 160, 89, 0.5);
}

.roi-res-box.highlight-gold {
    border-color: rgba(197, 160, 89, 0.7);
    background: rgba(197, 160, 89, 0.16);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.15);
}

.roi-res-box.highlight-green {
    border-color: rgba(37, 211, 102, 0.7);
    background: rgba(37, 211, 102, 0.16);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
}

.roi-res-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.roi-res-box.highlight-gold .roi-res-val {
    color: #ffe082;
}

.roi-res-box.highlight-green .roi-res-val {
    color: #a7f3d0;
}

.roi-res-lbl {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 6px;
    line-height: 1.35;
}

.roi-summary-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 12px;
    padding: 14px 18px;
    margin-top: 18px;
    font-size: 0.92rem;
    color: #ffffff;
    flex-wrap: wrap;
    gap: 10px;
}

.roi-summary-bar span {
    color: rgba(255, 255, 255, 0.85);
}

.roi-summary-bar strong {
    color: #ffe082;
}

/* Tablet Responsiveness (600px - 1024px) */
@media (max-width: 1024px) and (min-width: 601px) {
    .calc-card {
        padding: 32px 24px;
    }
    .calc-tabs-nav {
        padding: 4px;
    }
    .calc-tab-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

/* Mobile Responsiveness (<600px) */
@media (max-width: 600px) {
    .calc-tabs-container {
        margin-bottom: 1.5rem;
    }
    .calc-tabs-nav {
        flex-direction: column;
        border-radius: 20px;
        width: 100%;
        gap: 4px;
        padding: 6px;
    }
    .calc-tab-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        min-height: 46px;
    }
    .calc-card {
        padding: 24px 16px;
        border-radius: 20px;
    }
    .roi-grid-results {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .roi-summary-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 14px;
    }
}

/* =========================================================================
   STANDARDIZED 3-TIER BUTTON HIERARCHY & WHATSAPP BUTTON (T-03)
   ========================================================================= */
.btn-primary {
    background-color: var(--secondary) !important;
    color: var(--bg-white) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border-radius: var(--radius-md, 12px) !important;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-primary:hover {
    background-color: #204130 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 90, 68, 0.25);
}

.btn-secondary {
    background: transparent !important;
    color: var(--secondary) !important;
    border: 1.5px solid var(--secondary) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border-radius: var(--radius-md, 12px) !important;
    padding: 11px 22px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-secondary:hover {
    background-color: var(--secondary) !important;
    color: var(--bg-white) !important;
    transform: translateY(-2px);
}

.btn-tertiary {
    background: transparent !important;
    color: var(--accent, #C5A059) !important;
    border: none !important;
    border-bottom: 1px solid rgba(197, 160, 89, 0.5) !important;
    padding: 2px 0 !important;
    border-radius: 0 !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-tertiary:hover {
    color: #E0C489 !important;
    border-bottom-color: #E0C489 !important;
}

.btn-whatsapp {
    background-color: #25d366 !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border-radius: var(--radius-md, 12px) !important;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
    transition: var(--transition);
}
.btn-whatsapp:hover {
    background-color: #1fbb5a !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

/* =========================================================================
   3D WEB COMPONENTS STYLES (<cacao-grid-v8> & <graft-model-r3>)
   ========================================================================= */
.three-d-card-wrapper {
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: var(--radius-lg, 20px);
    background: linear-gradient(180deg, rgba(43, 29, 20, 0.7), rgba(30, 19, 16, 0.35));
    overflow: hidden;
    position: relative;
}

.three-d-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.18);
}

.three-d-footer-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 18px;
    border-top: 1px solid rgba(197, 160, 89, 0.18);
}

.density-btn {
    font-family: 'JetBrains Mono', monospace, sans-serif;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: var(--radius-sm, 8px);
    transition: all 0.2s ease;
    background: transparent;
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: #A08F82;
}

.density-btn.active,
.density-btn:hover {
    background: #C5A059;
    border-color: #C5A059;
    color: #2C1B12;
}

.clone-chip-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 7px 14px;
    border-radius: var(--radius-pill, 999px);
    transition: all 0.2s ease;
    background: rgba(250, 246, 240, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: #C7B8AC;
}

.clone-chip-btn.active {
    background: rgba(197, 160, 89, 0.18);
    border-color: #C5A059;
    color: #F2E3C8;
}

.graft-step-nav {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 18px 14px;
    border-top: 1px solid var(--border-color, #E6DFD9);
    cursor: pointer;
    transition: background 0.2s ease, border-radius 0.2s ease;
}

.graft-step-nav:hover,
.graft-step-nav.active {
    background: var(--bg-light, #FAF6F0);
    border-radius: var(--radius-md, 12px);
}

.graft-step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #C5A059;
}

.graft-step-nav.active .graft-step-num {
    color: var(--secondary, #2E5A44);
}

/* ==========================================================================
   CV ANEUK COKLAT - REDESIGNED UI & 3D COMPONENTS CSS
   ========================================================================== */

/* 1. Header Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px !important;
    background: rgba(30, 19, 16, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    z-index: 999999 !important;
    pointer-events: auto !important;
    transition: background 0.3s ease;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: #FAF6F0;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #E4D9CE;
    text-decoration: none;
    white-space: nowrap !important;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #C5A059;
}

.btn-contact-nav {
    background-color: #25d366 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 8px 16px !important;
    border-radius: var(--radius-md, 12px) !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
    white-space: nowrap !important;
}

.btn-contact-nav:hover {
    background-color: #1fbb5a !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.lang-switcher-container {
    display: flex;
    align-items: center;
    background: rgba(250, 246, 240, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: var(--radius-pill, 999px);
    padding: 2px;
}

.lang-btn {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    background: transparent;
    border: none;
    color: #C7B8AC;
    padding: 4px 10px;
    border-radius: var(--radius-pill, 999px);
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn.active {
    background: #C5A059;
    color: #2C1B12;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #FAF6F0;
    font-size: 24px;
    cursor: pointer;
}

/* 2. Hero Redesign */
.hero-redesign {
    background-color: #1E1310;
    background-image: 
        linear-gradient(rgba(30, 19, 16, 0.90), rgba(30, 19, 16, 0.94)),
        radial-gradient(1100px 520px at 78% 8%, rgba(197, 160, 89, 0.16), transparent 62%),
        url('/assets/cacao_nursery_hero.webp');
    background-size: cover;
    background-position: center;
    padding: 120px 0 76px;
    color: #FAF6F0;
    position: relative;
    overflow: hidden;
}

.hero-grid-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #C5A059;
    color: #2C1B12;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    padding: 6px 14px;
    border-radius: var(--radius-pill, 999px);
    margin-bottom: 20px;
}

.hero-title-redesign {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.2px;
    color: #FDFBF8;
    margin: 0 0 18px;
}

.hero-desc-redesign {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #D9CCC1;
    margin: 0 0 28px;
    max-width: 32em;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-main-cta {
    font-size: 16px !important;
    padding: 14px 28px !important;
}

.hero-sub-cta {
    font-size: 14px !important;
}

.hero-proof-bar {
    display: flex;
    gap: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}

.proof-stat-item {
    display: flex;
    flex-direction: column;
}

.proof-number {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #FDFBF8;
    letter-spacing: -0.6px;
    line-height: 1;
}

.proof-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #A08F82;
    margin-top: 6px;
}

/* 3. Section Headers & Subtitles */
.section {
    padding: 88px 0;
}

.bg-white {
    background-color: #FFFFFF;
}

.bg-light {
    background-color: var(--bg-light, #FAF6F0);
}

.section-tag-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--text-tertiary, #8A7A6E);
    margin-bottom: 10px;
}

.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.uniform-price-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary, #2E5A44);
    border: 1.5px solid var(--secondary, #2E5A44);
    background: #FFFFFF;
    padding: 10px 20px;
    border-radius: var(--radius-md, 12px);
    flex: none;
}

/* 4. Clones Cards V2 */
.clone-card-v2 {
    background: #FFFFFF;
    border: 1px solid var(--border-color, #E6DFD9);
    border-radius: var(--radius-lg, 20px);
    padding: 26px;
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.clone-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(62, 39, 35, 0.08);
    border-color: #D9CFC5;
}

.clone-header-v2 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.clone-title-v2 {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: var(--primary-dark, #3E2723);
    line-height: 1;
    margin: 0;
}

.clone-sub-v2 {
    font-size: 13px;
    color: var(--text-tertiary, #8A7A6E);
    margin-top: 5px;
}

.clone-pill {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: var(--radius-pill, 999px);
    flex: none;
}

.pill-primary {
    background: var(--secondary-light, #E8F5E9);
    color: var(--secondary, #2E5A44);
}

.pill-accent {
    background: #F7EEDF;
    color: #8A5A12;
}

.pill-sub {
    background: #EEF2E9;
    color: #4A6136;
}

.clone-color-bar {
    height: 2.5px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.clone-features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    margin-bottom: 24px;
}

.feature-row strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark, #2C1B12);
    margin-bottom: 2px;
}

.feature-row span {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-muted, #4A3E37);
}

/* 5. Process Steps Redesign */
.grid-2-col-wide {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: start;
}

.steps-nav-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 24px;
}

/* 6. Support Banner Redesign */
.support-banner-card {
    background-color: var(--primary-dark, #3E2723);
    background-image: radial-gradient(600px 320px at 88% 12%, rgba(197, 160, 89, 0.20), transparent 62%);
    border-radius: var(--radius-lg, 20px);
    padding: 48px 52px;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: center;
    color: #FAF6F0;
}

.support-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.15;
    color: #FDFBF8;
    margin: 0 0 14px;
}

.support-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #D9CCC1;
    margin: 0;
}

.support-features-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-item-box {
    border: 1px solid rgba(197, 160, 89, 0.28);
    border-radius: var(--radius-md, 12px);
    padding: 16px 18px;
    background: rgba(250, 246, 240, 0.05);
}

.support-item-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: #FDFBF8;
    margin-bottom: 4px;
}

.support-item-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #C7B8AC;
}

/* 7. Contact Redesign */
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 24px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--border-color, #E6DFD9);
}

.contact-detail-item:last-child {
    border-bottom: 1px solid var(--border-color, #E6DFD9);
}

.detail-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light, #FAF6F0);
    border: 1px solid var(--border-color, #E6DFD9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary, #2E5A44);
    flex: none;
}

.nursery-guarantee-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    background: var(--secondary-light, #E8F5E9);
    border: 1px solid #CFE0D6;
    border-radius: var(--radius-pill, 999px);
    padding: 8px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--secondary, #2E5A44);
}

.contact-form-panel {
    background: var(--bg-light, #FAF6F0);
    border: 1px solid var(--border-color, #E6DFD9);
    border-radius: var(--radius-lg, 20px);
    padding: 32px;
}

.form-panel-title {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-dark, #3E2723);
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary, #5C3D2E);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border-color, #E6DFD9);
    border-radius: var(--radius-sm, 8px);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: #FFFFFF;
    color: var(--text-dark, #2C1B12);
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary, #2E5A44);
    box-shadow: 0 0 0 3px rgba(46, 90, 68, 0.12);
}

/* 8. Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-grid-layout,
    .grid-2-col-wide,
    .support-banner-card,
    .contact-grid-box {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .support-banner-card {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 16px;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: rgba(30, 19, 16, 0.98);
        border-bottom: 1px solid rgba(197, 160, 89, 0.2);
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        align-items: flex-start;
    }
    .nav-menu.active {
        display: flex;
    }
    .hero-redesign {
        padding: 100px 0 56px;
    }
    .hero-proof-bar {
        gap: 18px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
