: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;
  }
}

/* ===== Software downloads section ===== */
.software-section {
  position: relative;
  overflow: hidden;
}

.software-section::before {
  content: "";
  position: absolute;
  inset: auto -120px 40px auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 103, 38, 0.08);
  pointer-events: none;
}

.software-feature-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 30px;
  padding: 42px;
  box-shadow: var(--shadow-soft);
}

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

.software-copy h3 {
  color: var(--text-strong);
  font-size: 2.55rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.software-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 720px;
  margin-bottom: 24px;
}

.software-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 26px;
}

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

.software-meta-item i,
.software-panel-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff3ec;
  color: var(--primary);
  font-size: 1.35rem;
  flex: 0 0 auto;
}

.software-meta-item strong {
  display: block;
  color: var(--text-strong);
  font-weight: 800;
  line-height: 1.2;
}

.software-meta-item span {
  color: var(--muted);
  font-size: 0.94rem;
}

.software-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.software-panel {
  background: linear-gradient(135deg, #0f172a 0%, #172338 100%);
  color: #fff;
  border-radius: 26px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
}

.software-panel-icon {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  margin-bottom: 18px;
}

.software-panel h4 {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.software-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.software-panel li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.software-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.software-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
  text-align: center;
}

.software-note i {
  color: var(--primary);
  font-size: 1.25rem;
}

.software-note p {
  margin: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 991.98px) {
  .software-feature-card {
    padding: 30px;
  }

  .software-meta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .software-feature-card {
    padding: 22px;
  }

  .software-copy h3 {
    font-size: 2rem;
  }

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

/* ===== Software commercial product showcase ===== */
.software-product-card {
  margin-top: 38px;
  background: linear-gradient(135deg, #ffffff 0%, #fff7f1 100%);
  border: 1px solid rgba(255, 103, 38, 0.12);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
}

.software-product-copy h3 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-strong);
}

.software-label-dark {
  background: rgba(15, 23, 42, 0.08);
  color: var(--secondary);
}

.software-bullet-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.software-bullet-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-strong);
  font-weight: 600;
}

.software-bullet-list i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 2px;
}

.software-highlight-panel {
  background: #0f172a;
  border-radius: 24px;
  padding: 28px;
  color: #fff;
  height: 100%;
}

.software-highlight-panel h4 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 22px;
}

.software-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.software-highlight-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
}

.software-highlight-item strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
}

.software-highlight-item span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  font-size: 0.96rem;
}

.software-gallery-wrap {
  margin-top: 36px;
}

.software-shot-card {
  background: #fff;
  border-radius: 22px;
  padding: 18px 18px 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  height: 100%;
}

.software-shot-card img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  margin: 12px 0 16px;
  display: block;
}

.software-shot-card h5,
.software-mobile-copy h5 {
  font-size: 1.2rem;
  color: var(--text-strong);
  margin-bottom: 8px;
  font-weight: 800;
}

.software-shot-card p,
.software-mobile-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.shot-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff3ec;
  color: var(--primary-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.software-mobile-showcase {
  margin-top: 6px;
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.software-mobile-copy {
  max-width: 520px;
}

.software-mobile-image {
  flex: 0 0 auto;
}

.software-mobile-image img {
  width: 250px;
  max-width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.12);
}

@media (max-width: 991.98px) {
  .software-product-card {
    padding: 26px;
  }

  .software-product-copy h3 {
    font-size: 1.75rem;
  }

  .software-highlight-grid {
    grid-template-columns: 1fr;
  }

  .software-mobile-showcase {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .software-product-card {
    padding: 20px;
  }

  .software-product-copy h3 {
    font-size: 1.5rem;
  }

  .software-mobile-image {
    align-self: center;
  }

  .software-mobile-image img {
    width: 210px;
  }
}

/* ===== Software showcase carousel refinement ===== */
.software-desktop-showcase {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  height: 100%;
}

.software-showcase-head {
  margin-bottom: 18px;
}

.software-showcase-head h5 {
  font-size: 1.28rem;
  font-weight: 800;
  margin: 12px 0 8px;
  color: var(--text-strong);
}

.software-showcase-head p {
  margin-bottom: 0;
  color: var(--muted);
}

.software-carousel {
  border-radius: 20px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.software-carousel .carousel-item img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top center;
  background: #edf1f7;
}

.software-carousel-caption {
  padding: 20px 22px 24px;
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.software-carousel-caption h6 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-strong);
  margin-bottom: 6px;
}

.software-carousel-caption p {
  margin-bottom: 0;
  color: var(--muted);
}

.software-carousel-indicators {
  bottom: 96px;
  margin-bottom: 0;
}

.software-carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  margin: 0 5px;
}

.software-carousel-indicators .active {
  background: var(--primary);
}

.software-carousel-control {
  width: 54px;
  height: 54px;
  top: calc(50% - 48px);
  opacity: 1;
}

.software-carousel-control .carousel-control-prev-icon,
.software-carousel-control .carousel-control-next-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(15, 23, 42, 0.72);
  background-size: 20px 20px;
}

.software-mobile-side {
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 100%;
}

.software-mobile-points {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.software-mobile-points li + li {
  margin-top: 8px;
}

.software-mobile-side .software-mobile-image {
  align-self: center;
}

.software-mobile-side .software-mobile-image img {
  width: 255px;
}

@media (max-width: 1199.98px) {
  .software-carousel .carousel-item img {
    height: 410px;
  }
}

@media (max-width: 991.98px) {
  .software-carousel-indicators {
    bottom: 88px;
  }

  .software-carousel .carousel-item img {
    height: 360px;
  }

  .software-mobile-side {
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  .software-desktop-showcase {
    padding: 18px;
  }

  .software-carousel .carousel-item img {
    height: 250px;
  }

  .software-carousel-caption {
    padding: 16px 16px 20px;
  }

  .software-carousel-indicators {
    bottom: 84px;
  }
}


/* ===== Software section premium carousel refresh ===== */
.software-experience-board {
  background: linear-gradient(135deg, #fffefc 0%, #fff7f2 100%);
  border: 1px solid rgba(255, 103, 38, 0.12);
  border-radius: 30px;
  padding: 26px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.premium-showcase,
.premium-mobile-showcase {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.software-showcase-head-split {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.software-auto-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.software-auto-pill i {
  font-size: 1.1rem;
  color: #ffb28d;
}

.software-screen-shell {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  overflow: hidden;
  background: #f6f8fb;
}

.software-screen-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: #f1f5f9;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.software-screen-dots {
  display: inline-flex;
  gap: 7px;
}

.software-screen-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.software-screen-dots span:first-child { background: #ff8e77; }
.software-screen-dots span:nth-child(2) { background: #ffd37b; }
.software-screen-dots span:nth-child(3) { background: #7fd39d; }

.software-screen-title {
  color: #475569;
  font-size: 0.94rem;
  font-weight: 700;
}

.premium-carousel {
  border: 0;
  background: transparent;
  border-radius: 0;
}

.software-media-frame {
  padding: 18px 18px 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.software-carousel .software-media-frame img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  object-position: top center;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.premium-caption {
  padding: 18px 22px 24px;
  background: #fff;
}

.premium-caption h6 {
  font-size: 1.16rem;
  margin-bottom: 7px;
}

.premium-indicators {
  bottom: 98px;
}

.premium-indicators li {
  width: 11px;
  height: 11px;
  background: rgba(15, 23, 42, 0.15);
}

.premium-indicators .active {
  background: var(--primary);
}

.premium-control {
  width: 52px;
  height: 52px;
  top: calc(50% - 54px);
}

.premium-control .carousel-control-prev-icon,
.premium-control .carousel-control-next-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(15, 23, 42, 0.72);
  background-size: 18px 18px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
}

.premium-mobile-showcase {
  padding: 24px;
}

.iphone-showcase-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.iphone-frame {
  position: relative;
  width: 280px;
  max-width: 100%;
  padding: 18px 12px 16px;
  border-radius: 42px;
  background: linear-gradient(180deg, #0d0d0f 0%, #1f2228 100%);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.iphone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 116px;
  height: 24px;
  border-radius: 0 0 18px 18px;
  background: #09090b;
  z-index: 3;
}

.software-mobile-carousel {
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
}

.software-mobile-carousel .carousel-item img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
}

.software-mobile-thumbs {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.software-thumb {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: #475569;
  padding: 10px 16px;
  line-height: 1;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.25s ease;
}

.software-thumb.active,
.software-thumb:hover {
  background: #fff3ec;
  border-color: rgba(255, 103, 38, 0.22);
  color: var(--primary-dark);
}

@media (max-width: 1199.98px) {
  .software-carousel .software-media-frame img {
    height: 410px;
  }

  .iphone-frame {
    width: 250px;
  }

  .software-mobile-carousel .carousel-item img {
    height: 520px;
  }
}

@media (max-width: 991.98px) {
  .software-experience-board {
    padding: 22px;
  }

  .software-showcase-head-split {
    flex-direction: column;
  }

  .software-auto-pill {
    align-self: flex-start;
  }

  .premium-mobile-showcase {
    margin-top: 0;
  }

  .iphone-showcase-wrap {
    align-items: flex-start;
  }

  .software-mobile-side,
  .premium-mobile-showcase {
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .software-experience-board {
    padding: 18px;
    border-radius: 24px;
  }

  .software-desktop-showcase,
  .premium-mobile-showcase {
    padding: 18px;
  }

  .software-screen-topbar {
    padding: 10px 14px;
  }

  .software-screen-title {
    font-size: 0.82rem;
  }

  .software-carousel .software-media-frame img {
    height: 250px;
    border-radius: 14px;
  }

  .premium-caption {
    padding: 16px;
  }

  .premium-indicators {
    bottom: 88px;
  }

  .premium-control {
    width: 42px;
    height: 42px;
    top: calc(50% - 48px);
  }

  .premium-control .carousel-control-prev-icon,
  .premium-control .carousel-control-next-icon {
    width: 42px;
    height: 42px;
    background-size: 14px 14px;
  }

  .iphone-frame {
    width: 240px;
    border-radius: 36px;
  }

  .iphone-notch {
    width: 98px;
    height: 20px;
  }

  .software-mobile-carousel .carousel-item img {
    height: 500px;
    border-radius: 24px;
  }
}


/* ===== Software sales section 2026 refresh ===== */
.software-product-card-premium {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf7 100%);
  border: 1px solid rgba(255, 103, 38, 0.12);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.08);
}

.software-product-card-premium .premium-copy h3 {
  font-size: 2.45rem;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.software-product-card-premium .premium-copy p {
  font-size: 1.03rem;
  line-height: 1.9;
}

.premium-bullets {
  margin-top: 24px;
}

.premium-bullets div {
  font-size: 1rem;
}

.software-live-demo {
  position: relative;
  background: linear-gradient(135deg, #fff 0%, #fff7f2 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.software-demo-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.software-demo-head h4 {
  font-size: 1.5rem;
  color: var(--text-strong);
  margin: 12px 0 8px;
  font-weight: 800;
}

.software-demo-head p {
  margin-bottom: 0;
  color: var(--muted);
}

.software-demo-stage {
  position: relative;
  min-height: 560px;
  padding-right: 170px;
}

.software-demo-desktop {
  position: relative;
  z-index: 1;
}

.software-demo-mobile {
  position: absolute;
  right: 0;
  bottom: 6px;
  width: 220px;
  z-index: 3;
}

.software-screen-shell {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  overflow: hidden;
  background: #f6f8fb;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.software-screen-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: #eef2f7;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.software-screen-dots {
  display: inline-flex;
  gap: 7px;
}

.software-screen-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.software-screen-dots span:first-child { background: #ff8e77; }
.software-screen-dots span:nth-child(2) { background: #ffd37b; }
.software-screen-dots span:nth-child(3) { background: #7fd39d; }

.software-screen-title {
  color: #475569;
  font-size: 0.94rem;
  font-weight: 700;
}

.premium-carousel {
  background: transparent;
}

.premium-carousel .carousel-inner {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.software-media-frame {
  padding: 18px 18px 8px;
}

.software-carousel .software-media-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.05);
}

.premium-caption {
  padding: 18px 22px 24px;
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.premium-caption h6 {
  font-size: 1.12rem;
  color: var(--text-strong);
  font-weight: 800;
  margin-bottom: 6px;
}

.premium-caption p {
  margin-bottom: 0;
  color: var(--muted);
}

.premium-indicators {
  bottom: 94px;
}

.premium-indicators li {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.16);
  opacity: 1;
  margin: 0 5px;
}

.premium-indicators .active {
  background: var(--primary);
  transform: scale(1.1);
}

.premium-control {
  width: 54px;
  height: 54px;
  top: calc(50% - 44px);
  opacity: 1;
}

.premium-control .carousel-control-prev-icon,
.premium-control .carousel-control-next-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(15, 23, 42, 0.72);
  background-size: 18px 18px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
}

.premium-carousel .carousel-item,
.software-mobile-carousel .carousel-item {
  transition: opacity .8s ease-in-out !important;
}

.premium-carousel .carousel-item.active .software-media-frame img,
.software-mobile-carousel .carousel-item.active img {
  animation: softwareSlideReveal 4.4s ease both;
}

@keyframes softwareSlideReveal {
  0% { opacity: .6; transform: scale(1.02); }
  100% { opacity: 1; transform: scale(1); }
}

.compact-phone-showcase {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.iphone-frame {
  position: relative;
  width: 100%;
  padding: 14px 10px 12px;
  border-radius: 40px;
  background: linear-gradient(180deg, #0d0d10 0%, #1b1e25 100%);
  box-shadow: 0 28px 54px rgba(15, 23, 42, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.iphone-notch {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 8px;
  width: 94px;
  height: 18px;
  border-radius: 0 0 14px 14px;
  background: #070709;
  z-index: 3;
}

.software-mobile-carousel {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
}

.software-mobile-carousel .carousel-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.software-mobile-thumbs {
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.software-thumb {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: #475569;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  transition: all .25s ease;
}

.software-thumb.active,
.software-thumb:hover {
  background: #fff3ec;
  border-color: rgba(255, 103, 38, 0.22);
  color: var(--primary-dark);
}

.software-benefits-strip {
  margin-top: 28px;
}

.software-benefit-card {
  height: 100%;
  border-radius: 20px;
  padding: 22px 20px;
  background: #0f172a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.software-benefit-card strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 10px;
}

.software-benefit-card span {
  display: block;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}

@media (max-width: 1199.98px) {
  .software-product-card-premium .premium-copy h3 {
    font-size: 2.1rem;
  }

  .software-demo-stage {
    min-height: 520px;
    padding-right: 150px;
  }

  .software-demo-mobile {
    width: 200px;
  }
}

@media (max-width: 991.98px) {
  .software-product-card-premium {
    padding: 26px;
  }

  .software-demo-head {
    flex-direction: column;
  }

  .software-demo-stage {
    min-height: auto;
    padding-right: 0;
  }

  .software-demo-mobile {
    position: relative;
    right: auto;
    bottom: auto;
    width: 240px;
    margin: 22px auto 0;
  }

  .premium-indicators {
    bottom: 88px;
  }
}

@media (max-width: 767.98px) {
  .software-product-card-premium {
    padding: 20px;
    border-radius: 24px;
  }

  .software-product-card-premium .premium-copy h3 {
    font-size: 1.68rem;
  }

  .software-demo-head h4 {
    font-size: 1.24rem;
  }

  .software-screen-topbar {
    padding: 10px 14px;
  }

  .software-screen-title {
    font-size: .82rem;
  }

  .software-media-frame {
    padding: 12px 12px 6px;
  }

  .premium-caption {
    padding: 14px 16px 18px;
  }

  .premium-indicators {
    bottom: 82px;
  }

  .premium-control {
    width: 42px;
    height: 42px;
    top: calc(50% - 36px);
  }

  .premium-control .carousel-control-prev-icon,
  .premium-control .carousel-control-next-icon {
    width: 42px;
    height: 42px;
    background-size: 14px 14px;
  }

  .software-demo-mobile {
    width: 215px;
  }

  .iphone-frame {
    border-radius: 34px;
  }

  .iphone-notch {
    width: 86px;
  }
}


/* ===== Final software showcase polish ===== */
.software-product-card-premium {
  border-radius: 34px;
  overflow: hidden;
}

.software-live-demo {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
  border-radius: 30px;
}

.software-demo-head {
  margin-bottom: 24px;
}

.software-demo-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 24px;
  align-items: end;
  min-height: 0;
  padding-right: 0;
}

.software-demo-desktop,
.software-demo-mobile {
  min-width: 0;
}

.software-demo-mobile {
  position: relative;
  right: auto;
  bottom: auto;
  width: 210px;
}

.software-screen-shell {
  border-radius: 26px;
  background: #f4f7fb;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.10);
}

.software-screen-topbar {
  padding: 13px 20px;
}

.premium-carousel .carousel-inner {
  border-radius: 0 0 26px 26px;
}

.software-media-frame {
  padding: 18px 18px 12px;
}

.software-carousel .software-media-frame img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: top center;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08), inset 0 0 0 1px rgba(15, 23, 42, 0.05);
}

.premium-caption {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.premium-carousel .carousel-item,
.software-mobile-carousel .carousel-item {
  opacity: 0;
  transition: opacity 1s ease-in-out !important;
}

.premium-carousel .carousel-item.active,
.software-mobile-carousel .carousel-item.active {
  opacity: 1;
}

.premium-carousel .carousel-item.active .software-media-frame img,
.software-mobile-carousel .carousel-item.active img {
  animation: softwareSlideRevealBetter 10s ease both;
}

@keyframes softwareSlideRevealBetter {
  0% { opacity: .72; transform: translateY(6px) scale(1.015); }
  18% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.premium-indicators {
  bottom: 18px;
  left: 24px;
  right: auto;
  margin: 0;
  justify-content: flex-start;
}

.premium-control {
  top: 48%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  opacity: 1;
}

.carousel-control-prev.premium-control { left: 14px; }
.carousel-control-next.premium-control { right: 14px; }

.premium-control .carousel-control-prev-icon,
.premium-control .carousel-control-next-icon {
  background-color: rgba(255, 103, 38, 0.95);
  border: 2px solid rgba(255,255,255,0.95);
  box-shadow: 0 12px 22px rgba(255, 103, 38, 0.22);
}

.compact-phone-showcase {
  gap: 12px;
}

.iphone-frame {
  padding: 13px 9px 11px;
  border-radius: 38px;
}

.software-mobile-carousel {
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}

.software-mobile-carousel .carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 22px;
}

.software-mobile-thumbs {
  gap: 8px;
}

.software-thumb {
  padding: 9px 14px;
  font-size: 0.84rem;
}

.software-benefit-card {
  border-radius: 22px;
}

@media (max-width: 1199.98px) {
  .software-demo-stage {
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 20px;
  }

  .software-demo-mobile {
    width: 190px;
  }
}

@media (max-width: 991.98px) {
  .software-demo-stage {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .software-demo-mobile {
    width: 240px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .software-live-demo {
    padding: 18px;
  }

  .premium-caption {
    min-height: auto;
  }

  .premium-indicators {
    left: 16px;
    bottom: 16px;
  }

  .premium-control {
    width: 42px;
    height: 42px;
  }

  .carousel-control-prev.premium-control { left: 8px; }
  .carousel-control-next.premium-control { right: 8px; }

  .software-demo-mobile {
    width: 210px;
  }
}


/* ===== Software section redesigned layout ===== */
.software-sales-layout {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf7 100%);
  border-radius: 34px;
  padding: 38px;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.software-sales-intro {
  max-width: 980px;
  margin: 0 auto 34px;
}

.software-sales-intro h3 {
  font-size: 2.7rem;
  line-height: 1.16;
  letter-spacing: -0.03em;
  margin: 18px auto 16px;
  max-width: 1050px;
}

.software-sales-lead {
  font-size: 1.12rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 980px;
  margin: 0 auto;
}

.software-sales-actions {
  margin-top: 26px;
}

.software-visual-board {
  margin-top: 10px;
}

.software-visual-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  padding: 26px;
}

.software-demo-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.software-demo-card-head h4 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-strong);
  margin: 14px 0 8px;
}

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

.software-demo-head-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.software-zoom-btn {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: var(--text-strong);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s ease;
}

.software-zoom-btn:hover {
  border-color: rgba(255, 103, 38, 0.25);
  color: var(--primary-dark);
  background: #fff7f2;
}

.software-screen-shell-large {
  border-radius: 28px;
}

.software-screen-shell-large .software-screen-topbar {
  padding: 14px 20px;
}

.software-media-frame-large {
  padding: 16px 16px 8px;
}

.software-screen-shell-large .premium-carousel .carousel-inner {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.software-screen-shell-large .software-media-frame img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08), inset 0 0 0 1px rgba(15, 23, 42, 0.05);
}

.software-screen-shell-large .premium-caption {
  min-height: 130px;
}

.premium-indicators {
  bottom: 18px;
  left: 24px;
  right: auto;
  margin: 0;
  justify-content: flex-start;
}

.premium-control {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  opacity: 1;
  z-index: 4;
}

.premium-control-left { left: 14px; }
.premium-control-right { right: 14px; }

.premium-control .carousel-control-prev-icon,
.premium-control .carousel-control-next-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(255, 103, 38, 0.96);
  border: 2px solid rgba(255,255,255,0.96);
  background-size: 18px 18px;
  box-shadow: 0 12px 26px rgba(255, 103, 38, 0.24);
}

.premium-carousel .carousel-item,
.software-mobile-carousel .carousel-item {
  opacity: 0;
  transition: opacity 1s ease-in-out !important;
}

.premium-carousel .carousel-item.active,
.software-mobile-carousel .carousel-item.active {
  opacity: 1;
}

.premium-carousel .carousel-item.active .software-media-frame img,
.software-mobile-carousel .carousel-item.active img {
  animation: softwarePreviewReveal 10s ease both;
}

@keyframes softwarePreviewReveal {
  0% { opacity: .72; transform: translateY(8px) scale(1.018); }
  18% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.software-mobile-hero {
  display: flex;
  flex-direction: column;
}

.software-demo-card-head-mobile {
  margin-bottom: 16px;
}

.software-mobile-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
}

.compact-phone-showcase {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.compact-phone-showcase .iphone-frame {
  width: 265px;
  max-width: 100%;
  cursor: zoom-in;
}

.software-mobile-carousel {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
}

.software-mobile-carousel .carousel-item img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.software-mobile-feature-list {
  width: 100%;
  display: grid;
  gap: 10px;
}

.software-mobile-feature-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-strong);
}

.software-mobile-feature-list i {
  color: var(--primary);
  font-size: 1.15rem;
}

.software-copy-support {
  margin-top: 28px;
}

.software-copy-card {
  background: #fff;
  border-radius: 26px;
  padding: 26px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.05);
}

.software-copy-card h4 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-strong);
  margin-bottom: 12px;
}

.compact-bullets {
  margin-top: 20px;
}

.compact-benefits {
  margin-top: 0;
}

.compact-benefits .software-benefit-card {
  min-height: 100%;
}

.software-preview-click { cursor: zoom-in; }

.software-preview-modal .modal-content {
  border: 0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(2, 6, 23, 0.28);
}

.software-preview-modal .modal-body {
  padding: 0;
}

.software-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}

.software-preview-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
}

.software-preview-modal-media {
  background: #f8fafc;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.software-preview-modal-media img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
}

.software-preview-modal-copy {
  padding: 34px 28px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.software-preview-modal-copy h5 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 16px 0 12px;
  color: var(--text-strong);
}

.software-preview-modal-copy p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}

@media (max-width: 1199.98px) {
  .software-sales-intro h3 {
    font-size: 2.35rem;
  }

  .compact-phone-showcase .iphone-frame {
    width: 240px;
  }
}

@media (max-width: 991.98px) {
  .software-sales-layout {
    padding: 28px 24px;
  }

  .software-sales-intro h3 {
    font-size: 2rem;
  }

  .software-demo-card-head,
  .software-demo-head-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .software-preview-modal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .software-sales-layout {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .software-sales-intro h3 {
    font-size: 1.68rem;
  }

  .software-sales-lead {
    font-size: 1rem;
  }

  .software-visual-card,
  .software-copy-card {
    padding: 18px;
    border-radius: 22px;
  }

  .software-demo-card-head h4 {
    font-size: 1.28rem;
  }

  .software-screen-shell-large .premium-caption {
    min-height: auto;
  }

  .premium-indicators {
    left: 16px;
    bottom: 16px;
  }

  .premium-control {
    width: 42px;
    height: 42px;
  }

  .premium-control .carousel-control-prev-icon,
  .premium-control .carousel-control-next-icon {
    width: 42px;
    height: 42px;
    background-size: 14px 14px;
  }

  .premium-control-left { left: 8px; }
  .premium-control-right { right: 8px; }

  .compact-phone-showcase .iphone-frame {
    width: 220px;
  }
}


/* ===== Software carousel polish patch ===== */
.software-visual-board .row {
  align-items: flex-start !important;
}

.software-desktop-hero,
.software-mobile-hero {
  height: auto !important;
}

.software-demo-card-head {
  margin-bottom: 18px;
}

.software-demo-card-head-mobile h4,
.software-mobile-hero .software-demo-card-head h4 {
  font-size: 1.72rem;
  line-height: 1.12;
  max-width: 260px;
  word-break: normal;
  hyphens: none;
}

.software-mobile-hero .software-demo-card-head p {
  max-width: 270px;
}

.software-demo-head-actions {
  justify-content: flex-end;
}

.software-screen-shell-large {
  overflow: hidden;
}

.software-screen-shell-large .software-screen-topbar {
  position: relative;
  z-index: 2;
}

.software-screen-shell-large .software-media-frame-large {
  padding: 22px 20px 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.software-screen-shell-large .software-media-frame img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: top center;
  background: #fff;
  border-radius: 18px;
}

.software-screen-shell-large .premium-caption {
  min-height: auto;
  padding: 20px 24px 22px;
}

.premium-carousel {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.premium-carousel .carousel-inner,
.software-mobile-carousel .carousel-inner {
  background: transparent;
}

.premium-carousel .carousel-item,
.software-mobile-carousel .carousel-item {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-right: 0;
  opacity: 0;
  transform: none !important;
  transition: opacity 1.35s cubic-bezier(.4,0,.2,1), visibility 1.35s cubic-bezier(.4,0,.2,1) !important;
  visibility: hidden;
}

.premium-carousel .carousel-item.active,
.software-mobile-carousel .carousel-item.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.premium-carousel .carousel-item-next,
.premium-carousel .carousel-item-prev,
.software-mobile-carousel .carousel-item-next,
.software-mobile-carousel .carousel-item-prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.premium-carousel .carousel-item.active .software-media-frame img,
.software-mobile-carousel .carousel-item.active img {
  animation: softwareCrossFadeZoom 10s ease both;
}

@keyframes softwareCrossFadeZoom {
  0% { opacity: .78; transform: scale(1.012); }
  14% { opacity: 1; transform: scale(1); }
  100% { opacity: 1; transform: scale(1); }
}

.premium-indicators {
  bottom: 14px;
  left: 22px;
}

.premium-control {
  top: 58%;
}

.premium-control .carousel-control-prev-icon,
.premium-control .carousel-control-next-icon {
  background-color: rgba(255, 103, 38, 0.96);
  box-shadow: 0 10px 24px rgba(255, 103, 38, 0.22);
}

.software-mobile-stage {
  gap: 14px;
}

.compact-phone-showcase .iphone-frame {
  width: 250px;
}

@media (max-width: 1199.98px) {
  .software-demo-card-head-mobile h4,
  .software-mobile-hero .software-demo-card-head h4 {
    font-size: 1.5rem;
    max-width: 220px;
  }
}

@media (max-width: 991.98px) {
  .software-demo-head-actions {
    justify-content: flex-start;
  }

  .software-demo-card-head-mobile h4,
  .software-mobile-hero .software-demo-card-head h4 {
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .software-screen-shell-large .software-media-frame-large {
    padding: 14px 14px 8px;
  }

  .premium-control {
    top: 56%;
  }

  .software-demo-card-head-mobile h4,
  .software-mobile-hero .software-demo-card-head h4 {
    font-size: 1.28rem;
    line-height: 1.15;
  }
}
