/* ============================================
   ABC Farms - Pure Wood Pressed Oils
   Palette: Warm Indigo, Amber Gold, Warm White, Sage
   Style: Clean, trustworthy, warm — not rustic
   ============================================ */

:root {
    --primary: #2d6b4f;
    --primary-light: #3d8a66;
    --primary-dark: #1a4030;
    --accent: #d4943a;
    --accent-light: #e8ad5a;
    --warm-white: #faf7f2;
    --warm-white-dark: #f0ebe3;
    --sage: #6b9a7a;
    --sage-light: #8fbf9a;
    --text: #2c2c2c;
    --text-light: #5a5a5a;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(45, 107, 79, 0.06);
    --shadow-lg: 0 12px 40px rgba(45, 107, 79, 0.1);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'DM Serif Display', serif;
    line-height: 1.3;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

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

.btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 148, 58, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

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

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

.btn-product {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-product:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-1px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
    display: inline-block;
    text-align: center;
}

.btn-whatsapp:hover {
    background: #1ebe5b;
    transform: translateY(-1px);
}

.btn-amazon {
    background: #FF9900;
    color: var(--white);
    border-color: #FF9900;
    display: inline-block;
    text-align: center;
}

.btn-amazon:hover {
    background: #e68a00;
    transform: translateY(-1px);
}

.btn-flipkart {
    background: #2874F0;
    color: var(--white);
    border-color: #2874F0;
    display: inline-block;
    text-align: center;
}

.btn-flipkart:hover {
    background: #1a5dc8;
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

.btn-nav {
    padding: 10px 22px;
    background: var(--accent);
    color: var(--white);
    border-radius: 8px;
}

.btn-nav:hover {
    background: var(--accent-light);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(45, 107, 79, 0.06);
    padding: 12px 0;
}

.navbar.scrolled .logo-text {
    color: var(--primary);
}

.navbar.scrolled .nav-links a:not(.btn) {
    color: var(--text);
}

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

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

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    transition: var(--transition);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--text);
}

/* ============================================
   Hero Section
   ============================================ */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

@keyframes floatOrbSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-25px, -30px) scale(1.08); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(25deg); }
    100% { transform: translateX(100%) rotate(25deg); }
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1a4030 0%, #2d6b4f 30%, #3d8a66 60%, #2d6b4f 80%, #1a4030 100%);
    background-size: 300% 300%;
    animation: gradientShift 12s ease infinite;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 148, 58, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -8%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 195, 157, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatOrbSlow 10s ease-in-out infinite;
}

.hero .hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(212, 148, 58, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 100px 100px;
    pointer-events: none;
}

.hero .hero-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero .hero-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        transparent 0%,
        rgba(255, 255, 255, 0.02) 45%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 55%,
        transparent 100%
    );
    animation: shimmer 6s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 110px 20px 60px;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 148, 58, 0.12);
    color: var(--accent-light);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 148, 58, 0.2);
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--accent-light);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Trust Bar
   ============================================ */
.trust-bar {
    background: var(--warm-white);
    padding: 32px 0;
    border-bottom: 1px solid var(--warm-white-dark);
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.trust-item .trust-icon {
    width: 32px;
    height: 32px;
    background: var(--sage);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* ============================================
   Sections (base)
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--primary);
    margin-bottom: 14px;
}

.section-desc {
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ============================================
   USP / Differentiator Section
   ============================================ */
.usp {
    background: var(--white);
}

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

.usp-content h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.usp-content p {
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.8;
}

.usp-highlight {
    background: var(--warm-white);
    border-left: 3px solid var(--accent);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
}

.usp-highlight p {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0;
}

.usp-visual {
    background: var(--warm-white);
    border-radius: var(--radius);
    height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--warm-white-dark);
}

.usp-visual .visual-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.usp-visual p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   Products Section
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(45, 107, 79, 0.04);
}

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

.product-card.hero-product {
    border: 2px solid var(--accent);
}

.product-image {
    background: var(--warm-white);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-emoji {
    font-size: 3.5rem;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 20px 24px 24px;
}

.product-info h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-info p {
    color: var(--text-light);
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--warm-white-dark);
}

.product-size {
    font-size: 0.8rem;
    color: var(--text-light);
}

.product-price {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.95rem;
}

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

/* ============================================
   Process Section
   ============================================ */
.process {
    background: linear-gradient(135deg, #1a4030 0%, #2d6b4f 40%, #3d8a66 70%, #2d6b4f 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 85%, rgba(212, 148, 58, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px, 70px 70px;
    pointer-events: none;
}

.process::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 148, 58, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatOrbSlow 12s ease-in-out infinite;
}

.process .container {
    position: relative;
    z-index: 2;
}

.process .section-tag {
    color: var(--accent-light);
}

.process .section-header h2 {
    color: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.process-step {
    text-align: center;
    padding: 24px 12px;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    margin: 0 auto 14px;
}

.process-step h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--accent-light);
}

.process-step p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

/* ============================================
   Benefits Section
   ============================================ */
.benefits {
    background: var(--warm-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 56px;
}

.benefit-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--warm-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.88rem;
}

/* Comparison Table */
.comparison-table {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
}

.comparison-table h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.3rem;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--warm-white-dark);
}

th {
    background: var(--warm-white);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

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

td.highlight {
    color: var(--primary);
    font-weight: 600;
}

/* ============================================
   Blog Preview Section
   ============================================ */
.blog-preview {
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.blog-card {
    background: var(--warm-white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--warm-white-dark);
}

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

.blog-card-image {
    height: 140px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-body .blog-tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.blog-card-body h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.blog-card-body p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--warm-white-dark);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 3.5rem;
    font-family: 'DM Serif Display', serif;
    color: rgba(212, 148, 58, 0.15);
    line-height: 1;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 14px;
}

.testimonial-card > p {
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 18px;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: var(--primary);
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   Contact / Buy Section
   ============================================ */
.contact {
    background: var(--warm-white);
}

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

.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.85rem;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--warm-white-dark);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: var(--warm-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(45, 107, 79, 0.06);
}

.buy-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.buy-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.buy-card h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.buy-card p {
    color: var(--text-light);
    margin-bottom: 14px;
    font-size: 0.88rem;
}

.buy-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.buy-buttons .btn {
    padding: 10px 20px;
    font-size: 0.82rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
}

.contact-icon {
    font-size: 1.3rem;
}

.contact-item strong {
    display: block;
    font-size: 0.82rem;
    color: var(--text);
}

.contact-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 64px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a,
.footer-links li {
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
}

/* ============================================
   Page Hero (for sub-pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #1a4030 0%, #2d6b4f 40%, #3d8a66 100%);
    background-size: 200% 200%;
    animation: gradientShift 12s ease infinite;
    padding: 130px 0 70px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 75%, rgba(212, 148, 58, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px, 70px 70px;
    pointer-events: none;
}

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

.page-hero h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

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

    .hero-stats {
        gap: 32px;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 14px;
        box-shadow: var(--shadow);
    }

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

    .nav-links a:not(.btn) {
        color: var(--text) !important;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

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

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

    .process-steps {
        grid-template-columns: 1fr;
        gap: 8px;
    }

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

    .comparison-table {
        padding: 20px;
        overflow-x: auto;
    }

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

    .section {
        padding: 60px 0;
    }

    .trust-items {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 12px 24px;
    }

    .contact-form {
        padding: 24px;
    }

    .buy-buttons {
        flex-direction: column;
    }
}
