/* =========================================================================
   ATTENTUS EUDR — Stylesheet
   Brand palette aligned with attentus.pl, with EUDR-specific forest accent
   ========================================================================= */

:root {
  /* Core brand */
  --navy:        #0B1D3A;
  --navy-dark:   #061023;
  --navy-mid:    #122A50;
  --cyan:        #00AEEF;
  --cyan-dark:   #008CC7;
  --amber:       #F6C90E;
  --amber-dark:  #D4A800;
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;

  /* EUDR-specific accents */
  --forest:      #1E5631;
  --forest-dark: #0F3A1F;
  --leaf:        #5CB85C;
  --earth:       #8B6F47;

  /* Greys */
  --grey-50:     #F7F9FC;
  --grey-100:    #EEF2F7;
  --grey-200:    #DDE3EC;
  --grey-300:    #C0CADA;
  --grey-400:    #8C9BAF;
  --grey-500:    #6B7A91;
  --grey-700:    #3A475E;
  --grey-900:    #1A2235;

  /* Status colors */
  --ok:          #28A745;
  --warn:        #FFB020;
  --fail:        #DC3545;

  /* Fonts */
  --font-display: 'Bricolage Grotesque', 'Manrope', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Spacing & radius */
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --shadow-sm:   0 2px 8px rgba(11, 29, 58, 0.06);
  --shadow:      0 8px 24px rgba(11, 29, 58, 0.10);
  --shadow-lg:   0 20px 60px rgba(11, 29, 58, 0.18);

  --max-width:   1200px;
  --narrow-width: 880px;
}

/* =====================  RESET  ===================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--cyan-dark); }

/* Skip-link for a11y */
.skip {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 0 0 var(--radius) 0;
  z-index: 1000;
}
.skip:focus {
  left: 0;
  top: 0;
  width: auto;
  height: auto;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--narrow-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================  HEADER & NAV  ===================== */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--grey-200);
}

nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--grey-700);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.nav-links a:hover {
  color: var(--navy);
  background: var(--grey-100);
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--cyan) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.nav-lang {
  margin-left: 4px;
  padding: 8px 10px !important;
  font-size: 12px !important;
  font-family: var(--font-mono) !important;
  font-weight: 600 !important;
  letter-spacing: 0.10em;
  color: var(--grey-500) !important;
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-sm);
}
.nav-lang:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-color: var(--navy);
}

.mobile-btn {
  display: none;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 24px 24px;
  border-bottom: 1px solid var(--grey-200);
}
.mobile-menu a {
  color: var(--grey-700);
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-100);
  font-weight: 500;
}
.mobile-menu.is-open { display: flex; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .mobile-btn { display: inline-flex; align-items: center; }
}

/* =====================  TYPOGRAPHY  ===================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.1;
}

h1 {
  font-size: clamp(38px, 5.4vw, 68px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.08;
}
h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.2;
}
h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.h2-light { color: var(--white); }

.accent       { color: var(--forest); }
.accent-cyan  { color: var(--cyan); }
.accent-amber { color: var(--amber); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  padding: 6px 14px;
  border: 1px solid var(--forest);
  border-radius: 100px;
  margin-bottom: 24px;
}
.eyebrow-light {
  color: var(--amber);
  border-color: var(--amber);
}

/* =====================  HERO  ===================== */

.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 90px 0 0;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 700px 500px at 80% 20%, rgba(0, 174, 239, 0.18), transparent 60%),
    radial-gradient(ellipse 500px 400px at 20% 90%, rgba(30, 86, 49, 0.30), transparent 65%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 560px;
}

.hero-content { position: relative; }

.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 .accent { color: var(--amber); }
.hero h1 .accent-cyan { color: var(--cyan); }

.deadline-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.40);
  color: #FFB4BC;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  animation: pulseBg 3s ease-in-out infinite;
}
.deadline-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF5C6C;
  box-shadow: 0 0 0 0 rgba(255, 92, 108, 0.7);
  animation: pulseDot 2s infinite;
}
@keyframes pulseBg {
  50% { background: rgba(220, 53, 69, 0.18); }
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(255, 92, 108, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 92, 108, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 92, 108, 0); }
}

.hero .lead {
  font-size: clamp(17px, 1.2vw, 19px);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.55;
}
.hero .lead strong { color: var(--white); font-weight: 700; }

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(246, 201, 14, 0.30);
  color: var(--navy);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.30);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.60);
  color: var(--white);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  width: 100%;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.trust-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

/* Hero visual: SAP-style card */
.hero-visual {
  position: relative;
}

.hero-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F9FC 100%);
  border-radius: var(--radius-lg);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.40),
    0 0 0 1px rgba(255, 255, 255, 0.10);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: cardFloat 6s ease-in-out infinite;
}
.hero-card:hover {
  transform: perspective(1400px) rotateY(-2deg) rotateX(0deg);
}
@keyframes cardFloat {
  0%, 100% { transform: perspective(1400px) rotateY(-6deg) rotateX(2deg) translateY(0); }
  50%      { transform: perspective(1400px) rotateY(-6deg) rotateX(2deg) translateY(-8px); }
}

.card-head {
  background: var(--navy-dark);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.card-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.card-dot-red    { background: #FF5C6C; }
.card-dot-amber  { background: var(--amber); }
.card-dot-green  { background: var(--leaf); }
.card-title {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.70);
  font-weight: 500;
}

.card-body {
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pipeline-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  font-size: 13px;
}

.row-id {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--navy);
  font-size: 12px;
}
.row-meta {
  color: var(--grey-500);
  font-size: 12px;
}

.badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.badge-ok      { background: rgba(40, 167, 69, 0.12); color: var(--ok); }
.badge-warn    { background: rgba(255, 176, 32, 0.14); color: #C77A00; }
.badge-fail    { background: rgba(220, 53, 69, 0.12); color: var(--fail); }
.badge-pending { background: var(--grey-100); color: var(--grey-700); }

.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 4px 4px;
  border-top: 1px solid var(--grey-200);
  margin-top: 4px;
}
.foot-label { font-size: 12px; color: var(--grey-500); }
.foot-value {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--forest);
}

/* Hero marquee */
.hero-marquee {
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
  display: inline-flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.20);
  letter-spacing: 0.02em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .hero { padding-top: 60px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-trust {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-marquee { margin-top: 50px; }
}

/* =====================  SECTIONS  ===================== */

.section {
  padding: 100px 0;
  position: relative;
}
@media (max-width: 720px) {
  .section { padding: 70px 0; }
}

.section-light { background: var(--white); }

.section-dark {
  background: var(--navy-dark);
  color: var(--white);
}
.section-dark h2 { color: var(--white); }

.section-pattern {
  background: var(--off-white);
  position: relative;
  isolation: isolate;
}
.section-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(circle, var(--grey-200) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  opacity: 0.6;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.section-head-product { max-width: 820px; }

.section-lead {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--grey-500);
  margin-top: 16px;
  line-height: 1.6;
}
.section-lead-light { color: rgba(255, 255, 255, 0.75); }

/* =====================  COMMODITIES  ===================== */

.commodities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 880px) {
  .commodities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .commodities-grid { grid-template-columns: 1fr; }
}

.commodity {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.commodity::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--leaf));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.commodity:hover {
  border-color: var(--forest);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.commodity:hover::before { transform: scaleX(1); }

.commodity-icon {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 18px;
}
.commodity h3 {
  margin-bottom: 8px;
  color: var(--navy);
}
.commodity p {
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.55;
}

.commodity-plus {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  border-color: var(--navy);
}
.commodity-plus::before {
  background: linear-gradient(90deg, var(--amber), var(--cyan));
  transform: scaleX(1);
}
.commodity-plus .commodity-icon {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--amber);
  font-size: 42px;
}
.commodity-plus h3 { color: var(--white); }
.commodity-plus p { color: rgba(255, 255, 255, 0.70); }

/* =====================  RISK SECTION (dark)  ===================== */

.risk-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 880px) {
  .risk-layout { grid-template-columns: 1fr; gap: 40px; }
}

.risk-lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 24px;
  line-height: 1.65;
}

.risk-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.risk-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: all 0.3s ease;
}
.risk-stat:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}
.risk-stat-accent {
  background: rgba(246, 201, 14, 0.10);
  border-color: rgba(246, 201, 14, 0.40);
}
.risk-stat-accent .risk-value { color: var(--amber); }

.risk-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.04em;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 10px;
}
.risk-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.4;
}

/* =====================  PRODUCT ARCHITECTURE  ===================== */

.product-architecture {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.arch-layer {
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 26px 32px;
  background: var(--white);
  border: 2px solid var(--grey-200);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  transition: all 0.3s ease;
}

.arch-layer:hover { border-color: var(--cyan); }

.arch-erp { border-color: var(--grey-300); }
.arch-hub {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-color: var(--navy);
  color: var(--white);
  position: relative;
  box-shadow: 0 12px 40px rgba(11, 29, 58, 0.20);
}
.arch-hub::after {
  content: "ATTENTUS";
  position: absolute;
  top: -10px;
  right: 28px;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 12px;
  border-radius: 100px;
}
.arch-external { border-color: var(--forest); }

.arch-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--grey-500);
  min-width: 180px;
  text-transform: uppercase;
}
.arch-hub .arch-label { color: var(--amber); }

.arch-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}
.arch-item {
  display: inline-block;
  padding: 7px 14px;
  background: var(--grey-100);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-700);
}
.arch-hub .arch-item {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.arch-arrow {
  font-size: 22px;
  color: var(--grey-300);
  line-height: 1;
}

@media (max-width: 720px) {
  .arch-layer { flex-direction: column; align-items: flex-start; gap: 16px; padding: 22px; }
  .arch-label { min-width: auto; }
}

/* =====================  FEATURES  ===================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }

.feature {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--grey-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 174, 239, 0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.feature:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature:hover::before { opacity: 1; }

.feature-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}

.feature h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.feature p {
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-bullets li {
  font-size: 13px;
  color: var(--grey-700);
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.5;
}
.feature-bullets li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--forest);
  font-weight: 700;
}

/* =====================  COMPARISON TABLE  ===================== */

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 720px;
}

.compare-table thead {
  background: var(--grey-50);
}

.compare-table th {
  text-align: left;
  padding: 18px 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  border-bottom: 2px solid var(--grey-200);
  vertical-align: top;
}
.compare-table th:first-child { background: var(--white); }
.compare-table .th-attentus {
  background: var(--navy);
  color: var(--white);
  position: relative;
}
.compare-table .th-attentus::after {
  content: "ZALECANE";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 3px 10px;
  border-radius: 100px;
}
.th-sub {
  display: block;
  font-weight: 400;
  font-size: 11px;
  color: var(--grey-500);
  margin-top: 4px;
}
.th-attentus .th-sub { color: rgba(255, 255, 255, 0.65); }

.compare-table td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--grey-100);
  color: var(--grey-700);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { font-weight: 600; color: var(--navy); }

.compare-table td:nth-child(3) {
  background: rgba(11, 29, 58, 0.02);
  border-left: 1px solid var(--grey-200);
  border-right: 1px solid var(--grey-200);
}

.check {
  color: var(--ok);
  font-weight: 600;
}
.check::before { content: "✓ "; font-weight: 700; }
.x {
  color: var(--grey-400);
  font-weight: 500;
}
.x::before { content: "✗ "; color: var(--grey-300); }

/* =====================  TIMELINE  ===================== */

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(246, 201, 14, 0.20) 0%,
    rgba(246, 201, 14, 0.60) 50%,
    rgba(246, 201, 14, 0.20) 100%);
}

@media (max-width: 980px) {
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
}
@media (max-width: 540px) {
  .timeline { grid-template-columns: 1fr; }
}

.timeline-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  transition: all 0.3s ease;
}
.timeline-step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(246, 201, 14, 0.40);
  transform: translateY(-4px);
}

.step-num {
  width: 54px;
  height: 54px;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.step-week {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--amber);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.timeline-step h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 17px;
}
.timeline-step p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.55;
}

/* =====================  SECTORS  ===================== */

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .sectors-grid { grid-template-columns: 1fr; } }

.sector {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border-left: 4px solid var(--forest);
  transition: all 0.3s ease;
}
.sector:hover {
  border-left-color: var(--cyan);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.sector h3 {
  margin-bottom: 10px;
  color: var(--navy);
}
.sector p {
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.6;
}

/* =====================  FAQ  ===================== */

.section-faq { padding-top: 60px; }

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq details {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq details[open] {
  border-color: var(--forest);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  font-weight: 600;
  font-size: 16px;
  padding: 20px 56px 20px 24px;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--navy);
  user-select: none;
  transition: color 0.2s ease;
}
.faq summary:hover { color: var(--forest); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  color: var(--forest);
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq details p {
  padding: 0 24px 22px;
  color: var(--grey-700);
  font-size: 15px;
  line-height: 1.7;
}

/* =====================  CTA SECTION  ===================== */

.section-cta {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 600px 400px at 20% 30%, rgba(30, 86, 49, 0.40), transparent 65%),
    radial-gradient(ellipse 500px 300px at 80% 70%, rgba(246, 201, 14, 0.12), transparent 65%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.cta-box {
  text-align: center;
}
.cta-box .eyebrow { margin-bottom: 18px; }
.cta-box h2 {
  margin-bottom: 18px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cta-lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-xl);
  padding: 36px;
  text-align: left;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 26px 22px; }
}

.form-field {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  outline: none;
  transition: all 0.2s ease;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.35);
}

.form-field textarea { resize: vertical; min-height: 80px; }

.form-consent { margin: 8px 0 20px; }
.consent-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--cyan);
  background: var(--white);
}
.consent-label span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}
.consent-label a { color: var(--cyan); }

.cta-alt {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}
.cta-alt a {
  font-weight: 600;
  color: var(--amber);
  margin-left: 6px;
  margin-right: 6px;
}
.cta-alt a:hover { color: var(--white); }

/* =====================  FOOTER  ===================== */

footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.70);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand img {
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.60);
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--amber);
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}

.footer-col ul,
.footer-contact {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-col a:hover,
.footer-contact a:hover {
  color: var(--cyan);
}

.footer-contact li {
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 4px;
}
.footer-legal a:hover { color: var(--cyan); }

/* =====================  REDUCED MOTION  ===================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-card { transform: none; }
  .marquee-track { animation: none; }
}
