/* ══════════════════════════════════════════════════════════════
   ASi Imperium — Extracted Inline Styles
   Generated from HTML inline style attributes
   ══════════════════════════════════════════════════════════════ */

/* ── Icon sizing utilities ── */
.icon-sm { width: 14px; height: 14px; }
.icon-md { width: 18px; height: 18px; }
.v-middle { vertical-align: middle; }
.v-text-bottom { vertical-align: text-bottom; }
.ml-2 { margin-left: 2px; }
.text-accent { color: var(--accent); }

/* ── Pricing card accent border ── */
.pricing-card-accent { border-color: var(--accent); }

/* ── Button text alignment ── */
.btn-center { text-align: center; }

/* ── FAQ section background ── */
.faq-section-bg { background: var(--bg); padding: 80px 0; }

/* ── Footer layout helpers ── */
.footer-inner-flex { justify-content: flex-start; gap: 64px; }
.footer-col-max { max-width: 300px; }
.footer-desc { font-size: 0.85rem; color: var(--text-dim); margin-top: 12px; }
.footer-heading { margin-bottom: 16px; font-size: 0.9rem; }
.footer-link-list { flex-direction: column; gap: 12px; }
.footer-bottom {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-built-by {
  width: 100%;
  text-align: center;
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-accent-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

/* ── Hero stat bar ── */
.hero-stat-bar {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.hero-stat-value {
  color: var(--accent);
  font-size: 1.3rem;
  display: block;
}

/* ── Hero container flex layout ── */
.hero-container-flex {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

/* ── Submit button full-width ── */
.btn-submit-full {
  width: 100%;
  justify-content: center;
}

/* ── Form status helpers ── */
.form-note-center {
  margin-top: 24px;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
}

/* ── Footer column span ── */
.footer-col-span { grid-column: span 1; }
.footer-col-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 20px;
  line-height: 1.75;
}

/* ── Section backgrounds ── */
.bg-alt-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── SVG sun icon hidden state ── */
.sun-icon-hidden { display: none; }

/* ── WhatsApp inline icon ── */
.wa-inline-icon {
  width: 14px;
  height: 14px;
  color: var(--accent);
  vertical-align: text-bottom;
}

/* ── Arrow inline icon ── */
.arrow-inline-icon {
  width: 12px;
  height: 12px;
  vertical-align: middle;
}

/* ── Tender ready / compliance specific ── */
.compliance-badge-icon {
  width: 20px;
  height: 20px;
}

/* ── WhatsApp button green override ── */
.btn-wa-green {
  background: #25D366;
  color: white;
  border-color: #25D366;
}

/* ── Nav compact buttons ── */
.btn-nav-compact {
  padding: 8px 16px;
  font-size: 0.9rem;
}

/* ── Blog / article specific ── */
.faq-details {
  margin-bottom: 10px;
  background: rgba(0,0,0,0.2);
  padding: 15px;
  border-radius: 8px;
}
.faq-summary-text {
  font-weight: 600;
  cursor: pointer;
}
.faq-answer-text {
  margin-top: 10px;
  color: var(--text-muted);
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}
.author-name {
  font-size: 1.1rem;
}
.blog-footer {
  text-align: center;
  padding: 40px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── Nav container inline layout (blog pages) ── */
.nav-container-inline {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── Scrollbar compat fix ── */
/* Using -webkit-scrollbar for broader support instead of scrollbar-width */
.custom-scrollbar {
  scrollbar-width: thin; /* Firefox 121+ */
  scrollbar-color: var(--text-muted) transparent;
}
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 3px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

/* ── Index.html specific styles ── */
/* Comparison table cell highlights */
.compare-highlight {
  color: var(--accent);
  font-weight: 600;
}
.compare-dim {
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════
   Index.html — Migrated Inline Styles (Phase 2)
   ══════════════════════════════════════════════════════════════ */

/* ── Icon sizing extensions ── */
.icon-lg { width: 24px; height: 24px; }
.icon-lg-alt { width: 22px; height: 22px; }
.icon-xl { width: 36px; height: 36px; }

/* ── Footer description alt variant ── */
.footer-desc-alt {
  margin-top: 15px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Footer social bar ── */
.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  margin-top: 32px;
  flex-wrap: wrap;
}
.footer-social-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 8px;
}
.footer-social-link {
  color: var(--text-dim);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  text-decoration: none;
}
.footer-social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.footer-social-link-wa {
  color: #25D366;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  text-decoration: none;
}
.footer-social-link-wa:hover {
  border-color: #25D366;
}
.footer-review-link {
  color: var(--accent);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  margin-left: 4px;
}
.footer-review-link:hover {
  border-color: var(--accent);
  background: rgba(199, 123, 46, 0.05);
}

/* ── Who We Are section ── */
.who-we-are-padding {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.who-we-are-desc {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 48px;
}
.who-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
.who-heading {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 400;
}
.who-text {
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 1.05rem;
}
.who-text-mb {
  margin-bottom: 16px;
}
.who-receive-box {
  background: var(--bg-alt);
  padding: 48px;
  border-radius: 4px;
  border: 1px solid var(--border);
  margin-bottom: 48px;
  max-width: 800px;
}
.who-receive-heading {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 24px;
  font-weight: 400;
  color: var(--text);
}
.who-receive-text {
  color: var(--text);
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

/* ── Button accent variant ── */
.btn-secondary-accent {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-secondary-accent:hover {
  background: var(--accent);
  color: #fff;
}

/* ── Motion section placeholder ── */
.motion-placeholder {
  padding: 80px 40px;
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  text-align: center;
  border-radius: 4px;
  margin-top: 40px;
}
.motion-icon {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.motion-text {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin: 0;
}

/* ── Architecture section ── */
.architecture-padding {
  background: var(--bg-alt);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.architecture-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.architecture-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.architecture-desc {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 650px;
  margin-bottom: 64px;
  font-weight: 300;
  line-height: 1.8;
}

/* ── Diagram grid & nodes ── */
.diagram-container-margin {
  margin-top: 64px;
  position: relative;
  overflow-x: auto;
  padding-bottom: 20px;
}
.diagram-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  text-align: center;
  min-width: 800px;
}
.diag-node-base {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 40px 24px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}
.diag-node-accent {
  background: var(--bg);
  border: 1px solid var(--accent);
  padding: 40px 24px;
  border-radius: 4px;
  box-shadow: 0 0 40px rgba(199, 123, 46, 0.15);
  position: relative;
  transform: scale(1.05);
  z-index: 2;
}
.diag-core-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.65rem;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  white-space: nowrap;
  font-weight: 600;
}
.diag-icon-muted {
  color: var(--text-dim);
  margin-bottom: 20px;
}
.diag-icon-accent {
  color: var(--accent);
  margin-bottom: 20px;
}
.diag-icon-teal {
  color: var(--teal);
  margin-bottom: 20px;
}
.diag-heading {
  font-family: var(--mono);
  color: var(--text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.diag-text {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.diag-arrow {
  color: var(--accent);
}

/* ── Contact section helpers ── */
.contact-detail-mt {
  margin-top: 16px;
}
.contact-btn-mt {
  margin-top: 20px;
}

/* ── FAQ section bg helper ── */
.faq-bg {
  background: var(--bg);
  padding: 80px 0;
}

/* ══════════════════════════════════════════════════════════════
   Compliance Hub Specific Styles
   ══════════════════════════════════════════════════════════════ */
.compliance-body { background: var(--bg); color: var(--text); font-family: var(--font-mono); line-height: 1.6; padding: 40px 20px; }
.compliance-container { max-width: 1000px; margin: 0 auto; }
.compliance-header { text-align: center; margin-bottom: 50px; }
.compliance-title { font-family: var(--font-display); font-size: 2.8rem; margin-bottom: 15px; color: var(--text); }
.compliance-subtitle { color: #8C7E6A; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 60px; }
.hub-card { background: #FFFFFF; border: 1px solid var(--border); border-radius: 8px; padding: 30px; transition: transform 0.2s ease, box-shadow 0.2s ease; display: flex; flex-direction: column; }
.hub-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-color: var(--accent); }
.hub-card-icon { width: 48px; height: 48px; background: rgba(199, 123, 46, 0.1); color: var(--accent); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.hub-card-icon.teal { background: rgba(26, 122, 109, 0.1); color: var(--teal); }
.hub-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 10px; color: var(--text); margin-top: 0; }
.hub-card p { font-size: 0.9rem; color: #8C7E6A; margin-bottom: 25px; flex-grow: 1; }
.doc-links { list-style: none; padding: 0; margin: 0; }
.doc-links li { margin-bottom: 12px; }
.doc-links a { display: flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-weight: 500; font-size: 0.95rem; padding: 8px 12px; border-radius: 4px; transition: background 0.2s; }
.doc-links a:hover { background: rgba(199, 123, 46, 0.05); color: var(--accent); }
.doc-links .lucide { width: 18px; height: 18px; color: var(--accent); }
.badge-section { background: rgba(26, 122, 109, 0.04); border: 1px solid rgba(26, 122, 109, 0.15); border-radius: 8px; padding: 40px; text-align: center; }
.badge-section h2 { font-family: var(--font-display); font-size: 1.8rem; margin-top: 0; margin-bottom: 15px; color: var(--text); }
.badge-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 30px; }
.trust-badge { display: flex; flex-direction: column; align-items: center; gap: 12px; background: white; padding: 20px; border-radius: 8px; border: 1px solid var(--border); min-width: 150px; }
.trust-badge img { max-height: 50px; opacity: 0.8; filter: grayscale(100%); transition: filter 0.3s, opacity 0.3s; }
.trust-badge:hover img { filter: grayscale(0%); opacity: 1; }
.trust-badge span { font-size: 0.8rem; font-weight: 600; color: #8C7E6A; text-transform: uppercase; letter-spacing: 0.5px; }
.back-nav { margin-bottom: 40px; }
.back-nav a { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); text-decoration: none; font-weight: 600; }
.back-nav a:hover { text-decoration: underline; }
.badge-section.white { background: #FFFFFF !important; margin-bottom: 40px; }
.badge-section h2.accent { color: var(--accent); }
.hub-card.primary { align-items: center; text-align: center; border: 2px solid var(--accent); grid-column: 1 / -1; }
.hub-card.center { align-items: center; text-align: center; }
.hub-card i.main-icon { width: 56px; height: 56px; color: var(--accent); margin-bottom: 15px; }
.hub-card i.sub-icon { width: 48px; height: 48px; margin-bottom: 15px; }
.hub-card h3.large { font-size: 1.5rem; }
.hub-card p.narrow { max-width: 500px; margin-left: auto; margin-right: auto; }
.verify-btn { display: inline-block; padding: 12px 24px; border-radius: 4px; text-decoration: none; font-weight: 600; width: 100%; font-size: 0.95rem; transition: background 0.2s; }
.verify-btn.accent-bg { background: rgba(199,123,46,0.1); color: var(--accent); }
.verify-btn.teal-bg { background: rgba(0,153,153,0.1); color: #009999; }
.verify-btn.teal-main-bg { background: rgba(26,122,109,0.1); color: var(--teal); }
.status-box { margin-top: 40px; padding: 24px; border: 1px dashed #E0DBCE; border-radius: 8px; text-align: center; }
.status-box h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 8px; color: #8C7E6A; }
.status-box p { font-size: 0.85rem; color: #8C7E6A; margin-bottom: 16px; }
.pill-container { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.status-pill { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; background: rgba(66,133,244,0.06); color: #8C7E6A; border: 1px solid #E0DBCE; }
.status-pill i { width: 14px; height: 14px; color: #4285F4; }
.trust-badge-link { text-decoration: none; }
.trust-badge i { width: 40px; height: 40px; color: var(--teal); }
@media (max-width: 768px) { .hub-grid { grid-template-columns: 1fr; } .compliance-title { font-size: 2.2rem; } }

/* ── Regulatory Framework Alignment badges ── */
.framework-grid { gap: 20px; }
.framework-badge { min-width: 170px; max-width: 200px; padding: 22px 16px; gap: 8px; border: 1px solid rgba(26, 122, 109, 0.18); box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.framework-badge i[data-lucide] { width: 36px; height: 36px; color: var(--teal); }
.framework-badge .framework-name { font-size: 0.82rem; font-weight: 700; color: var(--text); text-transform: none; letter-spacing: 0; line-height: 1.25; }
.framework-badge .framework-name small { display: block; font-size: 0.7rem; font-weight: 500; color: #8C7E6A; margin-top: 2px; }
.framework-badge .framework-status { display: inline-flex; align-items: center; gap: 6px; font-size: 0.7rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.4px; }
.framework-badge .framework-status i[data-lucide] { width: 14px; height: 14px; color: var(--accent); }
.framework-disclaimer { display: inline-flex; align-items: center; gap: 8px; margin-top: 30px; font-size: 0.85rem; color: #6b6b6b; font-style: italic; }
.framework-disclaimer i[data-lucide] { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* ── Specific compliance hub icon colors ── */
.icon-teal { color: #009999; }
.icon-teal-main { color: var(--teal); }

/* ══════════════════════════════════════════════════════════════
   v3-platform.html Specific Utilities
   ══════════════════════════════════════════════════════════════ */
.hero-container-flex { display: flex; align-items: center; width: 100%; flex-wrap: wrap; }
.hero-stats { font-family: var(--mono); font-size: 0.75rem; color: var(--text-muted); display: flex; gap: 40px; border-top: 1px solid var(--border); padding-top: 32px; }
.hero-stat-num { color: var(--accent); font-size: 1.3rem; display: block; }
.bg-alt-section { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.form-disclaimer { margin-top: 24px; font-size: 0.7rem; color: var(--text-muted); text-align: center; }
.footer-col-span { grid-column: span 1; }
.btn-full { width: 100%; justify-content: center; }
.icon-btn { width: 18px; height: 18px; }
.globe-error-msg { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--text-muted); font-size: 0.85rem; text-align: center; padding: 40px; }

/* ══════════════════════════════════════════════════════════════
   v2-archive.html Specific Utilities
   ══════════════════════════════════════════════════════════════ */
.icon-sm { width: 14px; height: 14px; }
.col-40 { width: 40%; }
.text-accent-light { color: var(--accent-light); }
.success-msg-container { padding: 40px; text-align: center; }
.success-msg-title { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); }
.success-msg-desc { color: var(--earth); margin-top: 8px; }

/* ══════════════════════════════════════════════════════════════
   websites.html Specific Utilities & Components
   ══════════════════════════════════════════════════════════════ */
.nav-dropdown-icon { width: 14px; height: 14px; vertical-align: middle; margin-left: 2px; }
.pricing-card-highlight { border-color: var(--accent); }
.text-center { text-align: center; }
.icon-sm-accent { width: 14px; height: 14px; color: var(--accent); vertical-align: text-bottom; }
.icon-xs-middle { width: 12px; height: 12px; vertical-align: middle; }
.bg-padded { background: var(--bg); padding: 80px 0; }
.footer-inner-start { justify-content: flex-start; gap: 64px; }
.footer-col-300 { max-width: 300px; }
.footer-col-title { margin-bottom: 16px; font-size: 0.9rem; }
.footer-links-col { flex-direction: column; gap: 12px; }
.footer-credits { width: 100%; text-align: center; margin-top: 24px; font-size: 0.8rem; color: var(--text-dim); }
.footer-credits-link { color: var(--accent); text-decoration: none; font-weight: 600; }

/* IT Hero Component */
.it-hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; border: none !important; padding: 160px 0 120px; }
.hero-bg-wrapper { position: absolute; inset: 0; z-index: 0; background-color: #0a0a0a; }
.hero-image-layer { position: absolute; inset: 0; background-image: url('../assets/hero-it.v2.jpg'); background-size: cover; background-position: center right; background-repeat: no-repeat; filter: brightness(1.05) contrast(1.15) saturate(1.05); animation: slowFadeIn 0.8s ease-out forwards; }
@keyframes slowFadeIn { from { opacity: 0; transform: scale(1.02); } to { opacity: 1; transform: scale(1); } }
.hero-overlay-layer { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.15) 100%); }
.it-hero .container { position: relative; z-index: 10; width: 100%; }
.hero-content-left { max-width: 600px; }
.it-hero h1 { font-family: var(--serif); font-size: clamp(3rem, 5.5vw, 4.5rem); font-weight: 500; line-height: 1.05; letter-spacing: -0.03em; color: #FFFFFF; margin-bottom: 24px; text-shadow: 0 4px 20px rgba(0,0,0,0.8); }
.it-hero h1 em { font-style: italic; color: var(--accent-light); display: block; }
.hero-subtext { font-size: 1.15rem; color: rgba(245, 240, 232, 0.8); max-width: 540px; line-height: 1.7; margin-bottom: 40px; text-shadow: 0 2px 10px rgba(0,0,0,0.6); }
.hero-actions-row { display: flex; gap: 16px; flex-wrap: wrap; }
.it-hero .btn { display: inline-flex; align-items: center; gap: 12px; padding: 16px 36px; font-weight: 600; font-size: 0.95rem; border-radius: 4px; transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1); text-decoration: none; }
.it-hero .btn-primary { background: #FFFFFF; color: #0a0a0a; box-shadow: 0 8px 25px rgba(0,0,0,0.3); border: 1px solid transparent; }
.it-hero .btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 35px rgba(255,255,255,0.2); }
.it-hero .btn-secondary { background: rgba(0,0,0,0.2); backdrop-filter: blur(8px); color: #FFFFFF; border: 1px solid rgba(255,255,255,0.4); }
.it-hero .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #FFFFFF; transform: translateY(-2px); }

@media (max-width: 1023px) {
  .it-hero { min-height: auto; padding: 140px 0 80px; }
  .hero-image-layer { background-position: center center; }
  .hero-overlay-layer { background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.25) 100%); }
  .hero-content-left { max-width: 100%; display: flex; flex-direction: column; }
  .it-hero h1 { font-size: clamp(2.4rem, 8vw, 3.2rem); }
  .hero-actions-row { flex-direction: column; gap: 12px; }
  .it-hero .btn { width: 100%; justify-content: center; }
}

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: 30px; margin-top: 40px; }
.pricing-card { background: var(--bg); border: 1px solid var(--border); padding: 40px; border-radius: 4px; display: flex; flex-direction: column; transition: var(--transition); }
.pricing-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.pricing-card-title { font-size: 1.4rem; font-weight: 600; margin-bottom: 12px; }
.pricing-card-desc { color: var(--text-dim); font-size: 0.95rem; line-height: 1.6; flex-grow: 1; margin-bottom: 30px; }
.pricing-card-price { font-size: 1.5rem; font-weight: 700; color: var(--accent); margin-bottom: 8px; border-top: 1px solid var(--border); padding-top: 24px; }
.pricing-card-excl { font-size: 0.75rem; color: var(--text-muted); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 30px; }
.pricing-card-features { list-style: none; margin-bottom: 30px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.pricing-card-features li { font-size: 0.88rem; color: var(--text-dim); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.pricing-card-features li::before { content: ''; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
