:root {
    --clr-forest: #0d2212;
    --clr-deep: #1a3a22;
    --clr-primary: #2d6a4f;
    --clr-mid: #40916c;
    --clr-light: #74c69d;
    --clr-sage: #b7e4c7;
    --clr-gold: #c9a84c;
    --clr-gold-light: #f0c040;
    --clr-cream: #f6f8f2;
    --clr-white: #ffffff;
    --clr-text: #1c2b22;
    --clr-muted: #5a7060;
    --clr-border: #d8e6dd;
    --clr-red-close: #c94c4c;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 14px rgba(0,0,0,0.09);
    --shadow-lg: 0 12px 30px rgba(0,0,0,0.14);
    --shadow-xl: 0 24px 50px rgba(0,0,0,0.18);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --tr: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Assistant', sans-serif;

    --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); background: var(--clr-cream); color: var(--clr-text); line-height: 1.65; overflow-x: hidden; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: var(--tr); }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font); }
svg { fill: currentColor; display: inline-block; }

.container { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 12px;
}

.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-header h2 { font-size: 2.3rem; font-weight: 800; color: var(--clr-forest); line-height: 1.2; margin-bottom: 16px; }
.section-desc { color: var(--clr-muted); font-size: 1.05rem; }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: 1rem;
    padding: 12px 24px; border-radius: var(--radius-sm);
    border: 2px solid transparent; cursor: pointer;
    transition: var(--tr); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--clr-primary); color: var(--clr-white); border-color: var(--clr-primary); }
.btn-primary:hover { background: var(--clr-mid); border-color: var(--clr-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--clr-white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.8); }
.btn-ghost { background: rgba(255,255,255,0.08); color: var(--clr-white); border-color: rgba(255,255,255,0.2); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); }
.btn-sm { padding: 8px 18px; font-size: 0.9rem; }
.btn-lg { padding: 15px 32px; font-size: 1.1rem; border-radius: var(--radius-md); }
.btn-full { width: 100%; justify-content: center; }
.btn-outline-dark { background: transparent; color: var(--clr-primary); border-color: var(--clr-primary); }
.btn-outline-dark:hover { background: var(--clr-primary); color: var(--clr-white); }

.top-bar { background: var(--clr-forest); color: rgba(255,255,255,0.75); font-size: 0.82rem; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar-right { display: flex; align-items: center; gap: 12px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { width: 14px; height: 14px; fill: var(--clr-gold); flex-shrink: 0; }
.top-bar-sep { opacity: 0.3; }
.top-contact-link { display: flex; align-items: center; gap: 6px; font-weight: 700; color: var(--clr-white); padding: 4px 10px; border-radius: 4px; background: rgba(255,255,255,0.08); transition: var(--tr); }
.top-contact-link svg { width: 14px; height: 14px; fill: var(--clr-gold-light); }
.top-contact-link:hover { background: rgba(255,255,255,0.15); }
.top-contact-link.mobile { background: rgba(78,165,100,0.25); }

.main-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--clr-border); transition: var(--tr); }
.main-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 44px; height: 44px; color: var(--clr-primary); flex-shrink: 0; }
.logo-icon svg { width: 100%; height: 100%; }
.logo-text-group { display: flex; flex-direction: column; line-height: 1.1; }
.logo-line1 { font-size: 0.85rem; font-weight: 700; color: var(--clr-muted); }
.logo-line2 { font-size: 1.3rem; font-weight: 800; color: var(--clr-forest); letter-spacing: -0.5px; }

.nav-menu ul { display: flex; align-items: center; gap: 8px; }
.nav-link { font-size: 0.95rem; font-weight: 600; color: var(--clr-text); padding: 6px 12px; border-radius: 6px; transition: var(--tr); }
.nav-link:hover, .nav-link.is-active { color: var(--clr-primary); background: rgba(45,106,79,0.08); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; justify-content: center; align-items: center; width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1.5px solid var(--clr-border); background: var(--clr-white); cursor: pointer; transition: var(--tr); }
.bar { width: 20px; height: 2px; background: var(--clr-text); border-radius: 2px; transition: var(--tr); }
.nav-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: 90vh; display: flex; flex-direction: column; justify-content: center; background: url('../assets/hero-bg.png') center center / cover no-repeat; padding: 120px 0 80px; overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,34,18,0.97) 0%, rgba(26,58,34,0.88) 50%, rgba(45,106,79,0.75) 100%); z-index: 1; }
.hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.06); animation: float linear infinite; }
@keyframes float { 0% { transform: translateY(100vh) rotate(0deg); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-100px) rotate(720deg); opacity: 0; } }
.hero-content { position: relative; z-index: 3; max-width: 780px; }
.hero-badge-wrap { margin-bottom: 28px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.5); color: var(--clr-gold-light); padding: 8px 18px; border-radius: 50px; font-size: 0.9rem; font-weight: 700; backdrop-filter: blur(8px); }
.hero-badge svg { width: 16px; height: 16px; fill: var(--clr-gold-light); }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; line-height: 1.15; color: var(--clr-white); margin-bottom: 20px; letter-spacing: -1px; }
.text-accent { color: var(--clr-gold-light); }
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 620px; margin-bottom: 36px; line-height: 1.7; }
.hero-stats { display: flex; align-items: center; gap: 0; margin-bottom: 40px; background: rgba(255,255,255,0.07); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md); overflow: hidden; width: fit-content; }
.hero-stat { padding: 16px 28px; text-align: center; }
.hero-stat-sep { width: 1px; height: 50px; background: rgba(255,255,255,0.12); }
.stat-number { display: block; font-size: 1.15rem; font-weight: 800; color: var(--clr-white); }
.stat-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.55); font-weight: 600; margin-top: 2px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 4; line-height: 0; }
.hero-wave svg { display: block; width: 100%; fill: var(--clr-cream); }

.trust-bar { background: var(--clr-white); border-bottom: 1px solid var(--clr-border); padding: 24px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 10px 36px; }
.trust-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(45,106,79,0.1); color: var(--clr-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 22px; height: 22px; }
.trust-item strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--clr-forest); }
.trust-item span { display: block; font-size: 0.8rem; color: var(--clr-muted); margin-top: 2px; }
.trust-sep { width: 1px; height: 44px; background: var(--clr-border); flex-shrink: 0; }

.about { padding: 100px 0; background: var(--clr-cream); }
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-frame { position: relative; }
.about-img-frame::before { content: ''; position: absolute; top: -16px; right: -16px; width: 100%; height: 100%; border: 2px solid var(--clr-gold); border-radius: var(--radius-lg); z-index: 0; }
.about-img { position: relative; z-index: 1; border-radius: var(--radius-md); box-shadow: var(--shadow-xl); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-img-badge { position: absolute; bottom: 24px; left: -20px; z-index: 2; background: var(--clr-white); border-radius: var(--radius-md); padding: 12px 18px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; border-right: 4px solid var(--clr-gold); }
.badge-star { font-size: 1.6rem; color: var(--clr-gold); line-height: 1; }
.badge-text strong { display: block; font-size: 1.2rem; font-weight: 800; color: var(--clr-forest); }
.badge-text span { font-size: 0.75rem; color: var(--clr-muted); }
.about-content-col h2 { font-size: 2.1rem; font-weight: 800; color: var(--clr-forest); line-height: 1.25; margin-bottom: 20px; }
.about-content-col p { color: var(--clr-muted); font-size: 1.02rem; margin-bottom: 16px; }
.about-highlights { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.highlight-card { display: flex; gap: 16px; align-items: flex-start; background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 18px 20px; box-shadow: var(--shadow-sm); transition: var(--tr); }
.highlight-card:hover { box-shadow: var(--shadow-md); transform: translateX(-4px); }
.highlight-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.highlight-icon.green { background: rgba(45,106,79,0.12); color: var(--clr-primary); }
.highlight-icon.gold { background: rgba(201,168,76,0.15); color: var(--clr-gold); }
.highlight-icon svg { width: 20px; height: 20px; }
.highlight-card strong { display: block; font-size: 1rem; font-weight: 700; color: var(--clr-forest); margin-bottom: 4px; }
.highlight-card p { color: var(--clr-muted); font-size: 0.9rem; margin: 0; }

.services { padding: 100px 0; background: var(--clr-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { border-radius: var(--radius-md); border: 1.5px solid var(--clr-border); background: var(--clr-cream); padding: 36px 28px 32px; position: relative; display: flex; flex-direction: column; transition: var(--tr); overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--clr-light); transition: var(--tr); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--clr-mid); }
.service-card:hover::before { background: var(--clr-mid); height: 4px; }
.service-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.service-number { font-size: 2.5rem; font-weight: 900; color: var(--clr-border); line-height: 1; }
.featured-top .service-number { color: rgba(201,168,76,0.3); }
.featured-label { font-size: 0.75rem; font-weight: 700; background: var(--clr-gold); color: var(--clr-forest); padding: 4px 10px; border-radius: 20px; }
.service-card.featured-top, .service-card:first-child { background: var(--clr-forest); border-color: var(--clr-deep); color: rgba(255,255,255,0.85); }
.service-card:first-child::before { background: var(--clr-gold); }
.service-card:first-child h3 { color: var(--clr-white); }
.service-card:first-child .service-list li { color: rgba(255,255,255,0.85); }
.service-card:first-child .service-icon-wrap { background: rgba(255,255,255,0.08); color: var(--clr-gold-light); }
.service-icon-wrap { width: 60px; height: 60px; border-radius: var(--radius-sm); background: rgba(45,106,79,0.1); color: var(--clr-primary); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: var(--tr); }
.service-icon-wrap svg { width: 28px; height: 28px; }
.service-card:hover .service-icon-wrap { background: var(--clr-primary); color: var(--clr-white); }
.service-card:first-child:hover .service-icon-wrap { background: var(--clr-gold); color: var(--clr-forest); }
.service-card h3 { font-size: 1.35rem; font-weight: 800; color: var(--clr-forest); margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; color: var(--clr-muted); margin-bottom: 24px; flex-grow: 1; }
.service-card:first-child p { color: rgba(255,255,255,0.65); }
.service-list { display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--clr-border); padding-top: 22px; margin-top: auto; }
.service-card:first-child .service-list { border-top-color: rgba(255,255,255,0.1); }
.service-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.88rem; color: var(--clr-text); line-height: 1.4; }
.service-list li svg { width: 16px; height: 16px; fill: var(--clr-light); flex-shrink: 0; margin-top: 2px; }
.service-card:first-child .service-list li svg { fill: var(--clr-gold-light); }
.service-note { font-size: 0.8rem; color: var(--clr-gold); margin-top: 14px; font-weight: 600; border-top: 1px solid var(--clr-border); padding-top: 14px; }

.brands { padding: 100px 0; background: var(--clr-cream); }
.importers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.importer-card { background: var(--clr-white); border: 1.5px solid var(--clr-border); border-radius: var(--radius-md); padding: 28px 24px; transition: var(--tr); }
.importer-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--clr-mid); }
.primary-importer { grid-column: span 1; border-top: 3px solid var(--clr-primary); }
.importer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.importer-logo-placeholder { font-size: 1.2rem; font-weight: 900; letter-spacing: 1px; padding: 8px 14px; border-radius: 6px; align-items: center; }
.brand-logo-wrap { display: flex; align-items: center; height: 48px; }
.brand-logo-img { max-height: 48px; max-width: 150px; width: auto; height: auto; object-fit: contain; display: block; filter: none; }
.importer-logo-placeholder.stihl { background: #ff6600; color: white; }
.importer-logo-placeholder.husq { background: #273a8f; color: white; font-size: 0.85rem; }
.importer-logo-placeholder.schnapp-red { background: #cc1a1a; color: white; font-size: 1.4rem; font-weight: 900; }
.importer-logo-placeholder.oregon { background: #e8700a; color: white; }
.importer-logo-placeholder.kawasaki { background: #1b5c3e; color: white; font-size: 0.95rem; }
.importer-logo-placeholder.maruyama { background: #c0392b; color: white; font-size: 0.85rem; }
.importer-logo-placeholder.echo { background: #e05200; color: white; font-size: 1.1rem; font-weight: 900; letter-spacing: 2px; }
.importer-logo-placeholder.wolf { background: #c8a000; color: white; font-size: 0.75rem; font-weight: 900; letter-spacing: 1px; }
.importer-logo-placeholder.stiga { background: #1a5c1a; color: white; font-size: 1.1rem; font-weight: 900; }
.importer-logo-placeholder.newtec { background: #1a4080; color: white; font-size: 0.95rem; font-weight: 900; letter-spacing: 1px; }
.importer-badge { padding: 4px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; }
.importer-badge.gold { background: rgba(201,168,76,0.15); color: var(--clr-gold); }
.importer-badge.green { background: rgba(45,106,79,0.12); color: var(--clr-primary); }
.importer-badge.blue { background: rgba(30,80,160,0.1); color: #1e50a0; }
.importer-badge.red { background: rgba(204,26,26,0.1); color: #cc1a1a; }
.importer-badge.purple { background: rgba(120,40,180,0.12); color: #7828b4; }
.order-only-card { border-style: dashed; opacity: 0.92; }
.order-only-card:hover { opacity: 1; }
.importer-card h4 { font-size: 1.05rem; font-weight: 800; color: var(--clr-forest); margin-bottom: 10px; }
.importer-card p { font-size: 0.88rem; color: var(--clr-muted); line-height: 1.6; margin-bottom: 18px; }
.importer-products { display: flex; flex-wrap: wrap; gap: 6px; }
.prod-tag { font-size: 0.75rem; font-weight: 600; background: var(--clr-cream); border: 1px solid var(--clr-border); color: var(--clr-primary); padding: 3px 10px; border-radius: 20px; }

.location-section { padding: 100px 0; background: var(--clr-white); }
.location-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: flex-start; }
.info-cards-group { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.info-card { background: var(--clr-cream); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 20px; display: flex; gap: 14px; align-items: flex-start; }
.info-card-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(201,168,76,0.15); color: var(--clr-gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-card-icon svg { width: 20px; height: 20px; }
.info-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--clr-forest); margin-bottom: 6px; }
.info-card p, .info-card span { font-size: 0.88rem; color: var(--clr-muted); line-height: 1.5; }
.phone-item { display: block; font-size: 1.05rem; font-weight: 700; color: var(--clr-primary); margin-bottom: 2px; }
.phone-item:hover { color: var(--clr-mid); }
.hours-block { background: var(--clr-cream); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 24px; margin-bottom: 20px; }
.hours-block h3 { font-size: 1.05rem; font-weight: 800; color: var(--clr-forest); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--clr-gold); }
.hours-list { display: flex; flex-direction: column; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--clr-border); }
.hours-row:last-child { border-bottom: none; }
.day { font-size: 0.92rem; color: var(--clr-text); font-weight: 600; }
.time { font-size: 0.92rem; font-weight: 700; }
.time.open { color: var(--clr-primary); }
.time.closed { color: var(--clr-red-close); }
.nav-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.map-visual-wrap { height: 100%; min-height: 460px; }
.map-frame { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg); height: 100%; min-height: 460px; }
.map-frame iframe { display: block; }

.contact-section { padding: 100px 0; background: var(--clr-forest); }
.contact-section .eyebrow { color: var(--clr-gold-light); }
.contact-section h2 { color: var(--clr-white); font-size: 2.1rem; margin-bottom: 16px; }
.contact-section p { color: rgba(255,255,255,0.65); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-left { padding-top: 8px; }
.contact-direct { display: flex; flex-direction: column; gap: 14px; margin-top: 40px; }
.direct-link { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md); padding: 16px 20px; color: var(--clr-white); transition: var(--tr); }
.direct-link:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); transform: translateX(-4px); }
.direct-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(201,168,76,0.2); color: var(--clr-gold-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.direct-icon svg { width: 20px; height: 20px; }
.direct-link small { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.direct-link strong { display: block; font-size: 1.15rem; font-weight: 700; }
.contact-right { background: var(--clr-white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-xl); }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.88rem; font-weight: 700; color: var(--clr-forest); }
.form-group input, .form-group select, .form-group textarea { padding: 11px 16px; border: 1.5px solid var(--clr-border); border-radius: var(--radius-sm); font-size: 0.95rem; background: var(--clr-cream); color: var(--clr-text); transition: var(--tr); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--clr-primary); background: var(--clr-white); box-shadow: 0 0 0 3px rgba(45,106,79,0.12); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #aab5aa; }
.contact-form button[type="submit"] { margin-top: 4px; font-size: 1rem; padding: 13px; }
.form-error { font-size: 0.85rem; color: #c94c4c; margin-top: 8px; min-height: 20px; text-align: center; font-weight: 600; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.visible { display: block; }
.success-check { width: 72px; height: 72px; border-radius: 50%; background: rgba(45,106,79,0.1); color: var(--clr-primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.success-check svg { width: 40px; height: 40px; }
.form-success h3 { font-size: 1.5rem; font-weight: 800; color: var(--clr-forest); margin-bottom: 8px; }
.form-success p { color: var(--clr-muted); }
.form-success a { color: var(--clr-primary); font-weight: 700; }

.main-footer { background: var(--clr-forest); }
.footer-top { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-top-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-icon { width: 40px; height: 40px; color: var(--clr-gold-light); flex-shrink: 0; }
.footer-logo-icon svg { width: 100%; height: 100%; }
.footer-logo-name { display: block; font-size: 1.1rem; font-weight: 800; color: var(--clr-white); }
.footer-logo-sub { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-about-text { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-top-inner h4 { font-size: 0.95rem; font-weight: 700; color: var(--clr-white); margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-top-inner h4::after { content: ''; position: absolute; bottom: 0; right: 0; width: 28px; height: 2px; background: var(--clr-gold); }
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a { font-size: 0.88rem; color: rgba(255,255,255,0.55); padding: 2px 0; transition: var(--tr); }
.footer-links-col a:hover { color: var(--clr-gold-light); padding-right: 6px; }
.footer-services-col li { font-size: 0.88rem; color: rgba(255,255,255,0.55); padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; gap: 8px; }
.footer-services-col li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--clr-gold); flex-shrink: 0; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--clr-gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span, .footer-contact-item a { font-size: 0.87rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.footer-contact-item a:hover { color: var(--clr-gold-light); }
.footer-bottom { padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom-inner p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-brand-note { color: rgba(255,255,255,0.3) !important; }
.footer-areas-text { font-size: 0.88rem; color: var(--clr-border); line-height: 1.8; margin-top: 10px; }

.faq-section { padding: 90px 0; background: var(--clr-white); border-top: 1px solid var(--clr-border); }
.faq-accordion { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--clr-cream); border: 1.5px solid var(--clr-border); border-radius: var(--radius-md); overflow: hidden; transition: var(--tr); }
.faq-item[open] { border-color: var(--clr-mid); box-shadow: var(--shadow-sm); }
.faq-question { font-size: 1.05rem; font-weight: 700; color: var(--clr-forest); padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; list-style: none; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--clr-primary); }
.faq-icon { width: 22px; height: 22px; fill: var(--clr-primary); transition: transform 0.25s ease; flex-shrink: 0; margin-right: 12px; }
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-answer { padding: 0 24px 22px; font-size: 0.95rem; color: var(--clr-muted); line-height: 1.75; border-top: 1px dashed var(--clr-border); margin-top: 4px; padding-top: 16px; }
.faq-answer strong { color: var(--clr-forest); }

.fab-call { position: fixed; bottom: 28px; left: 28px; z-index: 900; width: 58px; height: 58px; border-radius: 50%; background: var(--clr-primary); color: var(--clr-white); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(45,106,79,0.45); transition: var(--tr); animation: pulse-fab 2s infinite; }
.fab-call svg { width: 26px; height: 26px; }
.fab-call:hover { transform: scale(1.12); background: var(--clr-mid); box-shadow: 0 8px 24px rgba(45,106,79,0.6); }
@keyframes pulse-fab { 0%, 100% { box-shadow: 0 6px 20px rgba(45,106,79,0.45), 0 0 0 0 rgba(45,106,79,0.4); } 50% { box-shadow: 0 6px 20px rgba(45,106,79,0.45), 0 0 0 12px rgba(45,106,79,0); } }

@media (max-width: 1024px) {
    .importers-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand-col { grid-column: span 2; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .about-container { grid-template-columns: 1fr; }
    .about-img-frame { max-width: 500px; }
    .location-layout { grid-template-columns: 1fr; }
    .map-visual-wrap { min-height: 320px; }
    .map-frame { min-height: 320px; }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }
    .top-bar-left .top-bar-item:last-child, .top-bar-left .top-bar-sep { display: none; }
    .nav-toggle { display: flex; }
    .nav-menu { position: fixed; inset: 0; top: calc(var(--header-h) + 1px); background: var(--clr-white); z-index: 999; padding: 32px 24px; transform: translateX(100%); transition: transform 0.32s ease; display: flex; flex-direction: column; }
    .nav-menu.open { transform: translateX(0); }
    .nav-menu ul { flex-direction: column; gap: 8px; }
    .nav-link { font-size: 1.2rem; padding: 12px 16px; display: block; }
    .header-actions .btn { display: none; }
    .hero { min-height: 100svh; padding: 80px 0 60px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-stats { flex-direction: column; gap: 0; width: 100%; }
    .hero-stat-sep { width: 100%; height: 1px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .trust-bar-inner { gap: 0; }
    .trust-item { padding: 10px 16px; }
    .trust-sep { display: none; }
    .importers-grid { grid-template-columns: 1fr; }
    .info-cards-group { grid-template-columns: 1fr; }
    .nav-buttons { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top-inner { grid-template-columns: 1fr; }
    .footer-brand-col { grid-column: auto; }
    .fab-call { width: 52px; height: 52px; bottom: 20px; left: 20px; }
    .section-header h2 { font-size: 1.8rem; }
    .about-container { gap: 40px; }
    .about-img-badge { left: 12px; bottom: 12px; }
}

@media (max-width: 480px) {
    .hero-badge { font-size: 0.8rem; padding: 6px 14px; }
    .hero h1 { font-size: 1.9rem; }
    .hero-subtitle { font-size: 1rem; }
}
