:root {
  --primary: #ff5a1f;
  --primary-dark: #e54a11;
  --secondary: #0f172a;
  --secondary-soft: #1f2937;
  --text: #334155;
  --text-strong: #0f172a;
  --muted: #64748b;
  --border: #e5e7eb;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-alt: #f1f5f9;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.07);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
}

a {
  color: var(--primary);
  transition: all 0.25s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

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

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.78rem 1.45rem;
  box-shadow: none !important;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-light {
  border-width: 1.5px;
}

.btn-outline-primary {
  border-width: 1.5px;
}

.topbar {
  background: linear-gradient(90deg, #14070a 0%, #3f0f0f 100%);
  color: #fff;
  font-size: 0.95rem;
}

.topbar-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar-left a,
.topbar-left span {
  color: rgba(255, 255, 255, 0.92);
}

.topbar-left i {
  color: var(--primary);
  margin-right: 7px;
}

.topbar-cta {
  background: var(--primary);
  color: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.topbar-cta:hover {
  background: var(--primary-dark);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.navbar {
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img,
.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand span,
.footer-brand span {
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.02em;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-strong);
  font-weight: 700;
  padding: 0.75rem 0.95rem;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

.btn-nav {
  padding: 0.7rem 1.25rem;
  margin-left: 8px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0 88px;
  background: url('../img/hero-bg.jpg') center center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.82) 42%, rgba(70, 17, 17, 0.76) 100%);
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-copy h1 {
  color: #fff;
  font-size: 3.35rem;
  line-height: 1.08;
  font-weight: 800;
  margin: 18px 0 18px;
  letter-spacing: -0.035em;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  max-width: 720px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-actions .btn i {
  margin-right: 8px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-point {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px 18px;
  backdrop-filter: blur(8px);
}

.hero-point strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
}

.hero-point span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.93rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.hero-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff3ec;
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.hero-panel h2 {
  color: var(--text-strong);
  font-size: 1.85rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.hero-checks li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text);
}

.hero-checks i {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff3ec;
  color: var(--primary);
  font-size: 1rem;
  margin-top: 2px;
}

.hero-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.hero-panel-footer strong {
  display: block;
  color: var(--text-strong);
}

.hero-panel-footer span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-panel-footer a {
  font-weight: 700;
  white-space: nowrap;
}

.section {
  padding: 92px 0;
}

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

.section-dark {
  background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 52px;
}

.section-kicker {
  background: #fff3ec;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.section-kicker-cta {
  background: rgba(255, 90, 31, 0.12);
  color: var(--primary-dark);
}

.section-heading h2 {
  color: var(--text-strong);
  font-weight: 800;
  font-size: 2.65rem;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.section-heading-light h2,
.section-heading-light p,
.section-heading-light .section-kicker {
  color: #fff;
}

.section-heading-light .section-kicker {
  background: rgba(255, 255, 255, 0.12);
}

.section-intro {
  padding-top: 0;
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.intro-strip {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-soft);
  border-radius: 24px;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.intro-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.intro-item i,
.service-icon,
.audience-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff3ec;
  color: var(--primary);
  font-size: 1.7rem;
}

.intro-item h3,
.service-card h3,
.solution-card h3,
.audience-card h3,
.process-card h3,
.faq-card h3,
.contact-item h3,
.site-footer h3,
.content-block h3,
.benefit-card h4 {
  color: var(--text-strong);
  font-weight: 800;
}

.intro-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.intro-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.image-frame img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.content-block p {
  color: var(--text);
  margin-bottom: 22px;
}

.benefit-card,
.service-card,
.audience-card,
.faq-card,
.process-card,
.contact-card,
.form-card,
.solution-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.benefit-card {
  height: 100%;
  padding: 22px;
}

.benefit-card i {
  color: var(--primary);
  font-size: 1.65rem;
  margin-bottom: 14px;
}

.benefit-card h4 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-card,
.audience-card,
.process-card,
.faq-card {
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.audience-card:hover,
.process-card:hover,
.faq-card:hover,
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

.service-icon {
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.18rem;
  line-height: 1.35;
  margin-bottom: 12px;
}

.service-card p,
.solution-card p,
.audience-card p,
.process-card p,
.faq-card p,
.contact-item p,
.footer-text,
.footer-links li,
.footer-contact-list li,
.solution-card li {
  color: var(--muted);
}

.solution-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.98);
  height: 100%;
}

.solution-label {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff3ec;
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.solution-card ul,
.audience-card ul,
.footer-links,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.solution-card li,
.audience-card li,
.footer-links li,
.footer-contact-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.solution-card li::before,
.audience-card li::before,
.footer-links li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 0.65em;
}

.featured-solution {
  border: 1px solid rgba(255, 90, 31, 0.3);
  box-shadow: 0 22px 55px rgba(255, 90, 31, 0.15);
}

.audience-card {
  padding: 30px;
}

.audience-icon {
  margin-bottom: 18px;
}

.process-card {
  position: relative;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: var(--secondary);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.cta-panel {
  background: linear-gradient(135deg, #fff5ef 0%, #ffffff 100%);
  border: 1px solid rgba(255, 90, 31, 0.12);
  border-radius: 30px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.cta-panel h2 {
  color: var(--text-strong);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.16;
}

.cta-panel p {
  color: var(--muted);
  margin-bottom: 0;
}

.contact-card,
.form-card {
  padding: 30px;
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 0 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.contact-item.no-border {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.contact-item i {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #fff3ec;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  flex: 0 0 auto;
}

.form-card label {
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 8px;
}

.form-card .form-control {
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid #dbe2ea;
  padding: 0.85rem 1rem;
  color: var(--text-strong);
  box-shadow: none;
}

.form-card textarea.form-control {
  min-height: 160px;
}

.form-card .form-control:focus {
  border-color: rgba(255, 90, 31, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.12);
}

.btn-submit {
  min-width: 210px;
}

.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
  display: none;
  border-radius: 14px;
  padding: 13px 16px;
  font-weight: 600;
}

.php-email-form .loading {
  background: #fff7ed;
  color: var(--primary-dark);
}

.php-email-form .error-message {
  background: #fef2f2;
  color: #b91c1c;
}

.php-email-form .sent-message {
  background: #ecfdf5;
  color: #047857;
}

.site-footer {
  background: #0b1220;
  color: #fff;
  padding: 78px 0 28px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-brand span,
.site-footer h3 {
  color: #fff;
}

.site-footer h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-text {
  max-width: 420px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-contact-list i {
  color: var(--primary);
  margin-right: 8px;
}

.footer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.back-to-top,
.whatsapp-float {
  position: fixed;
  right: 22px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 999;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}

.back-to-top {
  bottom: 86px;
  background: var(--secondary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-float {
  bottom: 22px;
  background: #25d366;
  font-size: 1.55rem;
}

.back-to-top:hover,
.whatsapp-float:hover {
  color: #fff;
}

@media (max-width: 1199.98px) {
  .hero-copy h1 {
    font-size: 2.85rem;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .topbar {
    display: none;
  }

  .navbar {
    min-height: 78px;
  }

  .navbar-collapse {
    background: #fff;
    padding: 16px;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    margin-top: 10px;
  }

  .nav-item-cta {
    width: 100%;
    margin-top: 8px;
  }

  .btn-nav {
    margin-left: 0;
    width: 100%;
  }

  .hero-section {
    padding: 84px 0 68px;
  }

  .hero-copy h1 {
    font-size: 2.45rem;
  }

  .section {
    padding: 80px 0;
  }

  .intro-strip {
    grid-template-columns: 1fr;
  }

  .section-intro {
    margin-top: -26px;
  }
}

@media (max-width: 767.98px) {
  .brand span,
  .footer-brand span {
    font-size: 1.45rem;
  }

  .brand img,
  .footer-brand img {
    width: 46px;
    height: 46px;
  }

  .hero-copy h1 {
    font-size: 2.1rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-panel,
  .contact-card,
  .form-card,
  .cta-panel,
  .service-card,
  .audience-card,
  .process-card,
  .faq-card,
  .solution-card,
  .benefit-card {
    padding: 22px;
  }

  .section-heading h2,
  .cta-panel h2 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .back-to-top,
  .whatsapp-float {
    right: 16px;
  }

  .back-to-top {
    bottom: 78px;
  }

  .whatsapp-float {
    bottom: 16px;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding-top: 72px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .cta-panel h2 {
    font-size: 1.8rem;
  }

  .intro-item,
  .contact-item {
    flex-direction: column;
  }

  .intro-item i,
  .contact-item i {
    margin-bottom: 0;
  }
}

/* ===== Premium v3 refinements ===== */
section[id] {
  scroll-margin-top: 120px;
}

.navbar-light .navbar-nav .nav-link {
  white-space: nowrap;
  font-size: 0.98rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}

.hero-section {
  background: radial-gradient(circle at top left, rgba(255, 90, 31, 0.12), transparent 28%), linear-gradient(135deg, #0f172a 0%, #16253f 52%, #3f2323 100%);
  padding: 96px 0 86px;
}

.hero-layout {
  min-height: 640px;
}

.premium-copy .eyebrow {
  background: rgba(255, 255, 255, 0.12);
}

.hero-copy.premium-copy h1 {
  max-width: 720px;
}

.hero-copy.premium-copy .hero-lead {
  max-width: 690px;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-chip i {
  color: #ffbc9f;
  font-size: 1rem;
}

.hero-visual-wrap {
  position: relative;
  padding-left: 26px;
}

.hero-image-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
  border-radius: 30px;
  padding: 26px 26px 10px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
  margin-left: auto;
  max-width: 500px;
}

.hero-image-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #fff3ec;
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
}

.hero-image-card img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  display: block;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.hero-proof-card {
  position: relative;
  margin-top: -42px;
  margin-left: 55px;
  max-width: 470px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.hero-checks.compact li {
  margin-bottom: 10px;
  font-size: 0.98rem;
}

.brand-strip-section {
  padding-top: 10px;
}

.brand-strip {
  background: linear-gradient(135deg, #ffffff 0%, #fff6f1 100%);
  border-radius: 28px;
  padding: 34px;
  border: 1px solid rgba(255, 90, 31, 0.12);
  box-shadow: var(--shadow-soft);
}

.brand-strip-copy {
  max-width: 760px;
  margin-bottom: 24px;
}

.brand-strip-copy h2 {
  color: var(--text-strong);
  font-size: 2.1rem;
  line-height: 1.16;
  font-weight: 800;
  margin: 14px 0 12px;
}

.brand-strip-copy p {
  color: var(--muted);
  margin-bottom: 0;
}

.brand-pill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.brand-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 18px;
}

.brand-pill i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff3ec;
  color: var(--primary);
  font-size: 1.25rem;
  flex: 0 0 auto;
}

.brand-pill span {
  color: var(--text-strong);
  font-weight: 700;
  line-height: 1.35;
}

.company-grid .image-frame img {
  height: 540px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1199.98px) {
  .hero-visual-wrap {
    padding-left: 0;
  }
  .brand-pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  section[id] {
    scroll-margin-top: 90px;
  }

  .hero-layout {
    min-height: auto;
  }

  .hero-visual-wrap {
    max-width: 620px;
    margin: 0 auto;
  }

  .hero-image-card {
    max-width: 100%;
  }

  .hero-proof-card {
    margin: 18px 0 0;
    max-width: 100%;
  }

  .brand-strip {
    padding: 28px;
  }
}

@media (max-width: 767.98px) {
  .hero-image-card img {
    height: 300px;
  }

  .brand-strip-copy h2 {
    font-size: 1.75rem;
  }

  .brand-pill-grid {
    grid-template-columns: 1fr;
  }

  .company-grid .image-frame img {
    height: auto;
  }
}

/* ===== Enterprise minimal refinement ===== */
:root {
  --primary: #ff6726;
  --primary-dark: #ef5a19;
  --secondary: #0f172a;
  --secondary-soft: #162033;
}

.topbar {
  background: linear-gradient(90deg, #22080b 0%, #4a0f12 100%);
}

.site-header {
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.05);
}

.navbar-light .navbar-nav .nav-link {
  font-weight: 600;
  color: #20293c;
}

.brand span, .footer-brand span {
  font-weight: 700;
}

.hero-enterprise {
  position: relative;
  background:
    linear-gradient(90deg, rgba(7, 18, 40, 0.93) 0%, rgba(10, 24, 52, 0.90) 44%, rgba(13, 27, 51, 0.72) 68%, rgba(12, 21, 39, 0.54) 100%),
    url('../img/values-4.jpg') right center / cover no-repeat;
  padding: 110px 0 96px;
}

.hero-enterprise .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
}

.enterprise-layout {
  min-height: 560px;
}

.enterprise-copy h1 {
  font-size: 3.05rem;
  max-width: 760px;
}

.enterprise-copy .hero-lead {
  max-width: 760px;
  color: rgba(255,255,255,0.86);
}

.executive-card {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 28px 60px rgba(5, 14, 30, 0.22);
  border-radius: 28px;
  padding: 30px;
  max-width: 450px;
  margin-left: auto;
  backdrop-filter: blur(10px);
}

.executive-card-head {
  margin-bottom: 22px;
}

.executive-tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff3ec;
  color: var(--primary-dark);
  font-size: 0.84rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.executive-card h2 {
  font-size: 1.95rem;
  line-height: 1.15;
  color: var(--text-strong);
  font-weight: 800;
  margin-bottom: 0;
}

.executive-points {
  display: grid;
  gap: 18px;
}

.executive-point {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.executive-point i {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: #fff3ec;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 1.35rem;
}

.executive-point h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text-strong);
  font-weight: 800;
}

.executive-point p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.executive-footer {
  margin-top: 24px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin-top: 10px;
}

.hero-metric {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
}

.hero-metric strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
}

.hero-metric span {
  color: rgba(255,255,255,0.76);
  font-size: 0.95rem;
}

.brand-strip {
  background: linear-gradient(135deg, #ffffff 0%, #fbfcfe 100%);
}

.brand-strip-copy h2 {
  font-size: 2rem;
}

.section-heading h2 {
  letter-spacing: -0.025em;
}

.company-grid .image-frame img {
  height: 520px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1199.98px) {
  .enterprise-copy h1 {
    font-size: 2.65rem;
  }
}

@media (max-width: 991.98px) {
  .hero-enterprise {
    background:
      linear-gradient(180deg, rgba(7,18,40,0.95) 0%, rgba(10,24,52,0.86) 60%, rgba(12,21,39,0.86) 100%),
      url('../img/values-4.jpg') center center / cover no-repeat;
    padding: 86px 0 74px;
  }

  .executive-card {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .enterprise-copy h1 {
    font-size: 2.15rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .executive-card {
    padding: 24px;
  }

  .executive-card h2 {
    font-size: 1.65rem;
  }

  .company-grid .image-frame img {
    height: auto;
  }
}
