/* =============================================
   GREEN PENCIL - Main Stylesheet
   Inspired by SproutWorld.com design
   ============================================= */

/* === CSS Variables === */
:root {
    --primary: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --primary-lighter: #81C784;
    --primary-bg: #E8F5E9;
    --accent: #FF9800;
    --accent-dark: #F57C00;
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-light: #7a7a8a;
    --white: #ffffff;
    --off-white: #f8faf8;
    --border: #e0e8e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: auto;
}

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

ul {
    list-style: none;
}

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

/* === Cookie Banner === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
    z-index: 10000;
    padding: 24px;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content h3 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 1.1rem;
    width: 100%;
}

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-light);
    min-width: 200px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 3px 12px rgba(46,125,50,0.25);
}

.btn-cookie-accept:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46,125,50,0.35);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--text-body);
    border: 2px solid var(--border);
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.btn-cookie-settings:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
    transform: translateY(-2px);
}

/* === Top Bar === */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

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

.logo img {
    height: 38px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item a {
    display: block;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    color: var(--white);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.nav-item a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

.header.scrolled .nav-item a {
    color: var(--text-dark);
}

.header.scrolled .nav-item a:hover {
    color: var(--primary);
    background: var(--primary-bg);
}

.btn-contact-nav {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    color: var(--white) !important;
    padding: 7px 18px !important;
    border-radius: 50px !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 3px 10px rgba(46,125,50,0.25) !important;
    border: 1.5px solid var(--primary) !important;
}

.btn-contact-nav:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46,125,50,0.4) !important;
    border-color: var(--primary-light) !important;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--text-body);
}

.dropdown a:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-toggle,
.cart-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--white);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.header.scrolled .search-toggle {
    color: var(--text-dark);
}

.search-toggle:hover,
.cart-toggle:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.header.scrolled .search-toggle:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

.cart-toggle {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.header.scrolled .mobile-menu-toggle span {
    background: var(--text-dark);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Search Bar */
.search-bar {
    position: fixed;
    top: 8px;
    right: 20px;
    left: auto;
    z-index: 1100;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    padding: 6px 0;
    border-radius: 25px;
    width: 320px;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
}

.search-bar.active {
    transform: translateY(0);
}

.search-bar-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 6px 14px;
}

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

.search-bar-inner input {
    flex: 1;
    border: none;
    background: none;
    font-size: 0.82rem;
    font-family: var(--font-primary);
    outline: none;
    color: var(--text-dark);
    min-width: 0;
}

.search-bar-inner input::placeholder {
    color: #aaa;
}

.search-count {
    font-size: 0.7rem;
    color: var(--text-light);
    white-space: nowrap;
}

.search-bar-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 2px;
    transition: color 0.2s;
}

.search-bar-close:hover {
    color: var(--text-dark);
}

.search-match {
    background: rgba(46,125,50,0.15);
    outline: 2px solid var(--primary);
    border-radius: 6px;
    transition: outline 0.3s ease, background 0.3s ease;
}

.no-results-msg.visible {
    display: block;
}

.search-close {
    background: var(--text-light) !important;
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    margin-top: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero Background */
.hero-bg {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(30, 20, 10, 0.82) 0%, rgba(30, 20, 10, 0.55) 50%, transparent 100%);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero-text {
    max-width: 650px;
    color: var(--white);
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeIn 0.8s ease forwards 0.3s;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(76, 175, 80, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #A5D6A7;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-text h1 span {
    color: #66BB6A;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.75;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 520px;
    color: rgba(255,255,255,0.85);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.hero-buttons .btn-outline {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
}

.hero-buttons .btn-outline:hover {
    background: rgba(255,255,255,0.2);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 6px;
    height: 10px;
    background: rgba(255,255,255,0.6);
    border-radius: 3px;
    animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
    text-align: center;
    line-height: 1.4;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(46,125,50,0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46,125,50,0.45);
    border-color: var(--primary-light);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(46,125,50,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.25);
}

.btn-outline:active {
    transform: translateY(-1px);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.8rem;
    letter-spacing: 0.6px;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* === Trusted By === */
.trusted-by {
    padding: 30px 0;
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.trusted-marquee {
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.brand-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    opacity: 0.5;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === Section Headers === */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* === How It Works === */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

/* Step Row Layout */
.step-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.step-row:last-child {
    margin-bottom: 0;
}

.step-row.reverse {
    flex-direction: row-reverse;
}

.step-image {
    flex: 1;
    max-width: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.step-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.step-row:hover .step-image img {
    transform: scale(1.03);
}

.step-detail {
    flex: 1;
}

.step-number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.step-detail h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.step-detail > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
}

.step-features li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

/* === Products === */
.products {
    padding: 100px 0;
    background: var(--off-white);
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border);
}

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

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    letter-spacing: 0.5px;
}

.product-badge.new {
    background: var(--accent);
}

.product-image {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
    padding: 15px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 24px;
}

.product-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.product-footer .btn-small {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: 2px solid var(--primary);
    box-shadow: 0 3px 10px rgba(46,125,50,0.2);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.product-footer .btn-small:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46,125,50,0.35);
}

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

/* === Reviews === */
.reviews {
    padding: 100px 0;
    background: var(--primary-dark);
    color: var(--white);
}

.reviews .section-tag {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

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

.reviews .section-header h2 span {
    color: var(--primary-lighter);
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.review-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.review-stars {
    color: #FFC107;
    margin-bottom: 16px;
    font-size: 1rem;
    display: flex;
    gap: 4px;
}

.review-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.9;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.review-author strong {
    display: block;
    font-size: 0.95rem;
}

.review-author span {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* === Business Section === */
.business {
    padding: 100px 0;
    background: var(--white);
}

.business-hero {
    display: flex;
    align-items: center;
    gap: 80px;
}

.business-text {
    flex: 1;
}

.business-text h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.business-text h2 span {
    color: var(--primary);
}

.business-text > p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.business-features {
    margin-bottom: 36px;
}

.business-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-body);
}

.business-features li i {
    color: var(--primary);
    font-size: 1.1rem;
}

.business-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.business-img {
    max-width: 450px;
    max-height: 500px;
    width: auto;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    object-fit: contain;
    transition: transform 0.5s ease;
}

.business-img:hover {
    transform: scale(1.03);
}

/* === Process === */
.process {
    padding: 100px 0;
    background: var(--off-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.process-image {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
}

.process-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.process-step:hover .process-image img {
    transform: scale(1.08);
}

.process-info {
    padding: 24px 24px 24px 0;
}

.process-info h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.process-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.process-cta {
    text-align: center;
    margin-top: 50px;
}

/* === Impact Stats === */
.impact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.impact-stat {
    padding: 20px;
}

.impact-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.impact-label {
    font-size: 0.95rem;
    opacity: 0.85;
    font-weight: 500;
}

/* === Values === */
.values {
    padding: 100px 0;
    background: var(--white);
}

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

.value-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: var(--white);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* === Mentioned In === */
.mentioned {
    padding: 80px 0;
    background: var(--off-white);
}

.mentioned-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.mention-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.mention-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-lighter);
}

.mention-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* === Inspired === */
.inspired {
    padding: 100px 0;
    background: var(--white);
}

.inspired-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.inspired-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.inspired-image {
    height: 220px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #f8f8f8;
}

.inspired-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.inspired-card:hover .inspired-image img {
    transform: scale(1.08);
}

.inspired-overlay {
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    position: relative;
    z-index: 2;
}

.inspired-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.inspired-info {
    padding: 24px;
}

.inspired-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.inspired-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* === Newsletter === */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.newsletter-text p {
    opacity: 0.9;
    margin-bottom: 36px;
    font-size: 1rem;
}

.newsletter-form .form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.newsletter-form input,
.newsletter-form select {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus,
.newsletter-form select:focus {
    border-color: var(--white);
    background: rgba(255,255,255,0.15);
}

.newsletter-form select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.newsletter-form select option {
    color: var(--text-dark);
    background: var(--white);
}

.newsletter-form .btn {
    margin-top: 8px;
    background: var(--white);
    color: var(--primary-dark);
    font-weight: 700;
    border: 2px solid var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.newsletter-form .btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* === Contact === */
.contact {
    padding: 100px 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    grid-column: span 2;
    justify-self: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

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

.contact-social {
    display: flex;
    gap: 12px;
    padding-top: 12px;
}

.contact-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* === Footer === */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 30px 0 0;
}

.footer-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    gap: 20px;
}

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

.footer-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--white);
}

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

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 14px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* === Animations / AOS-like === */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.85);
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* === Responsive === */

/* Prevent scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 1024px) {
    /* Mobile Nav */
    .nav {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        transform: translateX(100%);
        transition: transform 0.35s ease;
        overflow-y: auto;
        z-index: 999;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 24px 20px;
        gap: 4px;
    }
    
    .nav-item a {
        padding: 14px 20px;
        width: 100%;
        font-size: 1rem;
        color: var(--text-dark) !important;
        border-radius: var(--radius-md);
    }

    .nav-item a:hover {
        background: var(--primary-bg);
        color: var(--primary) !important;
    }

    .btn-contact-nav {
        width: 100%;
        text-align: center;
        margin-top: 8px;
        color: var(--white) !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hamburger colors — white on transparent, dark on scrolled */
    .mobile-menu-toggle span {
        background: var(--white);
    }

    .header.scrolled .mobile-menu-toggle span {
        background: var(--text-dark);
    }
    
    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 20px;
        display: none;
        background: transparent;
    }
    
    .has-dropdown.open .dropdown {
        display: block;
    }
    
    .business-hero {
        flex-direction: column;
        gap: 50px;
    }
    
    .footer-compact {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .inspired-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mentioned-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Section padding reduction */
    .how-it-works,
    .products,
    .values,
    .contact {
        padding: 70px 0;
    }

    .reviews {
        padding: 70px 0;
    }

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

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    /* Hero compact on mobile */
    .hero {
        min-height: auto;
        padding: 80px 0 50px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 14px;
    }
    
    .hero-text p {
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
        margin-bottom: 14px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        padding: 11px 24px;
        font-size: 0.8rem;
    }
    
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(30, 20, 10, 0.82) 0%, rgba(30, 20, 10, 0.6) 60%, rgba(30, 20, 10, 0.45) 100%);
    }
    
    .step-row,
    .step-row.reverse {
        flex-direction: column;
        gap: 24px;
    }

    .step-row {
        margin-bottom: 50px;
    }

    .step-image {
        max-width: 100%;
    }

    .step-image img {
        height: 220px;
    }

    .step-detail h3 {
        font-size: 1.4rem;
    }

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

    .step-number-badge {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
        margin-bottom: 14px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .product-info {
        padding: 16px;
    }

    .product-info h3 {
        font-size: 1.05rem;
    }

    .product-info p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .product-image {
        height: 180px;
        padding: 10px;
    }
    
    .reviews-slider {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 24px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .contact-form .btn {
        grid-column: span 1;
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }
    
    .newsletter-form .form-row {
        flex-direction: column;
    }
    
    .footer-compact {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    
    .footer-nav {
        gap: 16px;
    }
    
    .inspired-grid {
        grid-template-columns: 1fr;
    }
    
    .mentioned-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .value-card {
        padding: 24px 16px;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .business-text h2 {
        font-size: 2.2rem;
    }
    
    .impact-number {
        font-size: 2.2rem;
    }

    .impact {
        padding: 50px 0;
    }

    /* Search bar responsive */
    .search-bar {
        width: calc(100vw - 32px);
        right: 16px;
        max-width: 320px;
    }

    /* How It Works & other sections */
    .how-it-works,
    .products,
    .values,
    .contact {
        padding: 60px 0;
    }

    .reviews {
        padding: 60px 0;
    }

    /* Buttons */
    .btn {
        padding: 12px 28px;
        font-size: 0.88rem;
    }

    .btn-large {
        padding: 14px 36px;
        font-size: 0.92rem;
    }

    /* Back to top smaller */
    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 16px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 0 40px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .hero-text p {
        font-size: 0.85rem;
        line-height: 1.55;
        margin-bottom: 18px;
    }

    .hero-badge {
        font-size: 0.68rem;
        padding: 4px 10px;
        margin-bottom: 12px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-image {
        height: 200px;
        padding: 15px;
    }

    .product-info {
        padding: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .hero-buttons .btn {
        text-align: center;
        padding: 10px 20px;
        font-size: 0.78rem;
    }
    
    .hero-overlay {
        background: rgba(30, 20, 10, 0.78);
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .mentioned-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-number {
        font-size: 1.8rem;
    }

    .impact-label {
        font-size: 0.82rem;
    }
    
    .logo img {
        height: 32px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .section-header {
        margin-bottom: 30px;
    }

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

    .step-image img {
        height: 180px;
    }

    .step-detail h3 {
        font-size: 1.25rem;
    }

    .step-features li {
        font-size: 0.85rem;
    }

    /* Contact */
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .contact-card {
        padding: 16px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    /* Footer */
    .footer {
        padding: 20px 0 0;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .footer-bottom {
        padding: 12px 0;
    }

    .footer-bottom p {
        font-size: 0.72rem;
    }

    /* Review cards */
    .review-card {
        padding: 20px;
    }

    .review-card p {
        font-size: 0.88rem;
    }

    /* How It Works & other sections */
    .how-it-works,
    .products,
    .values,
    .contact {
        padding: 50px 0;
    }

    .reviews {
        padding: 50px 0;
    }

    .impact {
        padding: 40px 0;
    }

    /* Search bar full width on small phones */
    .search-bar {
        width: calc(100vw - 24px);
        right: 12px;
    }

    /* Touch-friendly targets */
    .search-toggle {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .mobile-menu-toggle {
        width: 32px;
        height: 26px;
    }

    .header-actions {
        gap: 8px;
    }
}

/* === Smooth Loading === */
body.loaded {
    opacity: 1;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-lighter);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Selection color */
::selection {
    background: var(--primary);
    color: var(--white);
}
