/**
 * Heritage Harvests - Home Page Styles
 * Beautiful animated styles for organic products e-commerce
 */

/* ===== CSS Variables (inherited from header) ===== */
:root {
    --hh-primary: #2E7D32;
    --hh-primary-dark: #1B5E20;
    --hh-primary-light: #4CAF50;
    --hh-accent: #8BC34A;
    --hh-secondary: #33691E;
    --hh-white: #FFFFFF;
    --hh-cream: #F9FBF7;
    --hh-gray-light: #E8F5E9;
    --hh-gray: #607D5F;
    --hh-text: #1A1A1A;
    --hh-text-light: #5D6B5E;
    --hh-shadow-soft: 0 4px 20px rgba(46, 125, 50, 0.08);
    --hh-shadow-medium: 0 8px 32px rgba(46, 125, 50, 0.12);
    --hh-shadow-strong: 0 12px 48px rgba(46, 125, 50, 0.16);
    --hh-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --hh-transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --hh-transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Home Container ===== */
.hh-home {
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* ===== AOS Animation Styles ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

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

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

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

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

/* ===== HERO SECTION ===== */
.hh-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 5% 60px;
    background: linear-gradient(135deg, #F0F7F0 0%, #E8F5E9 50%, #F0FDF4 100%);
    overflow: hidden;
    gap: 60px;
}

.hh-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hh-hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Floating Leaves */
.hh-floating-leaves {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hh-floating-leaves .leaf {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 15s ease-in-out infinite;
}

.leaf-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
    font-size: 1.5rem;
}

.leaf-3 {
    top: 60%;
    left: 8%;
    animation-delay: 4s;
    font-size: 2.5rem;
}

.leaf-4 {
    bottom: 20%;
    right: 5%;
    animation-delay: 6s;
}

.leaf-5 {
    top: 40%;
    left: 20%;
    animation-delay: 8s;
    font-size: 1.8rem;
}

.leaf-6 {
    bottom: 30%;
    left: 15%;
    animation-delay: 10s;
    font-size: 1.2rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(5deg);
    }

    50% {
        transform: translateY(-10px) rotate(-3deg);
    }

    75% {
        transform: translateY(-25px) rotate(3deg);
    }
}

/* Hero Content */
.hh-hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.hh-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--hh-primary), var(--hh-primary-dark));
    color: var(--hh-white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hh-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--hh-text);
    line-height: 1.15;
    margin: 0 0 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hh-hero h1 span {
    background: linear-gradient(135deg, var(--hh-primary), var(--hh-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hh-hero p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--hh-text-light);
    margin: 0 0 35px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hh-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Buttons */
.hh-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--hh-transition-smooth);
    cursor: pointer;
    border: none;
}

.hh-btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--hh-transition-fast);
}

.hh-btn:hover svg {
    transform: translateX(4px);
}

.hh-btn-primary {
    background: linear-gradient(135deg, var(--hh-primary) 0%, var(--hh-primary-dark) 100%);
    color: var(--hh-white);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.hh-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.4);
}

.hh-btn-secondary {
    background: var(--hh-white);
    color: var(--hh-primary);
    border: 2px solid var(--hh-gray-light);
}

.hh-btn-secondary:hover {
    border-color: var(--hh-primary);
    background: var(--hh-gray-light);
}

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

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

.hh-btn-white {
    background: var(--hh-white);
    color: var(--hh-primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hh-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Hero Visual */
.hh-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 400px;
}

.hh-hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 680px;
}

.hh-hero-circle {
    position: absolute;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.hh-hero-circle-1 {
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(139, 195, 74, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hh-hero-circle-2 {
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-direction: reverse;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hh-hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hh-hero-banner-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--hh-shadow-strong);
    transition: transform var(--hh-transition-smooth);
}

.hh-hero-banner-img:hover {
    transform: scale(1.02);
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ===== FEATURES BAR ===== */
.hh-features-bar {
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 10;
    margin-top: -80px;
}

.hh-features-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--hh-white);
    border-radius: 20px;
    box-shadow: var(--hh-shadow-medium);
    overflow: hidden;
}

.hh-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px 25px;
    border-right: 1px solid var(--hh-gray-light);
    transition: var(--hh-transition-smooth);
}

.hh-feature:last-child {
    border-right: none;
}

.hh-feature:hover {
    background: var(--hh-gray-light);
}

.hh-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--hh-gray-light), var(--hh-cream));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hh-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--hh-primary);
}

.hh-feature-text {
    display: flex;
    flex-direction: column;
}

.hh-feature-text strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--hh-text);
    margin-bottom: 3px;
}

.hh-feature-text span {
    font-size: 13px;
    color: var(--hh-text-light);
}

/* ===== SECTION HEADERS ===== */
.hh-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.hh-section-badge {
    display: inline-block;
    background: var(--hh-gray-light);
    color: var(--hh-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hh-section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--hh-text);
    margin: 0 0 15px;
}

.hh-section-header p {
    font-size: 17px;
    color: var(--hh-text-light);
    max-width: 500px;
    margin: 0 auto;
}

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

.hh-section-header-light p {
    color: rgba(255, 255, 255, 0.8);
}

.hh-section-badge-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--hh-white);
}

/* ===== PRODUCTS SECTION ===== */
.hh-products-section {
    padding: 100px 30px;
    background: var(--hh-cream);
}

.hh-products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.hh-product-card {
    background: var(--hh-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--hh-shadow-soft);
    transition: var(--hh-transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.hh-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.hh-product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--hh-gray-light);
}

.hh-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--hh-transition-smooth);
}

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

.hh-product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hh-gray-light);
}

.hh-product-placeholder svg {
    width: 60px;
    height: 60px;
    color: var(--hh-gray);
}

.hh-product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--hh-primary), var(--hh-accent));
    color: var(--hh-white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hh-product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(46, 125, 50, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--hh-transition-smooth);
}

.hh-product-overlay span {
    color: var(--hh-white);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border: 2px solid var(--hh-white);
    border-radius: 50px;
    transform: translateY(10px);
    transition: var(--hh-transition-smooth);
}

.hh-product-card:hover .hh-product-overlay {
    opacity: 1;
}

.hh-product-card:hover .hh-product-overlay span {
    transform: translateY(0);
}

.hh-product-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hh-product-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--hh-text);
    margin: 0 0 8px;
}

.hh-product-desc {
    font-size: 14px;
    color: var(--hh-text-light);
    margin: 0 0 15px;
    line-height: 1.5;
    flex: 1;
}

.hh-product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--hh-primary);
}

.hh-product-price del {
    font-size: 14px;
    color: var(--hh-gray);
    font-weight: 400;
}

.hh-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background: var(--hh-gray-light);
    color: var(--hh-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--hh-transition-smooth);
}

.hh-add-to-cart svg {
    width: 18px;
    height: 18px;
}

.hh-add-to-cart:hover {
    background: var(--hh-primary);
    color: var(--hh-white);
}

.hh-add-to-cart.loading {
    pointer-events: none;
    opacity: 0.7;
}

.hh-add-to-cart.added {
    background: var(--hh-accent);
    color: var(--hh-white);
}

.hh-no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: var(--hh-text-light);
    font-size: 18px;
}

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

/* ===== ABOUT SECTION ===== */
.hh-about-section {
    padding: 100px 30px;
    background: var(--hh-white);
}

.hh-about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hh-about-visual {
    position: relative;
}

.hh-about-image-stack {
    position: relative;
    height: 450px;
}

.hh-about-image {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--hh-shadow-medium);
}

.hh-about-image-1 {
    width: 70%;
    height: 350px;
    top: 0;
    left: 0;
    z-index: 1;
}

.hh-about-image-2 {
    width: 60%;
    height: 280px;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.hh-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--hh-gray-light), var(--hh-cream));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hh-image-placeholder span {
    font-size: 4rem;
    opacity: 0.5;
}

.hh-about-badge {
    position: absolute;
    bottom: -30px;
    left: 85%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--hh-primary), var(--hh-primary-dark));
    color: var(--hh-white);
    padding: 25px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--hh-shadow-strong);
    z-index: 3;
}

.hh-about-years {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.hh-about-years-text {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.3;
}

.hh-about-content .hh-section-badge {
    margin-bottom: 15px;
}

.hh-about-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--hh-text);
    margin: 0 0 20px;
    line-height: 1.2;
}

.hh-about-lead {
    font-size: 17px;
    color: var(--hh-text-light);
    line-height: 1.7;
    margin: 0 0 30px;
}

.hh-about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.hh-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.hh-about-feature-icon {
    width: 28px;
    height: 28px;
    background: var(--hh-gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hh-about-feature-icon svg {
    width: 14px;
    height: 14px;
    color: var(--hh-primary);
}

.hh-about-feature div strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--hh-text);
    margin-bottom: 2px;
}

.hh-about-feature div span {
    font-size: 14px;
    color: var(--hh-text-light);
}

/* ===== CATEGORIES SECTION ===== */
.hh-categories-section {
    padding: 100px 30px;
    background: var(--hh-cream);
}

.hh-categories-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.hh-category-card {
    background: var(--hh-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    box-shadow: var(--hh-shadow-soft);
    transition: var(--hh-transition-smooth);
    position: relative;
    overflow: hidden;
}

.hh-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hh-primary), var(--hh-accent));
    transform: scaleX(0);
    transition: var(--hh-transition-smooth);
}

.hh-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hh-shadow-strong);
}

.hh-category-card:hover::before {
    transform: scaleX(1);
}

.hh-category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: var(--hh-primary);
}

.hh-category-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--hh-text);
    margin: 0 0 8px;
}

.hh-category-count {
    font-size: 14px;
    color: var(--hh-text-light);
    display: block;
    margin-bottom: 20px;
}

.hh-category-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--hh-gray-light);
    border-radius: 50%;
    transition: var(--hh-transition-smooth);
}

.hh-category-arrow i {
    font-size: 18px;
    color: var(--hh-primary);
    transition: var(--hh-transition-fast);
    line-height: 1;
}

.hh-category-card:hover .hh-category-arrow {
    background: var(--hh-primary);
}

.hh-category-card:hover .hh-category-arrow i {
    color: var(--hh-white);
    transform: translateX(3px);
}

/* ===== TESTIMONIALS SECTION ===== */
.hh-testimonials-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, var(--hh-primary-dark) 0%, var(--hh-primary) 100%);
    position: relative;
    overflow: hidden;
}

.hh-testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 5 Q35 15 30 25 Q25 15 30 5' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.hh-testimonials-slider {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
}

.hh-testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 35px;
    transition: var(--hh-transition-smooth);
}

.hh-testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.hh-testimonial-stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hh-testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 25px;
    font-style: italic;
}

.hh-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hh-testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--hh-accent), var(--hh-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hh-white);
    font-size: 18px;
    font-weight: 700;
}

.hh-testimonial-author strong {
    display: block;
    color: var(--hh-white);
    font-size: 15px;
    font-weight: 600;
}

.hh-testimonial-author span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== CTA SECTION ===== */
.hh-cta-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, var(--hh-accent) 0%, var(--hh-primary-light) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hh-cta-bg {
    position: absolute;
    inset: 0;
}

.hh-cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
}

.hh-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.hh-cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--hh-white);
    margin: 0 0 15px;
}

.hh-cta-content>p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 35px;
}

.hh-cta-actions {
    margin-bottom: 50px;
}

.hh-cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hh-cta-stat {
    text-align: center;
}

.hh-cta-stat strong {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--hh-white);
    line-height: 1;
    margin-bottom: 5px;
}

.hh-cta-stat span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .hh-hero {
        flex-direction: column;
        padding: 80px 20px 60px;
        min-height: auto;
    }

    .hh-hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hh-hero-actions {
        justify-content: center;
    }

    .hh-hero-visual {
        min-height: 300px;
    }

    .hh-features-inner {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 20px;
    }

    .hh-feature:nth-child(2) {
        border-right: none;
    }

    .hh-feature:nth-child(3),
    .hh-feature:nth-child(4) {
        border-top: 1px solid var(--hh-gray-light);
    }

    .hh-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hh-about-image-stack {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hh-features-inner {
        grid-template-columns: 1fr;
    }

    .hh-feature {
        border-right: none;
        border-bottom: 1px solid var(--hh-gray-light);
    }

    .hh-feature:last-child {
        border-bottom: none;
    }

    .hh-feature:nth-child(3),
    .hh-feature:nth-child(4) {
        border-top: none;
    }

    .hh-products-section,
    .hh-about-section,
    .hh-categories-section,
    .hh-testimonials-section,
    .hh-cta-section {
        padding: 60px 20px;
    }

    .hh-about-image-stack {
        height: 300px;
    }

    .hh-about-image-1 {
        width: 80%;
        height: 250px;
    }

    .hh-about-image-2 {
        width: 70%;
        height: 200px;
    }

    .hh-about-badge {
        left: 70%;
        bottom: 60px;
        padding: 20px 25px;
    }

    .hh-about-years {
        font-size: 28px;
    }

    .hh-cta-stats {
        gap: 30px;
    }

    .hh-cta-stat strong {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hh-hero h1 {
        font-size: 2rem;
    }

    .hh-hero p {
        font-size: 16px;
    }

    .hh-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .hh-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hh-hero-actions .hh-btn {
        width: 100%;
        justify-content: center;
    }

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

    .hh-testimonials-slider {
        grid-template-columns: 1fr;
    }
}