/* ============================================================
   BERTUBI — Enterprise Technology Partner
   Brand: Green #2A7A3B · Gold #F5A623 · Navy #1B2B4B
   Font: Inter (body) + Syne (display)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Syne:wght@600;700;800&display=swap');

:root {
  /* Brand Colors */
  --green:      #2A7A3B;
  --green-light:#3CA050;
  --green-pale: #E8F5EB;
  --gold:       #F5A623;
  --gold-light: #FFF3DC;
  --navy:       #1B2B4B;
  --navy-mid:   #243657;
  --navy-light: #EEF1F7;

  /* Neutral */
  --white:      #FFFFFF;
  --bg:         #F8F9FB;
  --bg2:        #F0F2F6;
  --border:     #DDE2EC;
  --text:       #1A2340;
  --text-mid:   #3D4F6E;
  --text-soft:  #6B7A96;
  --text-muted: #9AAAC4;

  /* Accents */
  --teal:       #00A896;
  --teal-pale:  #E0F5F3;

  /* Typography */
  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Syne', 'Inter', sans-serif;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(27,43,75,0.08);
  --shadow-md:  0 4px 16px rgba(27,43,75,0.10);
  --shadow-lg:  0 12px 36px rgba(27,43,75,0.12);
  --shadow-xl:  0 24px 60px rgba(27,43,75,0.14);
}

/* ===== BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.navbar-logo { display: flex; align-items: center; }
.navbar-logo img { height: 34px; width: auto; }
.navbar-links { list-style: none; display: flex; align-items: center; gap: 4px; }
.navbar-links a {
  font-size: 14px; font-weight: 500;
  color: var(--text-mid); padding: 7px 14px; border-radius: 7px;
  transition: all 0.2s;
}
.navbar-links a:hover { color: var(--green); background: var(--green-pale); }
.navbar-links .nav-d2f a { color: var(--gold) !important; }
.navbar-links .nav-d2f a:hover { background: var(--gold-light) !important; }
.navbar-cta {
  background: var(--green); color: var(--white) !important;
  padding: 9px 22px !important; border-radius: 8px !important;
  font-weight: 600 !important;
  transition: all 0.2s !important;
}
.navbar-cta:hover {
  background: var(--green-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(42,122,59,0.3) !important;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; display: block; transition: all 0.3s; }

/* Mobile menu */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: var(--white);
  flex-direction: column; align-items: center; justify-content: center; gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--navy); transition: color 0.2s; }
.mobile-nav a:hover { color: var(--green); }
.mobile-nav-close { position: absolute; top: 20px; right: 24px; font-size: 28px; cursor: pointer; color: var(--text-soft); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--navy) 0%, #1D3461 45%, #1E4A6B 100%);
  display: flex; align-items: center;
  padding: 100px 48px 80px;
  position: relative; overflow: hidden;
}
/* Subtle grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
/* Green accent stripe top */
.hero::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--green));
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px);
  animation: orbFloat 10s ease-in-out infinite;
}
.hero-orb-1 { width: 480px; height: 480px; background: rgba(42,122,59,0.18); top: -80px; right: -60px; }
.hero-orb-2 { width: 280px; height: 280px; background: rgba(245,166,35,0.12); bottom: 60px; left: -40px; animation-delay: 4s; }
.hero-orb-3 { width: 180px; height: 180px; background: rgba(0,168,150,0.1); top: 45%; right: 32%; animation-delay: 7s; }
@keyframes orbFloat { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-24px) scale(1.03)} }

/* Particles */
.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%; opacity: 0;
  animation: particleRise linear infinite;
}
@keyframes particleRise {
  0%   { transform: translateY(100vh); opacity: 0; }
  8%   { opacity: 0.6; }
  92%  { opacity: 0.6; }
  100% { transform: translateY(-60px) translateX(20px); opacity: 0; }
}
/* Scan line */
.scan-line {
  position: absolute; left: 0; right: 0; height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(42,122,59,0.4) 50%, transparent 100%);
  animation: scanLine 6s ease-in-out infinite;
}
@keyframes scanLine { 0%{top:0;opacity:0} 5%{opacity:1} 95%{opacity:0.7} 100%{top:100%;opacity:0} }

.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(42,122,59,0.2); border: 1px solid rgba(42,122,59,0.45);
  border-radius: 50px; padding: 5px 16px; margin-bottom: 28px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: #7FD99A; font-weight: 600;
  animation: fadeUp 0.7s ease both;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-light); animation: dotPulse 2s infinite; }
@keyframes dotPulse { 0%,100%{box-shadow:0 0 0 0 rgba(60,160,80,0.5)} 50%{box-shadow:0 0 0 5px rgba(60,160,80,0)} }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease 0.12s both;
}
.hero h1 .accent { color: var(--gold); }
.hero-sub {
  font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.72);
  margin-bottom: 32px; max-width: 500px; font-weight: 400;
  animation: fadeUp 0.7s ease 0.25s both;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; animation: fadeUp 0.7s ease 0.38s both; }

.stats-bar { display: flex; gap: 32px; margin-top: 52px; flex-wrap: wrap; animation: fadeUp 0.7s ease 0.52s both; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }
.stat-number {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  color: var(--gold); line-height: 1.1;
}
.stat-label { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* Hero visual cards */
.hero-visual {
  position: absolute; right: 48px; top: 50%; transform: translateY(-50%);
  z-index: 2; display: flex; flex-direction: column; gap: 12px;
  animation: fadeLeft 0.9s ease 0.4s both;
}
@keyframes fadeLeft { from{opacity:0;transform:translateY(-50%) translateX(32px)} to{opacity:1;transform:translateY(-50%) translateX(0)} }

.tech-pill {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  border-radius: 12px; padding: 12px 16px;
  display: flex; align-items: center; gap: 12px; min-width: 220px;
  transition: all 0.35s;
}
.tech-pill:hover { background: rgba(255,255,255,0.13); border-color: rgba(42,122,59,0.4); transform: translateX(-4px); }
.tech-pill:nth-child(odd)  { animation: pillFloat 7s ease-in-out infinite; }
.tech-pill:nth-child(even) { animation: pillFloat 7s ease-in-out infinite 2.5s; }
@keyframes pillFloat { 0%,100%{transform:translateY(0)} 40%{transform:translateY(-6px)} 70%{transform:translateY(3px)} }
.tech-pill-icon {
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tech-pill-icon img { width: 20px; height: 20px; object-fit: contain; filter: brightness(0) invert(1); }
.tech-pill-name { font-weight: 600; font-size: 13px; color: var(--white); }
.tech-pill-status { font-size: 11px; color: #7FD99A; margin-top: 1px; }
.tech-pill.d2f-pill { border-color: rgba(245,166,35,0.35); background: rgba(245,166,35,0.08); }
.tech-pill.d2f-pill .tech-pill-status { color: var(--gold); }

.live-chip {
  background: rgba(42,122,59,0.15); border: 1px solid rgba(42,122,59,0.35);
  border-radius: 12px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #6ED98A; animation: dotPulse 2s infinite; flex-shrink: 0; }
.live-label { font-size: 11px; color: rgba(255,255,255,0.55); }
.live-value { font-size: 14px; font-weight: 700; color: #7FD99A; margin-top: 1px; }

/* D2F hero badge */
.d2f-hero-strip {
  position: absolute; bottom: 32px; left: 48px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.3);
  border-radius: 50px; padding: 9px 20px;
  animation: fadeUp 0.7s ease 0.8s both;
}
.d2f-hero-strip img { height: 18px; object-fit: contain; }
.d2f-hero-strip span { font-size: 12px; color: rgba(255,255,255,0.7); }
.d2f-hero-strip a { font-size: 12px; color: var(--gold); font-weight: 600; transition: opacity 0.2s; }
.d2f-hero-strip a:hover { opacity: 0.8; }

/* ===== TICKER ===== */
.ticker {
  overflow: hidden; background: var(--navy);
  border-top: 3px solid var(--green);
  padding: 10px 0;
}
.ticker-inner { display: flex; gap: 52px; white-space: nowrap; animation: tickerRoll 28s linear infinite; }
.ticker-item {
  font-size: 11px; color: rgba(255,255,255,0.5);
  letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.ticker-item::before { content: '◆'; font-size: 7px; color: var(--green-light); }
@keyframes tickerRoll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== SHARED ===== */
section { padding: 88px 48px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px; font-weight: 700;
}
.section-tag::before { content: ''; width: 20px; height: 2px; background: var(--green); border-radius: 1px; }
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.3px;
  color: var(--navy); margin-bottom: 14px;
}
.section-desc { font-size: 15px; color: var(--text-soft); line-height: 1.72; max-width: 540px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 8px; font-weight: 600;
  font-size: 14px; font-family: var(--font);
  border: none; cursor: pointer; transition: all 0.22s;
  text-decoration: none;
}
.btn-green {
  background: var(--green); color: var(--white);
  box-shadow: 0 3px 14px rgba(42,122,59,0.32);
}
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(42,122,59,0.42); }
.btn-gold {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 3px 14px rgba(245,166,35,0.35);
}
.btn-gold:hover { background: #f8b840; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(245,166,35,0.45); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }
.btn-outline-green {
  background: transparent; color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline-green:hover { background: var(--green-pale); transform: translateY(-2px); }
.btn-navy {
  background: var(--navy); color: var(--white);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-wa {
  background: rgba(37,211,102,0.1); color: #16a34a;
  border: 1.5px solid rgba(37,211,102,0.35);
}
.btn-wa:hover { background: rgba(37,211,102,0.18); border-color: #25d366; transform: translateY(-2px); }

/* ===== SOLUTIONS ===== */
.solutions-section { background: var(--bg); }
.solutions-intro { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 48px; }
.solutions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.solution-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 26px; transition: all 0.3s; cursor: pointer;
  position: relative; overflow: hidden;
}
.solution-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.solution-card:hover::after { transform: scaleX(1); }
.solution-card:hover { border-color: rgba(42,122,59,0.3); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.solution-icon {
  width: 44px; height: 44px; border-radius: 10px; margin-bottom: 16px;
  background: var(--green-pale); display: flex; align-items: center; justify-content: center;
}
.solution-icon img { width: 22px; height: 22px; object-fit: contain; }
.solution-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.solution-card p { font-size: 13px; color: var(--text-soft); line-height: 1.65; }
.solution-arrow { margin-top: 16px; color: var(--green); font-size: 18px; display: block; transition: transform 0.25s; }
.solution-card:hover .solution-arrow { transform: translateX(5px); }

/* ===== ABOUT ===== */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 48px; }
.about-body p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.highlight-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 16px;
  transition: all 0.25s;
}
.highlight-card:hover { border-color: rgba(42,122,59,0.3); background: var(--green-pale); }
.highlight-card .h-icon { margin-bottom: 8px; }
.highlight-card .h-icon img { width: 26px; height: 26px; }
.highlight-card h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.highlight-card p { font-size: 12px; color: var(--text-soft); line-height: 1.55; }
/* Stats */
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-stat {
  background: var(--bg); border: 1px solid var(--border); border-radius: 14px;
  padding: 24px; text-align: center; transition: all 0.25s;
}
.about-stat:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.about-stat-num {
  font-family: var(--font-display); font-size: 40px; font-weight: 800;
  color: var(--green); line-height: 1.1;
}
.about-stat-label { font-size: 13px; color: var(--text-soft); margin-top: 5px; }
.about-quote {
  grid-column: 1 / -1; margin-top: 4px;
  background: var(--navy); border-radius: 14px; padding: 22px 24px;
  border-left: 4px solid var(--gold);
}
.about-quote p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.72; font-style: italic; }
.about-quote cite { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-top: 10px; display: block; font-style: normal; }

/* ===== INDUSTRIES ===== */
.industries-section { background: var(--bg); }
.industries-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 36px; }
.cat-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.cat-tab {
  padding: 7px 16px; border-radius: 50px;
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--text-soft); font-size: 13px; font-weight: 500;
  cursor: pointer; font-family: var(--font); transition: all 0.22s;
}
.cat-tab:hover { border-color: var(--green); color: var(--green); }
.cat-tab.active { background: var(--green); border-color: var(--green); color: var(--white); font-weight: 600; }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 16px; transition: all 0.3s; }
.portfolio-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; cursor: pointer; transition: all 0.3s;
}
.portfolio-card:hover { transform: translateY(-5px); border-color: rgba(42,122,59,0.3); box-shadow: var(--shadow-xl); }
.portfolio-thumb {
  height: 140px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.portfolio-thumb-icon { width: 48px; height: 48px; object-fit: contain; position: relative; z-index: 1; opacity: 0.9; }
.portfolio-thumb-overlay {
  position: absolute; inset: 0; background: rgba(42,122,59,0.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; z-index: 2;
}
.portfolio-card:hover .portfolio-thumb-overlay { opacity: 1; }
.overlay-cta {
  background: var(--white); color: var(--green);
  padding: 8px 20px; border-radius: 50px; font-weight: 700; font-size: 13px;
  transform: translateY(8px); transition: transform 0.3s;
}
.portfolio-card:hover .overlay-cta { transform: translateY(0); }
.portfolio-cat-label {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  padding: 3px 10px; border-radius: 50px; font-size: 10px; font-weight: 700;
  background: rgba(255,255,255,0.9); color: var(--navy); letter-spacing: 0.3px;
}
.portfolio-body { padding: 16px 18px; }
.portfolio-body h3 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; line-height: 1.35; }
.portfolio-client { font-size: 12px; color: var(--green); font-weight: 600; margin-bottom: 7px; }
.portfolio-desc { font-size: 12px; color: var(--text-soft); line-height: 1.6; }
.portfolio-techs { display: flex; gap: 5px; margin-top: 10px; flex-wrap: wrap; }
.portfolio-tech { padding: 2px 8px; border-radius: 50px; font-size: 10px; background: var(--bg2); color: var(--text-mid); border: 1px solid var(--border); }

/* ===== DRIVE2FIX ===== */
.d2f-section {
  background: linear-gradient(135deg, #0F1F3E 0%, #162A52 50%, #0E2240 100%);
  position: relative; overflow: hidden; padding: 80px 48px;
}
.d2f-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(245,166,35,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
}
.d2f-section::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), #ff8c55, var(--gold));
}
.d2f-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.08), transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.d2f-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.d2f-badge-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.35);
  border-radius: 50px; padding: 5px 14px; margin-bottom: 18px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.d2f-content h2 {
  font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px);
  font-weight: 800; color: var(--white); line-height: 1.15; letter-spacing: -0.3px; margin-bottom: 16px;
}
.d2f-content h2 span { color: var(--gold); }
.d2f-content > p { font-size: 15px; color: rgba(255,255,255,0.68); line-height: 1.75; margin-bottom: 24px; }
.d2f-checklist { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.d2f-check-item { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; color: rgba(255,255,255,0.8); }
.d2f-check-icon {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: rgba(245,166,35,0.2); border: 1px solid rgba(245,166,35,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--gold); margin-top: 1px;
}
.d2f-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* D2F visual */
.d2f-visual-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(245,166,35,0.2);
  border-radius: 18px; padding: 26px; margin-bottom: 14px;
}
.d2f-logo-box { text-align: center; margin-bottom: 20px; }
.d2f-logo-box img { height: 48px; object-fit: contain; margin: 0 auto 10px; }
.d2f-logo-box p { font-size: 13px; color: rgba(255,255,255,0.55); }
.d2f-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.d2f-service-btn {
  background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.2);
  border-radius: 10px; padding: 13px 6px; text-align: center;
  cursor: pointer; transition: all 0.25s; text-decoration: none; display: block;
}
.d2f-service-btn:hover { background: rgba(245,166,35,0.2); transform: translateY(-2px); }
.d2f-service-btn span { font-size: 22px; display: block; margin-bottom: 5px; }
.d2f-service-btn p { font-size: 11px; color: rgba(255,255,255,0.75); font-weight: 500; line-height: 1.35; }
.d2f-epson-row {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 14px 18px;
}
.d2f-epson-row img { height: 32px; object-fit: contain; max-width: 170px; flex-shrink: 0; }
.d2f-epson-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); }
.d2f-epson-sub   { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ===== STRENGTH ===== */
.strength-section { background: var(--white); }
.strength-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.strength-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 16px;
  padding: 36px; transition: all 0.3s;
}
.strength-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.strength-card:first-child { background: var(--navy); }
.strength-card:first-child .strength-num { color: var(--gold); }
.strength-card:first-child .strength-label { color: var(--white); }
.strength-card:first-child .strength-desc { color: rgba(255,255,255,0.6); }
.strength-num { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: var(--green); line-height: 1; }
.strength-label { font-size: 15px; font-weight: 700; color: var(--navy); margin: 8px 0 6px; }
.strength-desc { font-size: 13px; color: var(--text-soft); line-height: 1.65; }

/* ===== CLIENTS ===== */
.clients-section { background: var(--bg2); padding: 64px 0; overflow: hidden; }
.clients-headline { font-size: 12px; color: var(--text-muted); letter-spacing: 2.5px; text-transform: uppercase; text-align: center; margin-bottom: 32px; padding: 0 48px; font-weight: 600; }
.marquee-wrap { overflow: hidden; position: relative; margin-bottom: 12px; }
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg2), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg2), transparent); }
.marquee-track {
  display: flex; gap: 12px; width: max-content; padding: 4px 0;
  animation: marqueeRoll 36s linear infinite;
}
.marquee-track.rev { animation-direction: reverse; animation-duration: 42s; }
.marquee-track:hover { animation-play-state: paused; }
.client-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 10px 18px; display: flex; align-items: center; gap: 10px;
  min-width: 148px; height: 58px; flex-shrink: 0; transition: all 0.25s; cursor: default;
}
.client-card:hover { border-color: rgba(42,122,59,0.3); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.client-card img {
  height: 26px; max-width: 80px; object-fit: contain; object-position: center;
  /* Full color — as requested */
}
.client-card span { font-size: 12px; color: var(--text-soft); font-weight: 500; white-space: nowrap; }
@keyframes marqueeRoll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== CTA ===== */
.cta-section {
  background: var(--navy);
  text-align: center; padding: 88px 48px; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(42,122,59,0.15), transparent 65%);
}
.cta-section::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}
.cta-section h2 {
  font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800; color: var(--white); margin-bottom: 16px;
  letter-spacing: -0.3px; position: relative;
}
.cta-section p {
  font-size: 15px; color: rgba(255,255,255,0.65); margin-bottom: 36px;
  max-width: 440px; margin-left: auto; margin-right: auto;
  line-height: 1.72; position: relative;
}
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== FOOTER ===== */
footer { background: var(--navy); padding: 60px 48px 28px; }
.footer-top { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 40px; padding: 48px 0 36px; }
.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 28px; object-fit: contain; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 265px; }
.footer-col h4 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 16px; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-col .link-d2f { color: var(--gold) !important; opacity: 0.8; }
.footer-col .link-d2f:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 8px;
}
.footer-bottom span.brand-tagline { color: var(--gold); opacity: 0.7; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(27,43,75,0.7); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white); border-radius: 18px; max-width: 660px; width: 100%;
  max-height: 88vh; overflow-y: auto; box-shadow: var(--shadow-xl);
  transform: translateY(24px) scale(0.96); transition: all 0.3s;
  border-top: 4px solid var(--green);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-thumb { height: 160px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.modal-thumb-icon { width: 60px; height: 60px; object-fit: contain; position: relative; z-index: 1; opacity: 0.7; filter: brightness(0) invert(1); }
.modal-header { padding: 20px 24px 14px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.modal-body { padding: 20px 24px; }
.modal-close { width: 32px; height: 32px; border-radius: 50%; background: var(--bg); border: 1px solid var(--border); color: var(--text-soft); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; transition: all 0.2s; }
.modal-close:hover { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }
.modal-title { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--navy); }
.modal-cat   { font-size: 11px; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }
.modal-desc  { font-size: 14px; color: var(--text-mid); line-height: 1.72; margin-bottom: 18px; }
.modal-section-title { font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; margin-top: 18px; }
.modal-deliver-list { display: flex; flex-direction: column; gap: 7px; }
.modal-deliver-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-mid); }
.modal-deliver-item::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.modal-tech-list { display: flex; gap: 7px; flex-wrap: wrap; }
.modal-tech-badge { padding: 4px 11px; border-radius: 50px; background: var(--bg); border: 1px solid var(--border); font-size: 12px; color: var(--text-mid); font-weight: 500; }
.modal-client-row { display: flex; align-items: center; gap: 10px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.modal-client-row img { height: 28px; max-width: 90px; object-fit: contain; }
.modal-client-row span { font-size: 13px; color: var(--text-soft); }

/* ===== WA FLOAT ===== */
#wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  width: 52px; height: 52px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: all 0.3s; text-decoration: none;
  animation: waPop 3s ease-in-out infinite;
}
#wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.65); }
@keyframes waPop {
  0%,100%{box-shadow:0 4px 16px rgba(37,211,102,0.45)}
  50%{box-shadow:0 4px 24px rgba(37,211,102,0.65),0 0 0 8px rgba(37,211,102,0.1)}
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-visual { display: none; }
  .about-grid   { grid-template-columns: 1fr; gap: 40px; }
  .d2f-inner    { grid-template-columns: 1fr; }
  .d2f-visual   { display: none; }
}
@media (max-width: 900px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  section { padding: 64px 20px; }
  .hero  { padding: 90px 20px 60px; }
  .d2f-hero-strip { left: 20px; bottom: 20px; }
  .stats-bar { gap: 18px; }
  .stat-divider { display: none; }
  .strength-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  footer { padding: 44px 20px 24px; }
  .d2f-section { padding: 60px 20px; }
  .about-highlights { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
