*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent: #e84c1e;
  --accent-light: #ff6b35;
  --bg: #0c0c0c;
  --bg-card: #141414;
  --bg-card2: #1a1a1a;
  --border: rgba(255,255,255,0.07);
  --text: #ffffff;
  --text-muted: #888;
  --text-dim: #555;
  --radius: 12px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 72px;
  background: rgba(12,12,12,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.navbar.scrolled { background: rgba(12,12,12,0.98); }
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: #bbb;
  transition: color 0.2s; position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--accent); transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }
.btn-talk {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; background: var(--accent); color: #fff;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.btn-talk:hover { background: var(--accent-light); transform: translateY(-1px); }
.nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

/* ── PAGE HERO (non-home) ── */
.page-hero {
  padding: 140px 60px 80px;
  background: linear-gradient(180deg, #0e0e0e 0%, #0c0c0c 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,76,30,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-tag { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; letter-spacing: -2px; line-height: 1.1; margin-bottom: 20px; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero-desc { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.8; }

/* ── HERO (home) ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-left {
  position: relative; z-index: 2;
  width: 50%;
  padding: 120px 60px 80px;
  flex-shrink: 0;
}
.hero-label { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.hero h1 { font-size: clamp(34px, 3.8vw, 60px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--accent); display: block; }
.hero-desc { font-size: 15px; color: var(--text-muted); max-width: 380px; margin-bottom: 40px; line-height: 1.8; }
.hero-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: var(--accent); color: #fff;
  border-radius: 8px; font-size: 14px; font-weight: 700; transition: all 0.2s;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #ccc; transition: color 0.2s;
}
.btn-outline:hover { color: #fff; }
.hero-right {
  position: absolute;
  top: 72px; right: 0;
  width: 60%;
  height: calc(100% - 72px);
  background-image: url('/static/images/hero.png');
  background-size: cover;
  background-position: center center;
}
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 22%);
  pointer-events: none;
}

/* ── TRUSTED ── */
.trusted {
  padding: 44px 60px; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trusted-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.trusted-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); white-space: nowrap; }
.trusted-logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.trusted-logo { font-size: 14px; font-weight: 700; color: var(--text-dim); display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.trusted-logo:hover { color: #888; }

/* ── SECTION ── */
.section { padding: 100px 60px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-tag { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.section-title { font-size: clamp(30px, 3.5vw, 48px); font-weight: 800; line-height: 1.15; letter-spacing: -1px; }
.section-title em { font-style: normal; color: var(--accent); }

/* ── SERVICES SECTION ── */
.services { background: #0e0e0e; }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 64px; }
.services-desc { font-size: 15px; color: var(--text-muted); line-height: 1.8; padding-top: 8px; }
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.3s, transform 0.3s; cursor: pointer;
}
.service-card:hover { border-color: rgba(232,76,30,0.4); transform: translateY(-4px); }
.service-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-body { padding: 20px; }
.service-icon {
  width: 36px; height: 36px; background: rgba(232,76,30,0.15);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; color: var(--accent);
}
.service-icon svg { width: 18px; height: 18px; }
.service-name { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.service-desc { font-size: 12px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--accent); transition: gap 0.2s; }
.service-link:hover { gap: 10px; }

/* ── SERVICES PAGE - full grid ── */
.services-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card-full {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card-full:hover { border-color: rgba(232,76,30,0.4); transform: translateY(-4px); }
.service-card-full .service-img { aspect-ratio: 16/9; }
.service-card-full .service-body { padding: 28px; }
.service-card-full .service-name { font-size: 18px; margin-bottom: 12px; }
.service-card-full .service-desc { font-size: 14px; margin-bottom: 24px; }

/* ── PROCESS ── */
.process-header { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; margin-bottom: 64px; }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%;
  height: 1px; background: var(--border);
}
.step { text-align: center; padding: 0 12px; }
.step-icon {
  width: 56px; height: 56px; background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--accent); position: relative; z-index: 1;
  transition: border-color 0.3s, background 0.3s;
}
.step:hover .step-icon { border-color: var(--accent); background: rgba(232,76,30,0.1); }
.step-icon svg { width: 22px; height: 22px; }
.step-num { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 1px; margin-bottom: 10px; }
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 12px; color: var(--text-muted); line-height: 1.7; }

/* ── FEATURED WORK ── */
.work { background: #0e0e0e; }
.work-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.work-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--accent); transition: gap 0.2s; }
.work-link:hover { gap: 10px; }

/* Slider */
.work-slider-wrap { position: relative; display: flex; align-items: center; gap: 16px; }
.work-slider-viewport { flex: 1; overflow: hidden; }
.work-slider-track {
  display: flex; gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.work-slider-track .work-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
}
.work-slider-btn {
  flex-shrink: 0; width: 40px; height: 40px;
  border-radius: 50%; border: 1px solid var(--border);
  background: var(--bg-card); color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color 0.2s, background 0.2s, opacity 0.2s;
}
.work-slider-btn svg { width: 18px; height: 18px; }
.work-slider-btn:hover:not(:disabled) { border-color: var(--accent); background: rgba(232,76,30,0.1); }
.work-slider-btn:disabled { opacity: 0.25; cursor: default; }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.work-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.work-card:hover { border-color: rgba(232,76,30,0.4); transform: translateY(-4px); }
.work-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.work-img-nexcare { object-position: center top; }
.work-body { padding: 24px; }
.work-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; margin-bottom: 12px; }
.badge-orange { background: rgba(232,76,30,0.15); color: var(--accent); }
.badge-purple { background: rgba(139,92,246,0.15); color: #a78bfa; }
.badge-blue { background: rgba(59,130,246,0.15); color: #60a5fa; }
.badge-green { background: rgba(34,197,94,0.15); color: #22c55e; }
.work-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-orange { background: var(--accent); }
.dot-purple { background: #8b5cf6; }
.dot-blue { background: #3b82f6; }
.dot-green { background: #22c55e; }
.work-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.work-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.work-arrow { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--accent); transition: gap 0.2s; }

/* ── DECARB-OS NAVBAR ── */
.decarb-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8,13,9,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(34,197,94,0.12);
}
.decarb-nav-logo img { height: 36px; display: block; }
.decarb-nav-right { display: flex; align-items: center; gap: 20px; }
.decarb-nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: 8px;
  background: #22c55e; color: #000;
  font-size: 13px; font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}
.decarb-nav-cta:hover { background: #16a34a; transform: translateY(-1px); }
.decarb-nav-back {
  font-size: 12px; color: rgba(255,255,255,0.35);
  transition: color 0.2s; white-space: nowrap;
}
.decarb-nav-back:hover { color: rgba(255,255,255,0.7); }

/* ── DECARB-OS PAGE ── */
.decarb-hero {
  background: #080d09;
  padding: 140px 60px 80px;
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: flex; align-items: center;
}
.decarb-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(34,197,94,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.decarb-hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}
.decarb-hero-left { max-width: 50%; }
.decarb-hero-visual {
  position: absolute; right: 0; top: 72px; bottom: 0; width: 50%;
}
.decarb-hero-visual::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 260px;
  background: linear-gradient(to right, #080d09 0%, transparent 100%);
  z-index: 1;
}
.decarb-hero-img { width: 100%; height: 100%; object-fit: contain; object-position: center center; display: block; }
.decarb-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: #22c55e; border: 1px solid rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.08); padding: 6px 14px; border-radius: 20px;
  margin-bottom: 28px;
}
.decarb-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; animation: decarb-pulse 2s infinite; }
@keyframes decarb-pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.decarb-hero-heading {
  font-size: 42px; font-weight: 800; line-height: 1.15;
  letter-spacing: -1px; color: #fff; margin-bottom: 24px;
}
.decarb-green { color: #22c55e; }
.decarb-hero-desc { font-size: 16px; color: #8a9a8e; line-height: 1.8; margin-bottom: 32px; max-width: 500px; }
.decarb-hero-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.decarb-tag {
  font-size: 12px; font-weight: 600; padding: 6px 14px;
  border: 1px solid rgba(34,197,94,0.25); border-radius: 20px;
  color: #22c55e; background: rgba(34,197,94,0.06);
}
.decarb-hero-img { width: 100%; border-radius: 16px; box-shadow: 0 40px 80px rgba(0,0,0,0.6); }

.decarb-section-dark { background: #050b06; }
.decarb-section-tag {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: #22c55e; margin-bottom: 20px;
}
.decarb-section-tag::before {
  content: ''; width: 24px; height: 2px; background: #22c55e;
}

.decarb-how-inner { max-width: 1280px; margin: 0 auto; }
.decarb-steps {
  display: flex; align-items: flex-start; gap: 0;
  margin-top: 56px; justify-content: space-between;
}
.decarb-step {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 16px;
}
.decarb-step-num { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; color: #22c55e; margin-bottom: 16px; }
.decarb-step-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: #22c55e;
}
.decarb-step-icon svg { width: 22px; height: 22px; }
.decarb-step-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.decarb-step-desc { font-size: 12px; color: #6b7f70; line-height: 1.7; }
.decarb-step-arrow { font-size: 20px; color: rgba(34,197,94,0.3); padding-top: 36px; flex-shrink: 0; }

.decarb-preview-section { background: #080d09; }
.decarb-preview-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.decarb-preview-img-wrap {
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(34,197,94,0.15);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.decarb-preview-img { width: 100%; display: block; }

.decarb-cap-inner { max-width: 1280px; margin: 0 auto; }
.decarb-cap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 48px; }
.decarb-cap-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.decarb-cap-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2);
  display: flex; align-items: center; justify-content: center; color: #22c55e;
}
.decarb-cap-icon svg { width: 18px; height: 18px; }
.decarb-cap-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.decarb-cap-desc { font-size: 13px; color: #6b7f70; line-height: 1.7; }
.decarb-globe-img { width: 100%; border-radius: 16px; }

.decarb-impact-inner { max-width: 1280px; margin: 0 auto; }
.decarb-impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.decarb-impact-card {
  background: #0d1510; border: 1px solid rgba(34,197,94,0.12);
  border-radius: var(--radius); padding: 32px 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.decarb-impact-card:hover { border-color: rgba(34,197,94,0.35); transform: translateY(-4px); }
.decarb-impact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #22c55e; margin-bottom: 20px;
}
.decarb-impact-icon svg { width: 20px; height: 20px; }
.decarb-impact-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.decarb-impact-desc { font-size: 13px; color: #6b7f70; line-height: 1.7; }

/* ── DECARB-OS CTA overrides — green instead of orange ── */
.decarb-page .cta-banner-card-outer {
  background: linear-gradient(120deg, #16a34a 0%, #22c55e 35%, #052e16 65%, #16a34a 100%);
}
.decarb-page .cta-banner-card-inner {
  background-image: none;
  background: radial-gradient(ellipse at 70% 50%, rgba(34,197,94,0.12) 0%, transparent 65%), linear-gradient(135deg, #0a120d 0%, #0d1510 50%, #071009 100%);
}
.decarb-page .cta-banner-card-inner::before {
  background: none;
}
.decarb-page .cta-banner-tag { color: #22c55e; }
.decarb-page .btn-cta { background: #22c55e; color: #fff; }
.decarb-page .btn-cta:hover { background: #16a34a; }

.work-arrow:hover { gap: 10px; }

/* ── WORK PAGE ── */
.work-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.work-full-card {
  display: block; text-decoration: none; color: inherit; cursor: pointer;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.work-full-card:hover { border-color: rgba(232,76,30,0.4); transform: translateY(-4px); }
.work-full-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.work-full-nexcare { aspect-ratio: 3/2; object-fit: cover; object-position: center center; }
.work-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.tag { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; background: rgba(232,76,30,0.12); color: var(--accent); }

/* ── CTA BANNER ── */
.cta-banner {
  padding: 48px 60px;
  background: var(--bg);
}
.cta-banner-card-outer {
  max-width: 1280px; margin: 0 auto;
  border-radius: 18px;
  padding: 1.5px;
  background: linear-gradient(120deg, #e84c1e 0%, #ff6b20 35%, #3a0a02 65%, #e84c1e 100%);
}
.cta-banner-card-inner {
  border-radius: 17px;
  overflow: hidden;
  position: relative;
  background-image: url('/static/images/cta-bg.png');
  background-size: cover;
  background-position: center;
  padding: 52px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-banner-card-inner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,4,2,0.92) 0%, rgba(10,4,2,0.75) 50%, rgba(10,4,2,0.55) 100%);
  pointer-events: none;
}
.cta-banner-card-inner > * { position: relative; z-index: 1; }
.cta-banner-tag { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.cta-banner h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; line-height: 1.15; letter-spacing: -0.8px; max-width: 540px; }
.btn-cta { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; background: var(--accent); color: #fff; border-radius: 8px; font-size: 15px; font-weight: 700; white-space: nowrap; transition: all 0.2s; flex-shrink: 0; }
.btn-cta:hover { background: var(--accent-light); transform: translateY(-2px); }

/* ── ABOUT PAGE ── */

/* About Hero */
.about-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: stretch;
  background: var(--bg); overflow: hidden;
}
.about-hero-left {
  position: relative; z-index: 2;
  width: 50%; padding: 160px 60px 100px;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.about-hero-left .section-tag { margin-bottom: 24px; }
.about-hero-heading {
  font-size: clamp(38px, 5vw, 68px); font-weight: 800;
  letter-spacing: -2px; line-height: 1.08; margin-bottom: 24px;
}
.about-hero-heading em { font-style: normal; color: var(--accent); }
.about-hero-desc {
  font-size: 15px; color: var(--text-muted); line-height: 1.85;
  max-width: 420px; margin-bottom: 36px;
}
.about-hero-right {
  position: absolute; top: 0; right: 0;
  width: 58%; height: 100%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.about-hero-right::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, var(--bg) 0%, transparent 30%);
  pointer-events: none;
}
.about-hero-img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center center;
  display: block; position: relative; z-index: 0;
}

/* About Values */
.about-values-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.about-value-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 20px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  transition: border-color 0.3s, transform 0.3s;
}
.about-value-card:hover { border-color: rgba(232,76,30,0.4); transform: translateY(-3px); }
.about-value-icon {
  width: 44px; height: 44px;
  background: rgba(232,76,30,0.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.about-value-icon svg { width: 22px; height: 22px; }
.about-value-title { font-size: 15px; font-weight: 700; }
.about-value-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* About Mission */
.about-mission-section {
  padding: 0 60px 80px;
  border-top: 1px solid var(--border);
}
.about-mission-section .section-inner { max-width: 1280px; margin: 0 auto; padding-top: 72px; }
.about-mission-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.about-mission-left h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -1px; line-height: 1.2; margin-bottom: 20px; }
.about-mission-left p { font-size: 15px; color: var(--text-muted); line-height: 1.85; }
.about-mission-img { width: 100%; border-radius: 12px; display: block; }

/* About What We Do */
.about-what-we-do {
  padding: 80px 60px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.about-what-we-do .section-inner { max-width: 1280px; margin: 0 auto; }
.about-services-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.about-service-col {
  padding: 36px 24px; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.25s;
}
.about-service-col:last-child { border-right: none; }
.about-service-col:hover { background: rgba(232,76,30,0.04); }
.about-service-icon {
  width: 44px; height: 44px;
  background: rgba(232,76,30,0.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  margin-bottom: 4px;
}
.about-service-icon svg { width: 22px; height: 22px; }
.about-service-title { font-size: 14px; font-weight: 700; line-height: 1.3; }
.about-service-desc { font-size: 12px; color: var(--text-muted); line-height: 1.7; flex: 1; }
.about-service-arrow { color: var(--accent); font-size: 18px; font-weight: 700; transition: transform 0.2s; display: inline-block; margin-top: 4px; }
.about-service-col:hover .about-service-arrow { transform: translateX(4px); }

/* ── BLOG PAGE ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
.blog-card:hover { border-color: rgba(232,76,30,0.4); transform: translateY(-4px); }
.blog-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-category { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }
.blog-date { font-size: 11px; color: var(--text-dim); }
.blog-title { font-size: 17px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.blog-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.blog-read { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--accent); transition: gap 0.2s; }
.blog-read:hover { gap: 10px; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item-icon { width: 44px; height: 44px; background: rgba(232,76,30,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item-label { font-size: 12px; color: var(--text-dim); margin-bottom: 4px; }
.contact-item-value { font-size: 14px; font-weight: 600; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-label { font-size: 13px; font-weight: 600; color: #ccc; margin-bottom: 8px; display: block; }
.form-input, .form-textarea {
  width: 100%; padding: 12px 16px; font-size: 14px; font-family: inherit;
  background: #1e1e1e; border: 1px solid var(--border); border-radius: 8px;
  color: #fff; transition: border-color 0.2s; outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%; padding: 14px; background: var(--accent); color: #fff;
  border: none; border-radius: 8px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.btn-submit:hover { background: var(--accent-light); transform: translateY(-1px); }

/* ── AI PAGE ── */
.ai-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.ai-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 60px; }
.ai-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; transition: border-color 0.3s, transform 0.3s; }
.ai-card:hover { border-color: rgba(232,76,30,0.4); transform: translateY(-4px); }
.ai-icon { width: 52px; height: 52px; background: rgba(232,76,30,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 20px; }
.ai-icon svg { width: 24px; height: 24px; }
.ai-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.ai-desc { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* ── FOOTER ── */
.footer { background: #0a0a0a; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 60px; }
.footer-bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.footer-logo img { height: 36px; display: block; opacity: 0.85; transition: opacity 0.2s; }
.footer-logo:hover img { opacity: 1; }
.footer-copy { font-size: 12px; color: var(--text-dim); letter-spacing: 0.02em; }

/* ── NEXCARE PAGE ── */
.nexcare-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,8,8,0.88); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(239,68,68,0.12);
}
.nexcare-nav-logo img { height: 36px; display: block; }
.nexcare-nav-right { display: flex; align-items: center; gap: 20px; }
.nexcare-nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: 8px;
  background: linear-gradient(135deg, #f97316, #ef4444);
  color: #fff; font-size: 13px; font-weight: 700;
  transition: opacity 0.2s, transform 0.2s;
}
.nexcare-nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.nexcare-nav-back { font-size: 12px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.nexcare-nav-back:hover { color: rgba(255,255,255,0.7); }

.nexcare-hero {
  background: #0a0808; padding: 140px 60px 80px;
  position: relative; overflow: hidden;
  min-height: 680px; display: flex; align-items: center;
}
.nexcare-hero::before {
  content: ''; position: absolute; top: -150px; left: -150px;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(239,68,68,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.nexcare-hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}
.nexcare-hero-left { max-width: 50%; }
.nexcare-hero-visual {
  position: absolute; right: 0; top: 72px; bottom: 0; width: 50%;
}
.nexcare-hero-visual::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 260px;
  background: linear-gradient(to right, #0a0808 0%, transparent 100%);
  z-index: 1;
}
.nexcare-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: #f97316; border: 1px solid rgba(249,115,22,0.3);
  background: rgba(249,115,22,0.08); padding: 6px 14px; border-radius: 20px; margin-bottom: 28px;
}
.nexcare-dot { width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(135deg,#f97316,#ef4444); animation: decarb-pulse 2s infinite; }
.nexcare-hero-heading { font-size: 44px; font-weight: 800; line-height: 1.15; letter-spacing: -1.5px; color: #fff; margin-bottom: 24px; }
.nexcare-orange { background: linear-gradient(135deg,#f97316,#ef4444); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nexcare-hero-desc { font-size: 16px; color: #9a8a8a; line-height: 1.8; margin-bottom: 32px; max-width: 480px; }
.nexcare-feature-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.nexcare-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; padding: 7px 14px;
  border: 1px solid rgba(249,115,22,0.2); border-radius: 20px;
  color: rgba(255,255,255,0.7); background: rgba(249,115,22,0.05);
}
.nexcare-pill svg { width: 13px; height: 13px; color: #f97316; }
.nexcare-hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.nexcare-btn-primary {
  display: inline-flex; align-items: center; padding: 13px 28px;
  border-radius: 8px; background: linear-gradient(135deg,#f97316,#ef4444);
  color: #fff; font-size: 14px; font-weight: 700;
  transition: opacity 0.2s, transform 0.2s;
}
.nexcare-btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }
.nexcare-btn-outline {
  display: inline-flex; align-items: center; padding: 13px 28px;
  border-radius: 8px; border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
.nexcare-btn-outline:hover { border-color: rgba(249,115,22,0.5); color: #fff; }
.nexcare-hero-img { width: 100%; height: 100%; object-fit: contain; object-position: center center; display: block; }

.nexcare-features-strip { background: #0f0b0b; padding: 60px; border-top: 1px solid rgba(255,255,255,0.05); }
.nexcare-strip-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.nexcare-strip-card { text-align: center; }
.nexcare-strip-icon {
  width: 52px; height: 52px; border-radius: 14px; margin: 0 auto 16px;
  background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2);
  display: flex; align-items: center; justify-content: center; color: #f97316;
}
.nexcare-strip-icon svg { width: 22px; height: 22px; }
.nexcare-strip-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.nexcare-strip-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

.nexcare-peace-section { background: #fdf7f3; }
.nexcare-peace-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.nexcare-section-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: #f97316; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.nexcare-section-tag::before { content: ''; width: 24px; height: 2px; background: linear-gradient(90deg,#f97316,#ef4444); }
.nexcare-peace-heading { font-size: 40px; font-weight: 800; line-height: 1.2; letter-spacing: -1px; color: #111; margin-bottom: 20px; }
.nexcare-peace-desc { font-size: 15px; color: #6b7280; line-height: 1.8; margin-bottom: 28px; }
.nexcare-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.nexcare-checklist li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #374151; }
.nexcare-check { color: #f97316; font-weight: 700; font-size: 16px; }
.nexcare-peace-img { width: 100%; border-radius: 0; display: block; }

.nexcare-app-section { background: #0f0b0b; }
.nexcare-app-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.nexcare-app-img-wrap { border-radius: 20px; overflow: hidden; border: 1px solid rgba(249,115,22,0.15); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.nexcare-app-img { width: 100%; display: block; }

.nexcare-trust-section { background: #0a0808; }
.nexcare-trust-inner { max-width: 1280px; margin: 0 auto; }
.nexcare-trust-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
.nexcare-trust-card {
  background: #130d0d; border: 1px solid rgba(249,115,22,0.1);
  border-radius: var(--radius); padding: 28px 20px;
  text-align: center; transition: border-color 0.3s, transform 0.3s;
}
.nexcare-trust-card:hover { border-color: rgba(249,115,22,0.35); transform: translateY(-4px); }
.nexcare-trust-icon {
  width: 44px; height: 44px; border-radius: 12px; margin: 0 auto 16px;
  background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2);
  display: flex; align-items: center; justify-content: center; color: #f97316;
}
.nexcare-trust-icon svg { width: 20px; height: 20px; }
.nexcare-trust-title { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.nexcare-trust-desc { font-size: 12px; color: var(--text-muted); line-height: 1.7; }

/* ── CORESUPPLY PAGE ── */
.cs-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 60px;
  background: rgba(8,8,6,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(249,115,22,0.1);
}
.cs-nav-logo img { height: 36px; display: block; }
.cs-nav-right { display: flex; align-items: center; gap: 20px; }
.cs-nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 8px; font-size: 13px; font-weight: 700;
  background: linear-gradient(135deg, #f97316, #ea580c); color: #fff;
  transition: opacity 0.2s, transform 0.2s;
}
.cs-nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.cs-nav-back { font-size: 12px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.cs-nav-back:hover { color: rgba(255,255,255,0.7); }

.cs-hero {
  background: #080806; padding: 140px 60px 80px;
  position: relative; overflow: hidden;
  min-height: 680px; display: flex; align-items: center;
}
.cs-hero::before {
  content: ''; position: absolute; top: -150px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.cs-hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}
.cs-hero-left { max-width: 50%; }
.cs-hero-visual {
  position: absolute; right: 0; top: 72px; bottom: 0; width: 50%;
}
.cs-hero-visual::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 260px;
  background: linear-gradient(to right, #080806 0%, transparent 100%);
  z-index: 1;
}
.cs-hero-img { width: 100%; height: 100%; object-fit: contain; object-position: center center; display: block; }

.cs-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: #f97316; border: 1px solid rgba(249,115,22,0.3);
  border-radius: 100px; padding: 6px 14px; margin-bottom: 28px;
  background: rgba(249,115,22,0.06);
}
.cs-dot { width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(135deg,#f97316,#ea580c); animation: decarb-pulse 2s infinite; }
.cs-hero-heading { font-size: 52px; font-weight: 800; line-height: 1.1; letter-spacing: -2px; color: #fff; margin-bottom: 24px; }
.cs-orange { background: linear-gradient(135deg,#f97316,#ea580c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cs-hero-desc { font-size: 16px; color: #9a8a7a; line-height: 1.8; margin-bottom: 36px; max-width: 460px; }
.cs-hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.cs-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-size: 14px; font-weight: 700;
  background: linear-gradient(135deg,#f97316,#ea580c); color: #fff;
  transition: opacity 0.2s, transform 0.2s;
}
.cs-btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }
.cs-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-size: 14px; font-weight: 700;
  border: 1px solid rgba(249,115,22,0.35);
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s, color 0.2s;
}
.cs-btn-outline:hover { border-color: rgba(249,115,22,0.6); color: #fff; }
.cs-btn-secondary {
  font-size: 14px; font-weight: 700; color: #f97316;
  border: 1px solid rgba(249,115,22,0.35); border-radius: 8px;
  padding: 12px 24px; transition: background 0.2s, border-color 0.2s;
}
.cs-btn-secondary:hover { background: rgba(249,115,22,0.08); border-color: rgba(249,115,22,0.6); }

.cs-strip { background: #0d0b09; padding: 56px 60px; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.cs-strip-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
.cs-strip-card { text-align: center; }
.cs-strip-icon {
  width: 52px; height: 52px; border-radius: 14px; margin: 0 auto 16px;
  background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2);
  display: flex; align-items: center; justify-content: center; color: #f97316;
}
.cs-strip-icon svg { width: 22px; height: 22px; }
.cs-strip-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.cs-strip-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

.cs-platform-section { background: #080806; }
.cs-platform-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cs-section-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: #f97316; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.cs-section-tag::before { content: ''; width: 24px; height: 2px; background: linear-gradient(90deg,#f97316,#ea580c); }
.cs-platform-heading { font-size: 42px; font-weight: 800; line-height: 1.15; letter-spacing: -1.5px; color: #fff; margin-bottom: 20px; }
.cs-platform-desc { font-size: 15px; color: #9a8a7a; line-height: 1.8; margin-bottom: 28px; max-width: 420px; }
.cs-checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.cs-checklist li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.85); }
.cs-check { color: #f97316; font-weight: 800; font-size: 15px; }
.cs-platform-img { width: 100%; border-radius: 16px; display: block; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */

/* ─ Tablet wide ─ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-steps::before { display: none; }
  .about-values-grid { grid-template-columns: repeat(3, 1fr); }
  .about-services-grid { grid-template-columns: repeat(3, 1fr); }
  .about-service-col { border-right: 1px solid var(--border); }
  .about-service-col:nth-child(3) { border-right: none; }
  .about-service-col:nth-child(4) { border-top: 1px solid var(--border); }
  .about-service-col:nth-child(5) { border-top: 1px solid var(--border); }
}

/* ─ Tablet ─ */
@media (max-width: 900px) {
  /* Navbar */
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Home hero — stack vertically */
  .hero { min-height: auto; flex-direction: column; align-items: flex-start; }
  .hero-left { width: 100%; padding: 100px 28px 280px; }
  .hero-right {
    top: auto; bottom: 0; left: 0; right: 0;
    width: 100%; height: 300px;
  }
  .hero-right::before {
    background: linear-gradient(to bottom, var(--bg) 0%, transparent 40%);
  }

  /* About hero — stack vertically */
  .about-hero { flex-direction: column; min-height: auto; }
  .about-hero-left { width: 100%; padding: 100px 28px 32px; }
  .about-hero-right {
    position: relative; top: auto; right: auto;
    width: 100%; height: 280px;
  }
  .about-hero-right::before {
    background: linear-gradient(to bottom, var(--bg) 0%, transparent 40%);
  }

  /* About sections */
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-mission-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-mission-section { padding: 0 28px 64px; }
  .about-services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-service-col { border-right: none; border-bottom: 1px solid var(--border); }
  .about-service-col:last-child { border-bottom: none; }
  .about-what-we-do { padding: 64px 28px; }

  /* General sections */
  .section { padding: 64px 28px; }
  .page-hero { padding: 110px 28px 56px; }
  .trusted { padding: 36px 28px; }

  /* Grids */
  .services-header, .process-header { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .work-full-grid { grid-template-columns: 1fr; }
  .work-slider-track .work-card { flex: 0 0 calc((100% - 20px) / 2); }
  .work-slider-btn { width: 34px; height: 34px; }

  /* Decarb navbar */
  .decarb-navbar { padding: 0 28px; }
  .decarb-nav-logo img { height: 28px; }

  /* Decarb page */
  .decarb-hero { min-height: auto; padding: 100px 28px 0; flex-direction: column; }
  .decarb-hero-left { max-width: 100%; }
  .decarb-hero-visual { position: relative; top: auto; right: auto; bottom: auto; width: 100%; height: 320px; margin-top: 40px; }
  .decarb-hero-visual::before { display: none; }
  .decarb-hero-img { object-fit: contain; object-position: center center; }
  .decarb-hero-heading { font-size: 30px; }
  .decarb-steps { flex-wrap: wrap; gap: 24px; }
  .decarb-step-arrow { display: none; }
  .decarb-step { flex: 0 0 calc(33.33% - 16px); padding: 0 8px; }
  .decarb-cap-grid { grid-template-columns: 1fr; gap: 40px; }
  .decarb-impact-grid { grid-template-columns: repeat(2, 1fr); }
  .decarb-how-inner, .decarb-preview-inner, .decarb-cap-inner, .decarb-impact-inner { max-width: 100%; }

  /* CoreSupply navbar tablet */
  .cs-navbar { padding: 0 28px; }
  .cs-nav-logo img { height: 28px; }

  /* CoreSupply page tablet */
  .cs-hero { min-height: auto; padding: 100px 28px 0; flex-direction: column; }
  .cs-hero-left { max-width: 100%; }
  .cs-hero-visual { position: relative; top: auto; right: auto; bottom: auto; width: 100%; height: 320px; margin-top: 40px; }
  .cs-hero-visual::before { display: none; }
  .cs-hero-img { object-fit: contain; object-position: center center; }
  .cs-hero-heading { font-size: 36px; }
  .cs-strip { padding: 48px 28px; }
  .cs-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .cs-platform-inner { grid-template-columns: 1fr; gap: 40px; }
  .cs-platform-heading { font-size: 32px; }

  /* NexCare navbar tablet */
  .nexcare-navbar { padding: 0 28px; }
  .nexcare-nav-logo img { height: 28px; }

  /* NexCare page tablet */
  .nexcare-hero { min-height: auto; padding: 100px 28px 0; flex-direction: column; }
  .nexcare-hero-left { max-width: 100%; }
  .nexcare-hero-visual { position: relative; top: auto; right: auto; bottom: auto; width: 100%; height: 320px; margin-top: 40px; }
  .nexcare-hero-visual::before { display: none; }
  .nexcare-hero-img { object-fit: contain; object-position: center center; }
  .nexcare-hero-heading { font-size: 34px; }
  .nexcare-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .nexcare-features-strip { padding: 48px 28px; }
  .nexcare-peace-inner { grid-template-columns: 1fr; gap: 40px; }
  .nexcare-peace-heading { font-size: 32px; }
  .nexcare-trust-grid { grid-template-columns: repeat(3, 1fr); }
  .nexcare-trust-inner, .nexcare-app-inner { max-width: 100%; }
  .blog-grid { grid-template-columns: 1fr; }
  .ai-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .ai-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }

  /* CTA Banner */
  .cta-banner { padding: 24px 28px; }
  .cta-banner-card-inner { padding: 40px 28px; flex-direction: column; align-items: flex-start; gap: 28px; }

  /* Footer */
  .footer-inner { padding: 0 28px; }
}

/* ─ Mobile ─ */
@media (max-width: 600px) {
  /* Navbar */
  .navbar { padding: 0 20px; height: 64px; }
  .nav-logo img { height: 38px; }

  /* Home hero */
  .hero-left { padding: 90px 20px 260px; }
  .hero h1 { font-size: 32px; letter-spacing: -1px; }
  .hero-desc { font-size: 14px; }
  .hero-right { height: 260px; }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* About hero */
  .about-hero-left { padding: 90px 20px 28px; }
  .about-hero-heading { font-size: 30px; letter-spacing: -0.5px; }
  .about-hero-desc { font-size: 14px; }
  .about-hero-right { height: 240px; }

  /* About sections */
  .about-values-grid { grid-template-columns: 1fr; }
  .about-services-grid { grid-template-columns: 1fr; }
  .about-what-we-do { padding: 48px 20px; }
  .about-mission-section { padding: 0 20px 48px; }

  /* General */
  .section { padding: 52px 20px; }
  .page-hero { padding: 96px 20px 48px; }
  .page-hero h1 { letter-spacing: -1px; }
  .trusted { padding: 28px 20px; }
  .trusted-inner { gap: 24px; }
  .trusted-logos { gap: 20px; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-full-grid { grid-template-columns: 1fr; }
  .work-slider-track .work-card { flex: 0 0 100%; }
  .work-slider-wrap { gap: 10px; }
  .work-slider-btn { width: 32px; height: 32px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 20px; }
  .process-steps > *:last-child:nth-child(odd) { grid-column: 1 / -1; justify-self: center; width: 50%; }
  .ai-grid { grid-template-columns: 1fr; }

  /* Decarb navbar mobile */
  .decarb-navbar { padding: 0 20px; }
  .decarb-nav-back { display: none; }
  .decarb-nav-cta { padding: 8px 14px; font-size: 12px; }

  /* Decarb page mobile */
  .decarb-hero { padding: 88px 20px 0; }
  .decarb-hero-heading { font-size: 24px; letter-spacing: -0.5px; }
  .decarb-hero-desc { font-size: 14px; }
  .decarb-hero-visual { height: 260px; margin-top: 32px; }
  .decarb-step { flex: 0 0 calc(50% - 12px); }
  .decarb-steps > .decarb-step:last-child { margin-left: auto; margin-right: auto; }
  .decarb-impact-grid { grid-template-columns: 1fr; }
  .decarb-steps { gap: 16px; }

  /* CoreSupply navbar mobile */
  .cs-navbar { padding: 0 20px; }
  .cs-nav-back { display: none; }
  .cs-nav-cta { padding: 8px 14px; font-size: 12px; }

  /* CoreSupply page mobile */
  .cs-hero { padding: 88px 20px 0; }
  .cs-hero-heading { font-size: 28px; letter-spacing: -0.8px; }
  .cs-hero-desc { font-size: 14px; }
  .cs-hero-visual { height: 260px; margin-top: 32px; }
  .cs-hero-cta { flex-direction: column; }
  .cs-btn-primary { width: 100%; justify-content: center; text-align: center; }
  .cs-btn-outline { width: 100%; justify-content: center; text-align: center; }
  .cs-strip { padding: 40px 20px; }
  .cs-strip-inner { grid-template-columns: 1fr; gap: 20px; }
  .cs-strip-card { display: flex; gap: 16px; text-align: left; }
  .cs-strip-icon { margin: 0; flex-shrink: 0; }
  .cs-platform-inner { grid-template-columns: 1fr; gap: 28px; }
  .cs-platform-heading { font-size: 26px; }

  /* NexCare navbar mobile */
  .nexcare-navbar { padding: 0 20px; }
  .nexcare-nav-back { display: none; }
  .nexcare-nav-cta { padding: 8px 14px; font-size: 12px; }

  /* NexCare page mobile */
  .nexcare-hero { padding: 88px 20px 0; }
  .nexcare-hero-heading { font-size: 28px; letter-spacing: -0.8px; }
  .nexcare-hero-desc { font-size: 14px; }
  .nexcare-hero-visual { height: 260px; margin-top: 32px; }
  .nexcare-feature-pills { gap: 8px; }
  .nexcare-pill { font-size: 11px; padding: 6px 10px; }
  .nexcare-hero-cta { flex-direction: column; }
  .nexcare-btn-primary { width: 100%; justify-content: center; text-align: center; }
  .nexcare-btn-outline { width: 100%; justify-content: center; text-align: center; }
  .nexcare-features-strip { padding: 40px 20px; }
  .nexcare-strip-inner { grid-template-columns: 1fr; gap: 20px; }
  .nexcare-strip-card { display: flex; gap: 16px; text-align: left; }
  .nexcare-strip-icon { margin: 0; flex-shrink: 0; }
  .nexcare-peace-inner { grid-template-columns: 1fr; gap: 28px; }
  .nexcare-peace-heading { font-size: 26px; }
  .nexcare-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .nexcare-trust-card { padding: 20px 14px; }

  /* CTA Banner */
  .cta-banner { padding: 20px; }
  .cta-banner-card-inner { padding: 32px 20px; }
  .cta-banner h2 { font-size: 22px; }
  .btn-cta { width: 100%; justify-content: center; }

  /* Footer */
  .footer-inner { padding: 0 20px; }

  /* Misc */
  .section-title { font-size: 26px; }
  .btn-primary { width: 100%; justify-content: center; }
  .contact-form { padding: 24px 20px; }
}

/* ═══════════════════════════════════════════
   DATAFLOW PAGE
   ═══════════════════════════════════════════ */

body.df-page { background: #07080f; }

.df-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; padding: 0 48px;
  background: rgba(7,8,15,0.88); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.df-nav-logo { display: flex; align-items: center; }
.df-nav-logo-img { height: 40px; width: auto; }
.df-nav-right { display: flex; align-items: center; gap: 16px; }
.df-nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 20px; border-radius: 8px; font-size: 13px; font-weight: 700;
  background: linear-gradient(135deg,#02c4fd,#C131FD); color: #fff;
  transition: opacity 0.2s, transform 0.2s;
}
.df-nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }
.df-nav-back { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.df-nav-back:hover { color: rgba(255,255,255,0.6); }

/* ── HERO ── */
.df-hero {
  background: #060810; padding: 140px 60px 80px;
  position: relative; overflow: hidden;
  min-height: 680px; display: flex; align-items: center;
}
.df-hero::before {
  content: ''; position: absolute; top: -150px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(3,228,254,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.df-hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}
.df-hero-left { max-width: 50%; }
.df-hero-visual {
  position: absolute; right: 0; top: 72px; bottom: 0; width: 50%;
}
.df-hero-visual::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 220px;
  background: linear-gradient(to right, #060810 0%, transparent 100%);
  z-index: 1;
}
.df-hero-img { width: 100%; height: 100%; object-fit: contain; object-position: center center; display: block; }

.df-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: #02c4fd; border: 1px solid rgba(3,228,254,0.25);
  border-radius: 100px; padding: 6px 14px; margin-bottom: 28px;
  background: rgba(3,228,254,0.05);
}
.df-dot { width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(135deg,#02c4fd,#C131FD); animation: decarb-pulse 2s infinite; }
.df-hero-heading { font-size: 52px; font-weight: 800; line-height: 1.1; letter-spacing: -2px; color: #fff; margin-bottom: 24px; }
.df-blue { background: linear-gradient(90deg,#02c4fd 0%,#C131FD 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.df-hero-desc { font-size: 16px; color: #7a8a9a; line-height: 1.8; margin-bottom: 36px; max-width: 460px; }
.df-hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.df-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-size: 14px; font-weight: 700;
  background: linear-gradient(135deg,#02c4fd,#C131FD); color: #fff;
  transition: opacity 0.2s, transform 0.2s;
}
.df-btn-primary:hover { opacity: 0.85; transform: translateY(-2px); }
.df-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-size: 14px; font-weight: 700;
  border: 1px solid rgba(3,228,254,0.3);
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s, color 0.2s;
}
.df-btn-outline:hover { border-color: rgba(3,228,254,0.6); color: #fff; }
.df-btn-secondary {
  font-size: 14px; font-weight: 700; color: #02c4fd;
  border: 1px solid rgba(3,228,254,0.3); border-radius: 8px;
  padding: 12px 24px; transition: background 0.2s, border-color 0.2s;
}
.df-btn-secondary:hover { background: rgba(3,228,254,0.06); border-color: rgba(3,228,254,0.5); }

/* ── SECTION 2: NUMBERED FEATURES ── */
.df-features-section { background: #08090f; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 80px 60px; }
.df-features-inner { max-width: 1280px; margin: 0 auto; }
.df-features-heading { font-size: 26px; font-weight: 700; color: rgba(255,255,255,0.75); text-align: center; margin-bottom: 52px; line-height: 1.4; letter-spacing: -0.3px; }
.df-features-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 0; border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; overflow: hidden; }
.df-feat-card {
  padding: 32px 24px; border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.df-feat-card:last-child { border-right: none; }
.df-feat-card:hover { background: #9e2ff1); }
.df-feat-num { font-size: 11px; font-weight: 700; color: #9e2ff1; letter-spacing: 0.05em; margin-bottom: 16px; }
.df-feat-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.df-feat-desc { font-size: 12px; color: var(--text-muted); line-height: 1.7; }

/* ── SECTION 3: DOCUMENT TYPES ── */
.df-types-section { background: #07080f; padding: 80px 60px; }
.df-types-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 340px 1fr; gap: 60px; align-items: center; }
.df-section-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: #b539fd; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.df-section-tag::before { content: ''; width: 24px; height: 2px; background:#b539fd; }
.df-types-heading { font-size: 32px; font-weight: 800; line-height: 1.2; letter-spacing: -0.8px; color: #fff; margin-bottom: 16px; }
.df-types-desc { font-size: 14px; color: #6b7a8d; line-height: 1.7; margin-bottom: 24px; max-width: 320px; }
.df-types-link { font-size: 14px; font-weight: 600; color: #C131FD; transition: opacity 0.2s; }
.df-types-link:hover { opacity: 0.75; }

/* Homepage card */
.work-img-dataflow { object-position: center top; }

/* ── DATAFLOW: INLINE BLUE TEXT ── */
.df-blue-text {    background-color: #02c4fd; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── DATAFLOW: BADGE (no dot, just pill) ── */
.df-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 28px;
  background: rgba(255,255,255,0.04);
}

/* ── DATAFLOW: ICON GRID ── */
.df-icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.df-icon-card {
  background: #0c0f1d;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex; flex-direction: row; align-items: center; gap: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.df-icon-card:hover { background: #111627; border-color: rgba(3,228,254,0.35); }
.df-icon-img { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; filter: brightness(0) invert(1) opacity(0.8); }
.df-icon-svg {
  width: 34px; height: 34px; flex-shrink: 0;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.df-icon-card:hover .df-icon-svg { color: #02c4fd; }
.df-icon-label { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.3; }

/* ── DATAFLOW: SECTION 4 WRAPPER ── */
.df-adapt-outer { padding: 80px 60px; background: #07080f; }
.df-adapt-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: center;
  background: #0a0d1a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; overflow: hidden;
}
.df-adapt-left { display: flex; align-items: center; justify-content: center; padding: 48px; background: #080b18; }
.df-adapt-right { padding: 48px; }
.df-adapt-img { width: 100%; display: block; filter: drop-shadow(0 0 30px rgba(3,228,254,0.2)); }
.df-adapt-heading { font-size: 36px; font-weight: 800; line-height: 1.2; letter-spacing: -1px; color: #fff; margin-bottom: 16px; }
.df-adapt-desc { font-size: 14px; color: #6b7a8d; line-height: 1.8; margin-bottom: 24px; max-width: 400px; }

/* ── DATAFLOW: CTA SECTION ── */
.df-cta-section {
  background: linear-gradient(180deg, #07080f 0%, #0a0e1c 50%, #07080f 100%);
  border-top: 1px solid rgba(3,228,254,0.15);
  padding: 80px 60px; text-align: center;
}
.df-cta-inner { max-width: 700px; margin: 0 auto; }
.df-cta-heading {
  font-size: 36px; font-weight: 800; line-height: 1.2; letter-spacing: -1px;
  color: #fff; margin-bottom: 20px;
}
.df-cta-bullets {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.65); margin-bottom: 36px; flex-wrap: wrap;
}
.df-cta-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg,#02c4fd,#C131FD); display: inline-block; flex-shrink: 0;
}
.df-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px; font-size: 15px; font-weight: 700;
  background: linear-gradient(135deg,#02c4fd,#C131FD); color: #fff;
  transition: opacity 0.2s, transform 0.2s;
}
.df-cta-btn:hover { opacity: 0.85; transform: translateY(-2px); }

/* ── DATAFLOW: TRUSTED BAR ── */
.df-trusted-bar {
  background: #07080f; border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 60px;
}
.df-trusted-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.df-trusted-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); white-space: nowrap; }
.df-trusted-logos { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.df-trusted-logos span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.35); }
.df-trusted-dot { color: rgba(255,255,255,0.2) !important; font-size: 10px !important; }

/* ── DataFlow Responsive ── */

/* Tabletă mare */
@media (max-width: 1100px) {
  .df-hero { padding: 130px 40px 60px; }
  .df-features-section { padding: 60px 40px; }
  .df-types-section { padding: 60px 40px; }
  .df-adapt-outer { padding: 60px 40px; }
  .df-cta-section { padding: 60px 40px; }
  .df-trusted-bar { padding: 20px 40px; }
}

/* Tabletă / mobile landscape */
@media (max-width: 900px) {
  /* Navbar */
  .df-navbar { padding: 0 24px; height: 60px; }
  .df-nav-back { font-size: 11px; }

  /* Hero: stacked */
  .df-hero {
    min-height: auto;
    padding: 90px 24px 0;
    flex-direction: column;
  }
  .df-hero-inner { width: 100%; }
  .df-hero-left { max-width: 100%; }
  .df-hero-visual {
    position: relative; top: auto; right: auto; bottom: auto;
    width: 100%; height: 260px; margin-top: 32px;
  }
  .df-hero-visual::before { display: none; }
  .df-hero-img { object-position: top center; }
  .df-hero-heading { font-size: 36px; letter-spacing: -1px; }
  .df-hero-desc { font-size: 14px; max-width: 100%; }
  .df-hero-cta { flex-direction: column; gap: 12px; }
  .df-btn-primary, .df-btn-outline { width: 100%; justify-content: center; text-align: center; }

  /* Section 2: 3 coloane pe tabletă */
  .df-features-section { padding: 60px 24px; }
  .df-features-heading { font-size: 20px; margin-bottom: 36px; }
  .df-features-grid { grid-template-columns: repeat(3, 1fr); }
  .df-feat-card {
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-right: 1px solid rgba(255,255,255,0.07);
    padding: 24px 16px;
  }

  /* Section 3: stacked */
  .df-types-section { padding: 60px 24px; }
  .df-types-inner { grid-template-columns: 1fr; gap: 36px; }
  .df-types-heading { font-size: 28px; }
  .df-types-desc { max-width: 100%; }
  .df-icon-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .df-icon-card { padding: 14px 12px; gap: 10px; }
  .df-icon-img { width: 28px; height: 28px; }
  .df-icon-label { font-size: 11px; }

  /* Section 4: stacked */
  .df-adapt-outer { padding: 60px 24px; }
  .df-adapt-inner { grid-template-columns: 1fr; }
  .df-adapt-left { padding: 32px; }
  .df-adapt-right { padding: 32px; }
  .df-adapt-heading { font-size: 28px; }

  /* CTA */
  .df-cta-section { padding: 60px 24px; }
  .df-cta-heading { font-size: 26px; }

  /* Trusted */
  .df-trusted-bar { padding: 20px 24px; }
  .df-trusted-inner { gap: 20px; }
}

/* Mobile portrait */
@media (max-width: 480px) {
  /* Navbar */
  .df-navbar { padding: 0 16px; }
  .df-nav-cta { padding: 8px 14px; font-size: 12px; }
  .df-nav-back { display: none; }

  /* Hero */
  .df-hero { padding: 80px 16px 0; }
  .df-hero-heading { font-size: 30px; letter-spacing: -0.8px; }
  .df-hero-visual { height: 220px; }

  /* Section 2: 2 coloane */
  .df-features-section { padding: 48px 16px; }
  .df-features-heading { font-size: 17px; margin-bottom: 28px; }
  .df-features-grid { grid-template-columns: repeat(2, 1fr); }
  .df-feat-card { padding: 20px 14px; }
  .df-feat-num { margin-bottom: 10px; }

  /* Section 3 */
  .df-types-section { padding: 48px 16px; }
  .df-types-heading { font-size: 24px; }
  .df-icon-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .df-icon-card { padding: 14px 14px; }
  .df-icon-img { width: 30px; height: 30px; }
  .df-icon-label { font-size: 12px; }

  /* Section 4 */
  .df-adapt-outer { padding: 48px 16px; }
  .df-adapt-left { padding: 24px 16px; }
  .df-adapt-right { padding: 24px 16px; }
  .df-adapt-heading { font-size: 24px; }
  .df-adapt-desc { max-width: 100%; }

  /* CTA */
  .df-cta-section { padding: 48px 16px; }
  .df-cta-heading { font-size: 22px; }
  .df-cta-btn { width: 100%; justify-content: center; }

  /* Trusted */
  .df-trusted-bar { padding: 16px; }
  .df-trusted-logos { gap: 16px; }
}
