:root {
    --navy: #2B3E50;
    --navy-dark: #1a2a38;
    --navy-light: #3d5568;
    --green: #609644;
    --green-dark: #4a7535;
    --green-light: #7ab648;
    --green-glow: rgba(96, 150, 68, 0.25);
    --silver: #8a9bab;
    --gray: #64748b;
    --gray-light: #f1f5f9;
    --gray-muted: #94a3b8;
    --gray-dark: #1e293b;
    --white: #ffffff;
    --black: #0f172a;
    --shadow-sm: 0 1px 3px rgba(43, 62, 80, 0.08);
    --shadow: 0 4px 20px rgba(43, 62, 80, 0.1);
    --shadow-lg: 0 20px 40px rgba(43, 62, 80, 0.15);
    --shadow-green: 0 8px 30px rgba(96, 150, 68, 0.3);
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --header-height: 88px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

.skip-link {
    position: absolute; top: -100px; left: 16px; z-index: 10000;
    background: var(--green); color: var(--white); padding: 12px 20px;
    border-radius: var(--radius); font-weight: 600; box-shadow: var(--shadow-lg);
}
.skip-link:focus { top: 16px; }

:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 3px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) { outline: none; }

body {
    font-family: var(--font-body);
    color: var(--gray-dark);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy-dark);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

/* ─── Header ─── */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(43, 62, 80, 0.06);
    transition: var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow);
    background: rgba(255,255,255,0.98);
}

.header-top {
    background: var(--navy-dark);
    color: var(--white);
    font-size: 0.82rem;
    padding: 7px 0;
    border-bottom: 2px solid var(--green);
}
.header-top-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.header-contact { display: flex; gap: 24px; align-items: center; }
.header-contact a { color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 6px; }
.header-contact a:hover { color: var(--green-light); }
.header-contact i { color: var(--green-light); font-size: 0.75rem; }
.header-top-right { display: flex; align-items: center; gap: 20px; }
.warranty-link {
    color: var(--green-light) !important; font-weight: 600;
    background: rgba(96,150,68,.15); padding: 4px 14px; border-radius: 20px;
    border: 1px solid rgba(96,150,68,.3);
}
.warranty-link:hover { background: rgba(96,150,68,.25) !important; }

.main-nav { padding: 0; }
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: var(--header-height); gap: 20px;
}
.logo { flex-shrink: 0; display: flex; align-items: center; }
.logo img, .site-logo {
    height: 72px; width: auto; max-width: 220px;
    object-fit: contain; transition: var(--transition);
}
.logo:hover img, .logo:hover .site-logo { opacity: 0.9; }

.nav-menu { display: flex; list-style: none; gap: 2px; align-items: center; }
.nav-menu > li > a {
    display: block; padding: 10px 16px; font-family: var(--font-heading);
    font-weight: 600; font-size: 0.88rem; color: var(--navy);
    border-radius: var(--radius); position: relative;
}
.nav-menu > li > a::after {
    content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px;
    height: 2px; background: var(--green); transform: scaleX(0);
    transition: transform 0.3s ease; border-radius: 2px;
}
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { transform: scaleX(1); }
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--green); background: transparent; }
.nav-menu > li > a i { font-size: 0.65rem; margin-left: 4px; opacity: 0.6; }

.nav-cta {
    margin-left: 8px;
    padding: 10px 22px !important;
    background: var(--green) !important;
    color: var(--white) !important;
    border-radius: var(--radius) !important;
    font-size: 0.85rem !important;
    box-shadow: var(--shadow-green);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green-dark) !important; color: var(--white) !important; transform: translateY(-1px); }

.has-dropdown { position: relative; }
.dropdown {
    position: absolute; top: calc(100% + 8px); left: 0;
    background: var(--white); min-width: 240px;
    box-shadow: var(--shadow-lg); border-radius: var(--radius-lg);
    list-style: none; opacity: 0; visibility: hidden;
    transform: translateY(8px); transition: var(--transition);
    padding: 8px; border: 1px solid rgba(43,62,80,.06);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 14px; font-size: 0.88rem; color: var(--gray-dark);
    border-radius: var(--radius); font-weight: 500;
}
.dropdown li a::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--green); opacity: 0; transition: var(--transition);
}
.dropdown li a:hover { background: var(--gray-light); color: var(--green); padding-left: 18px; }
.dropdown li a:hover::before { opacity: 1; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.nav-toggle span {
    display: block; width: 24px; height: 2.5px; background: var(--navy);
    margin: 5px 0; transition: var(--transition); border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Transparent header (homepage hero) — 2-tier, solid on scroll like other pages */
body.page-home .site-header--transparent {
    position: absolute; top: 0; left: 0; right: 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}
body.page-home .site-header--transparent .header-top {
    background: rgba(12, 22, 36, 0.35);
    border-bottom-color: rgba(96, 150, 68, 0.45);
    backdrop-filter: blur(8px);
}
body.page-home .site-header--transparent .main-nav {
    background: rgba(12, 22, 36, 0.22);
    backdrop-filter: blur(10px);
}
body.page-home .site-header--transparent .nav-menu > li > a {
    color: rgba(255, 255, 255, 0.92);
}
body.page-home .site-header--transparent .nav-menu > li > a::after { background: var(--green-light); }
body.page-home .site-header--transparent .nav-menu > li > a:hover,
body.page-home .site-header--transparent .nav-menu > li > a.active { color: var(--green-light); }
body.page-home .site-header--transparent .nav-toggle span { background: var(--white); }

/* Scrolled: match other pages (white sticky header) */
body.page-home .site-header--transparent.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(43, 62, 80, 0.06);
    box-shadow: var(--shadow);
}
body.page-home .site-header--transparent.scrolled .header-top {
    background: var(--navy-dark);
    border-bottom-color: var(--green);
    backdrop-filter: none;
}
body.page-home .site-header--transparent.scrolled .main-nav {
    background: transparent;
    backdrop-filter: none;
}
body.page-home .site-header--transparent.scrolled .nav-menu > li > a {
    color: var(--navy);
}
body.page-home .site-header--transparent.scrolled .nav-menu > li > a::after { background: var(--green); }
body.page-home .site-header--transparent.scrolled .nav-menu > li > a:hover,
body.page-home .site-header--transparent.scrolled .nav-menu > li > a.active { color: var(--green); }
body.page-home .site-header--transparent.scrolled .nav-toggle span { background: var(--navy); }

/* ─── Hero ─── */
.hero {
    position: relative; min-height: 88vh; display: flex; align-items: center;
    background: var(--navy-dark); overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(96,150,68,.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(61,85,104,.4) 0%, transparent 50%),
        linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 45%, #243447 100%);
}
.hero-bg-image {
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(20, 35, 55, 0.93) 0%,
        rgba(20, 35, 55, 0.82) 38%,
        rgba(20, 35, 55, 0.45) 62%,
        rgba(20, 35, 55, 0.2) 100%
    );
}
.hero-with-image .hero-grid-single {
    grid-template-columns: minmax(0, 640px) 1fr;
    max-width: 100%;
}
.hero-with-image .hero-content {
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image:
        linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape {
    position: absolute; border: 2px solid rgba(96,150,68,.15); border-radius: var(--radius-lg);
}
.hero-shape-1 { width: 300px; height: 300px; top: 10%; right: 8%; transform: rotate(15deg); }
.hero-shape-2 { width: 180px; height: 180px; bottom: 15%; right: 25%; transform: rotate(-10deg); border-color: rgba(255,255,255,.06); }
.hero-shape-3 {
    width: 500px; height: 500px; top: 50%; right: -5%; transform: translateY(-50%);
    border-radius: 50%; border-color: rgba(96,150,68,.08);
}

.hero .container { position: relative; z-index: 2; }
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-content { color: var(--white); }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(96,150,68,.15); color: var(--green-light);
    padding: 8px 18px; border-radius: 30px; font-size: 0.82rem; font-weight: 600;
    margin-bottom: 24px; border: 1px solid rgba(96,150,68,.25);
    letter-spacing: 0.03em; text-transform: uppercase;
}
.hero-badge i { font-size: 0.9rem; }
.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: var(--white); margin-bottom: 22px; font-weight: 800; line-height: 1.15;
}
.hero h1 span {
    color: var(--green-light);
    position: relative;
}
.hero h1 span::after {
    content: ''; position: absolute; bottom: 2px; left: 0; right: 0;
    height: 4px; background: var(--green); opacity: 0.4; border-radius: 2px;
}
.hero-desc {
    font-size: 1.1rem; opacity: 0.85; margin-bottom: 32px;
    line-height: 1.8; max-width: 520px;
}
.hero-features {
    display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px;
}
.hero-feature {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
    padding: 8px 16px; border-radius: 30px; font-size: 0.85rem; color: rgba(255,255,255,.9);
}
.hero-feature i { color: var(--green-light); font-size: 0.8rem; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-card-stack { position: relative; width: 100%; max-width: 420px; }
.hero-card {
    background: rgba(255,255,255,.06); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-xl);
    padding: 28px; color: var(--white);
}
.hero-card-main { position: relative; z-index: 2; }
.hero-card-accent {
    position: absolute; top: -20px; right: -20px; z-index: 3;
    background: var(--green); border-radius: var(--radius-lg);
    padding: 16px 20px; box-shadow: var(--shadow-green);
    text-align: center; min-width: 100px;
}
.hero-card-accent strong { display: block; font-size: 1.8rem; font-weight: 800; line-height: 1; font-family: var(--font-heading); }
.hero-card-accent span { font-size: 0.75rem; opacity: 0.9; }
.hero-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 16px; font-weight: 700; }
.hero-card-list { list-style: none; }
.hero-card-list li {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 0.9rem; color: rgba(255,255,255,.85);
}
.hero-card-list li:last-child { border-bottom: none; }
.hero-card-list li i {
    width: 32px; height: 32px; background: rgba(96,150,68,.2);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    color: var(--green-light); font-size: 0.85rem; flex-shrink: 0;
}
.hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.4); font-size: 0.75rem; text-align: center;
    animation: bounce 2s infinite;
}
.hero-scroll i { display: block; font-size: 1rem; margin-top: 4px; }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* Premium homepage hero */
.hero-premium {
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 116px;
}
.hero-premium .hero-overlay {
    background: linear-gradient(
        100deg,
        rgba(12, 22, 36, 0.92) 0%,
        rgba(12, 22, 36, 0.78) 42%,
        rgba(12, 22, 36, 0.35) 68%,
        rgba(12, 22, 36, 0.15) 100%
    );
}
.hero-premium .hero-bg-image { background-position: center 35%; }
.hero-container {
    flex: 1; display: flex; align-items: center;
    padding: 48px 0 32px; width: 100%;
}
.hero-eyebrow {
    display: flex; align-items: center; gap: 14px;
    font-size: 0.76rem; text-transform: uppercase;
    letter-spacing: 0.22em; color: rgba(255, 255, 255, 0.65);
    margin-bottom: 22px; font-weight: 500;
}
.hero-eyebrow span {
    width: 28px; height: 1px; background: rgba(255, 255, 255, 0.35);
}
.hero-title {
    font-size: clamp(2.4rem, 5.8vw, 4.5rem);
    font-weight: 800; text-transform: uppercase;
    line-height: 1.02; margin-bottom: 26px;
    letter-spacing: -0.01em; color: var(--white);
}
.hero-title-line { display: block; color: var(--white); }
.hero-title-accent { display: block; color: var(--green-light); }
.hero-premium .hero-title span::after { display: none; }
.hero-premium h1.hero-title { margin-bottom: 26px; }
.hero-premium .hero-desc {
    font-size: 1.02rem; max-width: 560px; line-height: 1.85;
    color: rgba(255, 255, 255, 0.78); margin-bottom: 34px;
}
.hero-buttons-premium { gap: 16px; }
.btn-hero-primary,
.btn-hero-outline {
    text-transform: uppercase; font-size: 0.8rem;
    letter-spacing: 0.06em; padding: 16px 30px; border-radius: 2px;
    font-weight: 700;
}
.btn-hero-primary {
    background: var(--green); color: var(--white);
    border: 2px solid var(--green); box-shadow: 0 8px 28px rgba(96, 150, 68, 0.35);
}
.btn-hero-primary:hover {
    background: var(--green-dark); border-color: var(--green-dark);
    color: var(--white); transform: translateY(-2px);
}
.btn-hero-outline {
    background: transparent; color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.45);
}
.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
}
.hero-trust {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px; margin-top: 44px; max-width: 720px;
}
.hero-trust-item {
    display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
    font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.82); font-weight: 600;
}
.hero-trust-item i {
    font-size: 1.15rem; color: var(--green-light); opacity: 0.95;
}
.hero-strip {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; width: 100%;
    background: rgba(12, 22, 36, 0.72);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-strip-inner {
    display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0; padding: 0;
}
.hero-strip-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 22px 18px; color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.25s ease;
}
.hero-strip-item:last-child { border-right: none; }
.hero-strip-item:hover { background: rgba(96, 150, 68, 0.12); color: var(--white); }
.hero-strip-icon {
    width: 46px; height: 46px;
    flex-shrink: 0; margin-top: 1px; opacity: 0.95;
}
.hero-strip-icon img {
    display: block; width: 100%; height: 100%;
    object-fit: contain;
}
.hero-strip-text strong {
    display: block; font-size: 0.82rem; text-transform: uppercase;
    margin-bottom: 5px; font-family: var(--font-heading); letter-spacing: 0.03em;
}
.hero-strip-text span {
    display: block; font-size: 0.7rem; color: rgba(255, 255, 255, 0.5);
    line-height: 1.45; font-weight: 400; text-transform: none; letter-spacing: 0;
}
.hero-strip-arrow {
    margin-left: auto; align-self: center;
    color: var(--green-light); font-size: 0.72rem; opacity: 0;
    transition: opacity 0.25s ease; flex-shrink: 0;
}
.hero-strip-item:hover .hero-strip-arrow { opacity: 1; }

/* ─── Buttons ─── */
.btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px;
    font-family: var(--font-heading); font-weight: 600; font-size: 0.92rem;
    border-radius: var(--radius); border: 2px solid transparent; cursor: pointer;
    transition: var(--transition); text-align: center; letter-spacing: 0.01em;
}
.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white); border-color: transparent;
    box-shadow: var(--shadow-green);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--green-dark), #3d6329);
    color: var(--white); transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(96,150,68,.4);
}
.btn-outline {
    background: transparent; color: var(--white);
    border-color: rgba(255,255,255,.35);
}
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-navy {
    background: var(--navy); color: var(--white); border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost {
    background: transparent; color: var(--navy); border-color: rgba(43,62,80,.15);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); background: rgba(96,150,68,.05); }
.btn-sm { padding: 10px 20px; font-size: 0.84rem; }
.btn-link {
    padding: 0; background: none; border: none; color: var(--green);
    font-weight: 600; font-size: 0.88rem; gap: 6px;
}
.btn-link:hover { color: var(--green-dark); gap: 10px; }
.btn-link i { transition: var(--transition); font-size: 0.75rem; }

/* ─── Sections ─── */
section { padding: 90px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 56px; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-header .subtitle {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--green); font-weight: 700; font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 3px; margin-bottom: 14px;
}
.section-header .subtitle::before,
.section-header .subtitle::after {
    content: ''; width: 24px; height: 2px; background: var(--green); border-radius: 2px;
}
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; font-weight: 800; }
.section-header p { color: var(--gray); font-size: 1.05rem; line-height: 1.7; }

.bg-light { background: var(--gray-light); }
.bg-navy {
    background: var(--navy-dark); color: var(--white);
    position: relative; overflow: hidden;
}
.bg-navy::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(96,150,68,.08) 0%, transparent 60%);
}
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy .container { position: relative; z-index: 1; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Services ─── */
.services-section { background: var(--white); }
.services-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.service-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px;
    text-align: center; transition: var(--transition);
    border: 1px solid rgba(43,62,80,.08); position: relative; overflow: hidden;
    display: block; color: inherit;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(96,150,68,.2); color: inherit; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(96,150,68,.12), rgba(96,150,68,.06));
    border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px; font-size: 1.4rem; color: var(--green);
    transition: var(--transition); border: 1px solid rgba(96,150,68,.15);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white); transform: scale(1.05);
    box-shadow: var(--shadow-green);
}
.service-card h3 { font-size: 1rem; margin-bottom: 8px; font-weight: 700; color: var(--navy-dark); }
.service-card p { color: var(--gray); font-size: 0.85rem; line-height: 1.6; }
.service-card .service-arrow {
    display: inline-flex; align-items: center; gap: 4px;
    margin-top: 14px; font-size: 0.8rem; font-weight: 600; color: var(--green);
    opacity: 0; transform: translateY(4px); transition: var(--transition);
}
.service-card:hover .service-arrow { opacity: 1; transform: translateY(0); }

/* ─── Why Us ─── */
.why-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.why-card {
    text-align: center; padding: 36px 24px;
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid rgba(43,62,80,.06); transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.why-icon {
    width: 56px; height: 56px; margin: 0 auto 18px;
    background: var(--navy-dark); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--green-light); font-size: 1.2rem;
}
.why-card h3 { font-size: 1rem; margin-bottom: 10px; font-weight: 700; }
.why-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; }

/* ─── Products ─── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: var(--transition);
    border: 1px solid rgba(43,62,80,.06);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-image {
    height: 200px; position: relative; overflow: hidden;
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
}
.product-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,42,56,.6) 0%, transparent 50%);
    opacity: 0; transition: var(--transition);
}
.product-card:hover .product-image::after { opacity: 1; }
.product-image i {
    font-size: 3.5rem; color: rgba(255,255,255,.15);
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    transition: var(--transition);
}
.product-card:hover .product-image i { transform: translate(-50%, -50%) scale(1.1); color: rgba(255,255,255,.25); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: var(--green); color: var(--white);
    padding: 5px 12px; border-radius: 20px; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.02em; text-transform: uppercase;
}
.product-body { padding: 22px; }
.product-body h3 { font-size: 1rem; margin-bottom: 8px; font-weight: 700; }
.product-body h3 a { color: var(--navy-dark); }
.product-body h3 a:hover { color: var(--green); }
.product-body p { color: var(--gray); font-size: 0.86rem; margin-bottom: 16px; line-height: 1.6; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-image { display: block; color: inherit; text-decoration: none; }
.product-overlay {
    position: absolute; inset: 0; z-index: 3;
    background: rgba(26,42,56,.75); color: var(--white);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    font-weight: 700; font-size: 0.95rem; opacity: 0; transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-card-wa {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(37,211,102,.12); color: #25D366;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; transition: var(--transition); flex-shrink: 0;
}
.product-card-wa:hover { background: #25D366; color: var(--white); transform: scale(1.08); }

.section-cta { text-align: center; margin-top: 48px; }

/* ─── Stats ─── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
    text-align: center; padding: 36px 20px;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg); transition: var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
.stat-icon {
    width: 48px; height: 48px; margin: 0 auto 16px;
    background: rgba(96,150,68,.15); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green-light); font-size: 1.1rem;
}
.stat-card h3 {
    font-size: 2.6rem; color: var(--green-light); font-weight: 800;
    margin-bottom: 6px; font-family: var(--font-heading);
}
.stat-card p { opacity: 0.75; font-size: 0.9rem; }

/* ─── Blog ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: var(--transition);
    border: 1px solid rgba(43,62,80,.06);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-image {
    height: 200px; position: relative; overflow: hidden;
    background: linear-gradient(145deg, var(--navy-dark), var(--navy));
}
.blog-image i {
    font-size: 2.5rem; color: rgba(255,255,255,.12);
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-body { padding: 26px; }
.blog-meta {
    display: flex; gap: 16px; font-size: 0.78rem; color: var(--gray-muted);
    margin-bottom: 14px; font-weight: 500;
}
.blog-meta i { color: var(--green); margin-right: 4px; }
.blog-body h3 { font-size: 1.05rem; margin-bottom: 10px; font-weight: 700; line-height: 1.4; }
.blog-body h3 a { color: var(--navy-dark); }
.blog-body h3 a:hover { color: var(--green); }
.blog-body p { color: var(--gray); font-size: 0.88rem; margin-bottom: 16px; line-height: 1.6; }

/* ─── CTA ─── */
.cta-section {
    background: var(--navy-dark);
    padding: 80px 0; text-align: center; color: var(--white); position: relative; overflow: hidden;
}
.cta-section-with-image {
    background: var(--navy-dark);
    padding: 96px 0;
}
.cta-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.cta-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(12, 22, 36, 0.88) 0%,
        rgba(20, 35, 55, 0.78) 45%,
        rgba(61, 99, 41, 0.72) 100%
    );
}
.cta-section::before {
    content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="0.5"/></svg>');
    background-size: 80px 80px;
}
.cta-section .container { position: relative; z-index: 3; }
.cta-section h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; font-weight: 800; }
.cta-section p { opacity: 0.92; margin-bottom: 30px; font-size: 1.08rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-section .btn {
    background: var(--white); color: var(--green-dark); border-color: var(--white);
    padding: 16px 36px; font-size: 1rem;
}
.cta-section .btn:hover { background: var(--navy-dark); color: var(--white); border-color: var(--navy-dark); transform: translateY(-2px); }

/* ─── Page Header ─── */
.page-header {
    background: var(--navy-dark); padding: 70px 0 60px;
    color: var(--white); text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(96,150,68,.1) 0%, transparent 60%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 14px; font-weight: 800; }
.breadcrumb {
    display: flex; justify-content: center; align-items: center; gap: 10px;
    font-size: 0.88rem; opacity: 0.7;
}
.breadcrumb a { color: var(--green-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: 0.5; }

/* ─── Content ─── */
.content-area { padding: 70px 0; }
.content-area .container { max-width: 900px; }
.content-area h2 { margin: 32px 0 16px; font-weight: 700; }
.content-area p { margin-bottom: 16px; color: var(--gray-dark); }
.content-area ul, .content-area ol { margin: 16px 0 16px 24px; color: var(--gray-dark); }
.content-area li { margin-bottom: 8px; }

/* ─── Product Detail ─── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-detail-image {
    background: var(--gray-light); border-radius: var(--radius-xl); height: 420px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
    border: 1px solid rgba(43,62,80,.06);
}
.product-detail-image i {
    font-size: 5rem; color: var(--navy-light); opacity: 0.25;
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.product-detail-image { position: relative; }
.product-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info h1 { font-size: 2rem; margin-bottom: 12px; font-weight: 800; }
.product-category {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--green); font-weight: 600; font-size: 0.85rem;
    background: rgba(96,150,68,.1); padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
}
.product-description { color: var(--gray); margin-bottom: 28px; line-height: 1.8; font-size: 1.02rem; }
.product-description .spec-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.9rem; }
.product-description .spec-table th,
.product-description .spec-table td { padding: 12px 14px; border: 1px solid rgba(43,62,80,.1); text-align: left; }
.product-description .spec-table th { background: var(--gray-light); font-weight: 700; color: var(--navy-dark); width: 35%; }
.product-description .spec-table tr:nth-child(even) td { background: rgba(243,244,246,.5); }
.features-list { list-style: none; margin: 0; padding: 0; }
.features-list li {
    padding: 12px 0; border-bottom: 1px solid var(--gray-light);
    display: flex; align-items: center; gap: 12px; font-size: 0.95rem;
}
.features-list li i { color: var(--green); font-size: 0.9rem; }

/* ─── Warranty ─── */
.warranty-hero-icon {
    width: 72px; height: 72px; margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.8rem; box-shadow: var(--shadow-green);
}
.warranty-form { max-width: 520px; margin: 0 auto; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--navy-dark); font-size: 0.9rem; }
.form-control {
    width: 100%; padding: 14px 18px; border: 2px solid #e2e8f0; border-radius: var(--radius);
    font-family: var(--font-body); font-size: 1rem; transition: var(--transition);
    background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px var(--green-glow); }
textarea.form-control { min-height: 130px; resize: vertical; }

.warranty-result { margin-top: 32px; padding: 28px; border-radius: var(--radius-lg); }
.warranty-result.valid { background: #f0fdf4; border: 2px solid #22c55e; }
.warranty-result.expired { background: #fef2f2; border: 2px solid #ef4444; }
.warranty-result.not-found { background: #fffbeb; border: 2px solid #f59e0b; }
.warranty-result h3 { margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.warranty-info { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.warranty-info dt { font-weight: 600; color: var(--gray); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }
.warranty-info dd { margin-bottom: 12px; font-weight: 700; color: var(--navy-dark); font-size: 1rem; }
.info-box {
    margin-top: 40px; padding: 28px; background: var(--gray-light);
    border-radius: var(--radius-lg); border-left: 4px solid var(--green);
}

/* ─── Contact ─── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.contact-form-card {
    background: var(--white); padding: 36px; border-radius: var(--radius-xl);
    border: 1px solid rgba(43,62,80,.08); box-shadow: var(--shadow-sm);
}
.contact-form-card h2 { margin-bottom: 24px; font-size: 1.4rem; }
.contact-info-card {
    background: linear-gradient(160deg, var(--navy-dark), var(--navy));
    color: var(--white); padding: 36px; border-radius: var(--radius-xl);
    position: relative; overflow: hidden;
}
.contact-info-card::before {
    content: ''; position: absolute; top: -50%; right: -30%;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(96,150,68,.08);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; font-size: 1.2rem; position: relative; }
.contact-info-item {
    display: flex; gap: 16px; margin-bottom: 22px; position: relative;
}
.contact-info-item i {
    width: 40px; height: 40px; background: rgba(96,150,68,.15);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: var(--green-light); font-size: 1rem; flex-shrink: 0;
}

/* ─── Sidebar ─── */
.layout-with-sidebar { display: grid; grid-template-columns: 260px 1fr; gap: 40px; }
.sidebar {
    background: var(--white); padding: 24px; border-radius: var(--radius-lg);
    height: fit-content; position: sticky; top: calc(var(--header-height) + 20px);
    border: 1px solid rgba(43,62,80,.08); box-shadow: var(--shadow-sm);
}
.sidebar h3 {
    font-size: 1rem; margin-bottom: 16px; padding-bottom: 12px;
    border-bottom: 2px solid var(--green); font-weight: 700;
}
.sidebar ul { list-style: none; }
.sidebar ul li a {
    display: block; padding: 10px 14px; border-radius: var(--radius);
    color: var(--gray-dark); font-size: 0.88rem; font-weight: 500;
    border-left: 3px solid transparent; transition: var(--transition);
}
.sidebar ul li a:hover, .sidebar ul li a.active {
    background: rgba(96,150,68,.06); color: var(--green);
    border-left-color: var(--green); font-weight: 600;
}

.alert { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.92rem; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #86efac; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* ─── Footer ─── */
.site-footer {
    background: var(--navy-dark); color: rgba(255,255,255,.75);
    position: relative;
}
.footer-wave {
    height: 4px;
    background: linear-gradient(90deg, var(--green-dark), var(--green), var(--green-light), var(--green));
}
.footer-main { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 0.9fr 1.1fr; gap: 32px; }
.footer-logo { margin-bottom: 18px; height: 88px; width: auto; max-width: 240px; object-fit: contain; }
.footer-col > p { font-size: 0.9rem; line-height: 1.7; opacity: 0.8; }
.footer-col h4 {
    color: var(--white); font-size: 0.95rem; margin-bottom: 22px;
    font-weight: 700; letter-spacing: 0.02em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: 0.88rem; display: inline-block; }
.footer-col ul li a:hover { color: var(--green-light); transform: translateX(4px); }
.contact-list li {
    display: flex; gap: 12px; align-items: flex-start;
    margin-bottom: 14px; font-size: 0.88rem;
}
.contact-list i {
    color: var(--green-light); margin-top: 3px; width: 16px; text-align: center;
}
.contact-list a { color: rgba(255,255,255,.65); }
.contact-list a:hover { color: var(--green-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0;
    text-align: center; font-size: 0.84rem; opacity: 0.6;
}

/* ─── Process Steps ─── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-step {
    background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px;
    text-align: center; border: 1px solid rgba(43,62,80,.06);
    position: relative; transition: var(--transition);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.process-number {
    font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800;
    color: rgba(96,150,68,.15); line-height: 1; margin-bottom: 12px;
}
.process-icon {
    width: 56px; height: 56px; margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.2rem; box-shadow: var(--shadow-green);
}
.process-step h3 { font-size: 1rem; margin-bottom: 10px; font-weight: 700; }
.process-step p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: var(--white); border-radius: var(--radius-lg); margin-bottom: 12px;
    border: 1px solid rgba(43,62,80,.08); overflow: hidden; transition: var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow); border-color: rgba(96,150,68,.2); }
.faq-item summary {
    padding: 20px 24px; font-family: var(--font-heading); font-weight: 600;
    font-size: 0.95rem; color: var(--navy-dark); cursor: pointer;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; font-size: 1.2rem; color: var(--green); font-weight: 700;
    transition: transform 0.3s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 20px; color: var(--gray); font-size: 0.92rem; line-height: 1.7; }

/* ─── Product Detail Extras ─── */
.product-lead { font-size: 1.05rem; color: var(--gray); margin-bottom: 20px; line-height: 1.7; }
.product-trust-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.product-trust-badges span {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--gray-light); padding: 8px 14px; border-radius: 20px;
    font-size: 0.82rem; font-weight: 600; color: var(--navy);
}
.product-trust-badges i { color: var(--green); }
.features-box {
    background: var(--gray-light); border-radius: var(--radius-lg);
    padding: 24px; margin-bottom: 28px;
}
.features-box h3 { font-size: 1rem; margin-bottom: 12px; }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.product-cta-bar { background: var(--navy-dark); padding: 40px 0; }
.product-cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
}
.product-cta-inner h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 6px; }
.product-cta-inner p { color: rgba(255,255,255,.7); font-size: 0.92rem; }
.related-products { padding-top: 70px; padding-bottom: 70px; }

/* ─── Products Page ─── */
.container-wide { max-width: 1280px; }
.products-page .container-wide { max-width: 1280px; }
.products-page.content-area .container-wide { max-width: 1280px; }
.products-page .layout-with-sidebar {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}
.products-page .sidebar-categories {
    max-height: calc(100vh - var(--header-height) - 48px);
    overflow: auto;
}
.products-page .sidebar-categories ul { margin-bottom: 0; }
.page-header-subtitle {
    display: inline-block; color: var(--green-light); font-weight: 700;
    font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px;
}
.page-header-desc {
    max-width: 640px; margin: 0 auto 18px; opacity: 0.85; font-size: 1rem; line-height: 1.7;
}
.page-header-compact { padding: 28px 0 24px; text-align: left; }
.page-header-compact .breadcrumb { justify-content: flex-start; }
.products-trust-bar {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px;
}
.products-trust-item {
    display: flex; align-items: center; gap: 10px; justify-content: center;
    background: var(--white); border: 1px solid rgba(43,62,80,.08);
    border-radius: var(--radius-lg); padding: 16px 14px;
    font-size: 0.84rem; font-weight: 600; color: var(--navy-dark);
    box-shadow: var(--shadow-sm);
}
.products-trust-item i { color: var(--green); font-size: 1rem; }
.category-pills {
    display: none; flex-wrap: wrap; gap: 10px; margin-bottom: 24px;
}
.category-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px; border-radius: 999px; font-size: 0.84rem; font-weight: 600;
    background: var(--white); color: var(--navy-dark); border: 1px solid rgba(43,62,80,.1);
    transition: var(--transition);
}
.category-pill:hover, .category-pill.active {
    background: var(--green); color: var(--white); border-color: var(--green);
}
.category-pill i { font-size: 0.8rem; }
.products-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap; margin-bottom: 32px;
}
.products-result-meta { color: var(--gray); font-size: 0.9rem; margin: 0; white-space: nowrap; }
.products-result-meta strong { color: var(--navy-dark); }
.sidebar-categories ul li a {
    display: flex; align-items: center; gap: 10px;
}
.sidebar-categories ul li a i { width: 16px; text-align: center; color: var(--green); font-size: 0.85rem; }
.sidebar-cta {
    margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--gray-light);
    display: flex; flex-direction: column; gap: 10px;
}
.sidebar-cta p { font-size: 0.88rem; color: var(--gray); margin-bottom: 4px; }
.sidebar-cta .btn { justify-content: center; }
.products-bottom-cta {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 56px 0;
}
.products-bottom-cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
}
.products-bottom-cta h2 { color: var(--white); font-size: 1.5rem; margin-bottom: 8px; }
.products-bottom-cta p { color: rgba(255,255,255,.75); margin: 0; max-width: 520px; }
.products-bottom-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-ghost-light {
    background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.35);
}
.btn-ghost-light:hover { background: var(--white); color: var(--navy-dark); border-color: var(--white); }

/* ─── Product Detail Page ─── */
.product-detail-page.content-area .container-wide { max-width: 1200px; }
.product-detail-layout {
    display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start;
}
.product-detail-main { min-width: 0; }
.product-detail-body { margin-top: 36px; }
.product-detail-title { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px; font-weight: 800; }
.product-image-badges {
    position: absolute; bottom: 16px; left: 16px; z-index: 2;
    display: flex; flex-wrap: wrap; gap: 8px;
}
.product-image-badges span {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.95); color: var(--navy-dark);
    padding: 8px 14px; border-radius: 20px; font-size: 0.78rem; font-weight: 700;
    box-shadow: var(--shadow-sm);
}
.product-image-badges i { color: var(--green); }
.product-highlights {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 36px;
}
.product-highlight {
    display: flex; align-items: center; gap: 12px;
    background: var(--gray-light); border-radius: var(--radius-lg);
    padding: 16px 14px; border: 1px solid rgba(43,62,80,.06);
}
.product-highlight i {
    width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
    background: rgba(96,150,68,.12); color: var(--green);
    display: flex; align-items: center; justify-content: center;
}
.product-highlight strong { display: block; font-size: 0.88rem; color: var(--navy-dark); }
.product-highlight span { display: block; font-size: 0.76rem; color: var(--gray); }
.product-section { margin-bottom: 36px; }
.product-section h2 {
    font-size: 1.25rem; margin-bottom: 16px; padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-light);
}
.features-list-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 24px;
}
.features-list-grid li { border-bottom: 1px solid rgba(43,62,80,.08); }
.product-process { margin-bottom: 20px; }
.product-process h2 { font-size: 1.25rem; margin-bottom: 20px; }
.product-process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-process-step {
    background: var(--white); border: 1px solid rgba(43,62,80,.08);
    border-radius: var(--radius-lg); padding: 22px 18px; text-align: center;
}
.product-process-step span {
    display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center;
    background: var(--navy-dark); color: var(--green-light); border-radius: 50%;
    font-size: 0.82rem; font-weight: 800; margin-bottom: 12px;
}
.product-process-step strong { display: block; font-size: 0.92rem; margin-bottom: 6px; color: var(--navy-dark); }
.product-process-step p { font-size: 0.8rem; color: var(--gray); margin: 0; line-height: 1.5; }
.product-detail-sidebar { position: sticky; top: calc(var(--header-height) + 20px); }
.product-sidebar-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 24px; margin-bottom: 16px;
    border: 1px solid rgba(43,62,80,.08); box-shadow: var(--shadow-sm);
}
.product-sidebar-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.product-sidebar-card > p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 18px; }
.product-sidebar-actions { display: flex; flex-direction: column; gap: 10px; }
.btn-block { width: 100%; justify-content: center; }
.btn-whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-whatsapp:hover { background: #1ebe57; color: var(--white); border-color: #1ebe57; }
.product-sidebar-trust ul { list-style: none; margin: 0 0 16px; padding: 0; }
.product-sidebar-trust li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; font-size: 0.88rem; color: var(--gray-dark);
}
.product-sidebar-trust li i { color: var(--green); font-size: 0.8rem; }
.sidebar-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 600; font-size: 0.88rem; color: var(--green);
}
.sidebar-link:hover { color: var(--green-dark); }
.sidebar-category-link {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; border-radius: var(--radius);
    background: var(--gray-light); font-weight: 600; font-size: 0.9rem; color: var(--navy-dark);
    transition: var(--transition);
}
.sidebar-category-link i:first-child { color: var(--green); width: 20px; text-align: center; }
.sidebar-category-link i:last-child { margin-left: auto; font-size: 0.8rem; color: var(--green); }
.sidebar-category-link:hover { background: rgba(96,150,68,.1); color: var(--green); }
.product-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.product-detail-image {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
}

/* ─── Product Gallery ─── */
.product-gallery { display: flex; flex-direction: column; gap: 14px; background: transparent; border: none; height: auto; }
.product-gallery-main {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-xl); height: 420px; overflow: hidden;
    position: relative; border: 1px solid rgba(43,62,80,.06);
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-main i {
    font-size: 5rem; color: rgba(255,255,255,.2);
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.product-gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.product-gallery-thumb {
    width: 72px; height: 72px; padding: 0; border: 2px solid transparent;
    border-radius: var(--radius); overflow: hidden; cursor: pointer; background: var(--white);
    transition: var(--transition);
}
.product-gallery-thumb.active, .product-gallery-thumb:hover { border-color: var(--green); }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── Blog Article ─── */
.article-cover {
    border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 28px;
    box-shadow: var(--shadow-sm); border: 1px solid rgba(43,62,80,.08);
}
.article-cover img { width: 100%; max-height: 420px; object-fit: cover; display: block; }
.article-title { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; font-weight: 800; }

/* ─── Honeypot ─── */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; pointer-events: none; }

/* ─── About Page ─── */
.about-page .container { max-width: 1100px; }
.about-intro {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
    align-items: start; margin-bottom: 56px;
}
.about-intro-text h2 { margin-top: 0; }
.about-stat-highlight {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white); border-radius: var(--radius-xl); padding: 32px;
    text-align: center; margin-bottom: 20px; box-shadow: var(--shadow-green);
}
.about-stat-highlight strong { display: block; font-size: 3rem; font-weight: 800; line-height: 1; font-family: var(--font-heading); }
.about-stat-highlight span { font-size: 0.95rem; opacity: 0.9; }
.about-values { display: flex; flex-direction: column; gap: 12px; }
.about-value {
    display: flex; align-items: center; gap: 12px;
    background: var(--white); padding: 14px 18px; border-radius: var(--radius);
    border: 1px solid rgba(43,62,80,.08); font-weight: 600; font-size: 0.9rem;
}
.about-value i { color: var(--green); width: 20px; text-align: center; }
.about-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.about-feature-card {
    background: var(--gray-light); border-radius: var(--radius-lg); padding: 32px 24px;
    text-align: center; transition: var(--transition);
}
.about-feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.about-feature-card i { font-size: 2rem; color: var(--green); margin-bottom: 16px; }
.about-feature-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.about-feature-card p { color: var(--gray); font-size: 0.9rem; }
.about-cta {
    text-align: center; background: var(--navy-dark); color: var(--white);
    padding: 48px 32px; border-radius: var(--radius-xl);
}
.about-cta h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 10px; }
.about-cta p { opacity: 0.8; margin-bottom: 24px; }

/* ─── Empty State & 404 ─── */
.empty-state, .error-page-inner { text-align: center; padding: 40px 20px; }
.empty-icon, .error-icon {
    width: 80px; height: 80px; margin: 0 auto 24px;
    background: var(--gray-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--gray-muted);
}
.error-icon { background: rgba(96,150,68,.1); color: var(--green); }

/* ─── Float Buttons ─── */
.float-whatsapp {
    position: fixed; bottom: 24px; right: 24px; z-index: 900;
    width: 56px; height: 56px; background: #25D366; color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,.4);
    transition: var(--transition);
}
.float-whatsapp:hover { color: var(--white); transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.scroll-top {
    position: fixed; bottom: 90px; right: 24px; z-index: 900;
    width: 44px; height: 44px; background: var(--navy); color: var(--white);
    border: none; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--green); }

.nav-overlay {
    position: fixed; inset: 0; background: rgba(15,23,42,.5);
    z-index: 998; opacity: 0; visibility: hidden; transition: var(--transition);
}
.nav-overlay.active { opacity: 1; visibility: visible; }

/* ─── Search Toolbar ─── */
.products-toolbar { margin-bottom: 32px; }
.search-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; max-width: 500px; }
.search-form .form-control { flex: 1; min-width: 200px; }
.search-result-count { margin-top: 12px; color: var(--gray); font-size: 0.9rem; }

/* ─── Testimonials ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px;
    border: 1px solid rgba(43,62,80,.08); box-shadow: var(--shadow-sm);
    transition: var(--transition); position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-card::before {
    content: '\201C'; position: absolute; top: 16px; right: 24px;
    font-size: 4rem; color: rgba(96,150,68,.12); font-family: Georgia, serif; line-height: 1;
}
.testimonial-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 16px; }
.testimonial-stars i { margin-right: 2px; }
.testimonial-card > p { color: var(--gray-dark); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author strong { display: block; color: var(--navy-dark); font-size: 0.95rem; }
.testimonial-author span { color: var(--gray); font-size: 0.82rem; }

/* ─── Map Embed ─── */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(43,62,80,.08); box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ─── Footer Social ─── */
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
    width: 38px; height: 38px; background: rgba(255,255,255,.08);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7); font-size: 0.95rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }

/* ─── Page Templates ─── */
.page-intro { text-align: center; max-width: 640px; margin: 0 auto 40px; color: var(--gray); font-size: 1.05rem; line-height: 1.7; }
.page-cta-box {
    text-align: center; margin-top: 48px; padding: 36px;
    background: var(--gray-light); border-radius: var(--radius-lg);
    display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.page-cta-box p { color: var(--gray); margin: 0; }
.page-cta-box .btn { margin: 0 6px; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.2rem; margin: 32px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--gray-dark); line-height: 1.8; }
.legal-content ul { margin: 12px 0 12px 24px; }

.references-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.reference-card {
    background: var(--white); border: 1px solid rgba(43,62,80,.08);
    border-radius: var(--radius-lg); padding: 28px 24px; transition: var(--transition);
}
.reference-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.reference-icon {
    width: 52px; height: 52px; background: rgba(96,150,68,.1);
    border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
    color: var(--green); font-size: 1.3rem; margin-bottom: 14px;
}
.reference-cat { font-size: 0.75rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.05em; }
.reference-card h3 { font-size: 1rem; margin: 8px 0; }
.reference-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; }
.reference-loc { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 0.8rem; color: var(--green); font-weight: 600; }

.certificates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.certificate-card {
    text-align: center; background: var(--gray-light); border-radius: var(--radius-lg);
    padding: 32px 24px; transition: var(--transition);
}
.certificate-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.certificate-icon {
    width: 56px; height: 56px; margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.2rem;
}
.certificate-card h3 { font-size: 1rem; margin-bottom: 10px; }
.certificate-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; }

/* ─── Blog Article ─── */
.article-content { max-width: 760px; margin: 0 auto; }
.article-content h2 { margin-top: 36px; }
.article-share {
    margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--gray-light);
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.article-share span { font-weight: 600; color: var(--navy); font-size: 0.9rem; }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
    .services-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
    .references-grid, .certificates-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .about-features-grid { grid-template-columns: 1fr; }
    .about-intro { grid-template-columns: 1fr; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-with-image .hero-grid-single { grid-template-columns: 1fr; }
    .hero-bg-image { background-position: 65% center; }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(20,35,55,.9) 0%, rgba(20,35,55,.75) 50%, rgba(20,35,55,.55) 100%);
    }
    .hero-premium .hero-overlay {
        background: linear-gradient(180deg, rgba(12,22,36,.92) 0%, rgba(12,22,36,.78) 55%, rgba(12,22,36,.5) 100%);
    }
    .hero-premium { padding-bottom: 116px; }
    .hero-strip-inner { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .hero-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
    .hero-visual { display: none; }
    .products-trust-bar { grid-template-columns: repeat(2, 1fr); }
    .product-highlights { grid-template-columns: repeat(2, 1fr); }
    .product-detail-layout { grid-template-columns: 1fr; }
    .product-detail-sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .product-detail-sidebar .product-sidebar-card { margin-bottom: 0; }
}

@media (max-width: 992px) {
    .stats-grid, .blog-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .product-detail { grid-template-columns: 1fr; }
    .layout-with-sidebar,
    .products-page .layout-with-sidebar { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .sidebar-categories { display: none; }
    .category-pills { display: flex; }
    .contact-grid { grid-template-columns: 1fr; }
    .product-process-steps { grid-template-columns: 1fr; }
    .product-detail-sidebar { grid-template-columns: 1fr; }
    .products-page .sidebar-categories { max-height: none; overflow: visible; }
}

@media (max-width: 900px) {
    .hero-premium { padding-bottom: 200px; }
    .hero-strip-inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .hero-strip-item:nth-child(3) { border-right: none; }
    .hero-strip-item:nth-child(4),
    .hero-strip-item:nth-child(5) { border-top: 1px solid rgba(255, 255, 255, 0.07); }
}

@media (max-width: 768px) {
    :root { --header-height: 72px; }
    .header-top { display: none; }
    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
        background: var(--white); flex-direction: column; padding: 80px 24px 24px;
        box-shadow: var(--shadow-lg); transition: var(--transition);
        align-items: stretch; z-index: 1000; gap: 4px;
    }
    .nav-menu.active { right: 0; }
    .nav-menu > li > a { padding: 14px 16px; font-size: 0.95rem; }
    .nav-cta { margin-left: 0 !important; margin-top: 8px; text-align: center; justify-content: center; }
    .dropdown {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; padding: 0 0 0 16px; border: none; display: none;
    }
    .has-dropdown.open .dropdown { display: block; }
    .hero { min-height: auto; padding: 60px 0; }
    .hero-premium { min-height: auto; padding-top: calc(var(--header-height) + 24px); padding-bottom: 0; }
    .hero-container { padding: 32px 0 20px; }
    .hero-title { font-size: 2rem; }
    .hero-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 28px; }
    .hero-strip { position: relative; left: auto; right: auto; bottom: auto; margin-top: 24px; }
    .hero-strip-inner { grid-template-columns: 1fr; }
    .hero-strip-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
    .hero-strip-icon { width: 40px; height: 40px; }
    .hero-strip-item:last-child { border-bottom: none; }
    .hero-strip-arrow { opacity: 0.6; }
    body.page-home .site-header--transparent .nav-menu {
        background: rgba(20, 35, 55, 0.98);
    }
    body.page-home .site-header--transparent.scrolled .nav-menu {
        background: var(--white);
    }
    body.page-home .site-header--transparent .nav-menu > li > a { color: rgba(255, 255, 255, 0.92); }
    body.page-home .site-header--transparent.scrolled .nav-menu > li > a { color: var(--navy); }
    .hero h1 { font-size: 2rem; }
    section { padding: 60px 0; }
    .services-grid, .products-grid, .why-grid, .stats-grid, .blog-grid, .process-grid, .testimonials-grid, .references-grid, .certificates-grid {
        grid-template-columns: 1fr;
    }
    .products-trust-bar { grid-template-columns: 1fr; }
    .product-highlights { grid-template-columns: 1fr; }
    .features-list-grid { grid-template-columns: 1fr; }
    .products-toolbar { flex-direction: column; align-items: stretch; }
    .products-bottom-cta-inner { text-align: center; justify-content: center; }
    .products-bottom-cta-actions { justify-content: center; width: 100%; }
    .product-cta-inner { text-align: center; justify-content: center; }
    .product-actions .btn { flex: 1; justify-content: center; min-width: 140px; }
    .float-whatsapp { bottom: 16px; right: 16px; width: 50px; height: 50px; }
    .scroll-top { bottom: 76px; right: 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .page-header { padding: 50px 0 40px; }
    .warranty-info { grid-template-columns: 1fr; }
    .logo img { height: 56px; }
}

/* Pagination */
.pagination {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 8px; margin-top: 40px;
}
.pagination-link {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 42px; height: 42px; padding: 0 12px;
    border-radius: var(--radius); background: var(--white);
    border: 1px solid #e2e8f0; font-weight: 600; color: var(--navy);
}
.pagination-link:hover, .pagination-link.active {
    background: var(--green); border-color: var(--green); color: var(--white);
}
.pagination-ellipsis { color: var(--gray-muted); padding: 0 4px; }

.products-load-more { text-align: center; margin-top: 32px; }
.products-load-more-count { font-weight: 400; opacity: 0.85; font-size: 0.9em; }

.products-guide-banner {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    flex-wrap: wrap; padding: 18px 24px; margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(96,150,68,0.12), rgba(43,62,80,0.06));
    border: 1px solid rgba(96,150,68,0.25); border-radius: var(--radius-lg);
}
.products-guide-banner strong { display: block; color: var(--navy-dark); margin-bottom: 4px; }
.products-guide-banner span { color: var(--gray); font-size: 0.95rem; }

/* Product Guide Wizard */
.guide-section { padding-top: 20px; }
.guide-wizard {
    background: var(--white); border-radius: var(--radius-xl);
    box-shadow: var(--shadow); padding: 36px; border: 1px solid #e2e8f0;
}
.guide-progress {
    height: 6px; background: var(--gray-light); border-radius: 99px;
    margin-bottom: 32px; overflow: hidden;
}
.guide-progress-bar {
    height: 100%; width: 25%; background: linear-gradient(90deg, var(--green), var(--green-light));
    border-radius: 99px; transition: width 0.4s ease;
}
.guide-step { text-align: center; }
.guide-step[hidden] { display: none !important; }
.guide-step-icon {
    width: 72px; height: 72px; margin: 0 auto 20px;
    background: rgba(96,150,68,0.12); color: var(--green);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
}
.guide-step h2 { margin-bottom: 12px; font-size: 1.5rem; }
.guide-step > p { color: var(--gray); margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.guide-options {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
    margin: 24px 0; text-align: left;
}
.guide-option {
    display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
    padding: 18px; border: 2px solid #e2e8f0; border-radius: var(--radius-lg);
    background: var(--white); cursor: pointer; transition: var(--transition);
    font-family: inherit; width: 100%; text-align: left;
}
.guide-option i { font-size: 1.4rem; color: var(--green); }
.guide-option span { font-weight: 700; color: var(--navy-dark); font-size: 1rem; }
.guide-option small { color: var(--gray-muted); font-size: 0.85rem; }
.guide-option:hover, .guide-option.selected {
    border-color: var(--green); background: rgba(96,150,68,0.06);
    box-shadow: 0 0 0 4px var(--green-glow);
}
.guide-nav {
    display: flex; justify-content: center; gap: 12px; margin-top: 28px; flex-wrap: wrap;
}
.guide-results-category {
    background: var(--gray-light); border-radius: var(--radius-lg);
    padding: 20px; margin-bottom: 24px; text-align: left;
}
.guide-results-category h3 { margin-bottom: 8px; }
.guide-results-list { display: grid; gap: 14px; text-align: left; margin-bottom: 24px; }
.guide-result-card {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 16px; border: 1px solid #e2e8f0; border-radius: var(--radius-lg);
    background: var(--white); transition: var(--transition);
}
.guide-result-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.guide-result-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(96,150,68,0.12); color: var(--green);
    border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
}
.guide-result-card h4 { margin-bottom: 6px; font-size: 1.05rem; }
.guide-result-card p { color: var(--gray); font-size: 0.9rem; margin-bottom: 8px; }
.guide-loading { padding: 40px; color: var(--gray); }

@media (max-width: 768px) {
    .guide-wizard { padding: 24px 18px; }
    .guide-options { grid-template-columns: 1fr; }
    .products-guide-banner { flex-direction: column; align-items: flex-start; }
    .product-filters--bar { padding: 16px; }
    .product-filters--bar .product-filters-form { grid-template-columns: 1fr; }
    .products-page .layout-with-sidebar { grid-template-columns: 1fr; }
}

/* Product Filters Sidebar */
.product-filters--sidebar {
    margin-top: 24px; padding-top: 20px; border-top: 1px solid #e2e8f0;
}
.product-filters--bar {
    background: var(--white);
    border: 1px solid rgba(43,62,80,.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 20px 24px;
    margin-bottom: 28px;
}
.product-filters--bar .product-filters-header {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-light);
}
.product-filters--bar .product-filters-header h3,
.product-filters--sidebar h3 {
    font-size: 1rem; margin: 0; display: flex; align-items: center; gap: 8px;
}
.product-filters--bar .product-filters-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px 16px;
    align-items: end;
}
.product-filters--bar .product-filters-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 0;
}
.product-filters-form .form-group { margin-bottom: 0; }
.product-filters-form label {
    display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; color: var(--navy);
}
.product-filters-form .form-control { font-size: 0.9rem; padding: 10px 12px; width: 100%; }
.products-main { min-width: 0; }
.products-grid-page { margin-bottom: 8px; }

/* Cookie Consent */
.cookie-consent {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: rgba(26, 42, 56, 0.97); color: var(--white);
    padding: 16px 0; box-shadow: 0 -8px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(8px);
}
.cookie-consent[hidden] { display: none !important; }
.cookie-consent-inner {
    max-width: 1240px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.cookie-consent-text strong { display: block; margin-bottom: 6px; font-size: 1rem; }
.cookie-consent-text p { margin: 0; font-size: 0.9rem; opacity: 0.92; line-height: 1.5; max-width: 720px; }
.cookie-consent-text a { color: var(--green-light); text-decoration: underline; }
.cookie-consent-actions { display: flex; gap: 10px; flex-shrink: 0; }

@media (max-width: 768px) {
    .cookie-consent-inner { flex-direction: column; align-items: stretch; }
    .cookie-consent-actions { justify-content: stretch; }
    .cookie-consent-actions .btn { flex: 1; justify-content: center; }
}
