/* ============================================================
   VEROHS PRINTERS — Shared Stylesheet
   ============================================================ */

/* VARIABLES */
:root {
  --navy: #1B2A4A;
  --navy-dark: #111d33;
  --green: #6ABF4B;
  --green-dark: #52A036;
  --white: #fff;
  --off-white: #F4F6F2;
  --text-body: #3a4a5c;
}

/* BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text-body); background: var(--white); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Barlow Condensed', sans-serif; color: var(--navy); line-height: 1.1; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--navy); padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 70px; border-bottom: 3px solid var(--green); }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: 1px; }
.nav-logo-text span { color: var(--green); }
.nav-links { display: flex; gap: 0; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; padding: 0 1rem; height: 70px; display: flex; align-items: center; gap: 4px; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--green); }
.nav-links > li > a svg.chevron { width: 12px; height: 12px; fill: rgba(255,255,255,0.5); transition: transform 0.2s; }
.nav-links > li:hover > a svg.chevron { transform: rotate(180deg); fill: var(--green); }
.nav-cta { background: var(--green) !important; color: var(--white) !important; padding: 10px 22px !important; border-radius: 4px; font-weight: 600 !important; height: auto !important; margin-left: 0.5rem; }
.nav-cta:hover { background: var(--green-dark) !important; }
.nav-search-btn { background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer; padding: 6px 8px; display: flex; align-items: center; transition: color 0.15s; }
.nav-search-btn:hover { color: var(--white); }
.nav-mobile-actions { display: none; align-items: center; gap: 4px; }
.nav-search-mobile { display: flex; }
.nav-search-bar { position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 3px solid var(--green); padding: 0.75rem 5%; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.nav-search-form { display: flex; align-items: center; gap: 0.75rem; max-width: 720px; margin: 0 auto; background: rgba(255,255,255,0.07); border-radius: 8px; padding: 0 1rem; border: 1px solid rgba(255,255,255,0.12); transition: border-color 0.2s; }
.nav-search-form:focus-within { border-color: var(--green); }
.nav-search-form svg { flex-shrink: 0; color: rgba(255,255,255,0.4); }
.nav-search-form input { flex: 1; background: none; border: none; outline: none; color: var(--white); font-size: 1rem; padding: 0.8rem 0; font-family: inherit; }
.nav-search-form input::placeholder { color: rgba(255,255,255,0.35); }
.nav-search-close { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 1.4rem; cursor: pointer; padding: 0 0.25rem; line-height: 1; transition: color 0.15s; }
.nav-search-close:hover { color: var(--white); }
.mobile-search-link { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; margin-left: 1rem; }

/* DROPDOWN */
.dropdown { position: absolute; top: 70px; left: 0; background: var(--navy-dark); border-top: 3px solid var(--green); border-radius: 0 0 8px 8px; min-width: 260px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 0.2s, transform 0.2s, visibility 0.2s; z-index: 200; box-shadow: 0 8px 32px rgba(0,0,0,0.3); max-height: 80vh; overflow-y: auto; }
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-section { padding: 0.75rem 0 0; }
.dropdown-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); padding: 0 1.25rem 0.4rem; display: block; }
.dropdown a { display: block; color: rgba(255,255,255,0.75); text-decoration: none; font-size: 13px; font-weight: 500; padding: 0.6rem 1.25rem; transition: background 0.15s, color 0.15s; }
.dropdown a:hover, .dropdown a.active { background: rgba(255,255,255,0.06); color: var(--green); }
.dropdown-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 0.5rem 0; }
.dropdown-footer { padding: 0.75rem 1.25rem 1rem; }
.dropdown-footer a { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--green); letter-spacing: 1px; text-transform: uppercase; text-decoration: none; }

/* HAMBURGER + MOBILE MENU */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }
.mobile-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: var(--navy-dark); padding: 0; z-index: 99; overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a { display: block; color: rgba(255,255,255,0.8); text-decoration: none; padding: 0.875rem 5%; font-size: 15px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s; }
.mobile-menu ul li a:hover, .mobile-menu ul li a.active { color: var(--green); }
.mobile-menu ul li a.sub { padding-left: 8%; font-size: 14px; color: rgba(255,255,255,0.6); }
.mobile-menu ul li a.sub:hover { color: var(--green); }
.mobile-menu ul li.mobile-sub-label { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.2); padding: 0.9rem 8% 0.25rem; display: block; border-bottom: none; }
.mob-acc-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; background: none; border: none; border-top: 1px solid rgba(255,255,255,0.06); cursor: pointer; padding: 1rem 5%; font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.85); text-align: left; font-family: inherit; }
.mob-acc-btn:hover { color: var(--green); }
.mob-acc-chevron { width: 22px; height: 22px; flex-shrink: 0; color: rgba(255,255,255,0.35); transition: transform 0.25s; }
.mob-section.open .mob-acc-chevron { transform: rotate(180deg); }
.mob-acc-panel { display: none; }
.mob-section.open .mob-acc-panel { display: block; }
.mobile-cta-wrap { padding: 1.25rem 5%; }
.mobile-menu .mobile-cta { display: block; background: var(--green); color: var(--white); text-align: center; padding: 14px; border-radius: 4px; font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; text-transform: uppercase; text-decoration: none; letter-spacing: 1px; }

/* BREADCRUMB */
.breadcrumb { background: var(--navy-dark); padding: 0.75rem 5%; position: sticky; top: 70px; z-index: 90; }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 8px; font-size: 13px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb strong { color: var(--green); font-weight: 600; }

/* HERO BASE */
.hero { background: var(--navy); padding: 5rem 5% 4rem; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.12; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--green); }

/* HERO SLIDER */
.hero-slider { position: relative; background: var(--navy); }
.hero-swiper { width: 100%; height: calc(100vh - 0px); min-height: 580px; max-height: 900px; }
.hero-swiper .swiper-wrapper { height: 100%; }
.hero-swiper .swiper-slide { width: 100%; height: 100%; display: flex; align-items: center; overflow: hidden; }
.hero-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.06); transition: transform 7s ease; will-change: transform; pointer-events: none; }
.hero-swiper .swiper-slide-active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(17,29,51,0.93) 0%, rgba(17,29,51,0.68) 55%, rgba(17,29,51,0.25) 100%); pointer-events: none; }
.hero-swiper .swiper-wrapper { user-select: text; -webkit-user-select: text; }
.hero-slide-inner { position: relative; z-index: 2; max-width: 1200px; width: 100%; margin: 0 auto; padding: 100px 0% 80px; user-select: text; -webkit-user-select: text; }
.hero-slide-content, .hero-slide-content * { user-select: text; -webkit-user-select: text; }
.hero-slide-inner h1 { font-size: clamp(40px,5vw,68px); font-weight: 800; color: var(--white); text-transform: uppercase; line-height: 1; margin-bottom: 1.25rem; }
.hero-slide-inner h1 span { color: var(--green); }
.hero-slide-inner .hero-sub { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.72); max-width: 480px; margin-bottom: 2rem; }
.hero-slider::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--green); z-index: 10; }
/* Swiper controls */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next { color: var(--white); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); width: 48px; height: 48px; border-radius: 50%; transition: background 0.2s, border-color 0.2s; }
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover { background: var(--green); border-color: var(--green); }
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after { font-size: 15px; font-weight: 800; }
.hero-swiper .swiper-pagination { bottom: 24px; }
.hero-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.5); opacity: 1; width: 8px; height: 8px; margin: 0 4px; transition: all 0.3s; }
.hero-swiper .swiper-pagination-bullet-active { background: var(--green); width: 28px; border-radius: 4px; }
/* Split slide — content left, image right */
.hero-slide-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-slide-content { display: flex; flex-direction: column; }
.hero-slide-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 2rem; }
.hero-slide-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(106,191,75,0.15); border: 1px solid rgba(106,191,75,0.35); color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; padding: 7px 14px; border-radius: 4px; letter-spacing: 0.5px; }
.hero-slide-visual { position: relative; min-width: 0; }
.hero-visual { position: relative; }
.hero-img-wrap { border-radius: 12px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.hero-img-wrap img { width: 100%; height: 400px; object-fit: cover; display: block; }
.float-card { position: absolute; background: var(--white); border-radius: 8px; padding: 1rem 1.25rem; box-shadow: 0 8px 30px rgba(0,0,0,0.2); display: flex; align-items: center; gap: 10px; }
.float-card-1 { bottom: -20px; left: -20px; }
.float-card-2 { top: 20px; right: -20px; }
.float-icon { width: 40px; height: 40px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-icon.green { background: var(--green); }
.float-icon.navy { background: var(--navy); }
.float-icon svg { width: 20px; height: 20px; fill: white; }
.float-title { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); text-transform: uppercase; }
.float-sub { font-size: 12px; color: var(--text-body); margin-top: 2px; }
.hero-image-main { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.hero-image-main img { width: 100%; height: 420px; object-fit: cover; display: block; }
.hero-image-badge { position: absolute; bottom: -16px; left: 24px; background: var(--green); color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 10px 18px; border-radius: 4px; box-shadow: 0 4px 16px rgba(106,191,75,0.45); white-space: nowrap; }
.hero-image-stat { position: absolute; top: 20px; right: -16px; background: var(--navy); color: var(--white); font-family: 'Barlow Condensed', sans-serif; padding: 14px 18px; border-radius: 8px; text-align: center; border: 2px solid var(--green); box-shadow: 0 4px 20px rgba(0,0,0,0.35); }
.hero-image-stat .big { font-size: 28px; font-weight: 800; color: var(--green); line-height: 1; }
.hero-image-stat .small { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 4px; }
/* Mobile */
@media (max-width: 900px) {
  .hero-slide-split { grid-template-columns: 1fr; }
  .hero-slide-visual { display: none; }
}
@media (max-width: 768px) {
  .hero-swiper { height: 90svh; min-height: 500px; max-height: none; }
  .hero-slide-inner { padding: 120px 5% 80px; }
  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next { display: none; }
}
.hero-eyebrow { display: inline-block; background: rgba(106,191,75,0.15); color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 2px; margin-bottom: 1.25rem; border-left: 3px solid var(--green); }
.hero h1 { font-size: clamp(40px,5vw,68px); font-weight: 800; color: var(--white); text-transform: uppercase; line-height: 1; margin-bottom: 1.25rem; }
.hero h1 span { color: var(--green); }
.hero-sub { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.72); max-width: 480px; margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2.5rem; }
.hero-checklist { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 2rem; }
.hero-check { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.88); font-size: 15px; line-height: 1.4; }
.hero-check svg { flex-shrink: 0; fill: var(--green); }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500; padding: 7px 14px; border-radius: 4px; }
.hero-badge svg { width: 14px; height: 14px; fill: var(--green); flex-shrink: 0; }

/* SECTION UTILITIES */
.section { padding: 5rem 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; user-select: text; -webkit-user-select: text; }
.section-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 1rem; }
.section-title { font-size: clamp(32px,4vw,52px); font-weight: 800; text-transform: uppercase; margin-bottom: 1rem; }
.section-title span { color: var(--green); }
.section-body { font-size: 16px; line-height: 1.8; color: var(--text-body); max-width: 640px; }
.specs-section .section-title { color: var(--white); }
.divider { width: 56px; height: 4px; background: var(--green); margin: 1.25rem 0; border-radius: 2px; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; margin-bottom: 2rem; }
.back-link svg { width: 16px; height: 16px; fill: var(--green); }

/* STATS BAR */
.stats-bar { background: var(--green); display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800; color: var(--white); line-height: 1; text-transform: uppercase; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.85); margin-top: 4px; font-weight: 500; }

/* BUTTONS */
.btn-primary { background: var(--green); color: var(--white); padding: 16px 32px; border-radius: 4px; font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: var(--white); padding: 15px 32px; border-radius: 4px; font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border: 2px solid rgba(255,255,255,0.3); cursor: pointer; transition: border-color 0.2s, color 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-light:hover { border-color: var(--green); color: var(--green); }
.btn-navy { background: var(--navy); color: var(--white); padding: 16px 32px; border-radius: 4px; font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; transition: background 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-navy:hover { background: var(--navy-dark); }
.btn-navy-cta { background: var(--navy); color: var(--white); padding: 16px 36px; border-radius: 4px; font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; transition: background 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-navy-cta:hover { background: var(--navy-dark); }
.btn-white-border { background: transparent; color: var(--white); padding: 15px 32px; border-radius: 4px; font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border: 2px solid rgba(255,255,255,0.6); display: inline-flex; align-items: center; gap: 8px; }
.btn-green { display: inline-flex; align-items: center; gap: 6px; background: var(--green); color: var(--white); padding: 11px 20px; border-radius: 4px; font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; transition: background 0.2s; }
.btn-green:hover { background: var(--green-dark); }
.btn-green svg { width: 16px; height: 16px; fill: white; }
.btn-outline-navy { display: inline-flex; align-items: center; gap: 6px; background: transparent; color: var(--navy); padding: 10px 18px; border-radius: 4px; font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; border: 2px solid rgba(27,42,74,0.2); transition: border-color 0.2s, color 0.2s; }
.btn-outline-navy:hover { border-color: var(--navy); color: var(--navy); }

/* CTA SECTIONS */
.cta-strip { background: var(--green); padding: 4rem 5%; text-align: center; }
.cta-strip h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px,4vw,56px); font-weight: 800; color: var(--white); text-transform: uppercase; margin-bottom: 0.75rem; }
.cta-strip p { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-section { background: var(--green); padding: 4.5rem 5%; text-align: center; }
.cta-section h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(36px,4vw,60px); font-weight: 800; color: var(--white); text-transform: uppercase; margin-bottom: 0.75rem; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* GOOGLE REVIEWS */
.gr-wrap { }
.gr-header { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 2px solid var(--off-white); }
.gr-branding { display: flex; align-items: center; gap: 8px; }
.gr-branding-text { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); letter-spacing: 0.5px; }
.gr-summary { display: flex; align-items: center; gap: 1rem; }
.gr-score { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1; }
.gr-stars-row { display: flex; gap: 2px; margin-bottom: 3px; }
.gr-total { font-size: 13px; color: var(--text-body); }
.gr-see-all { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700; color: var(--green); text-decoration: none; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.gr-see-all:hover { color: var(--navy); }
.gr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.gr-card { background: var(--white); border: 1px solid rgba(27,42,74,0.1); border-radius: 10px; padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; transition: box-shadow .2s, transform .2s; }
.gr-card:hover { box-shadow: 0 8px 24px rgba(27,42,74,0.1); transform: translateY(-2px); }
.gr-card-head { display: flex; align-items: center; gap: .75rem; }
.gr-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: white; flex-shrink: 0; overflow: hidden; }
.gr-avatar img { width: 100%; height: 100%; object-fit: cover; }
.gr-meta { flex: 1; min-width: 0; }
.gr-name { font-weight: 700; font-size: 14px; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gr-date { font-size: 12px; color: var(--text-body); opacity: .7; margin-top: 1px; }
.gr-g-icon { flex-shrink: 0; }
.gr-card-stars { display: flex; gap: 2px; }
.gr-body { font-size: 13px; color: var(--text-body); line-height: 1.65; margin: 0; flex: 1; }
.gr-cta-row { text-align: center; }
.gr-write-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 2px solid rgba(27,42,74,0.15); color: var(--navy); padding: 12px 28px; border-radius: 6px; font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; transition: border-color .2s, box-shadow .2s; }
.gr-write-btn:hover { border-color: var(--green); box-shadow: 0 4px 12px rgba(106,191,75,0.2); }
@media(max-width:900px) { .gr-grid { grid-template-columns: 1fr 1fr; } .gr-header { gap: 1rem; } .gr-see-all { margin-left: 0; } }
@media(max-width:600px) { .gr-grid { grid-template-columns: 1fr; } }

/* FOOTER */
footer { background: var(--navy-dark); padding: 4rem 5% 2rem; color: rgba(255,255,255,0.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; max-width: 1200px; margin: 0 auto; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; color: var(--white); letter-spacing: 1px; }
.footer-logo-text span { color: var(--green); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 1rem; max-width: 280px; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 0.75rem; font-size: 14px; align-items: flex-start; }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--green); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; max-width: 1200px; margin: 0 auto; font-size: 13px; flex-wrap: wrap; gap: 1rem; }

/* ── Courier strip (in-page, second section) ──────────────── */
.courier-strip { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.75rem; margin-bottom: 1.5rem; opacity: .5; }
.courier-strip:hover { opacity: .7; transition: opacity .2s; }
.courier-strip-logo svg { display: block; height: 24px; width: auto; }
.courier-strip-text { font-size: 11px; color: inherit; }
.courier-strip-text strong { font-weight: 500; }
.courier-strip-icon { display: none; }
.courier-strip-divider { width: 1px; height: 14px; background: currentColor; opacity: .2; flex-shrink: 0; }

/* ── Footer trust bar ─────────────────────────────────────── */
.footer-trust { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,0.08); max-width: 1200px; margin: 0 auto; }
.footer-trust-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); white-space: nowrap; }
.footer-trust-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
.ftrust-badge { display: inline-flex; align-items: center; opacity: 0.8; transition: opacity .2s; flex-shrink: 0; }
.ftrust-badge:hover { opacity: 1; }
.ftrust-badge svg { display: block; height: 30px; width: auto; }
@media (max-width: 600px) { .footer-trust { gap: .6rem; } .ftrust-badge svg { height: 24px; } .footer-trust-label { font-size: 10px; } }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 200; width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); text-decoration: none; animation: pulse 2.5s infinite; }
.whatsapp-float:hover { transform: scale(1.1); animation: none; }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }
@keyframes pulse { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); } }

/* RESPONSIVE */
@media (max-width: 900px) {
  body { overflow-x: hidden; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-mobile-actions { display: flex; }
  .mobile-search-link { display: none; }
  .stats-bar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 3.5rem 5%; }
  .cta-strip, .cta-section { padding: 3rem 5%; }
  .hero-slide-inner { padding: 80px 5% 60px; }
  .hero-sub { max-width: 100%; }
  .hero-slide-inner .hero-sub { max-width: 100%; }
  .section-body { max-width: 100%; }
}
@media (max-width: 600px) {
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand p { max-width: 100%; }
  .section { padding: 2.5rem 5%; }
  .cta-strip, .cta-section { padding: 2rem 5%; }
  .cta-strip h2, .cta-section h2 { font-size: clamp(28px,7vw,40px); }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons a { width: 100%; justify-content: center; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons a { width: 100%; justify-content: center; }
  .btn-primary, .btn-outline-light, .btn-navy, .btn-navy-cta, .btn-white-border, .btn-green, .btn-outline-navy { padding: 14px 20px; font-size: 15px; }
  .stat-number { font-size: 28px; }
  .section-title { font-size: clamp(28px,7vw,44px); }
  .hero-slide-inner { padding: 100px 5% 60px; }
  .hero-slide-inner h1 { font-size: clamp(34px,8vw,54px); }
  .hero-eyebrow { font-size: 10px; }
  .hero-badges { display: none; }
  .hero-badge { display: none; }
  .hero-slide-badges { gap: 6px; }
  .hero-slide-badge { font-size: 12px; padding: 6px 10px; }
  .divider { margin: 1rem 0; }
  .back-link { margin-bottom: 1.25rem; }
  .gr-score { font-size: 2.25rem; }
  footer { padding: 3rem 5% 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 16px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .breadcrumb { padding: 0.6rem 5%; }
}
.section-title-white { color: white; }

/* LABEL TYPE SUB-PAGES */
.label-type-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.label-type-detail-images { display: flex; flex-direction: column; gap: 1rem; }
.label-img-row { display: flex; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; scroll-behavior: smooth; gap: .75rem; padding-bottom: .25rem; scrollbar-width: none; }
.label-img-row::-webkit-scrollbar { display: none; }
.label-img-small { flex: 0 0 120px; min-height: 90px; scroll-snap-align: start; }
.label-img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: #f0f2ee; border: 2px dashed #c8d4c0; color: #8a9e80; font-size: 13px; text-align: center; padding: 1rem; border-radius: 8px; }
.label-img-placeholder span { font-size: 32px; opacity: 0.5; }
.label-img-placeholder p { font-size: 12px; opacity: 0.6; margin: 0; }
.label-img-main { aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; min-height: 240px; cursor: zoom-in; position: relative; }
.label-img-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.label-img-main:hover img { transform: scale(1.07); }
.label-img-small { aspect-ratio: 1; border-radius: 8px; overflow: hidden; min-height: 90px; cursor: zoom-in; position: relative; transition: outline .15s; }
.label-img-small.thumb-active { outline: 3px solid var(--green); outline-offset: 2px; }
/* FAQ Accordion */
.faq-list { margin-top:2rem; border-top:1px solid rgba(27,42,74,0.12); }
.faq-item { border-bottom:1px solid rgba(27,42,74,0.12); background:#fff; padding:0 1rem; border-radius:6px; margin-bottom:.4rem; }
.faq-btn { width:100%; display:flex; justify-content:space-between; align-items:center; gap:1rem; background:none; border:none; padding:1.1rem 0; text-align:left; cursor:pointer; color:var(--navy); font-family:'Barlow Condensed',sans-serif; font-size:18px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; }
.faq-btn svg { flex-shrink:0; width:20px; height:20px; fill:var(--green); transition:transform .25s; }
.faq-item.open .faq-btn svg { transform:rotate(180deg); }
.faq-answer { display:none; font-size:14px; color:var(--text-body); line-height:1.7; padding-bottom:1.1rem; }
.faq-item.open .faq-answer { display:block; }

#img-lightbox { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.95); z-index:2000; align-items:center; justify-content:center; }
#img-lightbox.open { display:flex; }
#img-lightbox-img { max-width:95vw; max-height:90vh; object-fit:contain; border-radius:6px; }
#img-lightbox-close { position:absolute; top:1rem; right:1.25rem; background:none; border:none; color:#fff; font-size:2.5rem; line-height:1; cursor:pointer; opacity:.8; }
#img-lightbox-close:hover { opacity:1; }
.label-img-small img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.label-img-small:hover img { transform: scale(1.07); }
.label-img-gallery { aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; min-height: 160px; cursor: zoom-in; position: relative; }
.label-img-gallery img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.label-img-gallery:hover img { transform: scale(1.07); }
.label-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.label-feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.5rem; }
.label-feature-list li { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--text-body); }
@media (max-width: 900px) { .label-type-detail-grid { grid-template-columns: 1fr; } .label-gallery-grid { grid-template-columns: repeat(2,1fr); } .food-label-anatomy-grid { grid-template-columns: repeat(2,1fr) !important; } }
@media (max-width: 680px) { .food-label-anatomy-grid { grid-template-columns: 1fr !important; } }
@media (max-width: 600px) {
  .food-label-anatomy-grid { grid-template-columns: 1fr !important; }

  .label-img-small { flex: 0 0 28vw; }
  #label-compliance > div[style*="font-size:320px"] { display: none; }
  #label-compliance div[style*="align-items:flex-start"] { flex-direction: column; gap: .75rem; }
  .food-label-anatomy-grid > div { padding: 1.1rem !important; }
  .wg-tabs { flex-wrap: wrap; gap: .4rem; }
  .wg-tab { font-size: 12px; padding: 6px 14px; }
  .wg-more-btn { font-size: 13px; padding: 9px 18px; width: 100%; justify-content: center; }

  /* Horizontal scroll gallery */
  .label-gallery-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: .75rem;
    padding-bottom: .25rem;
  }
  .label-gallery-grid::-webkit-scrollbar { display: none; }
  .label-gallery-grid { scrollbar-width: none; }

  .label-gallery-grid .label-img-gallery,
  .label-gallery-grid .wg-item {
    flex: 0 0 72vw;
    scroll-snap-align: start;
    min-height: 0;
  }
}

/* ── Work Gallery (images + YouTube) ───────────────────────────────── */
.wg-tabs { display:flex; gap:.5rem; margin-bottom:1.5rem; }
.wg-tab { background:transparent; border:2px solid rgba(27,42,74,0.15); color:var(--text-body); font-family:'Barlow Condensed',sans-serif; font-size:14px; font-weight:700; text-transform:uppercase; letter-spacing:1px; padding:8px 20px; border-radius:4px; cursor:pointer; transition:all .2s; }
.wg-tab:hover { border-color:var(--green); color:var(--green); }
.wg-tab.active { background:var(--navy); border-color:var(--navy); color:#fff; }

/* Work gallery — same grid as label-gallery-grid, videos slot in naturally */
.wg-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin-top:1.5rem; }
@media(max-width:900px){ .wg-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:480px){ .wg-grid { grid-template-columns:1fr 1fr; gap:.75rem; } }

.wg-item { aspect-ratio:4/3; border-radius:8px; overflow:hidden; cursor:pointer; position:relative; min-height:160px; }
.wg-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .35s; }
.wg-item:hover img { transform:scale(1.04); }

/* Play button */
.wg-play { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:52px; height:52px; border-radius:50%; background:rgba(106,191,75,0.9); border:3px solid rgba(255,255,255,0.9); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:transform .2s,background .2s; box-shadow:0 4px 20px rgba(0,0,0,0.4); z-index:2; pointer-events:none; }
.wg-item:hover .wg-play { transform:translate(-50%,-50%) scale(1.1); background:var(--green); }

/* YouTube badge */
.wg-yt-badge { position:absolute; bottom:8px; left:8px; background:rgba(0,0,0,0.65); color:#fff; font-size:11px; font-weight:600; padding:3px 8px; border-radius:3px; display:flex; align-items:center; gap:4px; z-index:2; }

/* Zoom overlay on photos */
.wg-zoom { position:absolute; top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,0); display:flex; align-items:center; justify-content:center; transition:background .2s; opacity:0; z-index:2; }
.wg-item:hover .wg-zoom { background:rgba(0,0,0,0.3); opacity:1; }

/* Placeholder */
.wg-item.wg-empty { background:#eef0ec; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.5rem; cursor:default; }
.wg-placeholder-label { font-size:11px; color:rgba(0,0,0,0.28); font-weight:600; letter-spacing:.5px; }

/* Lightbox modal */
.wg-modal { position:fixed; inset:0; z-index:1000; display:flex; align-items:center; justify-content:center; }
.wg-modal[hidden] { display:none; }
.wg-modal-backdrop { position:absolute; inset:0; background:rgba(0,0,0,0.88); }
.wg-modal-box { position:relative; z-index:1; width:90vw; max-width:960px; }
.wg-modal-content iframe { width:100%; aspect-ratio:16/9; display:block; border-radius:6px; }
.wg-modal-close { position:absolute; top:-40px; right:0; background:none; border:none; color:#fff; font-size:22px; cursor:pointer; opacity:.7; transition:opacity .2s; }
.wg-modal-close:hover { opacity:1; }
/* Gallery overflow — hidden items + view more button */
.wg-overflow { display:none; }
.wg-more-wrap { text-align:center; margin-top:1.5rem; }
.wg-more-btn { display:inline-flex; align-items:center; gap:6px; background:transparent; border:2px solid var(--navy); color:var(--navy); font-family:'Barlow Condensed',sans-serif; font-size:15px; font-weight:700; letter-spacing:1px; text-transform:uppercase; padding:10px 24px; border-radius:4px; cursor:pointer; transition:background .2s,color .2s; }
.wg-more-btn:hover { background:var(--navy); color:#fff; }
.wg-more-btn svg { transition:transform .3s; }
.wg-more-btn.expanded svg { transform:rotate(180deg); }

/* ══════════════════════════════════════════════════════════════════════
   COMPONENT LIBRARY — reusable across all pages, no page-level styles
   Rule: grep here first; add here if new; never put CSS in a page <style>
   ══════════════════════════════════════════════════════════════════════ */

/* ── Layout utilities ───────────────────────────────────────────────── */
.two-col-grid     { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
.three-col-grid   { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
/* Two-column image+text layout — wide gap, image hidden on mobile */
.two-col-img-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.col-image        { border-radius:12px; overflow:hidden; box-shadow:0 16px 40px rgba(27,42,74,0.1); }
.col-image img    { width:100%; height:420px; object-fit:cover; display:block; }
/* Auto-fit card grid — fluid, minimum 240px per card */
.auto-card-grid   { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1.5rem; }
@media(max-width:900px){ .two-col-grid { grid-template-columns:1fr; } .three-col-grid { grid-template-columns:1fr 1fr; } .two-col-img-grid { grid-template-columns:1fr; } .two-col-img-grid .col-image { display:none; } }
@media(max-width:560px){ .three-col-grid { grid-template-columns:1fr; } }

/* ── Hero tagline (green left-border — all hub page heroes) ─────────── */
.hero-tagline { font-family:'Barlow Condensed',sans-serif; font-size:22px; font-weight:700; color:var(--green); text-transform:uppercase; letter-spacing:1px; margin-bottom:1rem; border-left:4px solid var(--green); padding-left:1rem; }

/* ── Method cards (print method comparison — labels/tshirts/signage/digital) */
.method-card { background:var(--white); border-radius:12px; overflow:hidden; border:1px solid rgba(27,42,74,0.08); }
.method-top { padding:2.5rem; position:relative; overflow:hidden; }
.method-top::after { content:''; position:absolute; bottom:-30px; right:-30px; width:120px; height:120px; border-radius:50%; background:rgba(255,255,255,0.08); }
.method-card.mc-green .method-top { background:var(--green); }
.method-card.mc-navy  .method-top { background:var(--navy); }
.method-eyebrow { font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,0.7); margin-bottom:0.5rem; }
.method-top h3 { font-size:34px; font-weight:800; color:var(--white); text-transform:uppercase; margin-bottom:0.75rem; }
.method-top p  { font-size:15px; color:rgba(255,255,255,0.8); line-height:1.6; max-width:360px; }
.method-pill { display:inline-block; background:rgba(255,255,255,0.2); color:var(--white); font-family:'Barlow Condensed',sans-serif; font-size:14px; font-weight:700; text-transform:uppercase; letter-spacing:1px; padding:6px 14px; border-radius:4px; margin-top:1rem; }
.method-body { padding:2rem 2.5rem; }
.method-features { list-style:none; display:flex; flex-direction:column; gap:0.75rem; }
.method-features li { display:flex; align-items:flex-start; gap:10px; font-size:14px; line-height:1.5; }
.method-features li svg { width:18px; height:18px; fill:var(--green); flex-shrink:0; margin-top:1px; }
.method-note { margin-top:1.5rem; padding:1rem 1.25rem; background:var(--off-white); border-radius:6px; font-size:13px; color:var(--text-body); line-height:1.6; border-left:3px solid var(--green); }

/* ── How-it-works step cards (numbered cards, off-white bg, green top border) */
.how-step { background:var(--off-white); border-radius:10px; padding:1.75rem; border-top:4px solid var(--green); }
.how-step-num { font-family:'Barlow Condensed',sans-serif; font-size:52px; font-weight:800; color:var(--green); opacity:.2; line-height:1; margin-bottom:.5rem; }
.how-step h3 { font-family:'Barlow Condensed',sans-serif; font-size:20px; font-weight:700; text-transform:uppercase; color:var(--navy); letter-spacing:.5px; margin-bottom:.6rem; }
.how-step p  { font-size:14px; line-height:1.65; color:var(--text-body); }

/* ── Vertical step list (numbered circle + white card + green left border) */
.step-list { display:flex; flex-direction:column; gap:1.25rem; margin-top:2rem; }
.step-item { display:flex; gap:1rem; align-items:flex-start; background:var(--white); padding:1.25rem; border-radius:8px; border-left:4px solid var(--green); }
.step-num  { font-family:'Barlow Condensed',sans-serif; font-size:28px; font-weight:800; color:var(--green); flex-shrink:0; line-height:1; width:32px; }
.step-item h4 { font-size:17px; font-weight:700; text-transform:uppercase; color:var(--navy); margin-bottom:3px; }
.step-item p  { font-size:13px; line-height:1.6; color:var(--text-body); }

/* ── Button row (flex container for CTA button pairs) ──────────────── */
.btn-row { display:flex; gap:1rem; flex-wrap:wrap; margin-top:2rem; }

/* ── Section note (small explanatory text below a grid or section) ──── */
.section-note      { font-size:14px; color:var(--text-body); margin-top:1.5rem; line-height:1.6; }
.section-note-dark { font-size:14px; color:rgba(255,255,255,0.55); margin-top:2rem; text-align:center; line-height:1.6; }

/* ── Offer badge (inline green pill for limited-time promotions) ─────── */
.offer-badge { background:var(--green); color:#fff; font-size:11px; font-weight:700; padding:2px 7px; border-radius:3px; letter-spacing:.5px; text-transform:uppercase; vertical-align:middle; }

/* ── Card link (green "View →" link inside dark and light cards) ────── */
.card-link { color:var(--green); font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:14px; text-transform:uppercase; letter-spacing:.5px; text-decoration:none; display:inline-block; margin-top:.5rem; }
.card-link:hover { text-decoration:underline; }

/* ── Back-navigation link ───────────────────────────────────────────── */
.back-link { display:inline-flex; align-items:center; gap:6px; color:rgba(27,42,74,0.5); text-decoration:none; font-size:13px; font-weight:600; text-transform:uppercase; letter-spacing:1px; margin-bottom:1.25rem; transition:color .2s; }
.back-link:hover { color:var(--green); }
.back-link svg { width:16px; height:16px; fill:currentColor; }

/* ── Dark card (semi-transparent card for navy sections) ────────────── */
.dark-card { background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:10px; padding:1.5rem; transition:background .2s; }
.dark-card:hover { background:rgba(255,255,255,0.08); }
.dark-card h3 { font-family:'Barlow Condensed',sans-serif; font-size:20px; font-weight:700; text-transform:uppercase; color:var(--white); letter-spacing:.5px; margin-bottom:.5rem; }
.dark-card p  { font-size:13px; color:rgba(255,255,255,0.65); line-height:1.6; }

/* ── Dark card accent modifier (adds green top border) ─────────────── */
.dark-card-accent { border-top:4px solid var(--green); }

/* ── Icon box (green square icon container) ─────────────────────────── */
.icon-box { width:44px; height:44px; background:var(--green); border-radius:8px; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-bottom:1rem; }
.icon-box svg { width:22px; height:22px; fill:white; }

/* ── Check card (tick icon + bold title + description) ──────────────── */
.check-card { background:var(--white); border-radius:10px; padding:1.25rem 1.5rem; display:flex; align-items:flex-start; gap:.85rem; }
.check-card strong { font-size:14px; color:var(--navy); display:block; margin-bottom:.2rem; }
.check-card span   { font-size:13px; color:var(--text-body); }

/* ── Decorative background letter (large faded text, navy sections) ─── */
.section-bg-letter { position:absolute; font-family:'Barlow Condensed',sans-serif; font-size:320px; font-weight:800; color:rgba(255,255,255,0.03); top:-60px; right:-30px; line-height:1; pointer-events:none; user-select:none; }
@media(max-width:600px){ .section-bg-letter { display:none; } }

/* ── Section-tag and section-title modifiers for dark/navy backgrounds ─ */
.section-tag-dark  { background:rgba(255,255,255,0.08); color:rgba(255,255,255,0.6); }
.section-title-dark { color:var(--white); }

/* ── Check-card SVG positioning ─────────────────────────────────────── */
.check-card > svg  { flex-shrink:0; margin-top:2px; }

/* ── Icon feature row (icon-box + heading + text, for navy sections) ── */
.icon-feature { display:flex; gap:1rem; align-items:flex-start; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:8px; padding:1.25rem; }
.icon-feature h4 { font-family:'Barlow Condensed',sans-serif; font-size:18px; font-weight:700; color:var(--white); text-transform:uppercase; margin-bottom:4px; }
.icon-feature p  { font-size:13px; color:rgba(255,255,255,0.65); line-height:1.6; }

/* ── Label types grid (labels hub catalogue) ────────────────────────── */
.label-types-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:1.5rem; margin-top:3rem; }
.label-type-card { display:flex; flex-direction:column; border:1px solid rgba(27,42,74,0.1); border-radius:10px; overflow:hidden; text-decoration:none; transition:transform 0.2s,box-shadow 0.2s,border-color 0.2s; user-select:text; -webkit-user-select:text; }
.label-type-card * { user-select:text; -webkit-user-select:text; }
.label-type-card:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(106,191,75,0.15); border-color:var(--green); }
.label-type-img { width:100%; aspect-ratio:4/3; background:var(--off-white); overflow:hidden; }
.label-type-img img { width:100%; height:100%; object-fit:cover; display:block; }
.label-img-placeholder { width:100%; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; background:#f0f2ee; border-bottom:2px dashed #c8d4c0; color:#8a9e80; font-size:13px; text-align:center; padding:1rem; }
.label-img-placeholder span  { font-size:32px; opacity:0.5; }
.label-img-placeholder small { font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:1px; opacity:0.7; }
.label-img-placeholder p     { font-size:12px; opacity:0.6; margin:0; }
.label-type-body   { padding:1.25rem 1.5rem 1.5rem; flex:1; display:flex; flex-direction:column; }
.label-type-body h3 { font-family:'Barlow Condensed',sans-serif; font-size:18px; font-weight:700; text-transform:uppercase; color:var(--navy); margin-bottom:0.4rem; }
.label-type-body p  { font-size:13px; line-height:1.6; color:var(--text-body); flex:1; margin-bottom:1rem; }
.label-type-link   { font-family:'Barlow Condensed',sans-serif; font-size:14px; font-weight:700; text-transform:uppercase; letter-spacing:0.5px; color:var(--green); }
@media(max-width:600px){ .label-types-grid { grid-template-columns:repeat(2,1fr); gap:1rem; } }

/* ── VerohSticky brand section (labels hub) ─────────────────────────── */
.verohsticky-section { background:var(--navy); position:relative; overflow:hidden; }
.verohsticky-grid    { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.verohsticky-image   { position:relative; border-radius:12px; overflow:hidden; box-shadow:0 24px 60px rgba(0,0,0,0.5); }
.verohsticky-image img { width:100%; height:460px; object-fit:cover; display:block; }
.verohsticky-badge   { position:absolute; top:24px; left:24px; background:var(--green); color:white; font-family:'Barlow Condensed',sans-serif; font-size:14px; font-weight:700; letter-spacing:1px; text-transform:uppercase; padding:8px 16px; border-radius:4px; }
.vs-logo       { display:inline-flex; align-items:center; gap:10px; margin-bottom:1.5rem; }
.vs-logo-mark  { width:52px; height:52px; border-radius:8px; background:var(--green); display:flex; align-items:center; justify-content:center; }
.vs-logo-mark span { font-family:'Barlow Condensed',sans-serif; font-size:22px; font-weight:800; color:white; letter-spacing:-1px; }
.vs-logo-text  { font-family:'Barlow Condensed',sans-serif; font-size:32px; font-weight:800; color:var(--white); text-transform:uppercase; letter-spacing:1px; }
.vs-logo-text em { color:var(--green); font-style:normal; }
@media(max-width:900px){ .verohsticky-grid { grid-template-columns:1fr; } .verohsticky-image { display:none; } }

/* ── Problem statement block (navy section quote) ───────────────────── */
.problem-statement { margin-top:2rem; padding:1.5rem 2rem; background:rgba(106,191,75,0.1); border-left:4px solid var(--green); border-radius:0 8px 8px 0; }
.problem-statement p    { font-family:'Barlow Condensed',sans-serif; font-size:24px; font-weight:700; color:var(--white); line-height:1.3; font-style:italic; }
.problem-statement span { display:block; font-family:'Barlow',sans-serif; font-size:13px; color:var(--green); margin-top:0.75rem; font-weight:600; letter-spacing:1px; text-transform:uppercase; font-style:normal; }

/* ── Video placeholder card ─────────────────────────────────────────── */
.video-placeholder { border-radius:12px; overflow:hidden; background:var(--navy); border:1px solid rgba(27,42,74,0.15); transition:transform 0.2s,box-shadow 0.2s; }
.video-placeholder:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(27,42,74,0.15); }
.video-thumb { width:100%; height:200px; background:linear-gradient(135deg,var(--navy-dark),#0d1729); display:flex; align-items:center; justify-content:center; position:relative; cursor:pointer; }
.video-thumb img { width:100%; height:100%; object-fit:cover; display:block; opacity:0.5; }
.video-play  { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.video-play-btn { width:64px; height:64px; border-radius:50%; background:var(--green); display:flex; align-items:center; justify-content:center; box-shadow:0 4px 20px rgba(106,191,75,0.5); transition:transform 0.2s; }
.video-placeholder:hover .video-play-btn { transform:scale(1.1); }
.video-play-btn svg { width:28px; height:28px; fill:white; margin-left:4px; }
.video-coming-soon { position:absolute; top:12px; right:12px; background:rgba(27,42,74,0.8); color:rgba(255,255,255,0.7); font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; padding:4px 10px; border-radius:2px; }
.video-info    { padding:1.25rem 1.5rem 1.5rem; }
.video-info h3 { font-family:'Barlow Condensed',sans-serif; font-size:20px; font-weight:700; color:var(--white); text-transform:uppercase; margin-bottom:0.4rem; }
.video-info p  { font-size:13px; color:rgba(255,255,255,0.6); line-height:1.5; }

/* ── Numbered circle indicator (how-to-order steps) ─────────────────── */
.num-circle { width:44px; height:44px; border-radius:50%; background:var(--navy); color:var(--white); font-family:'Barlow Condensed',sans-serif; font-size:20px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; border:3px solid var(--green); }

/* ── FAQ accordion (hub pages) ──────────────────────────────────────── */
.faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-top:3rem; }
.faq-item { border:1px solid rgba(27,42,74,0.1); border-radius:8px; overflow:hidden; background:var(--white); }
.faq-question { padding:1.25rem 1.5rem; font-family:'Barlow Condensed',sans-serif; font-size:18px; font-weight:700; text-transform:uppercase; color:var(--navy); cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:1rem; user-select:none; transition:background 0.2s; }
.faq-question:hover { background:var(--off-white); }
.faq-question svg { width:18px; height:18px; fill:var(--green); flex-shrink:0; transition:transform 0.3s; }
.faq-item.open .faq-question svg { transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.35s ease,padding 0.3s ease; font-size:14px; line-height:1.7; color:var(--text-body); padding:0 1.5rem; }
.faq-item.open .faq-answer { max-height:400px; padding:0 1.5rem 1.25rem; }
@media(max-width:900px){ .faq-grid { grid-template-columns:1fr; } }

/* ── Internal links ─────────────────────────────────────────────────── */
a.ilink {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted var(--green, #3a7d44);
  transition: color .2s, border-color .2s;
}
a.ilink:hover {
  color: var(--green, #3a7d44);
  border-bottom-style: solid;
}
