/* ============================================
   JOVYNTRA TRADING - Premium B2B Agriculture
   Main Stylesheet
============================================ */

/* ===== CSS Variables ===== */
:root {
    --primary: #1a4d2e;
    --primary-dark: #0f3520;
    --primary-light: #2d6e44;
    --secondary: #d4af37;
    --secondary-light: #f9d71c;
    --secondary-dark: #b8941f;
    --accent: #e8dcc4;
    --accent-light: #f5efdf;
    --charcoal: #1a1d1f;
    --charcoal-light: #2d3133;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #71717a;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --gray-800: #27272a;
    --gray-900: #18181b;

    --gradient-primary: linear-gradient(135deg, #1a4d2e 0%, #2d6e44 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f9d71c 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26,77,46,0.92) 0%, rgba(15,53,32,0.85) 100%);
    --gradient-soft: linear-gradient(135deg, #f5efdf 0%, #ffffff 100%);

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 25px 60px rgba(0,0,0,0.18);
    --shadow-gold: 0 12px 40px rgba(212,175,55,0.25);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { color: var(--gray-600); }

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(26,77,46,0.15);
}
.section-title {
    margin-bottom: 16px;
    color: var(--charcoal);
}
.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 650px;
    margin: 0 auto 60px;
}

/* ===== Layout ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.section {
    padding: 100px 0;
    position: relative;
}
.section-dark {
    background: var(--charcoal);
    color: var(--white);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }

.text-center { text-align: center; }
.row { display: flex; flex-wrap: wrap; margin: 0 -16px; }
.col { padding: 0 16px; flex: 1; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(26,77,46,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(26,77,46,0.4); }

.btn-gold {
    background: var(--gradient-gold);
    color: var(--charcoal);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(212,175,55,0.4); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}
.btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); transform: translateY(-3px); }

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { transform: translateY(-3px); background: #20bd5a; box-shadow: 0 15px 35px rgba(37,211,102,0.4); }

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 20px 44px; font-size: 16px; }

/* ===== Header ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}
.site-header.transparent {
    background: transparent;
}
.site-header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 26px;
    color: var(--white);
    letter-spacing: 1px;
}
.site-header.scrolled .logo { color: var(--primary); }
.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    font-weight: 800;
    box-shadow: var(--shadow-gold);
}
.logo-tag { font-size: 11px; letter-spacing: 2px; opacity: 0.7; font-weight: 500; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-links {
    display: flex;
    gap: 36px;
}
.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}
.site-header.scrolled .nav-links a { color: var(--charcoal); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    transform: translateX(-50%);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--secondary); }
.site-header.scrolled .nav-links a:hover, .site-header.scrolled .nav-links a.active { color: var(--primary); }

.menu-toggle {
    display: none;
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    align-items: center;
    justify-content: center;
}
.site-header.scrolled .menu-toggle { background: var(--gray-100); color: var(--charcoal); }
.menu-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: currentColor;
    margin: 4px 0;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1574323347407-f5e1ad6d020b?w=1920&q=85') center/cover;
    z-index: -2;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.15), transparent 60%);
    z-index: -1;
}
.hero-content {
    max-width: 850px;
    color: var(--white);
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: var(--secondary-light);
}
.hero-badge .pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--secondary-light);
    box-shadow: 0 0 0 0 var(--secondary-light);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(249,215,28,0.7); }
    70% { box-shadow: 0 0 0 12px rgba(249,215,28,0); }
    100% { box-shadow: 0 0 0 0 rgba(249,215,28,0); }
}
.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
    font-weight: 800;
}
.hero h1 .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    max-width: 700px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--secondary-light);
    margin-bottom: 4px;
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.7); letter-spacing: 0.5px; }

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 1;
}
.hero-scroll::after {
    content: '';
    display: block;
    width: 1px; height: 40px;
    background: rgba(255,255,255,0.4);
    margin: 12px auto 0;
    animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(0.3); transform-origin: top; }
    50% { transform: scaleY(1); }
}

/* ===== Trust Indicators ===== */
.trust-section {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    position: relative;
    margin-top: -1px;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.trust-item:hover { background: var(--accent-light); transform: translateY(-4px); }
.trust-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--gradient-primary);
    color: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(26,77,46,0.2);
}
.trust-label { font-size: 13px; font-weight: 600; color: var(--charcoal); letter-spacing: 0.3px; }

/* ===== About Section ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    transition: transform 0.8s;
}
.about-image:hover img { transform: scale(1.05); }
.about-floating-card {
    position: absolute;
    bottom: 30px; left: 30px; right: 30px;
    padding: 24px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 20px;
}
.about-floating-card .icon {
    width: 56px; height: 56px;
    background: var(--gradient-gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
}
.about-floating-card h4 { font-size: 18px; margin-bottom: 4px; }
.about-floating-card p { font-size: 13px; margin: 0; }

.about-content h2 { margin-bottom: 24px; }
.about-content .lead { font-size: 18px; color: var(--gray-700); margin-bottom: 24px; }
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
}
.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.about-feature .check {
    width: 40px; height: 40px;
    background: var(--gradient-primary);
    color: var(--secondary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-feature h5 { font-size: 16px; margin-bottom: 4px; font-family: var(--font-body); }
.about-feature p { font-size: 14px; margin: 0; }

/* MVV cards */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.mvv-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.mvv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}
.mvv-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.mvv-card:hover::before { transform: scaleX(1); }
.mvv-icon {
    width: 64px; height: 64px;
    background: var(--gradient-primary);
    color: var(--secondary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}
.mvv-card h3 { font-size: 24px; margin-bottom: 12px; }

/* ===== Products Section ===== */
.products-section {
    background: var(--gradient-soft);
    position: relative;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray-100);
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}
.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--gray-100);
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}
.product-card:hover .product-image img { transform: scale(1.1); }
.product-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--gradient-gold);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}
.product-info {
    padding: 24px;
}
.product-info h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}
.product-info p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 18px;
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-meta i { color: var(--secondary); }
.product-actions {
    display: flex;
    gap: 8px;
}
.product-actions .btn {
    flex: 1;
    padding: 10px 14px;
    font-size: 13px;
    justify-content: center;
}

/* ===== Why Choose Us ===== */
.why-section { background: var(--white); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.why-card {
    padding: 40px 32px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
}
.why-card::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    background: var(--gradient-gold);
    border-radius: 50%;
    top: -100px; right: -100px;
    opacity: 0.05;
    transition: var(--transition);
}
.why-card:hover::after { transform: scale(1.5); opacity: 0.1; }
.why-icon {
    width: 70px; height: 70px;
    background: var(--gradient-primary);
    color: var(--secondary-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 24px;
    box-shadow: 0 12px 30px rgba(26,77,46,0.2);
}
.why-card h4 { font-size: 22px; margin-bottom: 12px; font-family: var(--font-heading); }

/* ===== Industries Section ===== */
.industries-section {
    background: var(--charcoal);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.industries-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(212,175,55,0.1), transparent 70%);
    pointer-events: none;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.industry-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    cursor: default;
}
.industry-card:hover {
    background: rgba(212,175,55,0.1);
    border-color: var(--secondary);
    transform: translateY(-6px);
}
.industry-icon {
    width: 60px; height: 60px;
    background: var(--gradient-gold);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}
.industry-card h4 { color: var(--white); font-size: 18px; margin-bottom: 8px; font-family: var(--font-heading); }
.industry-card p { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0; }

/* ===== Inquiry Form ===== */
.inquiry-section {
    background: var(--gradient-soft);
    position: relative;
    overflow: hidden;
}
.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}
.inquiry-info { padding-right: 20px; }
.inquiry-info h2 { margin-bottom: 20px; }
.inquiry-info p { margin-bottom: 30px; font-size: 17px; }
.inquiry-contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}
.inquiry-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}
.inquiry-contact-item:hover { transform: translateX(8px); box-shadow: var(--shadow-md); border-color: var(--secondary); }
.inquiry-contact-item .icon {
    width: 48px; height: 48px;
    background: var(--gradient-primary);
    color: var(--secondary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.inquiry-contact-item .label { font-size: 12px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; }
.inquiry-contact-item .value { font-size: 16px; font-weight: 600; color: var(--charcoal); }

.inquiry-form-wrap {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 15px;
    color: var(--charcoal);
    background: var(--gray-50);
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(26,77,46,0.08);
}
textarea.form-control { min-height: 130px; resize: vertical; }
.form-actions { display: flex; gap: 12px; align-items: center; margin-top: 12px; }

/* ===== Testimonials ===== */
.testimonials-section {
    background: var(--white);
    overflow: hidden;
}
.testimonial-slider {
    position: relative;
    padding: 20px 0;
}
.testimonial-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0 30px;
    scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--secondary); }
.testimonial-card .quote-icon {
    position: absolute;
    top: 24px; right: 30px;
    font-size: 40px;
    color: var(--secondary);
    opacity: 0.2;
    font-family: var(--font-heading);
    line-height: 1;
}
.testimonial-rating {
    color: var(--secondary);
    margin-bottom: 16px;
    font-size: 16px;
}
.testimonial-content { color: var(--gray-700); font-style: italic; line-height: 1.7; margin-bottom: 24px; min-height: 110px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--gray-100); }
.testimonial-author img { width: 52px; height: 52px; border-radius: 50%; border: 3px solid var(--accent-light); object-fit: cover; }
.testimonial-author h5 { margin: 0; font-size: 16px; font-family: var(--font-body); font-weight: 700; }
.testimonial-author p { margin: 0; font-size: 13px; color: var(--gray-500); }

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}
.slider-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: none;
}
.slider-btn:hover { background: var(--secondary); color: var(--primary); transform: scale(1.1); }

/* ===== FAQ ===== */
.faq-section { background: var(--gradient-soft); }
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.active { border-color: var(--secondary); box-shadow: var(--shadow-md); }
.faq-question {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: none;
    color: var(--charcoal);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-toggle {
    width: 32px; height: 32px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item.active .faq-toggle { background: var(--gradient-gold); transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
}
.faq-answer-inner { padding: 0 28px 24px; color: var(--gray-600); line-height: 1.8; }
.faq-item.active .faq-answer { max-height: 500px; }

/* ===== Contact Section ===== */
.contact-section { background: var(--white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-info-card {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 50px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: var(--gradient-gold);
    border-radius: 50%;
    opacity: 0.1;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-card .subtitle { color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; position: relative; z-index: 1; }
.contact-info-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-info-item .icon {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: var(--secondary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-item .label { font-size: 12px; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-info-item .value { font-size: 15px; color: var(--white); font-weight: 500; line-height: 1.5; }

.company-credentials {
    margin-top: 36px;
    padding: 24px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    z-index: 1;
}
.company-credentials .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 0; }
.credential-item .label { font-size: 11px; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }
.credential-item .value { font-size: 13px; color: var(--secondary-light); font-weight: 600; font-family: 'Courier New', monospace; word-break: break-all; }

.map-container {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    margin-top: 30px;
}
.map-container iframe { width: 100%; height: 100%; border: 0; filter: grayscale(20%) saturate(0.9); }

/* ===== Footer ===== */
.site-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
    position: relative;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 20px; }
.footer-about { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); color: var(--primary); transform: translateY(-3px); }

.footer-col h5 { color: var(--white); font-size: 16px; margin-bottom: 22px; font-family: var(--font-body); font-weight: 700; position: relative; padding-bottom: 12px; }
.footer-col h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--secondary); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--secondary); padding-left: 6px; }

.footer-credentials .item { margin-bottom: 16px; }
.footer-credentials .label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.footer-credentials .value { font-size: 13px; color: var(--white); font-family: 'Courier New', monospace; }

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--secondary); }

/* ===== Floating WhatsApp ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 64px; height: 64px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
}
.floating-whatsapp:hover { transform: scale(1.1) rotate(10deg); box-shadow: 0 15px 40px rgba(37,211,102,0.6); }
.floating-whatsapp::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0;
    animation: whatsappPulse 2s infinite;
}
@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ===== Page Header (inner pages) ===== */
.page-header {
    padding: 200px 0 100px;
    background: linear-gradient(135deg, rgba(26,77,46,0.95), rgba(15,53,32,0.9)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&q=80') center/cover;
    color: var(--white);
    text-align: center;
    position: relative;
}
.page-header h1 { color: var(--white); margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 700px; margin: 0 auto; }
.breadcrumb { margin-top: 20px; font-size: 14px; color: rgba(255,255,255,0.7); }
.breadcrumb a { color: var(--secondary-light); }
.breadcrumb i { margin: 0 10px; opacity: 0.5; }

/* ===== Product Detail ===== */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}
.product-detail-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: sticky;
    top: 100px;
}
.product-detail-image img { width: 100%; height: 550px; object-fit: cover; }
.product-detail-info h1 { font-size: 48px; margin-bottom: 16px; }
.product-detail-info .lead { font-size: 18px; color: var(--gray-700); margin-bottom: 30px; }

.detail-tabs { display: flex; gap: 8px; margin-bottom: 30px; border-bottom: 2px solid var(--gray-100); flex-wrap: wrap; }
.detail-tab {
    padding: 14px 24px;
    background: none;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 14px;
    position: relative;
    transition: var(--transition);
    margin-bottom: -2px;
}
.detail-tab.active { color: var(--primary); border-bottom: 2px solid var(--secondary); }
.detail-tab:hover { color: var(--primary); }

.detail-content { padding: 20px 0; }
.detail-content h4 { margin-bottom: 14px; color: var(--primary); }
.detail-content p, .detail-content li { color: var(--gray-700); line-height: 1.8; }
.detail-content ul { padding-left: 24px; margin-top: 10px; }
.detail-content li { margin-bottom: 6px; list-style: disc; }

.product-cta-box {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.product-cta-box h4 { color: var(--white); margin-bottom: 0; }
.product-cta-box p { color: rgba(255,255,255,0.85); font-size: 14px; margin: 0; }
.product-cta-box .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

/* ===== Alerts ===== */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.alert-success { background: rgba(34,197,94,0.1); color: #15803d; border-left: 4px solid #22c55e; }
.alert-error { background: rgba(239,68,68,0.1); color: #b91c1c; border-left: 4px solid #ef4444; }
.alert-info { background: rgba(59,130,246,0.1); color: #1d4ed8; border-left: 4px solid #3b82f6; }

/* ===== Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.animate-fadeInUp { animation: fadeInUp 1s ease forwards; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .products-grid, .industries-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid, .mvv-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image img { height: 420px; }
    .inquiry-grid, .contact-grid, .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
    .testimonial-card { flex: 0 0 calc(50% - 15px); }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .nav-links { display: none; position: fixed; top: 80px; left: 20px; right: 20px; flex-direction: column; background: var(--white); padding: 24px; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); gap: 12px; }
    .nav-links.show { display: flex; }
    .nav-links a { color: var(--charcoal) !important; padding: 10px; border-bottom: 1px solid var(--gray-100); }
    .menu-toggle { display: flex; }
    .main-nav { gap: 12px; }
    .nav-cta { display: none; }
    
    .hero { padding: 100px 0 50px; min-height: auto; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    
    .products-grid, .industries-grid, .why-grid, .mvv-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .form-row, .about-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .testimonial-card { flex: 0 0 90%; }
    .inquiry-form-wrap { padding: 30px 24px; }
    .contact-info-card { padding: 32px 24px; }
    .product-detail-info h1 { font-size: 32px; }
    .product-detail-image { position: static; }
    .product-detail-image img { height: 320px; }
    .floating-whatsapp { width: 56px; height: 56px; bottom: 20px; right: 20px; font-size: 26px; }
    .page-header { padding: 140px 0 60px; }
    .form-actions { flex-direction: column; }
    .form-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
}

/* Utility */
.mt-0{margin-top:0}.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}.mt-5{margin-top:48px}
.mb-0{margin-bottom:0}.mb-1{margin-bottom:8px}.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}.mb-4{margin-bottom:32px}.mb-5{margin-bottom:48px}
.d-none{display:none}.d-block{display:block}
.text-primary{color:var(--primary)}.text-gold{color:var(--secondary)}.text-white{color:var(--white)}

/* ============================================
   PREMIUM ENHANCEMENTS - Iteration 2
============================================ */

/* Better hero overlay with floating particles */
.hero-bg {
    background:
        linear-gradient(135deg, rgba(15,53,32,0.78) 0%, rgba(26,77,46,0.65) 60%, rgba(15,53,32,0.85) 100%),
        url('https://images.unsplash.com/photo-1560493676-04071c5f467b?w=1920&q=85') center/cover;
}
.hero-bg::after {
    background:
        radial-gradient(ellipse at 70% 20%, rgba(212,175,55,0.18), transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(26,77,46,0.4), transparent 50%);
}

/* Floating glass orbs in hero */
.hero::before, .hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}
.hero::before {
    width: 500px; height: 500px;
    background: var(--gradient-gold);
    top: 10%; right: -10%;
    animation: floatOrb 20s ease-in-out infinite;
}
.hero::after {
    width: 400px; height: 400px;
    background: var(--primary-light);
    bottom: -10%; left: -10%;
    animation: floatOrb 25s ease-in-out infinite reverse;
}
@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -40px) scale(1.15); }
}

/* Premium glassmorphism enhancements */
.hero-content { position: relative; z-index: 2; }
.hero-content > * { animation-fill-mode: both; }
.hero-badge { animation-delay: 0s; }
.hero h1 { animation-delay: 0.2s; }
.hero-sub { animation-delay: 0.4s; }
.hero-cta { animation-delay: 0.6s; }
.hero-stats { animation-delay: 0.8s; }

/* Smoother button hover with shimmer */
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}
.btn:hover::before { left: 100%; }
.btn { position: relative; overflow: hidden; }

/* Section dividers with curve */
.section-curve-top {
    position: relative;
    margin-top: -60px;
    padding-top: 160px;
}

/* Premium product card overlay */
.product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s;
}
.product-card:hover .product-image::before { opacity: 1; }

/* Trust badges with subtle gradient */
.trust-icon {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}
.trust-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(212,175,55,0.2));
    opacity: 0;
    transition: opacity 0.3s;
}
.trust-item:hover .trust-icon::after { opacity: 1; }

/* Glassmorphic floating navigation effect */
.site-header.scrolled {
    background: rgba(255,255,255,0.85);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    backdrop-filter: blur(24px) saturate(180%);
}

/* Premium MVV cards with better hover */
.mvv-card {
    background: linear-gradient(180deg, var(--white) 0%, var(--accent-light) 100%);
}
.mvv-card:hover .mvv-icon {
    background: var(--gradient-gold);
    color: var(--primary);
    transform: rotate(-8deg) scale(1.1);
    box-shadow: var(--shadow-gold);
}
.mvv-icon { transition: all 0.5s cubic-bezier(0.4,0,0.2,1); }

/* Why card icon enhancement */
.why-card .why-icon { transition: all 0.5s cubic-bezier(0.4,0,0.2,1); }
.why-card:hover .why-icon {
    transform: rotate(-8deg) scale(1.1);
    background: var(--gradient-gold);
    color: var(--primary);
}

/* Form focus glow */
.form-control:focus {
    box-shadow: 0 0 0 4px rgba(26,77,46,0.08), 0 8px 20px rgba(26,77,46,0.05);
}

/* Industry card icon shimmer on hover */
.industry-card:hover .industry-icon {
    transform: rotate(8deg) scale(1.1);
    box-shadow: var(--shadow-gold);
}
.industry-icon { transition: all 0.4s cubic-bezier(0.4,0,0.2,1); }

/* Premium loading state for images */
.product-image, .about-image {
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
}
.product-image img, .about-image img {
    animation: fadeIn 0.8s ease forwards;
}
@keyframes shimmer {
    to { background-position-x: -200%; }
}

/* Premium scroll-revealed counter glow */
.hero-stat-num {
    text-shadow: 0 0 30px rgba(249,215,28,0.4);
}

/* CTA section gradient mesh */
.cta-mesh {
    background:
        radial-gradient(at 20% 30%, rgba(212,175,55,0.3), transparent 50%),
        radial-gradient(at 80% 70%, rgba(26,77,46,0.3), transparent 50%),
        var(--charcoal);
}

/* Better link underline animation in nav */
.nav-links a::after {
    height: 3px;
    border-radius: 2px;
    background: var(--gradient-gold);
}

/* Premium quote icon styling */
.testimonial-card .quote-icon {
    font-size: 80px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
}

/* Premium FAQ hover */
.faq-item:hover { transform: translateX(4px); }
.faq-item { transition: all 0.3s; }


/* Process steps responsive */
@media (max-width: 1024px) {
    section[style*="padding: 100px 0"] > .container > div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 600px) {
    section[style*="padding: 100px 0"] > .container > div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    /* CTA banner mobile */
    section[style*="padding: 80px 0"] .container > div > div {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
}


/* ============================================
   PRICING & MOQ DISPLAY
============================================ */

/* Card pricing strip */
.product-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0 0 18px;
    padding: 12px;
    background: linear-gradient(135deg, var(--accent-light) 0%, #fff 100%);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
}
.product-pricing .pp-cell {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.product-pricing .pp-cell + .pp-cell {
    padding-left: 10px;
    border-left: 1px solid var(--gray-200);
}
.product-pricing .pp-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.product-pricing .pp-label i { color: var(--secondary); font-size: 11px; }
.product-pricing .pp-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-body);
    line-height: 1.2;
}
.product-pricing .pp-value small {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 500;
}

/* Detail page pricing block */
.detail-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0 30px;
}
.detail-pricing .dp-card {
    padding: 22px 24px;
    background: linear-gradient(135deg, var(--accent-light) 0%, #fff 100%);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary);
    transition: var(--transition);
}
.detail-pricing .dp-card.moq { border-left-color: var(--primary); }
.detail-pricing .dp-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}
.detail-pricing .dp-icon {
    width: 44px; height: 44px;
    background: var(--gradient-gold);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}
.detail-pricing .dp-card.moq .dp-icon {
    background: var(--gradient-primary);
    color: var(--secondary-light);
}
.detail-pricing .dp-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.detail-pricing .dp-value {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.1;
}
.detail-pricing .dp-value small {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
    font-family: var(--font-body);
}
.detail-pricing .dp-note {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 6px;
}

@media (max-width: 480px) {
    .product-pricing { grid-template-columns: 1fr; }
    .product-pricing .pp-cell + .pp-cell { padding-left: 0; padding-top: 8px; border-left: none; border-top: 1px solid var(--gray-200); }
    .detail-pricing { grid-template-columns: 1fr; }
}
