/* ============================================================
   Chamber Oil Malaysia — Classic WP-Style Stylesheet
   ============================================================ */

/* ── Google Fonts loaded in HTML <head> ─────────────────────── */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --primary:  #1e6b3c;
  --accent:   #c8922a;
  --accent-lt:#f0b84a;
  --dark:     #1a1a2e;
  --text:     #374151;
  --muted:    #6b7280;
  --bg:       #f9fafb;
  --white:    #ffffff;
  --border:   #e5e7eb;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.13);
  --radius:   10px;
  --radius-sm: 6px;
  --nav-h:    70px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Typography ─────────────────────────────────────────────── */
/* Plus Jakarta Sans for headings (B2B authority — ui-ux-pro-max skill) */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  color: var(--dark);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}
a { color: inherit; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Sections ───────────────────────────────────────────────── */
.section-light { background: #ffffff; padding: 80px 0; }
.section-gray  { background: #f9fafb; padding: 80px 0; }
.section-dark  { background: #111827; padding: 80px 0; color: white; }
.section-green { background: #1e6b3c; padding: 80px 0; color: white; }

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #c8922a;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.15;
}
.section-desc {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.75;
  max-width: 580px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(30,107,60,0.25);
}
.btn-primary:hover {
  background: #165c33;
  border-color: #165c33;
  box-shadow: 0 8px 22px rgba(30,107,60,0.30);
}

.btn-accent {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(200,146,42,0.28);
}
.btn-accent:hover { background: #b07d24; border-color: #b07d24; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: white;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; }

.btn-white {
  background: white;
  color: var(--primary);
  border-color: white;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.btn-white:hover { box-shadow: 0 8px 22px rgba(0,0,0,0.18); }

.btn-dark {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}
.btn-dark:hover { background: #0f0f1e; }

.btn-sm  { padding: 9px 18px; font-size: 0.82rem; }
.btn-lg  { padding: 16px 34px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.badge-green  { background: #d1fae5; color: #065f46; }
.badge-gold   { background: #fef3c7; color: #92400e; }
.badge-blue   { background: #dbeafe; color: #1e40af; }

/* ── Grid helpers ───────────────────────────────────────────── */
.grid-2    { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS SYSTÈME
   ══════════════════════════════════════════════════════════════ */

/* ── Page loader ─────────────────────────────────────────────── */
#page-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: #1e6b3c;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  width: 160px; height: 160px;
  animation: loaderPulse 1s ease-in-out infinite;
}
.loader-bar {
  width: 160px; height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 99px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 0;
  background: white;
  border-radius: 99px;
  animation: loaderFill 0.8s ease forwards;
}
@keyframes loaderPulse {
  0%,100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(1.1); opacity: 0.8; }
}
@keyframes loaderFill {
  to { width: 100%; }
}

/* ── Reveal variants ─────────────────────────────────────────── */
.fade-up, .fade-down, .fade-left, .fade-right, .fade-in, .zoom-in, .zoom-out {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(.25,.46,.45,.94),
              transform 0.7s cubic-bezier(.25,.46,.45,.94);
  will-change: opacity, transform;
}
.fade-up    { transform: translateY(36px); }
.fade-down  { transform: translateY(-36px); }
.fade-left  { transform: translateX(40px); }
.fade-right { transform: translateX(-40px); }
.fade-in    { transform: none; }
.zoom-in    { transform: scale(0.88); }
.zoom-out   { transform: scale(1.1); }

.fade-up.visible,
.fade-down.visible,
.fade-left.visible,
.fade-right.visible,
.fade-in.visible,
.zoom-in.visible,
.zoom-out.visible {
  opacity: 1;
  transform: none;
}

/* stagger delays */
.fade-up[data-delay="80"]  { transition-delay: 80ms; }
.fade-up[data-delay="160"] { transition-delay: 160ms; }
.fade-up[data-delay="240"] { transition-delay: 240ms; }
.fade-up[data-delay="320"] { transition-delay: 320ms; }
[data-delay]               { transition-delay: calc(var(--d, 0) * 1ms); }

/* ── Hero animated gradient overlay ─────────────────────────── */
.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(10,40,20,0.78) 0%,
    rgba(30,107,60,0.52) 50%,
    rgba(0,0,0,0.70) 100%
  );
  background-size: 300% 300%;
  animation: heroGradient 10s ease infinite;
}
@keyframes heroGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Hero text entrance ──────────────────────────────────────── */
.hero-badge  { animation: heroSlideUp 0.7s 0.1s both cubic-bezier(.34,1.56,.64,1); }
.hero h1     { animation: heroSlideUp 0.7s 0.25s both cubic-bezier(.34,1.56,.64,1); }
.hero p      { animation: heroSlideUp 0.7s 0.42s both cubic-bezier(.34,1.56,.64,1); }
.hero-cta    { animation: heroSlideUp 0.7s 0.58s both cubic-bezier(.34,1.56,.64,1); }
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Typewriter cursor on hero h1 ────────────────────────────── */
.typewriter-cursor {
  display: inline-block;
  width: 3px; height: 0.85em;
  background: #c8922a;
  border-radius: 2px;
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 0.9s step-end infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* ── Floating particles (hero bg) ────────────────────────────── */
.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
  z-index: 1;
}
.hero-particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(200,146,42,0.18);
  animation: float linear infinite;
}
@keyframes float {
  0%   { transform: translateY(0) rotate(0deg);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-110vh) rotate(720deg); opacity: 0; }
}

/* ── Stat counters ───────────────────────────────────────────── */
.stat-val { transition: color 0.3s; }
.stat-item.counted .stat-val {
  animation: statPop 0.4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes statPop {
  0%   { transform: scale(0.7); opacity: 0.3; }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

/* ── Trust strip marquee ─────────────────────────────────────── */
.trust-strip-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}
.trust-ticker {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: ticker 22s linear infinite;
  flex-shrink: 0;
}
.trust-ticker:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Card tilt 3D ────────────────────────────────────────────── */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.12s ease, box-shadow 0.3s ease;
}
.tilt-card .card-shine {
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255,255,255,0.12) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.2s;
}
.tilt-card:hover .card-shine { opacity: 1; }

/* ── Button ripple ───────────────────────────────────────────── */
.btn { position: relative; overflow: hidden; }
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: rippleAnim 0.55s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ── Section reveal line ─────────────────────────────────────── */
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 2px;
  background: var(--primary);
  vertical-align: middle;
  margin-right: 0;
  border-radius: 2px;
  transition: width 0.6s ease;
}
.eyebrow.visible::before {
  width: 20px;
  margin-right: 8px;
}

/* ── Navbar entrance ─────────────────────────────────────────── */
.navbar {
  animation: navbarDrop 0.6s 0.1s both cubic-bezier(.34,1.56,.64,1);
}
@keyframes navbarDrop {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

/* ── CTA banner pulse ────────────────────────────────────────── */
.cta-banner {
  background-size: 200% 200%;
  animation: ctaPulse 8s ease infinite;
}
@keyframes ctaPulse {
  0%,100% { background-position: 0% 50%; filter: brightness(1); }
  50%     { background-position: 100% 50%; filter: brightness(1.06); }
}

/* ── Green accent underline on h2 ────────────────────────────── */
.section-header h2 .accent-line {
  display: block;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin-top: 10px;
  transition: width 0.8s cubic-bezier(.25,.46,.45,.94) 0.3s;
}
.section-header.visible h2 .accent-line { width: 60px; }

/* ── Product thumb zoom ──────────────────────────────────────── */
.product-thumb { overflow: hidden; }
.product-thumb img {
  transition: transform 0.6s cubic-bezier(.25,.46,.45,.94), filter 0.4s;
}
.product-card:hover .product-thumb img {
  transform: scale(1.07);
  filter: brightness(1.05) saturate(1.1);
}


/* ── Divider ────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); }

/* ───────────────────────────────────────────────────────────── */
/* NAVBAR                                                        */
/* ───────────────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.10); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 52px;
  height: 52px;
  background: transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.logo-text {
  display: none;
}
.logo-text span { color: #c8922a; }

.nav-menu {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-menu a {
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 500;
  color: #374151;
  transition: all 0.2s;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: #1e6b3c;
  background: #f0fdf4;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta {
  padding: 9px 20px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: #165c33; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #374151;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  padding: 24px;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  transform: translateY(-120%);
  transition: transform 0.3s ease;
  z-index: 999;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { list-style: none; margin-bottom: 20px; }
.mobile-menu ul li a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
}
.mobile-menu ul li a:hover { color: #1e6b3c; }
.mobile-menu .btn { width: 100%; justify-content: center; }

/* ───────────────────────────────────────────────────────────── */
/* HERO                                                          */
/* ───────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}
.hero-overlay {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(0,0,0,0.70) 0%, rgba(30,107,60,0.55) 100%);
  padding: 120px 0 80px;
}
.hero-content { max-width: 700px; color: white; }
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(200,146,42,0.9);
  color: white;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content h1 span { color: #f0b84a; }
.hero-content p {
  font-size: 1.1rem;
  opacity: 0.88;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ───────────────────────────────────────────────────────────── */
/* TRUST STRIP                                                   */
/* ───────────────────────────────────────────────────────────── */
.trust-strip {
  background: #111827;
  padding: 28px 0;
  border-top: 1px solid #1f2937;
  border-bottom: 1px solid #1f2937;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-strip-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}
.trust-cert {
  padding: 7px 18px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.70);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.trust-cert:hover { background: rgba(255,255,255,0.14); color: white; }

/* ───────────────────────────────────────────────────────────── */
/* PRODUCT CARDS                                                 */
/* ───────────────────────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }

.product-thumb {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: #f5f0e8;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.product-card:hover .product-thumb img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: var(--primary);
  color: white;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.product-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.product-cat  { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); font-weight: 700; margin-bottom: 6px; }
.product-name { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.product-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px; flex: 1; }
.product-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.tag-chip {
  padding: 4px 10px;
  border-radius: 4px;
  background: #f0fdf4;
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid #bbf7d0;
}

/* ───────────────────────────────────────────────────────────── */
/* PAGE HERO (inner pages)                                       */
/* ───────────────────────────────────────────────────────────── */
.page-hero-wrap {
  background: linear-gradient(135deg, #1a1a2e 0%, #1e3a5f 100%);
  padding: calc(var(--nav-h) + 60px) 0 64px;
  text-align: center;
  color: white;
}
.page-hero-wrap .eyebrow { color: #f0b84a; }
.page-hero-wrap h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.page-hero-wrap h1 span { color: #f0b84a; }
.page-hero-wrap p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ───────────────────────────────────────────────────────────── */
/* STATS ROW                                                     */
/* ───────────────────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-val  { font-size: 2rem; font-weight: 800; color: var(--primary); letter-spacing: -1px; }
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

/* ───────────────────────────────────────────────────────────── */
/* WHY CARDS                                                     */
/* ───────────────────────────────────────────────────────────── */
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.why-card p  { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* ───────────────────────────────────────────────────────────── */
/* CTA BANNER                                                    */
/* ───────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #155c34 100%);
  padding: 64px 0;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -160px; right: -80px;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-text-block { }
.cta-text-block .eyebrow { color: #f0b84a; }
.cta-text-block h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}
.cta-text-block p { font-size: 1rem; opacity: 0.82; max-width: 460px; line-height: 1.7; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ───────────────────────────────────────────────────────────── */
/* TESTIMONIALS                                                  */
/* ───────────────────────────────────────────────────────────── */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testi-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 14px; }
.testi-text  { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #2d9e5a);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.testi-initials {
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.5px;
}
.testi-name { font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.testi-role { font-size: 0.76rem; color: var(--muted); }

/* ───────────────────────────────────────────────────────────── */
/* PRODUCT SPECS TABLE                                          */
/* ───────────────────────────────────────────────────────────── */
.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: #f9fafb;
  border: 1px solid var(--border);
}
.spec-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); font-weight: 600; }
.spec-value { font-size: 0.84rem; font-weight: 700; color: var(--dark); margin-top: 2px; }

/* ───────────────────────────────────────────────────────────── */
/* FILTER BAR (products page)                                   */
/* ───────────────────────────────────────────────────────────── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: white;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

/* ───────────────────────────────────────────────────────────── */
/* MODAL                                                         */
/* ───────────────────────────────────────────────────────────── */
.modal-bg {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-bg.open { display: flex; }
.modal {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  max-width: 640px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #f3f4f6;
  border: none; cursor: pointer;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: #e5e7eb; }
.modal h3 { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.modal-type { color: var(--accent); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.modal-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.modal-specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 24px;
  padding: 18px; border-radius: var(--radius-sm);
  background: #f9fafb;
  border: 1px solid var(--border);
}
.modal-spec-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); font-weight: 600; }
.modal-spec-val   { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-top: 2px; }
.modal-actions { display: flex; gap: 12px; }
.modal-actions .btn { flex: 1; justify-content: center; }

/* ───────────────────────────────────────────────────────────── */
/* SERVICE CARDS                                                 */
/* ───────────────────────────────────────────────────────────── */
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 32px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-card.featured {
  background: linear-gradient(160deg, #1a1a2e, #1e3050);
  color: white;
  border-color: transparent;
}
.svc-num { font-size: 0.68rem; font-weight: 700; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.svc-card.featured .svc-num { color: rgba(200,146,42,0.7); }
.svc-icon  { font-size: 2.2rem; margin-bottom: 14px; }
.svc-title { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.svc-card.featured .svc-title { color: #f0b84a; }
.svc-desc  { font-size: 0.87rem; color: var(--muted); line-height: 1.72; flex: 1; }
.svc-card.featured .svc-desc { color: rgba(255,255,255,0.55); }
.svc-points { list-style: none; margin-top: 18px; }
.svc-points li {
  font-size: 0.83rem; color: var(--muted);
  padding: 6px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.svc-card.featured .svc-points li { color: rgba(255,255,255,0.55); border-bottom-color: rgba(255,255,255,0.07); }
.svc-points li:last-child { border-bottom: none; }
.svc-points li::before { content: '✓'; color: var(--primary); font-weight: 700; font-size: 0.8rem; }
.svc-card.featured .svc-points li::before { color: #f0b84a; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 0.85rem; font-weight: 600;
  color: var(--primary); text-decoration: none; transition: gap 0.2s;
}
.svc-link:hover { gap: 10px; }
.svc-card.featured .svc-link { color: #f0b84a; }

/* ───────────────────────────────────────────────────────────── */
/* PROCESS STEPS                                                 */
/* ───────────────────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%; width: 80%; height: 2px;
  background: var(--border);
}
.step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: white;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num {
  position: absolute; top: -6px; right: -6px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--primary); color: white;
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-title { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.step-desc  { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

/* ───────────────────────────────────────────────────────────── */
/* MARKET CARDS                                                  */
/* ───────────────────────────────────────────────────────────── */
.market-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px 18px;
  display: flex; align-items: center; gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.market-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.market-flag { font-size: 2rem; }
.market-name  { font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.market-types { font-size: 0.76rem; color: var(--muted); margin-top: 2px; }

/* ───────────────────────────────────────────────────────────── */
/* CONTACT PAGE                                                  */
/* ───────────────────────────────────────────────────────────── */
.info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
}
.info-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.info-card .sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 22px; line-height: 1.6; }

.info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.info-item:last-child { margin-bottom: 0; }
.info-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.info-lbl   { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); font-weight: 700; margin-bottom: 3px; }
.info-value { font-size: 0.92rem; font-weight: 500; color: var(--dark); line-height: 1.5; }
.info-value a { color: var(--dark); text-decoration: none; transition: color 0.2s; }
.info-value a:hover { color: var(--primary); }

.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.86rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day   { color: var(--muted); }
.hours-open  { font-weight: 700; color: var(--dark); }
.hours-closed{ font-weight: 700; color: #ef4444; }

.channels-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.channel-btn {
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--dark);
  background: white; border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s;
  font-size: 0.85rem; font-weight: 600;
}
.channel-btn:hover { transform: translateY(-2px); border-color: var(--primary); color: var(--primary); }
.channel-icon { font-size: 1.3rem; }
.channel-label { font-size: 0.72rem; color: var(--muted); margin-top: 1px; font-weight: 400; }

/* Form */
.form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 36px 32px;
}
.form-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.form-card .sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fafafa;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.6; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); background: white; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-divider { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin: 20px 0 6px; }
.form-submit { width: 100%; margin-top: 10px; }
.form-note { text-align: center; margin-top: 12px; font-size: 0.78rem; color: var(--muted); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  width: 100%; padding: 18px 20px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.93rem; font-weight: 600; color: var(--dark);
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.2s; font-family: inherit;
}
.faq-q:hover { background: #f9fafb; }
.faq-q.open { border-radius: var(--radius-sm) var(--radius-sm) 0 0; border-bottom-color: #e5e7eb; }
.faq-q .faq-arrow { font-size: 0.8rem; transition: transform 0.3s; color: var(--primary); }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none; padding: 16px 20px;
  font-size: 0.87rem; color: var(--muted); line-height: 1.75;
  background: #f9fafb;
  border: 1px solid var(--border); border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.faq-a.open { display: block; }

/* ───────────────────────────────────────────────────────────── */
/* MAP PLACEHOLDER                                               */
/* ───────────────────────────────────────────────────────────── */
.map-section { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-placeholder {
  height: 300px; background: #f3f4f6;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 24px;
}
.map-placeholder-icon { font-size: 3rem; }
.map-placeholder h3 { font-size: 1rem; font-weight: 700; color: var(--dark); }
.map-placeholder p  { font-size: 0.87rem; color: var(--muted); max-width: 360px; }

/* ───────────────────────────────────────────────────────────── */
/* INFO BANNER (products page)                                   */
/* ───────────────────────────────────────────────────────────── */
.info-banner {
  background: linear-gradient(135deg, #1a1a2e, #1e3050);
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex; align-items: center; gap: 24px;
  color: white; margin-bottom: 80px;
}
.info-banner-icon { font-size: 2.5rem; flex-shrink: 0; }
.info-banner h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; color: #f0b84a; }
.info-banner p  { font-size: 0.87rem; opacity: 0.65; line-height: 1.65; max-width: 500px; }
.info-banner .btn { flex-shrink: 0; margin-left: auto; }

/* ───────────────────────────────────────────────────────────── */
/* ABOUT PAGE                                                    */
/* ───────────────────────────────────────────────────────────── */
.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img-wrap img {
  width: 100%; display: block;
  height: 420px; object-fit: cover;
}
.mission-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 16px; }
.mission-text p  { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }

.value-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-icon  { font-size: 2.2rem; margin-bottom: 12px; }
.value-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.value-desc  { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

.team-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s;
}
.team-card:hover { transform: translateY(-5px); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #2d9e5a);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 14px;
}
.team-name { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.team-bio  { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }
.team-contact { margin-top: 14px; }
.team-contact a {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.8rem; color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.team-contact a:hover { color: var(--primary); }

.cert-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px 18px;
  text-align: center;
  transition: transform 0.3s;
}
.cert-card:hover { transform: translateY(-4px); }
.cert-icon  { font-size: 2rem; margin-bottom: 10px; }
.cert-name  { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.cert-desc  { font-size: 0.76rem; color: var(--muted); line-height: 1.55; }

/* Facts band */
.facts-band {
  background: linear-gradient(135deg, #1a1a2e, #1e3050);
  border-radius: var(--radius);
  padding: 56px 48px;
  color: white;
}
.facts-band .eyebrow { color: #f0b84a; }
.facts-band h2 { color: white; margin-bottom: 10px; }
.facts-band .section-sub { color: rgba(255,255,255,0.55); max-width: 560px; margin-bottom: 40px; font-size: 0.95rem; line-height: 1.7; }
.facts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.fact-item { border-left: 3px solid rgba(200,146,42,0.5); padding-left: 18px; }
.fact-val   { font-size: 2rem; font-weight: 800; color: #f0b84a; letter-spacing: -1px; }
.fact-label { font-size: 0.82rem; opacity: 0.6; margin-top: 4px; line-height: 1.5; }

/* Services page image section */
.services-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
}
.services-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ───────────────────────────────────────────────────────────── */
/* TOAST                                                         */
/* ───────────────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; right: 28px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 600;
  z-index: 3000; color: white;
  background: var(--primary);
  transform: translateY(80px); opacity: 0;
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), opacity 0.3s;
  box-shadow: var(--shadow-md);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ───────────────────────────────────────────────────────────── */
/* FOOTER                                                        */
/* ───────────────────────────────────────────────────────────── */
footer {
  background: #111827;
  color: white;
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .f-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.footer-brand .f-logo-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, #c8922a, #f0b84a);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.footer-brand .f-logo-text { font-size: 0.95rem; font-weight: 700; color: white; }
.footer-brand > p { font-size: 0.84rem; opacity: 0.5; line-height: 1.7; max-width: 250px; margin-bottom: 20px; }

.footer-contact-mini a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; opacity: 0.6; color: white;
  text-decoration: none; margin-bottom: 8px; transition: opacity 0.2s;
}
.footer-contact-mini a:hover { opacity: 1; }

.footer-col h4 {
  font-size: 0.76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: #f0b84a; margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  text-decoration: none; color: rgba(255,255,255,0.50);
  font-size: 0.85rem; transition: color 0.2s;
}
.footer-col ul li a:hover { color: white; }

.footer-bottom {
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; opacity: 0.38; }
.footer-flags { font-size: 1.4rem; letter-spacing: 4px; }

/* ───────────────────────────────────────────────────────────── */
/* RESPONSIVE                                                    */
/* ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero-overlay { padding: 100px 0 70px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text-block p { margin: 0 auto; }
  .cta-btns { justify-content: center; }
  .contact-layout { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .services-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section-light, .section-gray, .section-dark, .section-green { padding: 56px 0; }
  .facts-band { padding: 36px 24px; }
  .info-banner { flex-wrap: wrap; }
  .info-banner .btn { width: 100%; justify-content: center; margin-left: 0; }
  .hero { background-attachment: scroll; }
  .hero-content h1 { font-size: 2.2rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stats-row .stat-item:nth-child(2n) { border-right: none; }
  .stats-row .stat-item:nth-child(1),
  .stats-row .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .channels-grid { grid-template-columns: 1fr; }
  .process-steps { gap: 28px; }
  .process-steps::before { display: none; }
  .modal-actions { flex-direction: column; }
  .modal-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .trust-strip-inner { gap: 16px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* ───────────────────────────────────────────────────────────── */
/* LANGUAGE SWITCHER                                             */
/* ───────────────────────────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-flag-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 9px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1.5px solid transparent;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.18s;
  font-family: inherit;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.lang-flag-btn:hover {
  background: #f0fdf4;
  border-color: var(--primary);
  color: var(--primary);
}
.lang-flag-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  font-weight: 700;
}

/* RTL support */
[dir="rtl"] .nav-inner { flex-direction: row-reverse; }
[dir="rtl"] .nav-menu { flex-direction: row-reverse; }
[dir="rtl"] .lang-switcher { flex-direction: row-reverse; }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-cta { flex-direction: row-reverse; }
[dir="rtl"] .footer-inner { direction: rtl; }
[dir="rtl"] .footer-contact-mini a { flex-direction: row-reverse; }
[dir="rtl"] .section-header { direction: rtl; }
[dir="rtl"] .info-item { flex-direction: row-reverse; }

/* ───────────────────────────────────────────────────────────── */
/* LOGO CUSTOMIZER                                               */
/* ───────────────────────────────────────────────────────────── */
.nav-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

/* Custom logo image */
.logo-icon-img {
  width: 52px; height: 52px;
  object-fit: contain; display: block;
}
.logo-icon:has(.logo-icon-img) {
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-size: 0;
}
.f-logo-icon .logo-icon-img {
  height: 36px;
}

/* ============================================================
   UX PRO MAX — Applied improvements (ui-ux-pro-max-skill)
   Trust · Conversion · B2B best practices
   ============================================================ */

/* ── Floating WhatsApp CTA ────────────────────────────────── */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  border-radius: 50px;
  padding: 13px 20px 13px 16px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.float-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
  color: white;
}
.float-wa svg { flex-shrink: 0; }
.float-wa-label { line-height: 1; }
[dir="rtl"] .float-wa { right: auto; left: 28px; }

/* ── Eyebrow / section label refinement ─────────────────── */
.eyebrow {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(30,107,60,0.08);
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(30,107,60,0.15);
}

/* ── Section headings upgrade ────────────────────────────── */
.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.section-header p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 600px;
}
.section-header.center p { margin: 0 auto; }

/* ── Hero upgrade ────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.hero h1 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: white;
  margin-bottom: 22px;
}
.hero h1 span { display: block; }
.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}

/* ── Stats row upgrade ───────────────────────────────────── */
.stat-val {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: #f0fdf4; }

/* ── Cards upgrade ───────────────────────────────────────── */
.product-card, .service-card, .value-card {
  transition: transform 0.22s, box-shadow 0.22s;
}
.product-card:hover, .service-card:hover, .value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* ── Trust strip upgrade ─────────────────────────────────── */
.trust-strip {
  background: white;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.trust-cert {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  background: #f9fafb;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px;
  transition: border-color 0.2s, background 0.2s;
}
.trust-cert:hover { border-color: var(--primary); background: #f0fdf4; color: var(--primary); }

/* ── Nav CTA upgrade ─────────────────────────────────────── */
.nav-cta {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* ── Page hero headings ──────────────────────────────────── */
.page-hero-wrap h1 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 16px;
}
.page-hero-wrap p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  line-height: 1.7;
}

/* ── Scroll-to-top button ────────────────────────────────── */
.scroll-top-btn {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 8000;
  width: 42px; height: 42px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
  color: var(--primary);
  font-size: 1rem;
}
.scroll-top-btn.visible { opacity: 1; pointer-events: all; }
.scroll-top-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
[dir="rtl"] .scroll-top-btn { right: auto; left: 28px; }

/* ── Toast ───────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: #1a1a2e; color: white;
  padding: 13px 24px; border-radius: 50px;
  font-size: 0.875rem; font-weight: 600;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9999; white-space: nowrap;
  box-shadow: var(--shadow-lg);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Responsive tweaks ───────────────────────────────────── */
@media (max-width: 640px) {
  .float-wa-label { display: none; }
  .float-wa { padding: 14px; border-radius: 50%; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .scroll-top-btn { bottom: 86px; }
}
