/* ===== SAKAECO Design System ===== */
:root {
  --navy: #0b1f3a;
  --navy-2: #122c52;
  --navy-soft: #16345c;
  --green: #3c8c3c;
  --green-dark: #245c24;
  --green-light: #eaf5ea;
  --green-mid: #4caf50;
  --accent-grad: linear-gradient(135deg, #245c24 0%, #4caf50 60%, #6fd06f 100%);
  --text: #202632;
  --muted: #66707d;
  --white: #ffffff;
  --border: #e6eaf0;
  --bg-soft: #f6f9f7;
  --shadow-sm: 0 2px 10px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 31, 58, 0.10);
  --shadow-lg: 0 20px 50px rgba(11, 31, 58, 0.16);
  --radius: 14px;
  --radius-sm: 8px;
  --ff-head: 'Poppins', 'Segoe UI', sans-serif;
  --ff-body: 'Inter', 'Segoe UI', sans-serif;
  --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5 { font-family: var(--ff-head); color: var(--navy); margin: 0 0 .5em; line-height: 1.2; }
p { margin: 0 0 1em; color: var(--muted); line-height: 1.7; }
button { font-family: inherit; cursor: pointer; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff;
  padding: 10px 16px; z-index: 10000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ===== Preloader ===== */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: linear-gradient(160deg, #0b1f3a 0%, #123a24 100%);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 28px; }

.preloader-ring-wrap { position: relative; width: 112px; height: 112px; display: flex; align-items: center; justify-content: center; }
.preloader-ring-track {
  position: absolute; inset: 0; border-radius: 50%;
  border: 3px solid rgba(255,255,255,.12);
}
.preloader-ring-spin {
  position: absolute; inset: 0; border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #6fd06f; border-right-color: #3c8c3c;
  animation: preloaderSpin 1.15s cubic-bezier(.55,.15,.45,.85) infinite;
}
.preloader-ring-spin-2 {
  inset: 10px; border-top-color: transparent; border-right-color: transparent;
  border-bottom-color: rgba(111,208,111,.55); border-left-color: rgba(111,208,111,.3);
  animation-duration: 1.7s; animation-direction: reverse;
}
.preloader-icon-badge {
  position: relative; width: 68px; height: 68px; border-radius: 50%;
  background: rgba(255,255,255,.07); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  animation: preloaderPulse 2.2s ease-in-out infinite;
}
.preloader-leaf path { fill: #6fd06f; }
.preloader-leaf line { stroke: #123a24; }
.preloader-leaf { transform-origin: center; }

.preloader-logo-img {
  height: 34px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0; transform: translateY(6px);
  animation: preloaderLogoIn .7s ease .25s forwards;
}

@keyframes preloaderSpin { to { transform: rotate(360deg); } }
@keyframes preloaderPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }
@keyframes preloaderLogoIn { to { opacity: .95; transform: translateY(0); } }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(6,36,58,.06);
  box-shadow: 0 10px 28px rgba(6,36,58,.05);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; gap: 28px; height: var(--header-h); }
.brand { display: flex; align-items: center; flex-shrink: 0; transition: transform .25s ease, filter .25s ease; }
.brand:hover { transform: scale(1.03); filter: drop-shadow(0 4px 10px rgba(60,140,60,.25)); }
.brand-logo { height: 44px; width: auto; }

.main-nav { flex: 1; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 14px; font-weight: 600; font-size: 15px; color: var(--navy);
  border-bottom: 2px solid transparent; transition: color .2s ease, border-color .2s ease;
}
.main-nav > ul > li > a:hover, .main-nav > ul > li > a.active { color: var(--green); border-color: var(--green); }
.main-nav .chev { margin-top: 2px; transition: transform .2s ease; }
.main-nav .chev path { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.has-dropdown:hover .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 230px;
  background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  border: 1px solid var(--border);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 12px; border-radius: 6px; font-size: 14px; font-weight: 500; color: var(--text); }
.dropdown a:hover { background: var(--green-light); color: var(--green-dark); }

.header-cta { flex-shrink: 0; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 13px 26px; border-radius: 8px; font-weight: 600; font-size: 15px;
  border: 2px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .2s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--accent-grad); color: #fff; box-shadow: 0 8px 20px rgba(60,140,60,.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(60,140,60,.36); }
.btn-outline { background: #fff; color: var(--navy); border-color: var(--border); }
.btn-outline:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: #fff; color: var(--navy); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-danger { background: #c0392b; color: #fff; }
.btn-danger:hover { background: #a5311f; }

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  position: relative; padding: 150px 0 90px; text-align: center; overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, #123a24 130%);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(111,208,111,.18), transparent 55%);
}
.page-hero .eyebrow { color: #8fe08f; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 48px); }
.page-hero p { color: rgba(255,255,255,.78); max-width: 640px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; color: rgba(255,255,255,.6); font-size: 14px; margin-bottom: 16px; position: relative; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: #6fd06f; }

/* ===== Hero (home) ===== */
.hero {
  position: relative; padding: 56px 0 70px; overflow: hidden;
  background: linear-gradient(115deg, #fdfefd 0%, #eef6ee 60%, #eef6ee 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px;
  letter-spacing: 1.5px; color: var(--green-dark); text-transform: uppercase; margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--green); }
.hero h1 { font-size: clamp(34px, 4.4vw, 52px); font-weight: 800; letter-spacing: -.5px; }
.hero h1 .accent { color: var(--green); }
.hero-lead { font-size: 17px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; margin: 26px 0 40px; flex-wrap: wrap; }

.trust-row { display: flex; gap: 30px; flex-wrap: wrap; }
.trust-item { display: flex; gap: 12px; align-items: flex-start; max-width: 190px; }
.trust-icon {
  width: 42px; height: 42px; border-radius: 50%; background: var(--green-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-icon svg { width: 20px; height: 20px; stroke: var(--green-dark); }
.trust-item h5 { font-size: 13.5px; margin: 0 0 2px; color: var(--navy); }
.trust-item span { font-size: 13px; color: var(--muted); }

.hero-media { position: relative; }
.hero-media-frame {
  position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.1;
}
.hero-media-frame img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 16s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-badge {
  position: absolute; top: -20px; right: -20px; width: 118px; height: 118px; border-radius: 50%;
  background: var(--accent-grad); color: #fff; display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center; font-weight: 700; font-size: 11.5px; line-height: 1.3;
  box-shadow: var(--shadow-lg); animation: floatY 4s ease-in-out infinite; padding: 10px;
}
.hero-badge svg { width: 20px; height: 20px; margin-bottom: 4px; }

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section-soft { background: var(--green-light); }
.section-navy { background: linear-gradient(160deg, var(--navy) 0%, #123a24 140%); color: #fff; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 46px; flex-wrap: wrap; }
.section-header h2 { font-size: clamp(26px, 3.4vw, 36px); max-width: 560px; }
.section-header p { max-width: 420px; margin: 0; }
.section-header.center { flex-direction: column; align-items: center; text-align: center; }
.section-header.center p { max-width: 560px; }

/* Solution / product category cards */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.solution-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease; opacity: 0; transform: translateY(30px);
}
.solution-card.in-view { opacity: 1; transform: translateY(0); }
.solution-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.solution-card-media { position: relative; height: 170px; overflow: hidden; }
.solution-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.solution-card:hover .solution-card-media img { transform: scale(1.08); }
.solution-card-media.icon-only { display: flex; align-items: center; justify-content: center; background: var(--accent-grad); }
.solution-card-media.icon-only svg { width: 56px; height: 56px; stroke: #fff; opacity: .95; }
.solution-card-icon {
  position: absolute; bottom: -22px; left: 22px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent-grad); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(36,92,36,.35); border: 3px solid #fff;
}
.solution-card-icon svg { width: 20px; height: 20px; stroke: #fff; }
.solution-card-body { padding: 34px 22px 24px; }
.solution-card-body h3 { font-size: 18px; margin-bottom: 8px; }
.solution-card-body p { font-size: 14px; margin-bottom: 14px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--green-dark); font-weight: 700; font-size: 14px; }
.card-link svg { width: 14px; height: 14px; transition: transform .2s ease; }
.card-link:hover svg { transform: translateX(4px); }

/* About split */
.about-split { display: grid; grid-template-columns: 0.95fr 1.1fr 0.95fr; }
.about-split-media { position: relative; overflow: hidden; min-height: 460px; }
.about-split-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.about-split-media.graphic {
  background: linear-gradient(160deg, var(--navy) 0%, #123a24 150%);
  display: flex; align-items: center; justify-content: center; flex-direction: column; color: #fff; text-align: center; gap: 10px; padding: 30px;
}
.about-split-media.graphic svg { width: 64px; height: 64px; stroke: #6fd06f; }
.about-split-media.graphic .flag-badge { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: #8fe08f; font-weight: 700; }
.about-split-content { padding: 64px 46px; display: flex; flex-direction: column; justify-content: center; }
.about-split-content h2 { font-size: clamp(24px, 3vw, 32px); }
.about-split-content .accent { color: var(--green); }
.about-list { margin: 22px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text); }
.about-list svg { width: 20px; height: 20px; stroke: var(--green); flex-shrink: 0; margin-top: 1px; }
.about-promo { background: linear-gradient(180deg, #123a24 0%, #1c5a34 100%); color: #fff; padding: 56px 40px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.about-promo .promo-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; }
.about-promo .promo-icon svg { width: 26px; height: 26px; stroke: #6fd06f; }
.about-promo .kicker { font-size: 12.5px; letter-spacing: 2px; text-transform: uppercase; color: #8fe08f; font-weight: 700; }
.about-promo h3 { color: #fff; font-size: 26px; }

/* ===== Generic content blocks ===== */
.split-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-block img, .split-block .media-panel { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }
.media-panel { aspect-ratio: 4/3; object-fit: cover; overflow: hidden; position: relative; }
.media-panel img { width: 100%; height: 100%; object-fit: cover; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 10px; }
.stat-card { background: #fff; border-radius: var(--radius-sm); padding: 26px 20px; text-align: center; box-shadow: var(--shadow-sm); }
.stat-card strong { display: block; font-family: var(--ff-head); font-size: 32px; color: var(--green-dark); }
.stat-card span { font-size: 13px; color: var(--muted); }

.icon-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.icon-feature { text-align: center; padding: 30px 18px; border-radius: var(--radius-sm); background: #fff; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.icon-feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.icon-feature .ic { width: 54px; height: 54px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.icon-feature .ic svg { width: 26px; height: 26px; stroke: var(--green-dark); }
.icon-feature h4 { font-size: 15.5px; margin-bottom: 6px; }
.icon-feature p { font-size: 13.5px; margin: 0; }

/* ===== Products ===== */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-pill {
  padding: 10px 20px; border-radius: 999px; border: 1.5px solid var(--border); font-weight: 600; font-size: 13.5px;
  color: var(--navy); background: #fff; transition: all .2s ease;
}
.filter-pill:hover { border-color: var(--green); color: var(--green-dark); }
.filter-pill.active { background: var(--accent-grad); color: #fff; border-color: transparent; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.product-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease; opacity: 0; transform: translateY(24px);
}
.product-card.in-view { opacity: 1; transform: translateY(0); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-card-media { aspect-ratio: 1/1; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card-media img { transform: scale(1.06); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--accent-grad); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 999px; letter-spacing: .5px; }
.product-card-body { padding: 18px 18px 22px; }
.product-cat { font-size: 11.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--green-dark); font-weight: 700; }
.product-card-body h3 { font-size: 16.5px; margin: 6px 0 8px; }
.product-card-body p { font-size: 13.5px; margin-bottom: 12px; }
.product-size { font-size: 12.5px; color: var(--muted); }

.product-detail { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: flex-start; }
.product-detail-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 1/1; background: var(--bg-soft); }
.product-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.product-detail h1 { font-size: clamp(26px, 3vw, 36px); }
.product-meta-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 18px 0 24px; }
.product-meta-row .tag { background: var(--green-light); color: var(--green-dark); font-weight: 700; font-size: 13px; padding: 8px 14px; border-radius: 999px; }

.empty-state { text-align: center; padding: 80px 20px; color: var(--muted); }
.empty-state svg { width: 60px; height: 60px; stroke: var(--border); margin-bottom: 16px; }

/* ===== Forms ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-weight: 600; font-size: 13.5px; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 14.5px;
  transition: border-color .2s ease, box-shadow .2s ease; background: #fff; color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(60,140,60,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 12.5px; color: var(--muted); }
.form-error { font-size: 12.5px; color: #c0392b; }

.contact-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; }
.contact-info-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 40px 32px; }
.contact-info-card h3 { color: #fff; }
.contact-info-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .ic { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item .ic svg { width: 18px; height: 18px; stroke: #6fd06f; }
.contact-info-item span { font-size: 13px; color: rgba(255,255,255,.65); display: block; margin-bottom: 2px; }
.contact-info-item strong { font-size: 14.5px; color: #fff; font-weight: 600; }
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }

/* Flash messages */
.flash-stack { padding-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.flash { padding: 14px 18px; border-radius: 8px; font-size: 14px; font-weight: 500; }
.flash-success { background: #e6f6e9; color: #1e7a34; border: 1px solid #b9e6c3; }
.flash-error { background: #fdecea; color: #b3261e; border: 1px solid #f6c6c2; }
.flash-info { background: #eaf2fd; color: #1a5aa8; border: 1px solid #c6dcf6; }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: rgba(255,255,255,.8); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr; gap: 30px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { height: 34px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 13.5px; }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .2s ease, transform .2s ease; }
.social-links a:hover { background: var(--green); transform: translateY(-3px); }
.social-links svg { fill: #fff; }
.footer-col h4 { color: #fff; font-size: 14.5px; letter-spacing: .5px; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,.65); transition: color .2s ease; }
.footer-col a:hover { color: #6fd06f; }
.footer-contact ul { gap: 16px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.65); }
.footer-contact svg { fill: #6fd06f; flex-shrink: 0; margin-top: 2px; }
.footer-bottom-inner { display: flex; justify-content: space-between; padding: 22px 0; font-size: 12.5px; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 10px; }
.footer-legal a { color: rgba(255,255,255,.5); }
.footer-legal a:hover { color: #fff; }

/* ===== Scroll animation utility ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: .1s; }
.reveal-delay-2.in-view { transition-delay: .2s; }
.reveal-delay-3.in-view { transition-delay: .3s; }

/* ===== 404 ===== */
.error-page { text-align: center; padding: 160px 20px 120px; }
.error-page h1 { font-size: clamp(70px, 12vw, 140px); color: var(--green); margin: 0; }
.error-page p { max-width: 420px; margin: 10px auto 30px; }

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .cards-grid, .product-grid, .icon-feature-grid, .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; }
  .about-split-media { min-height: 260px; }
  .hero-grid, .split-block, .contact-wrap, .product-detail { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* Keep the header laid out like desktop at every width: logo, full nav, and the
   quote button all stay visible — they wrap and shrink instead of collapsing
   into a hamburger menu. */
.has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

@media (max-width: 1180px) {
  .header-inner { flex-wrap: wrap; row-gap: 8px; height: auto; padding: 12px 0; }
  .brand { order: 1; }
  .header-cta { order: 2; margin-left: auto; }
  .main-nav { order: 3; flex: 1 1 100%; }
  .main-nav > ul { flex-wrap: wrap; justify-content: center; gap: 2px 6px; }
  .main-nav > ul > li > a { padding: 8px 10px; font-size: 13.5px; }
  .dropdown { min-width: 210px; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cards-grid, .product-grid, .icon-feature-grid, .stat-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .about-split-content, .about-promo { padding: 40px 24px; }
  .trust-row { gap: 20px; }
  .brand-logo { height: 38px; }
  .main-nav > ul > li > a { padding: 7px 8px; font-size: 12.5px; }
  .header-cta { padding: 10px 16px; font-size: 13px; }
}
@media (max-width: 400px) {
  .brand-logo { height: 32px; }
  .header-inner { gap: 8px; }
  .main-nav > ul > li > a { padding: 6px 6px; font-size: 11px; }
  .header-cta { padding: 9px 12px; font-size: 12px; }
  .hero-actions .btn, .btn-block { font-size: 14px; padding: 12px 18px; }
}
