/**
 * Hansen Harvest - Main CSS
 * Merged from GLOBAL-CSS.css and all SECTION-*.html style blocks
 *
 * @package Hansen_Harvest_Child
 */

/* ==========================================================
   CSS VARIABLES
   ========================================================== */

:root {
    --hh-charcoal: #121917;
    --hh-charcoal-light: #1a2420;
    --hh-gold: #EBA916;
    --hh-gold-light: #E8C854;
    --hh-aqua: #2B99C8;
    --hh-aqua-light: #4FB8E8;
    --hh-green: #3F762A;
    --hh-green-light: #5A9B42;
    --hh-olive: #9B7515;
    --hh-bg: #F7FAFC;
    --hh-bg-warm: #FAFAF8;
    --hh-text: #121917;
    --hh-muted: #5B6B7A;
    --hh-border: #E3EAF2;
    --hh-white: #FFFFFF;
    --hh-shadow-sm: 0 2px 8px rgba(18,25,23,0.06);
    --hh-shadow: 0 8px 30px rgba(18,25,23,0.08);
    --hh-shadow-lg: 0 20px 60px rgba(18,25,23,0.12);
    --hh-shadow-xl: 0 30px 80px rgba(18,25,23,0.16);
    --hh-shadow-glow: 0 0 40px rgba(43,153,200,0.15);
    --hh-shadow-glow-gold: 0 0 60px rgba(235,169,22,0.2);
    --hh-radius: 16px;
    --hh-radius-lg: 24px;
    --hh-radius-sm: 8px;
    --hh-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --hh-transition-fast: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --hh-transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --hh-header-height: 80px;
    --hh-section-padding: 140px;
    --hh-section-padding-mobile: 80px;
}

/* ==========================================================
   RESET & BASE
   ========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--hh-header-height);
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--hh-text);
    background: var(--hh-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.hh-menu-open {
    overflow: hidden;
}

/* ==========================================================
   SKIP LINK & ACCESSIBILITY
   ========================================================== */

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--hh-charcoal);
    color: var(--hh-white);
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    clip: auto !important;
    display: block;
    height: auto;
    width: auto;
}

/* ==========================================================
   TYPOGRAPHY
   ========================================================== */

.hh-section {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hh-section h1,
.hh-section h2,
.hh-section h3,
.hh-section h4,
.hh-section h5,
.hh-section h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--hh-charcoal);
    letter-spacing: -0.02em;
    margin: 0;
}

.hh-section p {
    color: var(--hh-muted);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin: 0;
}

a {
    color: var(--hh-aqua);
    text-decoration: none;
    transition: var(--hh-transition-fast);
}

a:hover {
    color: var(--hh-gold);
}

/* ==========================================================
   SCROLL ANIMATIONS
   ========================================================== */

.hh-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hh-animate.hh-visible {
    opacity: 1;
    transform: translateY(0);
}

.hh-animate-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hh-animate-left.hh-visible {
    opacity: 1;
    transform: translateX(0);
}

.hh-animate-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hh-animate-right.hh-visible {
    opacity: 1;
    transform: translateX(0);
}

.hh-animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hh-animate-scale.hh-visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.hh-delay-1 { transition-delay: 0.1s; }
.hh-delay-2 { transition-delay: 0.2s; }
.hh-delay-3 { transition-delay: 0.3s; }
.hh-delay-4 { transition-delay: 0.4s; }
.hh-delay-5 { transition-delay: 0.5s; }
.hh-delay-6 { transition-delay: 0.6s; }

/* ==========================================================
   BUTTONS
   ========================================================== */

.hh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    transition: var(--hh-transition);
    text-decoration: none;
}

.hh-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hh-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hh-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.hh-btn-primary {
    background: var(--hh-gold);
    color: var(--hh-charcoal);
    border-color: var(--hh-gold);
    box-shadow: 0 4px 20px rgba(235,169,22,0.35);
}

.hh-btn-primary:hover {
    background: var(--hh-gold-light);
    border-color: var(--hh-gold-light);
    color: var(--hh-charcoal);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(235,169,22,0.45);
}

.hh-btn-primary:active {
    transform: translateY(-2px);
}

.hh-btn-secondary {
    background: transparent;
    color: var(--hh-white);
    border-color: var(--hh-aqua);
}

.hh-btn-secondary:hover {
    background: var(--hh-aqua);
    color: var(--hh-white);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(43,153,200,0.35);
}

.hh-btn-outline {
    background: var(--hh-white);
    color: var(--hh-charcoal);
    border-color: var(--hh-charcoal);
}

.hh-btn-outline:hover {
    background: var(--hh-charcoal);
    color: var(--hh-white);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(18,25,23,0.25);
}

/* ==========================================================
   CARDS
   ========================================================== */

.hh-card {
    background: var(--hh-white);
    border-radius: var(--hh-radius);
    border: 1px solid var(--hh-border);
    box-shadow: var(--hh-shadow-sm);
    transition: var(--hh-transition);
    position: relative;
}

.hh-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--hh-radius);
    background: linear-gradient(135deg, rgba(43,153,200,0.3), rgba(63,118,42,0.3));
    opacity: 0;
    z-index: -1;
    transition: var(--hh-transition);
    filter: blur(20px);
}

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

.hh-card:hover::after {
    opacity: 1;
}

/* ==========================================================
   SECTION LABEL & CONTAINER
   ========================================================== */

.hh-section-label {
    display: inline-block;
    color: var(--hh-aqua);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

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

/* ==========================================================
   KEYFRAMES
   ========================================================== */

@keyframes hh-ripple-expand {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }
    40% {
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes hh-ripple-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

@keyframes hh-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes hh-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes hh-gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes hh-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hh-scale-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes hh-subtle-pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes hh-grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-1%, -1%); }
    20% { transform: translate(1%, 1%); }
    30% { transform: translate(-1%, 1%); }
    40% { transform: translate(1%, -1%); }
    50% { transform: translate(-1%, 0%); }
    60% { transform: translate(1%, 0%); }
    70% { transform: translate(0%, 1%); }
    80% { transform: translate(0%, -1%); }
    90% { transform: translate(1%, 1%); }
}

/* ==========================================================
   HEADER
   ========================================================== */

.hh-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--hh-header-height);
    background: rgba(18, 25, 23, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--hh-transition);
}

.hh-header.hh-header-scrolled {
    background: rgba(18, 25, 23, 0.98);
    box-shadow: var(--hh-shadow);
}

.hh-header.hh-header-hidden {
    transform: translateY(-100%);
}

.hh-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.hh-logo a,
.hh-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hh-white);
    text-decoration: none;
}

.hh-logo img {
    max-height: 50px;
    width: auto;
}

/* Navigation */
.hh-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hh-nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hh-nav-item {
    margin: 0;
}

.hh-nav-link {
    color: var(--hh-white);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.85;
    transition: var(--hh-transition-fast);
}

.hh-nav-link:hover,
.hh-nav-item.current-menu-item .hh-nav-link {
    opacity: 1;
    color: var(--hh-gold);
}

.hh-nav-cta {
    padding: 12px 24px;
}

/* Mobile Toggle */
.hh-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hh-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hh-hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--hh-white);
    transition: var(--hh-transition-fast);
}

.hh-mobile-toggle.hh-active .hh-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hh-mobile-toggle.hh-active .hh-hamburger-line:nth-child(2) {
    opacity: 0;
}

.hh-mobile-toggle.hh-active .hh-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================
   HERO SECTION
   ========================================================== */

.hh-hero {
    background: linear-gradient(145deg, var(--hh-charcoal) 0%, var(--hh-charcoal-light) 50%, var(--hh-charcoal) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
}

.hh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 120% 100% at 10% 90%, rgba(43,153,200,0.18) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 90% 10%, rgba(63,118,42,0.12) 0%, transparent 45%),
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(235,169,22,0.08) 0%, transparent 60%);
    animation: hh-gradient-shift 20s ease infinite;
    background-size: 200% 200%;
}

/* Subtle texture overlay for hero */
.hh-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
}

.hh-hero-ripples {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hh-hero-ripple {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(43,153,200,0.2);
    animation: hh-ripple-expand 10s ease-out infinite;
}

.hh-hero-ripple:nth-child(1) {
    width: 500px;
    height: 500px;
    top: 5%;
    right: -150px;
    animation-delay: 0s;
}

.hh-hero-ripple:nth-child(2) {
    width: 700px;
    height: 700px;
    top: 0;
    right: -200px;
    animation-delay: 2s;
}

.hh-hero-ripple:nth-child(3) {
    width: 400px;
    height: 400px;
    bottom: 15%;
    left: -100px;
    animation-delay: 4s;
}

.hh-hero-ripple:nth-child(4) {
    width: 600px;
    height: 600px;
    bottom: 5%;
    left: -150px;
    animation-delay: 1s;
}

.hh-hero-ripple:nth-child(5) {
    width: 300px;
    height: 300px;
    top: 35%;
    right: 15%;
    animation-delay: 3s;
    animation-duration: 8s;
}

.hh-hero-ripple:nth-child(6) {
    width: 250px;
    height: 250px;
    top: 60%;
    left: 30%;
    animation-delay: 5s;
    animation-duration: 12s;
}

.hh-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hh-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(63,118,42,0.2);
    border: 1px solid rgba(63,118,42,0.4);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
    animation: hh-float 6s ease-in-out infinite;
}

.hh-hero-badge-icon {
    width: 20px;
    height: 20px;
    fill: #6BBF59;
}

.hh-hero-badge span {
    color: #6BBF59;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hh-hero h1 {
    color: #FFFFFF;
    font-size: clamp(2.75rem, 5.5vw, 4rem);
    margin-bottom: 28px;
    line-height: 1.1;
}

.hh-hero h1 span {
    color: var(--hh-gold);
    position: relative;
}

.hh-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--hh-gold), transparent);
    border-radius: 2px;
}

.hh-hero-sub {
    color: rgba(255,255,255,0.85);
    font-size: 1.3125rem;
    margin-bottom: 44px;
    max-width: 680px;
    line-height: 1.8;
}

.hh-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 48px;
}

.hh-hero-links {
    display: flex;
    gap: 48px;
    margin-bottom: 64px;
}

.hh-hero-links a {
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--hh-transition);
    position: relative;
}

.hh-hero-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--hh-gold);
    transition: var(--hh-transition);
}

.hh-hero-links a:hover {
    color: var(--hh-gold);
}

.hh-hero-links a:hover::after {
    width: 100%;
}

.hh-hero-links svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.hh-hero-trust {
    display: flex;
    gap: 56px;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.hh-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hh-hero-trust-icon {
    width: 60px;
    height: 60px;
    background: rgba(43,153,200,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(43,153,200,0.25);
    transition: var(--hh-transition);
}

.hh-hero-trust-item:hover .hh-hero-trust-icon {
    background: rgba(43,153,200,0.25);
    transform: scale(1.1);
}

.hh-hero-trust-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--hh-aqua);
}

.hh-hero-trust-text {
    color: rgba(255,255,255,0.95);
    font-size: 1rem;
    font-weight: 600;
}

/* ==========================================================
   WHAT IS DASH SECTION
   ========================================================== */

.hh-dash {
    padding: var(--hh-section-padding) 0;
    background: var(--hh-white);
    position: relative;
    overflow: hidden;
}

/* Top gradient fade from hero */
.hh-dash::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(18,25,23,0.03) 0%, transparent 100%);
    pointer-events: none;
}

.hh-dash::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(43,153,200,0.08);
    animation: hh-ripple-pulse 12s ease-in-out infinite;
}

.hh-dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.hh-dash-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 28px;
}

.hh-dash-content > p {
    margin-bottom: 28px;
}

.hh-dash-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.hh-dash-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--hh-border);
    color: var(--hh-text);
    font-size: 1rem;
    line-height: 1.7;
    transition: var(--hh-transition);
}

.hh-dash-benefits li:hover {
    padding-left: 12px;
    background: linear-gradient(90deg, rgba(43,153,200,0.05), transparent);
}

.hh-dash-benefits li:last-child {
    border-bottom: none;
}

.hh-dash-benefits li svg {
    width: 24px;
    height: 24px;
    fill: var(--hh-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.hh-dash-benefits li strong {
    color: var(--hh-charcoal);
}

.hh-dash-image {
    background: linear-gradient(145deg, var(--hh-charcoal) 0%, #1a2420 100%);
    border-radius: 20px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    gap: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.hh-dash-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(43,153,200,0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(63,118,42,0.12) 0%, transparent 40%);
}

.hh-dash-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(43,153,200,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: hh-ripple-pulse 4s ease-in-out infinite;
}

.hh-dash-image svg {
    width: 80px;
    height: 80px;
    fill: currentColor;
    position: relative;
    z-index: 1;
}

.hh-dash-image span {
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.hh-dash-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(transparent, rgba(18,25,23,0.98));
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
}

/* Timeline */
.hh-dash-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 80px;
    padding-top: 40px;
}

.hh-dash-timeline::before {
    content: '';
    position: absolute;
    top: 64px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, var(--hh-green), var(--hh-aqua), var(--hh-gold));
    border-radius: 2px;
}

.hh-dash-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.hh-dash-step-num {
    width: 56px;
    height: 56px;
    background: var(--hh-aqua);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 auto 24px;
    box-shadow: 0 6px 24px rgba(43,153,200,0.4);
    transition: var(--hh-transition);
}

.hh-dash-step:hover .hh-dash-step-num {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(43,153,200,0.5);
}

.hh-dash-step h4 {
    color: var(--hh-charcoal);
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.hh-dash-step p {
    font-size: 0.9375rem;
    max-width: 200px;
    margin: 0 auto;
}

/* ==========================================================
   HOW IT WORKS / PROCESS SECTION
   ========================================================== */

.hh-process {
    padding: var(--hh-section-padding) 0;
    background: linear-gradient(180deg, var(--hh-bg) 0%, var(--hh-bg-warm) 50%, var(--hh-bg) 100%);
    position: relative;
}

/* Subtle wave pattern */
.hh-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, var(--hh-white) 0%, transparent 100%);
    pointer-events: none;
}

.hh-process::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(0deg, var(--hh-white) 0%, transparent 100%);
    pointer-events: none;
}

.hh-process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 72px;
}

.hh-process-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 20px;
}

.hh-process-header p {
    font-size: 1.125rem;
}

.hh-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.hh-process-card {
    background: var(--hh-white);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(18,25,23,0.06);
    border: 1px solid var(--hh-border);
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hh-process-card::before {
    content: attr(data-step);
    position: absolute;
    top: -16px;
    left: 32px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--hh-gold), var(--hh-gold-light));
    color: var(--hh-charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(235,169,22,0.4);
    transition: var(--hh-transition);
}

.hh-process-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(43,153,200,0.5), rgba(63,118,42,0.5));
    opacity: 0;
    z-index: -1;
    transition: var(--hh-transition);
    filter: blur(15px);
}

.hh-process-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(18,25,23,0.12);
}

.hh-process-card:hover::before {
    transform: scale(1.15) rotate(10deg);
}

.hh-process-card:hover::after {
    opacity: 1;
}

.hh-process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, rgba(43,153,200,0.1), rgba(63,118,42,0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: var(--hh-transition);
}

.hh-process-card:hover .hh-process-icon {
    background: linear-gradient(145deg, rgba(43,153,200,0.2), rgba(63,118,42,0.2));
    transform: scale(1.1);
}

.hh-process-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--hh-aqua);
    transition: var(--hh-transition);
}

.hh-process-card:hover .hh-process-icon svg {
    fill: var(--hh-green);
}

.hh-process-card h3 {
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.hh-process-card p {
    font-size: 0.9375rem;
}

/* ==========================================================
   SERVICES SECTION
   ========================================================== */

.hh-services {
    padding: var(--hh-section-padding) 0;
    background: var(--hh-white);
    position: relative;
    overflow: hidden;
}

/* Decorative background circles */
.hh-services::before {
    content: '';
    position: absolute;
    bottom: -300px;
    left: -300px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43,153,200,0.04) 0%, transparent 70%);
    animation: hh-ripple-pulse 15s ease-in-out infinite;
}

.hh-services::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(63,118,42,0.03) 0%, transparent 70%);
    animation: hh-ripple-pulse 18s ease-in-out infinite;
    animation-delay: 3s;
}

.hh-services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 72px;
}

.hh-services-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 20px;
}

.hh-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.hh-service-card {
    background: var(--hh-white);
    border-radius: 24px;
    padding: 60px 52px;
    box-shadow: 0 8px 40px rgba(18,25,23,0.08);
    border: 1px solid var(--hh-border);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hh-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    transition: height 0.5s ease;
}

.hh-service-card.hh-residential::before {
    background: linear-gradient(90deg, var(--hh-aqua), var(--hh-green));
}

.hh-service-card.hh-commercial::before {
    background: linear-gradient(90deg, var(--hh-gold), var(--hh-olive));
}

.hh-service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(43,153,200,0.03), rgba(63,118,42,0.03));
    opacity: 0;
    transition: var(--hh-transition);
}

.hh-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(18,25,23,0.15);
}

.hh-service-card:hover::before {
    height: 8px;
}

.hh-service-card:hover::after {
    opacity: 1;
}

.hh-service-badge {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.hh-residential .hh-service-badge {
    background: rgba(43,153,200,0.12);
    color: var(--hh-aqua);
}

.hh-commercial .hh-service-badge {
    background: rgba(235,169,22,0.15);
    color: var(--hh-olive);
}

.hh-service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hh-service-card > p {
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.hh-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    position: relative;
    z-index: 1;
}

.hh-service-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--hh-border);
    color: var(--hh-text);
    font-size: 1rem;
    transition: var(--hh-transition-fast);
}

.hh-service-list li:hover {
    padding-left: 8px;
}

.hh-service-list li:last-child {
    border-bottom: none;
}

.hh-service-list li svg {
    width: 24px;
    height: 24px;
    fill: var(--hh-green);
    flex-shrink: 0;
    margin-top: 1px;
}

.hh-service-card .hh-btn {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* ==========================================================
   RESULTS / GALLERY SECTION
   ========================================================== */

.hh-results {
    padding: var(--hh-section-padding) 0;
    background: linear-gradient(180deg, var(--hh-bg) 0%, #F0F5F8 50%, var(--hh-bg) 100%);
    position: relative;
}

/* Subtle mesh gradient background */
.hh-results::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(43,153,200,0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(63,118,42,0.04) 0%, transparent 40%);
    pointer-events: none;
}

.hh-results-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 72px;
}

.hh-results-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 20px;
}

.hh-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 64px;
}

.hh-gallery-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.hh-gallery-item {
    background: linear-gradient(145deg, var(--hh-charcoal), #1a2420);
    border-radius: 20px;
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hh-gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(43,153,200,0.1), rgba(63,118,42,0.1));
    opacity: 0;
    transition: var(--hh-transition);
}

.hh-gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(18,25,23,0.3);
}

.hh-gallery-item:hover::before {
    opacity: 1;
}

.hh-gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.25);
    gap: 16px;
}

.hh-gallery-placeholder svg {
    width: 56px;
    height: 56px;
    fill: currentColor;
    transition: var(--hh-transition);
}

.hh-gallery-item:hover .hh-gallery-placeholder svg {
    transform: scale(1.2);
}

.hh-gallery-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 10px 18px;
    background: rgba(18,25,23,0.92);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    transition: var(--hh-transition);
}

.hh-gallery-label.hh-after {
    background: rgba(63,118,42,0.92);
}

.hh-gallery-item:hover .hh-gallery-label {
    transform: translateY(-4px);
}

/* Callout boxes */
.hh-callout-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.hh-callout-box {
    background: var(--hh-white);
    border-radius: 20px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    gap: 28px;
    box-shadow: 0 8px 30px rgba(18,25,23,0.06);
    border-left: 6px solid var(--hh-aqua);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hh-callout-box:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 45px rgba(18,25,23,0.1);
}

.hh-callout-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(43,153,200,0.12), rgba(43,153,200,0.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--hh-transition);
}

.hh-callout-box:hover .hh-callout-icon {
    background: linear-gradient(135deg, rgba(43,153,200,0.2), rgba(43,153,200,0.1));
    transform: scale(1.1);
}

.hh-callout-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--hh-aqua);
}

.hh-callout-box h4 {
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.hh-callout-box p {
    font-size: 0.9375rem;
    margin: 0;
}

/* ==========================================================
   PERMITTING SECTION
   ========================================================== */

.hh-permitting {
    padding: var(--hh-section-padding) 0;
    background: linear-gradient(135deg, var(--hh-white) 0%, var(--hh-bg-warm) 100%);
    position: relative;
    overflow: hidden;
}

.hh-permitting::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43,153,200,0.05) 0%, transparent 60%);
    transform: translateY(-50%);
    animation: hh-ripple-pulse 15s ease-in-out infinite;
}

.hh-permitting::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(63,118,42,0.04) 0%, transparent 60%);
    animation: hh-ripple-pulse 18s ease-in-out infinite;
    animation-delay: 2s;
}

.hh-permit-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 100px;
    align-items: start;
}

.hh-permit-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 28px;
}

.hh-permit-content > p {
    margin-bottom: 28px;
}

.hh-permit-quote {
    background: linear-gradient(135deg, rgba(43,153,200,0.08), rgba(43,153,200,0.03));
    border-left: 6px solid var(--hh-aqua);
    padding: 28px 32px;
    margin: 36px 0;
    border-radius: 0 16px 16px 0;
    position: relative;
    overflow: hidden;
}

.hh-permit-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(43,153,200,0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.hh-permit-quote p {
    color: var(--hh-text);
    font-style: italic;
    margin: 0;
    font-size: 1.0625rem;
    position: relative;
    z-index: 1;
}

.hh-permit-list {
    list-style: none;
    padding: 0;
    margin: 36px 0;
}

.hh-permit-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    color: var(--hh-text);
    font-size: 1rem;
    transition: var(--hh-transition-fast);
}

.hh-permit-list li:hover {
    padding-left: 12px;
    background: linear-gradient(90deg, rgba(63,118,42,0.05), transparent);
}

.hh-permit-list li svg {
    width: 24px;
    height: 24px;
    fill: var(--hh-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.hh-permit-disclaimer {
    font-size: 0.9375rem;
    color: var(--hh-muted);
    padding: 24px 28px;
    background: rgba(91,107,122,0.06);
    border-radius: 12px;
    margin-top: 32px;
    border: 1px solid var(--hh-border);
}

/* Permit card */
.hh-permit-card {
    background: var(--hh-white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 12px 50px rgba(18,25,23,0.1);
    border: 1px solid var(--hh-border);
    position: relative;
    overflow: hidden;
}

.hh-permit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--hh-aqua), var(--hh-green));
}

.hh-permit-card h3 {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.375rem;
}

.hh-permit-card h3 svg {
    width: 32px;
    height: 32px;
    fill: var(--hh-aqua);
}

.hh-permit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hh-permit-card li {
    padding: 16px 0;
    border-bottom: 1px solid var(--hh-border);
    color: var(--hh-muted);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9375rem;
    transition: var(--hh-transition-fast);
}

.hh-permit-card li:hover {
    padding-left: 8px;
    color: var(--hh-text);
}

.hh-permit-card li:last-child {
    border-bottom: none;
}

.hh-permit-card li::before {
    content: '';
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--hh-aqua), var(--hh-green));
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--hh-transition);
}

.hh-permit-card li:hover::before {
    transform: scale(1.3);
}

/* ==========================================================
   SAFETY SECTION
   ========================================================== */

.hh-safety {
    padding: var(--hh-section-padding) 0;
    background: linear-gradient(165deg, var(--hh-charcoal) 0%, var(--hh-charcoal-light) 40%, var(--hh-charcoal) 100%);
    position: relative;
    overflow: hidden;
}

.hh-safety::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 80% at 20% 80%, rgba(43,153,200,0.15) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 80% 20%, rgba(235,169,22,0.1) 0%, transparent 45%),
        radial-gradient(ellipse 60% 40% at 50% 60%, rgba(63,118,42,0.08) 0%, transparent 50%);
}

/* Subtle texture overlay */
.hh-safety > .hh-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
}

.hh-safety-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 72px;
    position: relative;
    z-index: 1;
}

.hh-safety-header .hh-section-label {
    color: var(--hh-gold);
}

.hh-safety-header h2 {
    color: #FFFFFF;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 20px;
}

.hh-safety-header p {
    color: rgba(255,255,255,0.75);
    font-size: 1.125rem;
}

.hh-safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    position: relative;
    z-index: 1;
}

.hh-safety-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 52px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hh-safety-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hh-gold), var(--hh-aqua));
    opacity: 0;
    transition: var(--hh-transition);
}

.hh-safety-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(235,169,22,0.05), rgba(43,153,200,0.05));
    opacity: 0;
    transition: var(--hh-transition);
}

.hh-safety-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.hh-safety-card:hover::before {
    opacity: 1;
}

.hh-safety-card:hover::after {
    opacity: 1;
}

.hh-safety-card h3 {
    color: #FFFFFF;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.375rem;
    position: relative;
    z-index: 1;
}

.hh-safety-card h3 svg {
    width: 32px;
    height: 32px;
    fill: var(--hh-gold);
    transition: var(--hh-transition);
}

.hh-safety-card:hover h3 svg {
    transform: scale(1.15) rotate(5deg);
}

.hh-safety-card > p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.hh-safety-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.hh-safety-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    color: rgba(255,255,255,0.9);
    font-size: 0.9375rem;
    transition: var(--hh-transition-fast);
}

.hh-safety-list li:hover {
    padding-left: 8px;
    color: #FFFFFF;
}

.hh-safety-list li svg {
    width: 22px;
    height: 22px;
    fill: var(--hh-green);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Floating ripple decorations */
.hh-safety-ripple {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(43,153,200,0.15);
    animation: hh-ripple-pulse 8s ease-in-out infinite;
}

.hh-safety-ripple:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -100px;
}

.hh-safety-ripple:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: -150px;
    animation-delay: 2s;
}

/* ==========================================================
   FAQ SECTION
   ========================================================== */

.hh-faq {
    padding: var(--hh-section-padding) 0;
    background: linear-gradient(180deg, var(--hh-bg) 0%, var(--hh-white) 100%);
    position: relative;
}

/* Decorative mesh gradient */
.hh-faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(43,153,200,0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 80%, rgba(235,169,22,0.03) 0%, transparent 40%);
    pointer-events: none;
}

.hh-faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 72px;
}

.hh-faq-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 20px;
}

.hh-faq-list {
    max-width: 880px;
    margin: 0 auto;
}

.hh-faq-item {
    background: var(--hh-white);
    border-radius: 16px;
    margin-bottom: 18px;
    box-shadow: 0 4px 20px rgba(18,25,23,0.04);
    border: 1px solid var(--hh-border);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hh-faq-item:hover {
    box-shadow: 0 8px 30px rgba(18,25,23,0.08);
    border-color: rgba(43,153,200,0.3);
}

.hh-faq-item.hh-faq-active {
    box-shadow: 0 12px 40px rgba(18,25,23,0.1);
    border-color: var(--hh-aqua);
}

.hh-faq-question {
    width: 100%;
    padding: 28px 36px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--hh-charcoal);
    font-family: inherit;
    transition: all 0.3s ease;
}

.hh-faq-question:hover {
    background: rgba(43,153,200,0.03);
}

.hh-faq-item.hh-faq-active .hh-faq-question {
    background: rgba(43,153,200,0.05);
}

.hh-faq-icon {
    width: 40px;
    height: 40px;
    background: rgba(43,153,200,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hh-faq-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--hh-aqua);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hh-faq-item.hh-faq-active .hh-faq-icon {
    background: var(--hh-aqua);
    transform: rotate(180deg);
}

.hh-faq-item.hh-faq-active .hh-faq-icon svg {
    fill: #FFFFFF;
}

.hh-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hh-faq-answer-inner {
    padding: 0 36px 32px;
    color: var(--hh-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.hh-faq-answer-inner p {
    margin: 0;
}

/* ==========================================================
   ABOUT SECTION
   ========================================================== */

.hh-about {
    padding: var(--hh-section-padding) 0;
    background: linear-gradient(180deg, var(--hh-white) 0%, var(--hh-bg-warm) 100%);
    position: relative;
    overflow: hidden;
}

.hh-about::before {
    content: '';
    position: absolute;
    top: 100px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43,153,200,0.05) 0%, transparent 60%);
    animation: hh-ripple-pulse 18s ease-in-out infinite;
}

.hh-about::after {
    content: '';
    position: absolute;
    bottom: 50px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(235,169,22,0.04) 0%, transparent 60%);
    animation: hh-ripple-pulse 20s ease-in-out infinite;
    animation-delay: 4s;
}

.hh-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

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

.hh-about-image-main {
    background: linear-gradient(145deg, var(--hh-charcoal), #1a2420);
    border-radius: 24px;
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(18,25,23,0.2);
}

.hh-about-image-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(43,153,200,0.1), rgba(63,118,42,0.1));
}

.hh-about-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    gap: 16px;
}

.hh-about-placeholder svg {
    width: 80px;
    height: 80px;
    fill: currentColor;
}

.hh-about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--hh-gold), var(--hh-gold-light));
    color: var(--hh-charcoal);
    padding: 28px 36px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(235,169,22,0.4);
    z-index: 2;
}

.hh-about-badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.hh-about-badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.hh-about-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 28px;
}

.hh-about-content > p {
    margin-bottom: 24px;
    font-size: 1.0625rem;
}

.hh-about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.hh-value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--hh-bg);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hh-value-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(18,25,23,0.08);
}

.hh-value-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(43,153,200,0.15), rgba(43,153,200,0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--hh-transition);
}

.hh-value-item:hover .hh-value-icon {
    background: linear-gradient(135deg, var(--hh-aqua), var(--hh-green));
}

.hh-value-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--hh-aqua);
    transition: var(--hh-transition);
}

.hh-value-item:hover .hh-value-icon svg {
    fill: #FFFFFF;
}

.hh-value-item h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.hh-value-item p {
    font-size: 0.875rem;
    margin: 0;
}

/* Certifications */
.hh-certifications {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--hh-border);
}

.hh-certifications h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--hh-muted);
    margin-bottom: 20px;
}

.hh-cert-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hh-cert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--hh-white);
    border: 1px solid var(--hh-border);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--hh-text);
    transition: var(--hh-transition-fast);
}

.hh-cert-item:hover {
    border-color: var(--hh-aqua);
    background: rgba(43,153,200,0.05);
}

.hh-cert-item svg {
    width: 20px;
    height: 20px;
    fill: var(--hh-green);
}

/* ==========================================================
   CONTACT SECTION
   ========================================================== */

.hh-contact {
    padding: var(--hh-section-padding) 0;
    background: linear-gradient(180deg, var(--hh-bg-warm) 0%, var(--hh-white) 50%, var(--hh-bg) 100%);
    position: relative;
}

.hh-contact::before {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(63,118,42,0.05) 0%, transparent 60%);
    animation: hh-ripple-pulse 16s ease-in-out infinite;
}

.hh-contact::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43,153,200,0.04) 0%, transparent 60%);
    animation: hh-ripple-pulse 18s ease-in-out infinite;
    animation-delay: 3s;
}

.hh-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.hh-contact-info h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 24px;
}

.hh-contact-info > p {
    margin-bottom: 40px;
    font-size: 1.0625rem;
}

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

.hh-contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: var(--hh-white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(18,25,23,0.06);
    border: 1px solid var(--hh-border);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    color: inherit;
}

.hh-contact-method:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 35px rgba(18,25,23,0.1);
    border-color: var(--hh-aqua);
}

.hh-contact-method-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(43,153,200,0.12), rgba(43,153,200,0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--hh-transition);
}

.hh-contact-method:hover .hh-contact-method-icon {
    background: linear-gradient(135deg, var(--hh-aqua), var(--hh-green));
}

.hh-contact-method-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--hh-aqua);
    transition: var(--hh-transition);
}

.hh-contact-method:hover .hh-contact-method-icon svg {
    fill: #FFFFFF;
}

.hh-contact-method-text h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--hh-muted);
    margin-bottom: 4px;
    font-weight: 600;
}

.hh-contact-method-text span {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--hh-text);
}

/* Service area */
.hh-service-area {
    margin-top: 48px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(63,118,42,0.08), rgba(63,118,42,0.03));
    border-radius: 16px;
    border-left: 5px solid var(--hh-green);
}

.hh-service-area h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
}

.hh-service-area h4 svg {
    width: 24px;
    height: 24px;
    fill: var(--hh-green);
}

.hh-service-area p {
    margin: 0;
    font-size: 0.9375rem;
}

/* Form styles */
.hh-contact-form-wrapper {
    background: var(--hh-white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 12px 50px rgba(18,25,23,0.1);
    border: 1px solid var(--hh-border);
    position: relative;
    overflow: hidden;
}

.hh-contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--hh-aqua), var(--hh-green));
}

.hh-form-header {
    margin-bottom: 32px;
}

.hh-form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.hh-form-header p {
    font-size: 0.9375rem;
    margin: 0;
}

.hh-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.hh-form-group {
    margin-bottom: 20px;
}

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

.hh-form-group label .hh-required {
    color: var(--hh-gold);
}

.hh-form-group input,
.hh-form-group select,
.hh-form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--hh-border);
    border-radius: 12px;
    background: var(--hh-bg);
    color: var(--hh-text);
    transition: all 0.3s ease;
}

.hh-form-group input:focus,
.hh-form-group select:focus,
.hh-form-group textarea:focus {
    outline: none;
    border-color: var(--hh-aqua);
    background: var(--hh-white);
    box-shadow: 0 0 0 4px rgba(43,153,200,0.1);
}

.hh-form-group input::placeholder,
.hh-form-group textarea::placeholder {
    color: var(--hh-muted);
    opacity: 0.7;
}

.hh-form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.hh-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%235B6B7A'%3E%3Cpath d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.hh-form-submit {
    margin-top: 8px;
}

.hh-form-submit .hh-btn {
    width: 100%;
    padding: 18px 36px;
    font-size: 1.0625rem;
}

.hh-form-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8125rem;
    color: var(--hh-muted);
}

.hh-form-note svg {
    width: 16px;
    height: 16px;
    fill: var(--hh-green);
    vertical-align: middle;
    margin-right: 6px;
}

/* ==========================================================
   FOOTER
   ========================================================== */

.hh-footer {
    background: var(--hh-charcoal);
    padding: 60px 0 30px;
}

.hh-footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hh-footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hh-white);
}

.hh-footer-tagline {
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
    font-size: 0.9375rem;
}

.hh-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hh-footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
}

.hh-footer-links a:hover {
    color: var(--hh-gold);
}

.hh-footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hh-footer-nav-list li {
    margin-bottom: 12px;
}

.hh-footer-nav-list a {
    color: rgba(255,255,255,0.7);
}

.hh-footer-nav-list a:hover {
    color: var(--hh-gold);
}

.hh-footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.hh-footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    margin: 0;
}

/* ==========================================================
   PAGE TEMPLATE
   ========================================================== */

.hh-page {
    padding: calc(var(--hh-header-height) + 60px) 0 100px;
    min-height: 60vh;
}

.hh-page-header {
    margin-bottom: 40px;
}

.hh-page-title {
    font-size: clamp(2rem, 4vw, 3rem);
}

.hh-page-content {
    max-width: 800px;
}

.hh-page-content p {
    margin-bottom: 1.5rem;
}

/* ==========================================================
   404 PAGE
   ========================================================== */

.hh-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--hh-header-height);
}

.hh-404-content h1 {
    font-size: 8rem;
    color: var(--hh-gold);
    margin-bottom: 0;
    line-height: 1;
}

.hh-404-content h2 {
    margin-bottom: 16px;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1024px) {
    .hh-container {
        padding: 0 20px;
    }

    .hh-dash-grid,
    .hh-about-grid,
    .hh-contact-grid,
    .hh-permit-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .hh-services-grid,
    .hh-safety-grid,
    .hh-gallery-grid,
    .hh-callout-row {
        grid-template-columns: 1fr;
    }

    .hh-about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --hh-header-height: 70px;
        --hh-section-padding: var(--hh-section-padding-mobile);
    }

    .hh-section,
    .hh-dash,
    .hh-process,
    .hh-services,
    .hh-results,
    .hh-permitting,
    .hh-safety,
    .hh-faq,
    .hh-about,
    .hh-contact {
        padding: var(--hh-section-padding-mobile) 0;
    }

    .hh-hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hh-mobile-toggle {
        display: block;
    }

    .hh-nav {
        position: fixed;
        top: var(--hh-header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--hh-charcoal);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 24px;
        gap: 20px;
        transform: translateX(100%);
        transition: var(--hh-transition);
    }

    .hh-nav.hh-active {
        transform: translateX(0);
    }

    .hh-nav-list {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .hh-nav-link {
        font-size: 1.25rem;
    }

    .hh-nav-cta {
        width: 100%;
        text-align: center;
    }

    .hh-hero-trust {
        flex-direction: column;
        gap: 24px;
    }

    .hh-hero-links {
        flex-direction: column;
        gap: 20px;
    }

    .hh-hero-buttons {
        flex-direction: column;
    }

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

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

    .hh-dash-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .hh-dash-timeline::before {
        display: none;
    }

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

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

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

    .hh-about-badge {
        bottom: -20px;
        right: 20px;
        padding: 20px 28px;
    }

    .hh-about-badge-number {
        font-size: 2rem;
    }

    .hh-service-card,
    .hh-safety-card,
    .hh-permit-card,
    .hh-contact-form-wrapper {
        padding: 36px 28px;
    }

    .hh-faq-question {
        padding: 24px;
        font-size: 1rem;
    }

    .hh-faq-answer-inner {
        padding: 0 24px 24px;
    }

    .hh-callout-box {
        flex-direction: column;
        text-align: center;
    }

    .hh-btn {
        padding: 14px 28px;
        font-size: 0.875rem;
    }

    .hh-animate,
    .hh-animate-left,
    .hh-animate-right {
        transform: translateY(30px) !important;
    }

    .hh-animate.hh-visible,
    .hh-animate-left.hh-visible,
    .hh-animate-right.hh-visible {
        transform: translateY(0) !important;
    }

    .hh-404-content h1 {
        font-size: 5rem;
    }
}

/* ==========================================================
   ENHANCED MICRO-INTERACTIONS
   ========================================================== */

/* Subtle focus states for accessibility */
.hh-btn:focus-visible,
.hh-nav-link:focus-visible,
.hh-faq-question:focus-visible {
    outline: 2px solid var(--hh-aqua);
    outline-offset: 4px;
}

/* Enhanced card lift effect */
.hh-process-card,
.hh-service-card,
.hh-safety-card,
.hh-value-item,
.hh-callout-box {
    will-change: transform;
}

/* Smooth link underlines */
.hh-about-content a,
.hh-permit-content a,
.hh-faq-answer-inner a {
    position: relative;
    color: var(--hh-aqua);
}

.hh-about-content a::after,
.hh-permit-content a::after,
.hh-faq-answer-inner a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--hh-gold);
    transition: width 0.3s ease;
}

.hh-about-content a:hover::after,
.hh-permit-content a:hover::after,
.hh-faq-answer-inner a:hover::after {
    width: 100%;
}

/* Enhanced badge shimmer */
.hh-about-badge {
    background: linear-gradient(135deg, var(--hh-gold) 0%, var(--hh-gold-light) 50%, var(--hh-gold) 100%);
    background-size: 200% 100%;
    animation: hh-shimmer 8s ease infinite;
}

/* Staggered animation classes for grid items */
.hh-process-grid .hh-process-card:nth-child(1) { animation-delay: 0s; }
.hh-process-grid .hh-process-card:nth-child(2) { animation-delay: 0.1s; }
.hh-process-grid .hh-process-card:nth-child(3) { animation-delay: 0.2s; }
.hh-process-grid .hh-process-card:nth-child(4) { animation-delay: 0.3s; }

.hh-about-values .hh-value-item:nth-child(1) { animation-delay: 0.1s; }
.hh-about-values .hh-value-item:nth-child(2) { animation-delay: 0.2s; }
.hh-about-values .hh-value-item:nth-child(3) { animation-delay: 0.3s; }
.hh-about-values .hh-value-item:nth-child(4) { animation-delay: 0.4s; }

/* Icon rotation on hover */
.hh-process-card:hover .hh-process-icon svg,
.hh-value-item:hover .hh-value-icon svg,
.hh-contact-method:hover .hh-contact-method-icon svg {
    transform: scale(1.1) rotate(5deg);
}

/* Gradient border effect for active states */
.hh-faq-item.hh-faq-active {
    background: linear-gradient(var(--hh-white), var(--hh-white)) padding-box,
                linear-gradient(135deg, var(--hh-aqua), var(--hh-green)) border-box;
    border: 2px solid transparent;
}

/* Section divider pattern */
.hh-section-divider {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--hh-border) 20%,
        var(--hh-aqua) 50%,
        var(--hh-border) 80%,
        transparent 100%);
    margin: 0 auto;
    max-width: 600px;
}

/* Loading shimmer for placeholders */
.hh-gallery-placeholder,
.hh-about-placeholder {
    background: linear-gradient(
        110deg,
        transparent 40%,
        rgba(255,255,255,0.1) 50%,
        transparent 60%
    );
    background-size: 200% 100%;
    animation: hh-shimmer 2s ease infinite;
}

/* Print styles */
@media print {
    .hh-header,
    .hh-footer,
    .hh-hero-ripples,
    .hh-btn {
        display: none !important;
    }

    .hh-section {
        padding: 40px 0 !important;
        page-break-inside: avoid;
    }

    body {
        background: white !important;
        color: black !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hh-animate,
    .hh-animate-left,
    .hh-animate-right,
    .hh-animate-scale {
        opacity: 1 !important;
        transform: none !important;
    }
}