/* ============================================
   WeldInspect Pro — Global Design System
   Shared across ALL pages for consistent identity.
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}

:root {
  --blue: #2563EB;
  --blue-dark: #1d4ed8;
  --blue-light: #eff6ff;
  --green: #16a34a;
  --green-light: #dcfce7;
  --yellow: #eab308;
  --yellow-light: #fef9c3;
  --red: #dc2626;
  --red-light: #fee2e2;
  --purple: #7c3aed;
  --purple-light: #f3e8ff;
  --orange: #2563EB;
  --orange-light: #eff6ff;
  --teal: #0d9488;
  --teal-light: #ccfbf1;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.1), 0 12px 48px rgba(0,0,0,0.06);
}

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

/* ====== LAYOUT ====== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.text-blue { color: var(--blue); }
.text-green { color: var(--green); font-weight: 600; }
.text-center { text-align: center; }

/* ====== BUTTONS ====== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px; border: none; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,0.3); }
.btn-outline { background: var(--white); color: var(--gray-800); border: 1.5px solid var(--gray-300); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-ghost { background: transparent; color: var(--blue); padding: 10px 4px; }
.btn-ghost:hover { background: var(--blue-light); padding: 10px 12px; }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: var(--radius); }
.btn-white { background: var(--white); color: var(--blue); }
.btn-white:hover { background: var(--gray-50); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ====== NAVBAR ====== */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--gray-200); }
.navbar-inner { display: flex; align-items: center; height: 64px; gap: 32px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { width: 36px; height: 36px; background: var(--blue); color: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; }
.logo-name { font-size: 14px; font-weight: 600; letter-spacing: 0.5px; color: var(--gray-900); display: block; line-height: 1.2; }
.logo-name strong { color: var(--blue); }
.logo-sub { font-size: 8px; letter-spacing: 1.5px; color: var(--gray-400); text-transform: uppercase; }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-link { display: flex; align-items: center; gap: 4px; padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--gray-600); border-radius: 6px; transition: all 0.15s; }
.nav-link:hover, .nav-link.active { color: var(--gray-900); background: var(--gray-50); }
.nav-link svg { opacity: 0.5; }
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.btn-lang { display: flex; align-items: center; gap: 6px; background: none; border: none; font-size: 13px; color: var(--gray-500); cursor: pointer; padding: 6px 10px; border-radius: 6px; font-family: inherit; }
.btn-lang:hover { background: var(--gray-50); }
.avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--blue); color: white; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }

/* ====== PAGE HERO (reusable across all subpages) ====== */
.page-hero { padding: 80px 0 64px; background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 100%); text-align: center; }
.page-hero h1 { font-size: 44px; font-weight: 800; color: var(--gray-900); margin-bottom: 16px; line-height: 1.15; }
.page-hero h1 .text-blue { color: var(--blue); }
.page-hero .subtitle { font-size: 18px; color: var(--gray-500); max-width: 640px; margin: 0 auto 32px; line-height: 1.7; }
.page-hero .hero-ctas { display: flex; gap: 12px; justify-content: center; }

/* ====== HOME HERO (special: has dashboard) ====== */
.hero { padding: 64px 0 80px; background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: var(--blue-light); color: var(--blue); font-size: 11px; font-weight: 600; letter-spacing: 1px; border-radius: 100px; margin-bottom: 24px; }
.hero h1 { font-size: 42px; font-weight: 800; line-height: 1.15; color: var(--gray-900); margin-bottom: 20px; }
.hero-subtitle { font-size: 17px; color: var(--gray-500); line-height: 1.7; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 12px; margin-bottom: 40px; }
.hero-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.hero-feature { display: flex; align-items: flex-start; gap: 12px; }
.feature-dot { width: 8px; height: 8px; border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.feature-dot.blue { background: var(--blue); }
.feature-dot.green { background: var(--green); }
.feature-dot.purple { background: var(--purple); }
.hero-feature strong { display: block; font-size: 13px; font-weight: 600; color: var(--gray-800); }
.hero-feature span { font-size: 12px; color: var(--gray-500); }
.standards-logos { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.standard-logo { width: 52px; height: 40px; border: 1px solid var(--gray-200); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 11px; color: var(--gray-600); text-align: center; line-height: 1.1; background: var(--white); }
.standard-logo small { font-size: 9px; font-weight: 500; }
.standards-more { font-size: 11px; color: var(--gray-400); font-weight: 500; white-space: nowrap; }

/* ====== DASHBOARD PREVIEW ====== */
.hero-visual { position: relative; }
.dashboard-preview { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); overflow: hidden; font-size: 11px; transform: perspective(1200px) rotateY(-2deg); }
.dash-header { display: flex; align-items: center; gap: 16px; padding: 12px 16px; border-bottom: 1px solid var(--gray-100); background: var(--gray-50); }
.dash-logo { display: flex; align-items: center; gap: 8px; }
.dash-logo-icon { width: 28px; height: 28px; background: var(--blue); color: white; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; }
.dash-logo span { font-size: 10px; font-weight: 600; line-height: 1.2; }
.dash-logo small { font-weight: 400; color: var(--gray-400); }
.dash-title { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-left: auto; }
.dash-project { margin-left: auto; display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--gray-500); }
.dash-project select { font-size: 11px; border: 1px solid var(--gray-200); border-radius: 6px; padding: 4px 8px; background: var(--white); font-family: inherit; }
.dash-nav { display: flex; flex-direction: column; gap: 2px; padding: 12px; background: var(--gray-50); width: 140px; position: absolute; top: 52px; bottom: 0; border-right: 1px solid var(--gray-100); overflow-y: auto; }
.dash-nav-item { display: flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 6px; font-size: 10px; color: var(--gray-500); cursor: pointer; white-space: nowrap; }
.dash-nav-item.active { background: var(--blue); color: var(--white); font-weight: 600; }
.dash-nav-item svg { width: 14px; height: 14px; }
.dash-content { margin-left: 140px; padding: 16px; }
.dash-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 16px; }
.stat-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: 10px; padding: 14px; text-align: center; }
.stat-card.stat-primary { border-color: var(--blue); background: var(--blue-light); }
.stat-label { display: block; font-size: 9px; color: var(--gray-400); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-value { display: block; font-size: 22px; font-weight: 800; color: var(--gray-900); }
.stat-sub { display: block; font-size: 9px; color: var(--gray-400); margin-top: 2px; }
.score-circle { position: relative; display: flex; align-items: center; justify-content: center; margin: 4px auto; }
.score-value { position: absolute; font-size: 16px; font-weight: 800; color: var(--blue); }
.dash-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 12px; }
.dash-panel { background: var(--white); border: 1px solid var(--gray-100); border-radius: 10px; padding: 14px; }
.dash-panel.wide { grid-column: 1 / 3; }
.dash-panel h4 { font-size: 11px; font-weight: 700; color: var(--gray-800); margin-bottom: 10px; }
.compliance-chart { display: flex; align-items: center; gap: 16px; }
.compliance-legend { font-size: 10px; color: var(--gray-600); display: flex; flex-direction: column; gap: 4px; }
.compliance-legend .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }
.compliance-legend .dot.blue { background: var(--blue); }
.compliance-legend .dot.yellow { background: var(--yellow); }
.compliance-legend .dot.red { background: var(--red); }
.norms-list { display: flex; flex-direction: column; gap: 6px; }
.norm-row { display: flex; align-items: center; gap: 8px; font-size: 9px; color: var(--gray-600); }
.norm-row span:first-child { width: 110px; flex-shrink: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.norm-bar { flex: 1; height: 6px; background: var(--gray-100); border-radius: 3px; overflow: hidden; }
.norm-fill { height: 100%; background: var(--blue); border-radius: 3px; }
.activity-list { display: flex; flex-direction: column; gap: 8px; }
.activity-item { display: flex; align-items: flex-start; gap: 8px; font-size: 10px; color: var(--gray-600); line-height: 1.4; }
.activity-dot { width: 6px; height: 6px; border-radius: 50%; margin-top: 4px; flex-shrink: 0; }
.activity-dot.green { background: var(--green); }
.activity-dot.red { background: var(--red); }
.activity-dot.blue { background: var(--blue); }
.activity-dot.yellow { background: var(--yellow); }
.activity-item small { color: var(--gray-400); white-space: nowrap; margin-left: auto; }
.project-table { width: 100%; border-collapse: collapse; font-size: 10px; }
.project-table th { text-align: left; padding: 6px 8px; color: var(--gray-400); font-weight: 500; border-bottom: 1px solid var(--gray-100); font-size: 9px; text-transform: uppercase; }
.project-table td { padding: 8px; border-bottom: 1px solid var(--gray-50); color: var(--gray-700); }
.badge { display: inline-block; padding: 2px 8px; border-radius: 100px; font-size: 10px; font-weight: 600; }
.badge.green { background: var(--green-light); color: var(--green); }
.badge.yellow { background: var(--yellow-light); color: #a16207; }
.badge.blue { background: var(--blue-light); color: var(--blue); }
.badge.red { background: var(--red-light); color: var(--red); }
.badge-lg { font-size: 13px; padding: 4px 14px; }
.risk-chart { display: flex; gap: 16px; align-items: center; }
.risk-bars { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.risk-bar-item { display: flex; align-items: center; gap: 8px; font-size: 10px; color: var(--gray-500); }
.risk-bar-item span { width: 30px; }
.risk-bar { flex: 1; height: 8px; background: var(--gray-100); border-radius: 4px; overflow: hidden; }
.risk-fill { height: 100%; border-radius: 4px; }
.risk-fill.red { background: var(--red); }
.risk-fill.yellow { background: var(--yellow); }
.risk-fill.green { background: var(--green); }
.risk-score-circle { width: 64px; height: 64px; border-radius: 50%; border: 3px solid var(--yellow); display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
.risk-number { font-size: 20px; font-weight: 800; color: var(--gray-900); line-height: 1; }
.risk-label { font-size: 7px; color: var(--gray-400); }
.risk-level { font-size: 8px; color: var(--yellow); font-weight: 600; }

/* ====== SECTION PATTERNS ====== */
.section { padding: 80px 0; }
.section.bg-white { background: var(--white); }
.section.bg-gray { background: var(--gray-50); }
.section.bg-blue { background: var(--blue); color: var(--white); }
.section.bg-dark { background: var(--gray-900); color: var(--white); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 32px; font-weight: 800; color: var(--gray-900); margin-bottom: 12px; }
.section.bg-blue .section-header h2,
.section.bg-dark .section-header h2 { color: var(--white); }
.section-header p { font-size: 17px; color: var(--gray-500); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.section.bg-blue .section-header p { color: rgba(255,255,255,0.75); }
.section.bg-dark .section-header p { color: var(--gray-400); }
.section-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; border-radius: 100px; font-size: 11px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 16px; }
.section-badge.blue { background: var(--blue-light); color: var(--blue); }
.section-badge.green { background: var(--green-light); color: var(--green); }
.section-badge.purple { background: var(--purple-light); color: var(--purple); }

/* ====== FEATURE CARDS ====== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { padding: 32px; border: 1px solid var(--gray-200); border-radius: var(--radius); transition: all 0.25s; background: var(--white); }
.feature-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-icon.blue { background: var(--blue-light); color: var(--blue); }
.feature-icon.green { background: var(--green-light); color: var(--green); }
.feature-icon.purple { background: var(--purple-light); color: var(--purple); }
.feature-icon.orange { background: var(--orange-light); color: var(--blue); }
.feature-icon.red { background: var(--red-light); color: var(--red); }
.feature-icon.teal { background: var(--teal-light); color: var(--teal); }
.feature-card h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ====== ICON ROW FEATURES ====== */
.icon-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.icon-feature { text-align: center; padding: 24px 16px; }
.icon-feature .icon-circle { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.icon-feature .icon-circle.blue { background: var(--blue-light); color: var(--blue); }
.icon-feature .icon-circle.green { background: var(--green-light); color: var(--green); }
.icon-feature .icon-circle.purple { background: var(--purple-light); color: var(--purple); }
.icon-feature .icon-circle.orange { background: var(--orange-light); color: var(--blue); }
.icon-feature .icon-circle.teal { background: var(--teal-light); color: var(--teal); }
.icon-feature .icon-circle.red { background: var(--red-light); color: var(--red); }
.icon-feature h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.icon-feature p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ====== SPLIT SECTION (text + visual) ====== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-text h2 { font-size: 30px; font-weight: 800; color: var(--gray-900); margin-bottom: 16px; line-height: 1.2; }
.split-text p { font-size: 16px; color: var(--gray-500); margin-bottom: 24px; line-height: 1.7; }
.split-visual { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; min-height: 320px; display: flex; align-items: center; justify-content: center; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--gray-700); }
.check-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--blue); }

/* ====== TESTIMONIAL ====== */
.testimonial { padding: 80px 0; background: var(--gray-50); }
.testimonial-card { max-width: 720px; margin: 0 auto; text-align: center; position: relative; }
.quote-icon { margin: 0 auto 20px; }
.testimonial blockquote { font-size: 18px; color: var(--gray-700); line-height: 1.8; font-style: italic; margin-bottom: 32px; }
.testimonial-author { display: flex; align-items: center; gap: 16px; justify-content: center; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--blue); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
.testimonial-author strong { display: block; font-size: 15px; color: var(--gray-900); }
.testimonial-author span { font-size: 13px; color: var(--gray-500); text-align: left; }

/* ====== STATS BAR ====== */
.stats { padding: 48px 0; background: var(--blue); color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-number { display: block; font-size: 42px; font-weight: 800; line-height: 1; margin-bottom: 8px; }
.stat-desc { font-size: 14px; opacity: 0.8; line-height: 1.5; }

/* ====== PRODUCT SCREENS ====== */
.product-screens { padding: 80px 0; background: var(--gray-50); }
.screens-grid { display: grid; grid-template-columns: 1fr 1.2fr 0.8fr; gap: 24px; align-items: start; }
.screen-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); overflow: hidden; box-shadow: var(--shadow); }
.screen-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--gray-100); }
.screen-title { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.screen-badge { padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; }
.screen-badge.green { background: var(--green-light); color: var(--green); }
.screen-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--gray-100); }
.tab { padding: 10px 16px; font-size: 12px; font-weight: 500; color: var(--gray-400); cursor: pointer; border-bottom: 2px solid transparent; }
.tab.active { color: var(--blue); border-color: var(--blue); font-weight: 600; }
.screen-details { padding: 12px 18px; }
.detail-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--gray-50); font-size: 13px; }
.detail-row span:first-child { color: var(--gray-400); }
.detail-row span:last-child { color: var(--gray-800); font-weight: 500; }
.badge-inline { padding: 2px 8px; border-radius: 100px; font-size: 11px; font-weight: 600; }
.badge-inline.green { background: var(--green-light); color: var(--green); }
.graph-card { min-height: 380px; }
.graph-visual { position: relative; height: 320px; padding: 20px; }
.graph-node { position: absolute; padding: 10px 14px; border-radius: 10px; font-size: 11px; font-weight: 600; text-align: center; color: white; line-height: 1.3; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.graph-node small { font-weight: 400; font-size: 9px; opacity: 0.9; display: block; }
.graph-node.center { background: var(--blue); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; padding: 16px 20px; font-size: 13px; }
.graph-node.wps { background: var(--purple); top: 12%; left: 15%; }
.graph-node.material { background: #0891b2; top: 12%; right: 15%; }
.graph-node.inspection { background: var(--green); bottom: 15%; left: 10%; }
.graph-node.ndt { background: var(--blue); bottom: 15%; right: 10%; }
.graph-node.cert { background: var(--blue); bottom: 15%; left: 50%; transform: translateX(-50%); }
.graph-line { position: absolute; background: var(--gray-200); z-index: 1; }
.graph-line.l1 { width: 2px; height: 60px; top: 22%; left: 28%; transform: rotate(30deg); }
.graph-line.l2 { width: 2px; height: 60px; top: 22%; right: 28%; transform: rotate(-30deg); }
.graph-line.l3 { width: 2px; height: 60px; bottom: 25%; left: 25%; transform: rotate(-30deg); }
.graph-line.l4 { width: 2px; height: 60px; bottom: 25%; right: 25%; transform: rotate(30deg); }
.graph-line.l5 { width: 2px; height: 50px; bottom: 28%; left: 50%; }

/* ====== PRICING ====== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; transition: all 0.25s; position: relative; }
.pricing-card.featured { border-color: var(--blue); box-shadow: var(--shadow-lg); transform: scale(1.04); }
.pricing-card.featured::before { content: 'Populair'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue); color: white; padding: 4px 16px; border-radius: 100px; font-size: 11px; font-weight: 600; }
.pricing-card h3 { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.pricing-card .price { font-size: 42px; font-weight: 800; color: var(--gray-900); margin: 16px 0 4px; line-height: 1; }
.pricing-card .price small { font-size: 16px; font-weight: 500; color: var(--gray-400); }
.pricing-card .price-sub { font-size: 13px; color: var(--gray-400); margin-bottom: 24px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; color: var(--gray-600); display: flex; align-items: center; gap: 8px; }
.pricing-features li svg { color: var(--blue); flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ====== NORMS TABLE ====== */
.norms-table { width: 100%; border-collapse: collapse; }
.norms-table th { text-align: left; padding: 12px 16px; background: var(--gray-50); color: var(--gray-500); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid var(--gray-200); }
.norms-table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-100); font-size: 14px; color: var(--gray-700); }
.norms-table tr:hover { background: var(--blue-light); }

/* ====== TEAM GRID ====== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-avatar { width: 96px; height: 96px; border-radius: 50%; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; margin: 0 auto 16px; }
.team-card h4 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--gray-500); }

/* ====== CONTACT / FORM ====== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; color: var(--gray-800); transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item .icon-circle { width: 44px; height: 44px; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 14px; color: var(--gray-900); margin-bottom: 2px; }
.contact-item span { font-size: 13px; color: var(--gray-500); }

/* ====== CTA BANNER ====== */
.cta-banner { padding: 64px 0; background: var(--blue); text-align: center; }
.cta-banner h2 { font-size: 30px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.cta-banner .btn-group { display: flex; gap: 12px; justify-content: center; }

/* ====== FOOTER ====== */
.footer { padding: 60px 0 40px; background: var(--white); border-top: 1px solid var(--gray-200); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; }
.footer-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; flex: 1; }
.footer-feature { display: flex; gap: 14px; align-items: flex-start; }
.footer-feature strong { display: block; font-size: 14px; color: var(--gray-900); margin-bottom: 2px; }
.footer-feature span { font-size: 13px; color: var(--gray-500); }
.footer-cta { text-align: right; flex-shrink: 0; }
.footer-cta p { font-size: 15px; color: var(--gray-600); margin-bottom: 16px; line-height: 1.6; }
.footer-cta .text-blue { font-weight: 600; }
.footer-cta .text-blue:hover { text-decoration: underline; }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--gray-100); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--gray-400); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--gray-500); }
.footer-links a:hover { color: var(--blue); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 34px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse { direction: ltr; }
  .screens-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-cta { text-align: left; }
  .pricing-card.featured { transform: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: white; flex-direction: column; padding: 16px; border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-right .btn-lang, .nav-right .avatar { display: none; }
  .mobile-menu-btn { display: block; }
  .hero h1, .page-hero h1 { font-size: 28px; }
  .hero-ctas, .page-hero .hero-ctas { flex-direction: column; }
  .features-grid, .pricing-grid { grid-template-columns: 1fr; }
  .icon-features { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-features { grid-template-columns: 1fr; }
  .standards-logos { gap: 10px; }
  .standard-logo { width: 44px; height: 34px; font-size: 9px; }
  .section { padding: 56px 0; }
  .section-header h2 { font-size: 26px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .team-grid { grid-template-columns: 1fr; }
}


/* ====== Compatibility layer for existing static pages and marketing rebuild ====== */
:root{color-scheme:light;--bg:#ffffff;--panel:#ffffff;--panel2:#f8fafc;--line:#e2e8f0;--line2:#bfdbfe;--text:#1e293b;--muted:#64748b;--blue:#2563eb;--blue2:#3b82f6;--orange:#2563eb;--orange2:#3b82f6;--radius:22px;--shadow:0 24px 80px rgba(0,0,0,.42);font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif}*{box-sizing:border-box}html{scroll-behavior:smooth;background:var(--bg)}body{margin:0;color:var(--text);background:radial-gradient(circle at 50% 0%,rgba(24,115,255,.14),transparent 32rem),linear-gradient(180deg,#ffffff 0%,#f8fafc 44%,#ffffff 100%)}a{color:inherit;text-decoration:none}img{display:block;max-width:100%}.container{width:min(100% - 48px,1440px);margin:0 auto}.section{padding:58px 0}.site-header{position:sticky;top:0;z-index:40;backdrop-filter:blur(22px);background:rgba(2,7,19,.78);border-bottom:1px solid var(--line)}.nav-shell{height:78px;display:flex;align-items:center;justify-content:space-between;gap:24px}.brand{display:flex;align-items:center;gap:14px;min-width:max-content}.brand-mark{width:42px;height:50px;display:grid;place-items:center;color:#fff;font-weight:900;font-size:24px;background:linear-gradient(180deg,#0b63ff,#073680);clip-path:polygon(50% 0%,88% 16%,88% 65%,50% 100%,12% 65%,12% 16%);box-shadow:inset 0 0 0 4px rgba(150,196,255,.24),0 0 30px rgba(20,115,255,.28)}.brand span:last-child{display:grid;gap:1px}.brand strong{font-size:20px;letter-spacing:-.03em}.brand em{color:var(--blue);font-style:normal}.brand small{color:#c7d3e4;font-size:12px}.desktop-nav{display:flex;align-items:center;gap:36px;font-weight:700;font-size:14px}.desktop-nav a{color:#eaf1fa;opacity:.92}.desktop-nav a:hover{color:var(--blue2)}.nav-actions,.hero-actions,.cta-actions{display:flex;align-items:center;gap:18px}.btn{min-height:46px;padding:0 24px;display:inline-flex;align-items:center;justify-content:center;border-radius:10px;border:1px solid transparent;font-weight:800;transition:transform .2s ease,border-color .2s ease,background .2s ease}.btn:hover{transform:translateY(-2px)}.btn-primary{background:linear-gradient(180deg,var(--orange2),var(--orange));color:#fff;box-shadow:0 16px 36px rgba(37,99,235,.20)}.btn-ghost{border-color:rgba(255,255,255,.34);background:rgba(255,255,255,.03)}.btn-outline{border-color:rgba(255,255,255,.52);background:rgba(5,13,26,.48)}.btn-large{min-height:64px;border-radius:13px;padding:0 38px;font-size:20px}.full{width:100%}.menu-button{display:none;width:46px;height:46px;border:1px solid var(--line);border-radius:12px;background:var(--panel);padding:11px}.menu-button span{display:block;height:2px;background:#fff;margin:5px 0}.mobile-menu{display:none}.mobile-menu.is-open,.mobile-menu.open{display:flex;position:fixed;inset:78px 0 auto 0;z-index:80;flex-direction:column;gap:16px;padding:24px;background:rgba(2,7,19,.98);border-bottom:1px solid var(--line)}.mobile-menu a:not(.btn){padding:14px 0;border-bottom:1px solid var(--line);font-size:22px;font-weight:800}.hero{position:relative;min-height:720px;display:flex;align-items:center;overflow:hidden;border-bottom:1px solid var(--line)}.hero-bg{position:absolute;inset:0;background:linear-gradient(90deg,rgba(2,7,19,.98) 0%,rgba(2,7,19,.74) 48%,rgba(2,7,19,.28) 100%),url('../images/hero-workflow.jpeg') center right/cover no-repeat;filter:saturate(1.15) contrast(1.08)}.hero:after{content:'';position:absolute;inset:auto 0 0;height:210px;background:linear-gradient(0deg,#ffffff 8%,transparent)}.hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,720px) 1fr;gap:54px;align-items:center;padding:78px 0}.eyebrow{display:inline-flex;padding:9px 16px;border-radius:12px;background:rgba(20,115,255,.28);color:#d8e8ff;text-transform:uppercase;letter-spacing:.04em;font-weight:900}h1,h2,h3,p{margin-top:0}h1{margin:28px 0 28px;font-size:clamp(54px,7vw,104px);line-height:.98;letter-spacing:-.07em;max-width:790px}h1 span{display:block;color:var(--blue)}.lead{color:#e1e8f2;font-size:clamp(20px,2.4vw,30px);line-height:1.45;max-width:740px;margin-bottom:38px}.trust-row{margin-top:36px;display:flex;flex-wrap:wrap;gap:42px;color:#fff;font-size:18px}.hero-proof{justify-self:end;display:grid;gap:12px;width:230px}.hero-proof div{padding:22px;border-radius:16px;background:rgba(11,25,43,.82);border:1px solid var(--line);box-shadow:0 16px 44px rgba(0,0,0,.32)}.hero-proof strong{display:block;font-size:36px;line-height:1}.hero-proof span{display:block;color:#e2ebf8;font-size:14px;margin-top:5px}.standards-strip{background:rgba(4,16,30,.9);border-bottom:1px solid var(--line)}.strip-inner{min-height:92px;display:flex;align-items:center;justify-content:center;gap:38px;color:var(--muted)}.standard-row{display:flex;align-items:center;gap:clamp(22px,4vw,54px);color:#fff;font-size:19px;white-space:nowrap;overflow-x:auto;max-width:100%;scrollbar-width:none}.workflow-section{text-align:center;background:radial-gradient(circle at center,rgba(20,115,255,.11),transparent 44rem)}h2{font-size:clamp(36px,4.6vw,62px);line-height:1.05;letter-spacing:-.05em;text-align:center;margin-bottom:52px}.workflow-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:26px}.workflow-grid article{position:relative;display:grid;justify-items:center;gap:18px}.workflow-grid article:not(:last-child):after{content:'→';position:absolute;right:-28px;top:42px;color:var(--blue);font-size:54px}.workflow-icon{width:132px;height:132px;border-radius:28px;display:grid;place-items:center;background:linear-gradient(180deg,rgba(38,55,75,.88),rgba(12,23,38,.88));border:1px solid var(--line);box-shadow:inset 0 1px rgba(255,255,255,.12);position:relative;font-size:38px;color:#e7eef8;font-weight:900}.workflow-icon span{position:absolute;right:-18px;top:42px;width:58px;height:58px;display:grid;place-items:center;border-radius:999px;background:var(--blue);font-size:22px;font-weight:900;box-shadow:0 0 30px rgba(20,115,255,.42)}.workflow-grid h3{font-size:25px;margin:10px 0 0}.workflow-grid p{color:#c7d1de;font-size:18px;line-height:1.55;max-width:230px}.image-strip{padding:18px 0 42px;overflow:hidden}.image-strip img{width:min(100% - 28px,1760px);margin:0 auto;border-radius:8px;border:1px solid rgba(255,255,255,.24);box-shadow:var(--shadow)}.glass-card,.price-card,.cta-panel{background:linear-gradient(145deg,rgba(10,25,43,.86),rgba(5,15,29,.92));border:1px solid var(--line);box-shadow:inset 0 1px rgba(255,255,255,.08),0 18px 52px rgba(0,0,0,.24);border-radius:var(--radius)}.standards-grid{display:grid;grid-template-columns:1.1fr 1fr .56fr;gap:18px}.standard-card{padding:44px;text-align:left;min-height:270px}.big-icon{color:var(--blue);font-size:70px;float:left;margin-right:28px;line-height:1}.standard-card h3{font-size:31px;padding-top:16px;margin-bottom:34px}.chips{clear:both;display:flex;flex-wrap:wrap;gap:16px;margin-bottom:36px}.chips span{padding:18px 24px;border-radius:20px;color:#f5f9ff;background:linear-gradient(180deg,rgba(33,47,67,.9),rgba(10,19,34,.92));border:1px solid var(--line);font-weight:800;box-shadow:inset 0 1px rgba(255,255,255,.09)}.chips span.active{background:linear-gradient(180deg,#126dff,#064ba8)}.text-link{color:var(--blue2);display:inline-flex;align-items:center;gap:14px;font-size:20px;font-weight:900}.audit-card{padding:40px;display:grid;align-content:center;justify-items:center;text-align:center;gap:12px}.shield{width:128px;height:154px;display:grid;place-items:center;color:#9fc1ff;font-size:74px;font-weight:900;background:linear-gradient(180deg,rgba(20,115,255,.14),rgba(20,115,255,.02));clip-path:polygon(50% 0%,88% 16%,88% 65%,50% 100%,12% 65%,12% 16%);box-shadow:inset 0 0 0 6px rgba(106,161,255,.5)}.audit-card strong{font-size:27px}.feature-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.feature-card{padding:38px;display:grid;grid-template-columns:82px 1fr;gap:24px;align-items:start}.feature-card>span{color:var(--blue2);font-size:66px;line-height:1}.feature-card h3{font-size:29px;margin-bottom:12px}.feature-card p{color:#c4cfde;font-size:19px;line-height:1.6}.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.price-card{position:relative;padding:36px}.price-card.featured{border-color:rgba(37,99,235,.82);box-shadow:0 0 0 1px rgba(37,99,235,.16),0 28px 70px rgba(37,99,235,.10)}.popular{position:absolute;top:-1px;right:30px;transform:translateY(-50%);background:var(--orange);border-radius:0 0 10px 10px;padding:9px 18px;font-weight:900;text-transform:uppercase;font-size:13px}.price-card h3{font-size:28px}.price-card p{color:var(--muted);min-height:30px}.price{margin:28px 0;display:flex;align-items:baseline;gap:10px}.price strong{font-size:52px;letter-spacing:-.05em}.price span{color:#d7dfec;font-size:18px}ul{padding:0;margin:0 0 30px;list-style:none;display:grid;gap:13px;color:#dce7f5}.final-cta{padding-top:26px}.cta-panel{display:grid;grid-template-columns:1fr auto;gap:28px;align-items:center;padding:42px 52px;background-image:linear-gradient(90deg,rgba(9,26,47,.96),rgba(9,26,47,.72)),url('../images/hero-workflow.jpeg');background-size:cover;background-position:right center}.cta-panel h2{text-align:left;margin:0 0 10px;max-width:720px}.cta-panel p{color:#c9d5e3;font-size:19px;max-width:680px;margin:0}.cta-actions{flex-wrap:wrap;justify-content:flex-end;max-width:620px}.footer{padding:48px 0 24px;border-top:1px solid var(--line);background:rgba(0,4,12,.72)}.footer-grid{display:grid;grid-template-columns:1.6fr repeat(4,1fr);gap:44px}.footer-brand p{max-width:350px;color:var(--muted);line-height:1.6}.socials{display:flex;gap:16px;color:#fff}.footer h4{margin:0 0 18px}.footer a{display:block;color:#c7d2e1;margin:0 0 12px}.copyright{color:#8fa0b6;text-align:center;padding-top:28px;font-size:14px}@media(max-width:1180px){.desktop-nav,.nav-actions{display:none}.menu-button{display:block}.hero-grid{grid-template-columns:1fr}.hero-proof{justify-self:stretch;grid-template-columns:repeat(3,1fr);width:100%}.workflow-grid{grid-template-columns:repeat(3,1fr);row-gap:44px}.workflow-grid article:after{display:none}.standards-grid,.feature-grid{grid-template-columns:repeat(2,1fr)}.audit-card{grid-column:1/-1}.footer-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:760px){.container{width:min(100% - 28px,1440px)}.section{padding:38px 0}.nav-shell{height:68px}.brand strong{font-size:17px}.brand small{display:none}.mobile-menu.is-open,.mobile-menu.open{inset:68px 0 auto 0}.hero{min-height:auto}.hero-grid{padding:44px 0 34px}h1{font-size:clamp(46px,14vw,64px)}.lead{font-size:19px}.hero-actions,.trust-row{align-items:stretch;flex-direction:column;gap:14px}.btn-large{min-height:56px;font-size:17px;width:100%}.hero-proof{grid-template-columns:1fr}.strip-inner{flex-direction:column;gap:14px;padding:18px 0}.standard-row{justify-content:flex-start;width:100%;font-size:16px}h2{font-size:36px;margin-bottom:34px}.workflow-grid,.standards-grid,.feature-grid,.pricing-grid,.footer-grid,.cta-panel{grid-template-columns:1fr}.workflow-grid article{text-align:center;padding:0 8px}.workflow-icon{width:112px;height:112px}.standard-card,.feature-card,.price-card,.cta-panel{padding:26px}.big-icon{float:none;margin:0 0 10px}.standard-card h3{padding-top:0}.chips span{padding:13px 16px;border-radius:15px}.feature-card{grid-template-columns:1fr}.cta-actions{justify-content:stretch}.footer-grid{gap:24px}}

/* Phase 2 pages */
.page-hero{padding:150px 0 72px;border-bottom:1px solid var(--line);background:linear-gradient(90deg,rgba(2,7,19,.96),rgba(2,7,19,.78)),url('../images/hero-workflow.jpeg') center/cover no-repeat}.page-hero .lead{max-width:880px}.page-kicker{color:var(--blue2);font-weight:900;text-transform:uppercase;letter-spacing:.08em}.split{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:start}.content-card{padding:34px}.content-card h2{text-align:left;font-size:38px;margin-bottom:18px}.content-card p,.content-card li{color:#c9d5e3;line-height:1.7;font-size:18px}.metric-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.metric{padding:28px}.metric strong{display:block;font-size:42px}.mini-table{width:100%;border-collapse:collapse;overflow:hidden;border-radius:18px}.mini-table th,.mini-table td{padding:18px;border-bottom:1px solid var(--line);text-align:left}.mini-table th{color:#fff;background:rgba(20,115,255,.12)}.form-card{max-width:760px;margin:0 auto;padding:36px}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}.field{display:grid;gap:8px}.field.full-span{grid-column:1/-1}.field label{font-weight:800}.field input,.field select,.field textarea{width:100%;border-radius:13px;border:1px solid var(--line);background:rgba(5,14,27,.82);color:#fff;padding:15px 16px;font:inherit}.field textarea{min-height:130px;resize:vertical}.form-note{margin-top:14px;color:#95a6ba}.success-box{display:none;margin-top:18px;padding:18px;border-radius:14px;border:1px solid rgba(48,211,119,.42);background:rgba(48,211,119,.12);color:#dfffea;font-weight:800}.success-box.is-visible{display:block}.resource-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.resource-card{padding:28px}.resource-card h3{font-size:26px}.seo-section h2{text-align:left}.check-list{display:grid;gap:12px}.check-list li{padding-left:4px}@media(max-width:900px){.split,.metric-grid,.resource-grid,.form-grid{grid-template-columns:1fr}.page-hero{padding-top:110px}.content-card h2{font-size:32px}.field.full-span{grid-column:auto}}

/* Phase 4 SEO and standards expansion */
.section-head{max-width:780px;margin:0 auto 32px;text-align:center}.section-head p{color:var(--muted);font-size:1.05rem}.standards-library{display:grid;grid-template-columns:1.1fr .9fr;gap:24px}.three-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.seo-section .split,.split{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}.content-card{padding:28px}.content-card h2{margin-top:0}.content-card p{color:var(--muted);line-height:1.7}.check-list{list-style:none;padding:0;margin:18px 0 0;display:grid;gap:10px}.check-list li{color:#e8eefc}.text-link{display:inline-flex;margin-top:14px;color:var(--accent);font-weight:700;text-decoration:none}.page-hero .hero-actions{margin-top:24px}@media(max-width:900px){.standards-library,.three-grid,.seo-section .split,.split{grid-template-columns:1fr}.content-card{padding:22px}}

/* Phase 5 trust & authority layer */
.trust-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:28px}.trust-card{padding:24px;border:1px solid rgba(148,163,184,.22);border-radius:24px;background:linear-gradient(180deg,rgba(15,23,42,.92),rgba(2,6,23,.92));box-shadow:0 18px 60px rgba(0,0,0,.28);text-decoration:none}.trust-card strong{display:block;color:#fff;font-size:18px;margin-bottom:8px}.trust-card span{color:#9fb0c7;line-height:1.65}.proof-strip{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;margin:28px 0}.proof-item{border:1px solid rgba(59,130,246,.25);border-radius:20px;padding:18px;background:rgba(14,21,38,.78)}.proof-item b{display:block;font-size:28px;color:#fff}.proof-item span{color:#9fb0c7;font-size:14px}.usecase-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}.usecase-card{border:1px solid rgba(148,163,184,.2);border-radius:28px;padding:28px;background:rgba(15,23,42,.76)}.usecase-card h3{margin:0 0 10px}.check-list{list-style:none;padding:0;margin:18px 0 0;display:grid;gap:10px}.check-list li{position:relative;padding-left:28px;color:#cbd5e1}.check-list li:before{content:'✓';position:absolute;left:0;color:#38bdf8;font-weight:800}.security-matrix{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.security-row{display:flex;gap:14px;align-items:flex-start;border:1px solid rgba(148,163,184,.2);border-radius:18px;padding:18px;background:rgba(2,6,23,.55)}.security-row i{font-style:normal;width:34px;height:34px;border-radius:12px;display:grid;place-items:center;background:rgba(59,130,246,.18);color:#7dd3fc;flex:0 0 auto}.faq{display:grid;gap:14px}.faq details{border:1px solid rgba(148,163,184,.18);border-radius:18px;background:rgba(15,23,42,.72);padding:18px}.faq summary{cursor:pointer;color:#fff;font-weight:700}.faq p{color:#9fb0c7;line-height:1.7;margin:12px 0 0}.comparison{width:100%;border-collapse:separate;border-spacing:0;margin-top:24px;overflow:hidden;border-radius:24px;border:1px solid rgba(148,163,184,.2)}.comparison th,.comparison td{padding:16px;border-bottom:1px solid rgba(148,163,184,.14);text-align:left;color:#cbd5e1}.comparison th{background:rgba(15,23,42,.94);color:#fff}.comparison tr:last-child td{border-bottom:0}.comparison td:not(:first-child){text-align:center}.quote-card{border:1px solid rgba(191,219,254,.90);border-radius:28px;padding:30px;background:linear-gradient(135deg,rgba(239,246,255,.90),rgba(59,130,246,.10));}.quote-card blockquote{margin:0;color:#fff;font-size:24px;line-height:1.45}.quote-card cite{display:block;margin-top:18px;color:#9fb0c7;font-style:normal}@media (max-width:900px){.trust-grid,.proof-strip,.usecase-grid,.security-matrix{grid-template-columns:1fr}.comparison{font-size:14px}.comparison th,.comparison td{padding:12px}}

.seo-required-links{display:flex;gap:1rem;flex-wrap:wrap;margin:2rem auto;max-width:1120px;font-size:.95rem}.seo-required-links a{color:inherit;text-decoration:underline}

/* 2026 visual marketing upgrade */
.marketing-hero{min-height:820px}.hero-grid-visual{grid-template-columns:minmax(0,670px) minmax(420px,1fr);gap:44px}.hero-product-shot,.hero-product-image,.phone-visual{position:relative;z-index:2}.hero-product-shot{justify-self:end;width:min(100%,660px)}.hero-product-shot img,.hero-product-image{width:100%;border-radius:30px;box-shadow:0 38px 110px rgba(0,0,0,.48);border:1px solid rgba(191,219,254,.24)}.floating-proof-card{margin:-74px 32px 0 auto;position:relative;z-index:3;width:min(360px,80%);padding:20px;border-radius:20px;background:rgba(2,7,19,.86);border:1px solid rgba(147,197,253,.32);box-shadow:0 24px 70px rgba(0,0,0,.42)}.floating-proof-card strong{display:block;font-size:22px}.floating-proof-card span{display:block;color:#cbd5e1;margin-top:6px;line-height:1.5}.visual-story{background:radial-gradient(circle at 15% 15%,rgba(37,99,235,.08),transparent 34rem)}.visual-story-grid{display:grid;grid-template-columns:.84fr 1.16fr;gap:34px;align-items:center}.compact-lead{font-size:21px;margin-bottom:24px}.mini-proof-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.mini-proof-grid span{padding:15px 16px;border-radius:16px;background:rgba(15,23,42,.72);border:1px solid rgba(147,197,253,.22);font-weight:800;color:#eaf2ff}.visual-card-image,.visual-card img{width:100%;border-radius:28px;border:1px solid rgba(191,219,254,.22);box-shadow:0 28px 88px rgba(0,0,0,.34)}.product-gallery{background:linear-gradient(180deg,rgba(15,23,42,.24),rgba(2,7,19,.08))}.gallery-grid{display:grid;grid-template-columns:1.15fr .72fr 1fr;gap:22px;align-items:stretch}.gallery-grid figure{margin:0;padding:18px;border-radius:28px;background:rgba(10,25,43,.78);border:1px solid rgba(147,197,253,.22);box-shadow:0 24px 70px rgba(0,0,0,.24)}.gallery-grid img{width:100%;height:320px;object-fit:cover;border-radius:20px;background:#f8fafc}.gallery-grid figure:nth-child(2) img{object-fit:contain;background:linear-gradient(180deg,#eff6ff,#ffffff)}.gallery-grid figcaption{padding:16px 4px 2px;color:#dbeafe;font-size:17px;line-height:1.55}.compact-gallery .gallery-grid img{height:270px}.page-hero-visual{padding:112px 0 72px}.page-hero-visual .hero-grid{padding:0}.hero-product-image{max-height:500px;object-fit:cover}.phone-visual{justify-self:center;width:min(100%,360px);max-height:620px;object-fit:contain;border-radius:34px;box-shadow:0 36px 110px rgba(0,0,0,.44)}.visual-card{overflow:hidden}.visual-card img{margin-bottom:24px}.visual-card h2{text-align:left;font-size:34px;margin-bottom:12px}@media(max-width:1180px){.hero-grid-visual{grid-template-columns:1fr}.hero-product-shot,.hero-product-image,.phone-visual{justify-self:center}.visual-story-grid,.gallery-grid{grid-template-columns:1fr}.gallery-grid img{height:auto;max-height:520px}.phone-visual{max-height:680px}}@media(max-width:760px){.marketing-hero{min-height:auto}.hero-product-shot{width:100%}.hero-product-shot img,.hero-product-image{border-radius:18px}.floating-proof-card{margin:12px 0 0;width:100%}.visual-story-grid{gap:18px}.mini-proof-grid{grid-template-columns:1fr}.gallery-grid figure{padding:12px;border-radius:20px}.gallery-grid img{border-radius:16px}.page-hero-visual{padding-top:96px}.phone-visual{max-height:580px}.compact-gallery .gallery-grid img{height:auto}}

/* 2026 light marketing rebuild. Existing class names are retained for all static pages. */
:root{color-scheme:light;--bg:#ffffff;--panel:#ffffff;--panel2:#f8fafc;--line:#e2e8f0;--line2:#bfdbfe;--text:#1e293b;--muted:#64748b;--blue:#2563eb;--blue2:#3b82f6;--orange:#2563eb;--orange2:#3b82f6;--accent:#2563eb;--radius:18px;--shadow:0 22px 70px rgba(15,23,42,.10)}
html{background:#fff}
body{background:#fff;color:var(--text);font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
.container{width:min(100% - 48px,1180px)}
.site-header{background:rgba(255,255,255,.92);border-bottom:1px solid #e2e8f0;box-shadow:0 1px 0 rgba(15,23,42,.03);backdrop-filter:blur(18px)}
.nav-shell{height:74px}
.brand{gap:12px;color:#0f172a}
.brand-mark{width:34px;height:34px;border-radius:9px;clip-path:none;background:linear-gradient(180deg,#3b82f6,#2563eb);font-size:17px;box-shadow:0 10px 26px rgba(37,99,235,.22),inset 0 1px rgba(255,255,255,.24)}
.brand strong{font-size:14px;letter-spacing:.04em;color:#0f172a}
.brand em{color:#2563eb}
.brand small{font-size:8px;letter-spacing:.14em;color:#94a3b8;font-weight:800}
.desktop-nav{gap:28px;font-size:14px;font-weight:600}
.desktop-nav a{color:#475569;opacity:1}
.desktop-nav a:hover{color:#2563eb}
.nav-actions,.hero-actions,.cta-actions{gap:12px}
.btn{border-radius:10px;min-height:42px;padding:0 19px;font-weight:700;box-shadow:none}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:#2563eb;color:#fff;box-shadow:0 14px 28px rgba(37,99,235,.20)}
.btn-primary:hover{background:#1d4ed8;border-color:#1d4ed8}
.btn-ghost{background:transparent;border-color:transparent;color:#64748b}
.btn-outline{background:#fff;border-color:#e2e8f0;color:#1e293b;box-shadow:0 8px 18px rgba(15,23,42,.05)}
.btn-outline:hover{border-color:#bfdbfe;color:#2563eb}
.btn-large{min-height:50px;border-radius:11px;padding:0 24px;font-size:15px}
.menu-button{background:#fff;border-color:#e2e8f0}
.menu-button span{background:#1e293b}
.mobile-menu.is-open,.mobile-menu.open{background:#fff;border-bottom:1px solid #e2e8f0;box-shadow:0 20px 60px rgba(15,23,42,.12)}
.mobile-menu a:not(.btn){color:#1e293b;border-bottom:1px solid #e2e8f0;font-size:18px}
.hero{min-height:auto;border-bottom:0;background:#fff;overflow:hidden}
.marketing-hero{padding:48px 0 76px}
.hero-bg,.hero:after{display:none}
.hero-grid{padding:0}
.hero-grid-visual{grid-template-columns:minmax(0,430px) minmax(560px,1fr);gap:54px;align-items:start}
.eyebrow{padding:6px 12px;border-radius:999px;background:#eff6ff;color:#2563eb;font-size:11px;letter-spacing:.08em;font-weight:800;text-transform:uppercase}
h1,h2,h3,p{color:inherit}
h1{margin:22px 0 18px;max-width:520px;font-size:clamp(44px,5.2vw,64px);line-height:1.04;letter-spacing:-.055em;color:#0f172a}
h1 span{display:inline;color:#2563eb}
h2{font-size:clamp(28px,3.2vw,40px);line-height:1.15;letter-spacing:-.04em;color:#0f172a;margin-bottom:34px}
h3{color:#0f172a}
.lead{max-width:470px;margin-bottom:26px;color:#64748b;font-size:17px;line-height:1.65}
.trust-row{margin-top:28px;display:grid;gap:16px;color:#1e293b;font-size:14px}
.trust-row span{display:grid;grid-template-columns:10px 1fr;column-gap:10px;align-items:start;font-weight:800}
.trust-row span b{width:7px;height:7px;border-radius:999px;background:#2563eb;margin-top:7px;box-shadow:0 0 0 4px #dbeafe}
.trust-row span:nth-child(2) b{background:#22c55e;box-shadow:0 0 0 4px #dcfce7}
.trust-row span:nth-child(3) b{background:#7c3aed;box-shadow:0 0 0 4px #ede9fe}
.trust-row small{grid-column:2;color:#64748b;font-size:12px;font-weight:500;line-height:1.5;margin-top:2px}
.hero-standards{margin-top:24px;display:flex;flex-wrap:wrap;gap:12px;overflow:visible;color:#1e293b;font-size:12px}
.hero-standards strong,.hero-standards a{min-width:46px;padding:12px 14px;border:1px solid #e2e8f0;border-radius:4px;background:#fff;text-align:center;box-shadow:0 6px 18px rgba(15,23,42,.04);font-weight:900;color:#1e293b}
.hero-standards a:hover{border-color:#93c5fd;color:#2563eb;transform:translateY(-2px);box-shadow:0 12px 30px rgba(37,99,235,.10)}
.hero-product-shot{width:100%;justify-self:stretch}
.dashboard-preview{display:grid;grid-template-columns:132px 1fr;min-height:636px;background:#fff;border:1px solid #e2e8f0;border-radius:22px;box-shadow:0 28px 80px rgba(15,23,42,.13);overflow:hidden}
.dashboard-sidebar{background:#f8fafc;border-right:1px solid #e2e8f0;padding:18px 12px;display:grid;align-content:start;gap:8px}
.dashboard-logo{display:flex;align-items:center;gap:8px;margin-bottom:14px}
.dashboard-logo .brand-mark{width:26px;height:26px;font-size:13px;border-radius:7px}
.dashboard-logo strong{font-size:8px;line-height:1.25;letter-spacing:.02em;color:#334155}
.dashboard-logo em{font-style:normal;color:#2563eb}
.dashboard-sidebar a,.dashboard-sidebar span{padding:8px 10px;border-radius:7px;color:#64748b;font-size:11px;font-weight:600}
.dashboard-sidebar a.active,.dashboard-sidebar span.active{background:#2563eb;color:#fff}
.dashboard-main{padding:22px 22px 24px;min-width:0}
.dashboard-top{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-bottom:18px}
.dashboard-top h2{font-size:20px;margin:0;text-align:left;letter-spacing:-.02em}
.dashboard-top span{color:#64748b;font-size:11px}
.dashboard-metrics{display:grid;grid-template-columns:96px repeat(4,1fr);gap:14px;align-items:stretch;margin-bottom:22px}
.dashboard-metrics>div{min-height:92px;border-radius:14px;background:#fff;border:1px solid transparent;display:grid;align-content:center;gap:3px}
.dashboard-metrics strong{font-size:25px;letter-spacing:-.04em;color:#0f172a}
.dashboard-metrics span,.dashboard-metrics small{color:#94a3b8;font-size:10px}
.score-card{border-color:#93c5fd!important;background:#eff6ff!important;text-align:center}
.score-card strong{display:grid;place-items:center;width:66px;height:66px;margin:0 auto;border:4px solid #93c5fd;border-radius:999px;font-size:19px!important;color:#2563eb!important;background:#fff}
.dashboard-content{display:grid;grid-template-columns:1fr 1fr 1.2fr;gap:16px;margin-bottom:22px}
.chart-card,.norm-card,.activity-card{min-width:0}
.chart-card h3,.norm-card h3,.activity-card h3{font-size:13px;margin:0 0 12px;color:#0f172a}
.donut{width:74px;height:74px;border-radius:999px;background:conic-gradient(#2563eb 0 92%,#e2e8f0 92% 100%);display:grid;place-items:center;margin-bottom:10px}
.donut span{width:54px;height:54px;border-radius:999px;background:#fff;display:grid;place-items:center;color:#2563eb;font-weight:800;font-size:16px}
.chart-card ul{gap:6px;margin:0;color:#64748b;font-size:10px}
.chart-card li,.activity-card p,.norm-card p{display:flex;align-items:center;gap:7px;margin:0 0 8px;color:#64748b;font-size:10px;line-height:1.35}
.blue-dot,.yellow-dot,.red-dot,.green-dot{width:7px;height:7px;border-radius:999px;display:inline-block;flex:0 0 auto}
.blue-dot{background:#2563eb}.yellow-dot{background:#facc15}.red-dot{background:#ef4444}.green-dot{background:#22c55e}
.norm-card p{justify-content:space-between}
.norm-card b{color:#2563eb}
.dashboard-table{padding-top:8px}
.dashboard-table>div{display:grid;grid-template-columns:1fr 1fr;margin-bottom:12px;color:#0f172a;font-size:13px}
.dashboard-table table{width:100%;border-collapse:collapse;font-size:10px;color:#64748b}
.dashboard-table th{text-align:left;color:#94a3b8;text-transform:uppercase;font-size:8px;padding:8px}
.dashboard-table td{padding:8px;border-top:1px solid #f1f5f9}
.dashboard-table mark{background:#dcfce7;color:#16a34a;border-radius:999px;padding:3px 7px;font-weight:800}
.dashboard-table mark.warn{background:#fef9c3;color:#ca8a04}
.section{padding:66px 0}
.section-head{max-width:780px;margin:0 auto 34px;text-align:center}
.section-head h2{margin-bottom:10px}
.section-head p{color:#64748b;line-height:1.65}
.page-kicker{color:#2563eb;font-weight:800;letter-spacing:.1em}
.glass-card,.price-card,.cta-panel,.content-card,.trust-card,.usecase-card,.quote-card{background:#fff;border:1px solid #e2e8f0;box-shadow:0 14px 44px rgba(15,23,42,.06);border-radius:18px}
.glass-card:hover,.feature-card:hover,.product-screen-card:hover{transform:translateY(-3px);border-color:#bfdbfe;box-shadow:0 22px 58px rgba(37,99,235,.11)}
.feature-section{background:#fff}
.feature-grid{grid-template-columns:repeat(3,1fr);gap:18px}
.feature-card{min-height:146px;padding:26px 24px;grid-template-columns:52px 1fr;align-items:start;transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}
.feature-card>span{width:38px;height:38px;border-radius:11px;display:grid;place-items:center;background:#eff6ff;color:#2563eb;font-size:20px;line-height:1}
.feature-card:nth-child(2)>span{background:#dcfce7;color:#16a34a}.feature-card:nth-child(3)>span{background:#f3e8ff;color:#9333ea}.feature-card:nth-child(4)>span{background:#eff6ff;color:#2563eb}.feature-card:nth-child(5)>span{background:#fee2e2;color:#dc2626}.feature-card:nth-child(6)>span{background:#ccfbf1;color:#0d9488}
.feature-card h3{font-size:17px;margin:6px 0 8px;letter-spacing:-.02em}
.feature-card p{font-size:13px;line-height:1.6;color:#64748b;margin:0}
.testimonial-section{padding-top:40px;padding-bottom:44px;background:#f8fafc}
.testimonial-card{max-width:620px;text-align:center}
.quote-mark{color:#dbeafe;font-size:42px;font-weight:900;line-height:1}
.testimonial-card blockquote{margin:0 auto 22px;color:#475569;font-size:17px;font-style:italic;line-height:1.7}
.testimonial-person{display:flex;align-items:center;justify-content:center;gap:14px}
.testimonial-person span{width:44px;height:44px;border-radius:999px;display:grid;place-items:center;background:#2563eb;color:#fff;font-weight:800}
.testimonial-person p{margin:0;text-align:left}
.testimonial-person strong{display:block;color:#0f172a;font-size:14px}
.testimonial-person small{display:block;color:#64748b;font-size:12px;line-height:1.45}
.stats-bar{background:#2563eb;color:#fff;padding:34px 0}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:26px;text-align:center}
.stats-grid strong{display:block;color:#fff;font-size:32px;letter-spacing:-.04em}
.stats-grid span{display:block;color:#dbeafe;font-size:13px;line-height:1.55;margin-top:4px}
.product-gallery{background:#fff}
.product-screen-grid{display:grid;grid-template-columns:1fr 1.2fr .85fr;gap:18px;align-items:stretch}
.product-screen-card{padding:22px;min-height:256px;transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}
.product-screen-card h3{font-size:16px;margin:0 0 18px}
.screen-head{display:flex;justify-content:space-between;gap:16px;align-items:center;margin-bottom:18px}
.screen-head h3{margin:0}
.screen-head span{padding:5px 10px;border-radius:999px;background:#dcfce7;color:#16a34a;font-size:11px;font-weight:800}
.product-screen-card nav{display:flex;gap:18px;border-bottom:1px solid #e2e8f0;margin-bottom:18px}
.product-screen-card nav a,.product-screen-card nav span{padding-bottom:10px;color:#94a3b8;font-size:12px;font-weight:700}
.product-screen-card nav a:first-child,.product-screen-card nav span:first-child{color:#2563eb;border-bottom:2px solid #2563eb}
.product-screen-card dl{display:grid;grid-template-columns:1fr auto;gap:14px;margin:0;color:#64748b;font-size:13px}
.product-screen-card dt{color:#94a3b8}
.product-screen-card dd{margin:0;color:#1e293b;font-weight:700;text-align:right}
.trace-graph{position:relative;min-height:204px;display:grid;grid-template-columns:1fr 1fr;place-items:center;gap:22px}
.trace-graph:before,.trace-graph:after{content:'';position:absolute;inset:42px 72px;border:1px solid #e2e8f0;border-radius:999px}
.trace-graph strong,.trace-graph span{position:relative;z-index:1;display:grid;place-items:center;text-align:center;min-width:86px;min-height:52px;padding:10px 14px;border-radius:13px;background:#fff;border:1px solid #e2e8f0;color:#0f172a;font-size:12px;box-shadow:0 12px 26px rgba(15,23,42,.06)}
.trace-graph strong{grid-column:1/-1;background:#2563eb;color:#fff;min-width:72px;min-height:64px}
.trace-graph span:first-child{background:#7c3aed;color:#fff}.trace-graph span:nth-child(2){background:#14b8a6;color:#fff}
.trace-graph b{display:block;font-size:9px;opacity:.84;margin-top:3px}
.final-cta{padding-top:42px;background:#fff}
.cta-panel{background:#f8fafc;grid-template-columns:1fr 360px;padding:42px;border-color:#e2e8f0;background-image:none}
.cta-panel h2{text-align:left;margin:0 0 14px;color:#0f172a;font-size:34px}
.cta-panel p{color:#64748b;line-height:1.65}
.footer-proof-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.footer-proof-grid span{padding:14px;border-radius:12px;background:#fff;border:1px solid #e2e8f0;color:#1e293b;font-weight:800;font-size:13px}
.footer-proof-grid .btn{grid-column:1/-1}
.footer{background:#fff;border-top:1px solid #e2e8f0}
.footer-grid{grid-template-columns:1.5fr repeat(3,1fr);gap:34px}
.footer-brand p,.footer a,.copyright{color:#64748b}
.footer h4{color:#0f172a}
.standards-strip,.workflow-section,.visual-story{background:#fff}
.strip-inner{color:#64748b}
.standard-row{color:#1e293b}
.workflow-grid p,.content-card p,.content-card li,.check-list li,.comparison th,.comparison td,.faq p,.usecase-card p,.security-row,.proof-item span,.trust-card span{color:#64748b}
.workflow-icon{background:#eff6ff;border-color:#bfdbfe;color:#2563eb;box-shadow:none}
.workflow-icon span,.chips span.active{background:#2563eb}
.workflow-grid article:not(:last-child):after{color:#bfdbfe}
.chips span{background:#fff;border-color:#e2e8f0;color:#1e293b;box-shadow:none}
.page-hero{background:#f8fafc;border-bottom:1px solid #e2e8f0}
.page-hero .lead{color:#64748b}
.field input,.field select,.field textarea{background:#fff;color:#1e293b;border-color:#e2e8f0}
.mini-table th{color:#0f172a;background:#eff6ff}
.mini-table th,.mini-table td{border-bottom:1px solid #e2e8f0}
.trust-card,.usecase-card,.proof-item,.security-row,.faq details{background:#fff;border-color:#e2e8f0}
.trust-card strong,.proof-item b,.faq summary,.comparison th,.quote-card blockquote{color:#0f172a}
.comparison{border-color:#e2e8f0}.comparison th{background:#f8fafc}.comparison th,.comparison td{border-bottom-color:#e2e8f0}
.quote-card{border-color:#bfdbfe;background:#eff6ff}
.popular{background:#2563eb;color:#fff}.price-card.featured{border-color:#2563eb;box-shadow:0 0 0 1px rgba(37,99,235,.12),0 22px 58px rgba(37,99,235,.12)}
@media(max-width:1180px){.desktop-nav,.nav-actions{display:none}.menu-button{display:block}.hero-grid-visual{grid-template-columns:1fr}.hero-copy{max-width:680px}.hero-product-shot{justify-self:center}.dashboard-preview{min-height:auto}.feature-grid,.product-screen-grid,.cta-panel{grid-template-columns:1fr 1fr}.product-screen-card.trace-card{grid-column:1/-1}.footer-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:760px){.container{width:min(100% - 28px,1180px)}.nav-shell{height:66px}.marketing-hero{padding:34px 0 46px}h1{font-size:42px}.lead{font-size:16px}.hero-actions{display:grid;grid-template-columns:1fr;align-items:stretch}.btn-large{width:100%}.dashboard-preview{grid-template-columns:1fr}.dashboard-sidebar{display:none}.dashboard-main{padding:18px}.dashboard-metrics{grid-template-columns:1fr 1fr}.score-card{grid-column:1/-1}.dashboard-content,.feature-grid,.product-screen-grid,.stats-grid,.cta-panel,.footer-proof-grid,.footer-grid{grid-template-columns:1fr}.dashboard-table{overflow:auto}.feature-card{grid-template-columns:44px 1fr;padding:20px}.stats-bar{padding:28px 0}.cta-panel{padding:26px}.cta-panel h2{font-size:28px}.section{padding:46px 0}.product-screen-card dl{grid-template-columns:1fr}.product-screen-card dd{text-align:left}.hero-standards strong{flex:1 1 78px}.mobile-menu.is-open,.mobile-menu.open{inset:66px 0 auto 0}}

/* Light-theme normalization for older standalone checkout, pricing and legal templates. */
.footer-legal-links{display:flex;justify-content:center;gap:18px;flex-wrap:wrap;margin:18px auto 0;padding-top:18px;border-top:1px solid #e2e8f0;max-width:1180px}
.footer-legal-links a{color:#64748b;font-weight:700;margin:0}
.brandbar{background:rgba(255,255,255,.94)!important;border-bottom:1px solid #e2e8f0!important;box-shadow:0 1px 0 rgba(15,23,42,.03)!important;color:#0f172a!important}
.brandbar .brand,.brandbar nav a{color:#0f172a!important}
.brandbar nav a.login,.login{border-color:#e2e8f0!important;background:#fff!important;color:#2563eb!important}
.mark,.brandbar .brand-mark{clip-path:none!important;border-radius:10px!important;background:linear-gradient(180deg,#3b82f6,#2563eb)!important;color:#fff!important;box-shadow:0 10px 26px rgba(37,99,235,.22)!important}
.wrap{background:#fff!important;color:#1e293b!important}
.card,.pay,.checkout-shell,.summary-card,.plan-option,.summary,.plan-tile,.sticky-summary,.payment-panel,.summary-mini{background:#fff!important;border-color:#e2e8f0!important;color:#1e293b!important;box-shadow:0 14px 44px rgba(15,23,42,.06)!important}
.featured,.plan-option.active,.plan-option[data-plan="yearly"],.plan-tile.active{border-color:#2563eb!important;box-shadow:0 0 0 1px rgba(37,99,235,.12),0 22px 58px rgba(37,99,235,.10)!important}
.tag.orange,.pill.orange,.badge{background:#2563eb!important;color:#fff!important;box-shadow:none!important}
.tag.blue,.tag.green,.pill.green{background:#eff6ff!important;border-color:#bfdbfe!important;color:#2563eb!important}
.pill,.step,.trust span{background:#fff!important;border-color:#e2e8f0!important;color:#1e293b!important}
.cta,.cta.orange,.cta.blue,.btn.blue,.step.active{background:#2563eb!important;color:#fff!important;box-shadow:0 14px 28px rgba(37,99,235,.20)!important}
.cta.dark,.btn.secondary,.btn-ghost{background:#fff!important;border:1px solid #e2e8f0!important;color:#1e293b!important;box-shadow:none!important}
.card p,.pay p,.note,.foot,.secure-note,.section-title,.brandbar .brand small,.summary-line span,.muted,.footer-note,.muted-small{color:#64748b!important}
.card h1,.card h2,.pay h2,.summary-title h2,.checkout-head h1,.section-title,.price strong,.summary-total strong,.summary-line strong{color:#0f172a!important}
.summary-total strong,.summary-total span{color:#2563eb!important}
.form-grid input,.form-grid select,.form-grid textarea,input,select,textarea{background:#fff!important;color:#1e293b!important;border-color:#e2e8f0!important}
.form-grid input:focus,.form-grid select:focus,input:focus,select:focus,textarea:focus{border-color:#93c5fd!important;box-shadow:0 0 0 4px rgba(37,99,235,.10)!important}
.price span,.checkout-step span,.checkbox-row{color:#64748b!important}
.checkout-step strong,.summary strong,label,label.check,li{color:#1e293b!important}
.express-note{background:#eff6ff!important;border-color:#bfdbfe!important;color:#1e293b!important}
.error{background:#fef2f2!important;color:#991b1b!important}.success{background:#f0fdf4!important;color:#166534!important}

/* NL homepage layout rescue */
html[lang="nl"] .hero{background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);border-bottom:0;min-height:auto;padding:76px 0}
html[lang="nl"] .hero .hero-grid{grid-template-columns:minmax(0,1fr) minmax(320px,430px);gap:64px;align-items:center;padding:0}
html[lang="nl"] .hero h1{font-size:clamp(42px,5vw,68px);line-height:1.05;letter-spacing:-.055em;color:#0f172a;max-width:760px}
html[lang="nl"] .hero .lead{color:#64748b;max-width:660px;font-size:18px;line-height:1.75}
html[lang="nl"] .hero .trust-row{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:28px;color:#1e293b}
html[lang="nl"] .hero .trust-row span{display:flex;align-items:center;gap:9px;padding:12px 14px;border:1px solid #e2e8f0;border-radius:14px;background:#fff;font-size:13px;font-weight:800;box-shadow:0 8px 22px rgba(15,23,42,.04)}
html[lang="nl"] .hero-proof{width:auto;display:grid;gap:16px}
html[lang="nl"] .hero-proof div{background:#fff;border:1px solid #dbeafe;border-radius:22px;padding:24px;box-shadow:0 18px 55px rgba(37,99,235,.10)}
html[lang="nl"] .hero-proof strong{font-size:32px;color:#2563eb}
html[lang="nl"] .hero-proof span{color:#64748b;font-size:14px;line-height:1.55}
html[lang="nl"] .workflow-grid article{background:#fff;border:1px solid #e2e8f0;border-radius:18px;padding:22px;box-shadow:0 12px 36px rgba(15,23,42,.05)}
html[lang="nl"] .workflow-grid article:after{display:none}
@media(max-width:900px){html[lang="nl"] .hero .hero-grid,html[lang="nl"] .hero .trust-row{grid-template-columns:1fr}}

/* Standards links */
.standards-library .chips a{display:inline-flex;align-items:center;justify-content:center;min-height:56px;padding:14px 20px;border-radius:18px;color:#0f172a;background:#fff;border:1px solid #dbeafe;font-weight:900;box-shadow:0 10px 26px rgba(15,23,42,.04);transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease,color .2s ease}
.standards-library .chips a:hover{transform:translateY(-2px);border-color:#93c5fd;color:#2563eb;box-shadow:0 18px 44px rgba(37,99,235,.12)}

/* Premium brand system — one logo treatment everywhere */
.brand,.brandbar .brand,.logo{isolation:isolate}
.brand-mark,.logo-icon,.mark,.brandbar .brand-mark{width:38px!important;height:38px!important;min-width:38px!important;border-radius:12px!important;clip-path:none!important;background:linear-gradient(145deg,#60a5fa 0%,#2563eb 54%,#1d4ed8 100%)!important;color:#fff!important;font-weight:900!important;font-size:18px!important;line-height:1!important;display:grid!important;place-items:center!important;box-shadow:0 14px 34px rgba(37,99,235,.28),inset 0 1px 0 rgba(255,255,255,.32)!important}
.brand strong,.brand-title,.logo-name{font-size:14px!important;letter-spacing:.045em!important;text-transform:uppercase!important;color:#0f172a!important;font-weight:900!important;line-height:1.08!important}
.brand em,.brand b,.brand-title b,.logo-name strong{font-style:normal!important;color:#2563eb!important}
.brand small,.brand-sub,.logo-sub{display:block!important;color:#94a3b8!important;font-size:8px!important;letter-spacing:.16em!important;text-transform:uppercase!important;font-weight:800!important;margin-top:2px!important}
.brand:hover .brand-mark,.brandbar .brand:hover .brand-mark,.brandbar .brand:hover .mark{transform:translateY(-1px);box-shadow:0 18px 38px rgba(37,99,235,.34),inset 0 1px 0 rgba(255,255,255,.35)!important}
.site-header,.brandbar,.navbar{background:rgba(255,255,255,.94)!important;border-bottom:1px solid rgba(226,232,240,.9)!important;box-shadow:0 10px 32px rgba(15,23,42,.04)!important}
.nav-actions .btn-primary,.brandbar nav a.login,.nav-right .btn-primary{border-radius:12px!important}

/* Walkthrough, imagery and SEO link hub additions */
.welding-visual-section{background:#f8fafc}
.welding-visual-grid{display:grid;grid-template-columns:minmax(260px,.82fr) repeat(2,minmax(0,1fr));gap:26px;align-items:stretch}
.welding-visual-grid article,.welding-visual-grid figure,.visual-link-card{margin:0;border:1px solid #e2e8f0;border-radius:22px;background:#fff;box-shadow:0 14px 44px rgba(15,23,42,.06);overflow:hidden}
.welding-visual-grid article{padding:38px;display:grid;align-content:center;background:linear-gradient(180deg,#fff,#f8fafc)}
.welding-visual-grid article h2{text-align:left;margin:0 0 14px;font-size:clamp(32px,3.6vw,48px);letter-spacing:-.05em}
.welding-visual-grid article p{color:#64748b;line-height:1.7}
.welding-visual-grid img,.visual-link-card img{width:100%;height:320px;object-fit:cover;background:#eff6ff;transition:transform .35s ease}
.welding-visual-grid figcaption,.visual-link-card span{display:block;padding:20px 24px;color:#475569;font-size:16px;line-height:1.55;font-weight:800}
.visual-link-card:hover,.seo-link-grid a:hover,.feature-card:hover,.product-screen-card:hover,.hero-product-link:hover .dashboard-preview{transform:translateY(-4px);border-color:#bfdbfe;box-shadow:0 24px 70px rgba(37,99,235,.14)}
.visual-link-card:hover img{transform:scale(1.035)}
.hero-product-link{display:block;color:inherit;text-decoration:none;border-radius:24px}
.feature-card,.product-screen-card,.visual-link-card,.seo-link-grid a{transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease}
.feature-card small{display:inline-flex;margin-top:12px;color:#2563eb;font-size:12px;font-weight:900}
.product-screen-card{color:inherit;text-decoration:none}
.video-walkthrough-section{background:#fff}
.walkthrough-grid{display:grid;grid-template-columns:.86fr 1.14fr;gap:28px;align-items:center}
.walkthrough-copy{padding:32px;border:1px solid #e2e8f0;border-radius:24px;background:#f8fafc}
.walkthrough-copy h2{text-align:left;margin:0 0 14px;font-size:34px}
.walkthrough-copy p{color:#64748b;line-height:1.7}
.walkthrough-copy ol{margin:24px 0 0;padding:0;display:grid;gap:12px;list-style:none}
.walkthrough-copy li{display:grid;grid-template-columns:112px 1fr;gap:14px;padding:13px 0;border-top:1px solid #e2e8f0;color:#1e293b}
.walkthrough-copy li strong{color:#0f172a}
.walkthrough-copy li span{color:#64748b}
.walkthrough-player{border:1px solid #dbeafe;border-radius:28px;background:#0f172a;box-shadow:0 28px 80px rgba(15,23,42,.18);overflow:hidden}
.player-top{height:46px;display:flex;align-items:center;gap:10px;padding:0 18px;color:#dbeafe;font-size:13px;border-bottom:1px solid rgba(255,255,255,.12)}
.player-top span{width:10px;height:10px;border-radius:999px;background:#ef4444;box-shadow:16px 0 #facc15,32px 0 #22c55e}
.player-top b{margin-left:36px;color:#fff}
.player-top em{margin-left:auto;color:#94a3b8;font-style:normal}
.player-stage{position:relative;background:linear-gradient(180deg,#eff6ff,#fff);min-height:340px;display:grid;place-items:center}
.player-stage img{width:100%;height:340px;object-fit:cover}
.play-button{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:76px;height:76px;border-radius:999px;border:0;background:#2563eb;box-shadow:0 18px 42px rgba(37,99,235,.32);display:grid;place-items:center;cursor:pointer}
.play-button span{display:block;margin-left:5px;width:0;height:0;border-top:16px solid transparent;border-bottom:16px solid transparent;border-left:24px solid #fff}
.player-timeline{height:6px;background:#334155}
.player-timeline i{display:block;height:100%;background:#2563eb}
.player-chapters{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:#1e293b}
.player-chapters span{padding:13px 10px;text-align:center;color:#cbd5e1;font-size:12px;font-weight:800;background:#0f172a}
.player-chapters span.active{background:#2563eb;color:#fff}
.seo-link-hub{background:#f8fafc}
.seo-link-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.seo-link-grid a{display:grid;gap:4px;padding:16px;border:1px solid #e2e8f0;border-radius:16px;background:#fff;color:#1e293b;font-weight:800;box-shadow:0 10px 28px rgba(15,23,42,.05)}
.seo-link-grid a small{color:#64748b;font-weight:600;line-height:1.4}
.seo-link-grid a:hover{border-color:#bfdbfe;color:#2563eb;transform:translateY(-2px)}
@media(max-width:900px){.welding-visual-grid,.walkthrough-grid,.seo-link-grid{grid-template-columns:1fr}.walkthrough-copy li{grid-template-columns:1fr}.player-stage,.player-stage img{height:auto;min-height:260px}}

/* ====== HOMEPAGE V2 — Trust Bar, Photo Strip, Analytics, Mobile, Clients, CTA ====== */

/* Language selector */
.btn-lang{display:inline-flex;align-items:center;padding:8px 12px;border-radius:8px;border:1px solid #e2e8f0;background:#fff;color:#475569;font-weight:800;font-size:13px;letter-spacing:.02em;cursor:pointer;transition:all .2s}
.btn-lang:hover{border-color:#93c5fd;color:#2563eb}

/* Trust Bar */
.trust-bar-section{padding:44px 0;background:#f8fafc;border-bottom:1px solid #e2e8f0}
.trust-bar-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:20px}
.trust-badge{text-align:center;padding:18px 12px;border-radius:16px;background:#fff;border:1px solid #e2e8f0;box-shadow:0 8px 24px rgba(15,23,42,.04);transition:transform .2s,box-shadow .2s}
.trust-badge:hover{transform:translateY(-2px);box-shadow:0 14px 36px rgba(37,99,235,.08)}
.trust-icon{width:44px;height:44px;margin:0 auto 10px;border-radius:12px;background:#eff6ff;display:grid;place-items:center;font-size:22px}
.trust-badge strong{display:block;color:#0f172a;font-size:13px;margin-bottom:4px}
.trust-badge span{color:#64748b;font-size:11px;line-height:1.45}

/* Feature grid 4-col */
.feature-grid-4{grid-template-columns:repeat(4,1fr)!important}

/* Feature icons */
.feat-icon{width:44px;height:44px;border-radius:12px;display:grid;place-items:center;font-size:20px;line-height:1;flex:0 0 auto}
.feat-blue{background:#eff6ff;color:#2563eb}.feat-green{background:#dcfce7;color:#16a34a}.feat-purple{background:#f3e8ff;color:#9333ea}.feat-teal{background:#ccfbf1;color:#0d9488}
.feat-red{background:#fee2e2;color:#dc2626}.feat-orange{background:#fff7ed;color:#ea580c}.feat-cyan{background:#e0f2fe;color:#0284c7}.feat-violet{background:#ede9fe;color:#7c3aed}

/* Photo Strip */
.photo-strip{padding:0;background:#fff}
.photo-strip-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px;padding:22px 0}
.photo-card{margin:0;border-radius:22px;overflow:hidden;border:1px solid #e2e8f0;box-shadow:0 18px 52px rgba(15,23,42,.08);transition:transform .25s,box-shadow .25s}
.photo-card:hover{transform:translateY(-4px);box-shadow:0 26px 70px rgba(37,99,235,.12)}
.photo-card img{width:100%;height:320px;object-fit:cover;display:block}
.photo-card figcaption{padding:18px 22px;color:#475569;font-size:14px;font-weight:700;line-height:1.5;background:#fff}

/* Analytics Section */
.analytics-section{background:#f8fafc}
.analytics-grid{display:grid;grid-template-columns:.8fr 1.1fr .8fr;gap:28px;align-items:center}
.analytics-copy h2{text-align:left;margin-bottom:20px;font-size:clamp(26px,3vw,36px)}
.feature-list{list-style:none;padding:0;margin:0;display:grid;gap:10px}
.feature-list li{display:flex;align-items:center;gap:10px;color:#334155;font-size:14px;font-weight:600}
.feature-list li b{width:22px;height:22px;border-radius:50%;background:#eff6ff;color:#2563eb;display:grid;place-items:center;font-size:10px;flex:0 0 auto}
.analytics-mock{border-radius:18px;border:1px solid #e2e8f0;background:#fff;overflow:hidden;box-shadow:0 24px 68px rgba(15,23,42,.10)}
.mock-header{display:flex;align-items:center;gap:8px;padding:12px 18px;background:#f8fafc;border-bottom:1px solid #e2e8f0;font-size:12px;font-weight:700;color:#0f172a}
.mock-header span{width:10px;height:10px;border-radius:50%}.mock-header span:nth-child(1){background:#ef4444}.mock-header span:nth-child(2){background:#facc15}.mock-header span:nth-child(3){background:#22c55e}
.mock-body{padding:22px;display:grid;grid-template-columns:1.2fr .8fr;gap:18px}
.mock-chart{display:flex;align-items:flex-end;gap:10px;height:140px;padding:12px;background:#f8fafc;border-radius:12px}
.mock-bar{flex:1;background:linear-gradient(180deg,#3b82f6,#2563eb);border-radius:6px 6px 0 0;transition:height .6s ease}
.mock-table{display:grid;gap:8px;align-content:start}
.mock-row{display:flex;justify-content:space-between;align-items:center;padding:8px 12px;border-radius:8px;background:#f8fafc;font-size:12px;color:#475569;font-weight:600}
.mock-pct{color:#2563eb;font-weight:800}

/* Analytics metrics */
.analytics-metrics{display:grid;gap:22px}
.metric-ring{text-align:center}
.ring-outer{width:140px;height:140px;border-radius:50%;background:conic-gradient(#2563eb 0% 92%,#e2e8f0 92% 100%);display:grid;place-items:center;margin:0 auto 10px}
.ring-inner{width:108px;height:108px;border-radius:50%;background:#fff;display:grid;place-items:center}
.ring-inner strong{font-size:32px;letter-spacing:-.04em;color:#2563eb;display:block}
.ring-inner span{font-size:11px;color:#64748b;font-weight:700}
.metric-ring>p{color:#0f172a;font-size:14px;font-weight:800;margin:0}
.top-norms{padding:22px;border-radius:18px;border:1px solid #e2e8f0;background:#fff;box-shadow:0 12px 36px rgba(15,23,42,.06)}
.top-norms h4{margin:0 0 14px;font-size:14px;color:#0f172a}
.norm-item{display:grid;grid-template-columns:1fr 80px 36px;gap:8px;align-items:center;padding:6px 0;font-size:12px;color:#475569}
.norm-bar-track{height:6px;background:#e2e8f0;border-radius:3px;overflow:hidden}
.norm-bar-fill{height:100%;background:#2563eb;border-radius:3px}
.norm-item b{color:#2563eb;font-weight:800;text-align:right}

/* Mobile Section */
.mobile-section{background:#fff}
.mobile-grid{display:grid;grid-template-columns:.7fr .8fr 1fr;gap:34px;align-items:start}
.mobile-copy h2{text-align:left;margin-bottom:16px;font-size:clamp(24px,2.8vw,32px)}
.mobile-copy p{color:#64748b;line-height:1.65;margin-bottom:18px}
.device-frame{width:220px;margin:0 auto;padding:14px;border-radius:28px;background:#0f172a;box-shadow:0 28px 80px rgba(15,23,42,.22)}
.device-screen{border-radius:18px;overflow:hidden;background:#fff;min-height:360px}
.app-header{display:flex;align-items:center;gap:8px;padding:14px;background:#f8fafc;border-bottom:1px solid #e2e8f0;font-size:13px;font-weight:800;color:#0f172a}
.app-body{padding:14px;display:grid;gap:10px}
.app-card{padding:14px;border-radius:12px;border:1px solid #e2e8f0;background:#fff;font-size:12px}
.app-card strong{display:block;color:#0f172a;margin-bottom:2px}
.app-card span{color:#64748b}
.app-btn{padding:12px;border-radius:10px;background:#2563eb;color:#fff;text-align:center;font-size:13px;font-weight:800}

/* Traceability */
.trace-section h2{text-align:left;margin-bottom:12px;font-size:clamp(22px,2.6vw,28px)}
.trace-section p{color:#64748b;line-height:1.6;margin-bottom:18px;font-size:14px}
.trace-visual{position:relative;padding:28px 0;min-height:220px}
.trace-lines{position:absolute;inset:0;width:100%;height:100%;z-index:0}
.trace-node{position:absolute;z-index:1;padding:10px 14px;border-radius:12px;text-align:center;font-size:11px;font-weight:800;color:#fff;box-shadow:0 8px 24px rgba(0,0,0,.12);line-height:1.3}
.trace-node b{display:block;font-size:9px;opacity:.85;font-weight:600;margin-top:2px}
.trace-center{background:#2563eb;left:50%;top:50%;transform:translate(-50%,-50%);padding:14px 18px;font-size:13px}
.trace-wps{background:#7c3aed;left:10%;top:5%}
.trace-mat{background:#0891b2;right:10%;top:5%}
.trace-welder{background:#ea580c;left:5%;bottom:5%}
.trace-ndt{background:#16a34a;right:5%;bottom:5%}
.trace-insp{background:#2563eb;left:50%;bottom:0;transform:translateX(-50%)}

/* Client Logos */
.clients-section{padding:40px 0;background:#fff;border-top:1px solid #e2e8f0;border-bottom:1px solid #e2e8f0}
.clients-label{text-align:center;color:#94a3b8;font-size:13px;font-weight:700;margin-bottom:22px;letter-spacing:.04em}
.clients-grid{display:grid;grid-template-columns:repeat(8,1fr);gap:18px;align-items:center}
.client-logo{height:44px;display:grid;place-items:center;border-radius:10px;background:#f8fafc;border:1px solid #e2e8f0;color:#475569;font-weight:900;font-size:11px;letter-spacing:.06em;text-transform:uppercase}

/* CTA Section */
.cta-section{background:#2563eb;padding:72px 0}
.cta-box{display:grid;grid-template-columns:1.4fr .6fr;gap:44px;align-items:center}
.cta-content h2{text-align:left;color:#fff;margin-bottom:14px;font-size:clamp(28px,3.4vw,42px)}
.cta-content p{color:#dbeafe;font-size:17px;line-height:1.6;margin-bottom:28px}
.cta-buttons{display:flex;gap:14px}
.cta-benefits{display:grid;gap:12px}
.cta-benefits span{display:flex;align-items:center;gap:8px;padding:14px 18px;border-radius:14px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);color:#fff;font-weight:700;font-size:14px}

/* Responsive for new sections */
@media(max-width:1180px){.trust-bar-grid{grid-template-columns:repeat(3,1fr)}.feature-grid-4{grid-template-columns:repeat(2,1fr)!important}.analytics-grid{grid-template-columns:1fr}.analytics-metrics{grid-template-columns:1fr 1fr}.mobile-grid{grid-template-columns:1fr}.cta-box{grid-template-columns:1fr}.clients-grid{grid-template-columns:repeat(4,1fr)}}
@media(max-width:760px){.trust-bar-grid{grid-template-columns:1fr 1fr}.feature-grid-4{grid-template-columns:1fr!important}.photo-strip-grid{grid-template-columns:1fr}.photo-card img{height:240px}.analytics-metrics{grid-template-columns:1fr}.mobile-grid{grid-template-columns:1fr}.device-frame{width:180px}.cta-section{padding:46px 0}.cta-content h2{font-size:28px}.cta-buttons{flex-direction:column}.clients-grid{grid-template-columns:repeat(2,1fr)}.trace-visual{min-height:240px}}

/* Final brand and checkout consistency pass */
.brand,.brandbar .brand,.site-header .brand,.navbar .brand{display:inline-flex!important;align-items:center!important;gap:12px!important;text-decoration:none!important;color:#0f172a!important}
.brand .brand-mark,.brandbar .brand .brand-mark,.site-header .brand .brand-mark{width:40px!important;height:40px!important;border-radius:12px!important;clip-path:none!important;background:linear-gradient(145deg,#60a5fa,#2563eb 56%,#1d4ed8)!important;color:#fff!important;display:grid!important;place-items:center!important;font-size:18px!important;font-weight:900!important;line-height:1!important;box-shadow:0 14px 30px rgba(37,99,235,.25),inset 0 1px 0 rgba(255,255,255,.3)!important}
.brand strong,.brand-title,.logo-name{display:block!important;color:#0f172a!important;font-size:15px!important;line-height:1.05!important;font-weight:900!important;letter-spacing:.03em!important;text-transform:uppercase!important}
.brand em,.brand b,.brand-title b,.logo-name strong{font-style:normal!important;color:#2563eb!important}
.brand small,.brand-sub,.logo-sub{display:block!important;color:#64748b!important;font-size:8px!important;letter-spacing:.16em!important;text-transform:uppercase!important;font-weight:800!important;margin-top:3px!important}

.checkout-hero .checkout-shell,.checkout-hero .summary-card{background:#fff!important;color:#0f172a!important;border:1px solid #dbeafe!important;box-shadow:0 24px 70px rgba(15,23,42,.08)!important}
.checkout-hero .checkout-head p,.checkout-hero .note,.checkout-hero .secure-note,.checkout-hero .pay-help,.checkout-hero .price-sub{color:#64748b!important}
.checkout-hero .trust,.checkout-hero .plan-option,.checkout-hero .summary-mini,.checkout-hero .payment-panel{background:#fff!important;color:#0f172a!important;border:1px solid #e2e8f0!important}
.checkout-hero .trust span,.checkout-hero .plan-option,.checkout-hero .summary-line,.checkout-hero .summary-line strong,.checkout-hero .payment-panel h3{color:#0f172a!important}
.checkout-hero .trust span:before,.checkout-hero .btn:before,.checkout-hero .btn:after,.checkout-hero .pay-help:before{display:none!important}
.checkout-hero .plan-option.active{border-color:#2563eb!important;background:linear-gradient(180deg,#fff,#eff6ff)!important;box-shadow:0 18px 42px rgba(37,99,235,.12)!important}
.checkout-hero .plan-option:not(.active):before{background:#fff!important}
.checkout-hero .plan-option.active:before{content:""!important;background:#0ea5e9!important;border-color:#0ea5e9!important}
.checkout-hero .form-grid input,.checkout-hero .form-grid select{background:#fff!important;color:#0f172a!important;border-color:#cbd5e1!important;padding-left:13px!important}
.checkout-hero .field span{display:none!important}
.checkout-hero .pill.green{background:#eff6ff!important;color:#2563eb!important;border-color:#bfdbfe!important}
.checkout-hero .pill.orange{background:#2563eb!important;color:#fff!important;box-shadow:none!important}
.checkout-hero .seat-button,.checkout-hero .seat-count,.checkout-hero .seat-quick{background:#fff!important;color:#0f172a!important;border-color:#bfdbfe!important}
.checkout-hero .summary-icon,.checkout-hero .summary-title .doc{font-size:0!important}
.checkout-hero .pay-logo.apple{font-size:0!important}
.checkout-hero .pay-logo.apple:before{content:"Apple Pay";font-size:16px}
.checkout-hero .summary-total strong{color:#2563eb!important}
.checkout-hero .btn{color:#fff!important;box-shadow:0 18px 34px rgba(37,99,235,.22)!important}
.brandbar nav a{color:#0f172a!important}
.brandbar nav a.login{background:#fff!important;color:#2563eb!important;border-color:#dbeafe!important}
@media(max-width:760px){
  .page-hero .container,.contact-layout{width:min(100% - 78px,312px)!important}
  .page-hero h1{font-size:28px!important;line-height:1.12!important;max-width:100%!important}
  .page-hero .lead{font-size:15px!important;line-height:1.65!important;max-width:100%!important}
  .page-hero h1,.page-hero .lead,.contact-card h2,.contact-card p,.contact-option strong,.contact-option span{overflow-wrap:anywhere!important;word-break:break-word!important}
  .contact-email{font-size:18px!important;word-break:normal!important;overflow-wrap:normal!important}
  .contact-layout,.contact-card,.option-stack,.contact-option{min-width:0;max-width:100%}
  .contact-option{display:grid!important;grid-template-columns:1fr;align-items:start!important}
}
