/* ============================================================
   EnergyX 369 — Enterprise AI Operating System
   Redesign visual sesuai referensi (cream hero, dark AI-agent
   section, card-style pricing, light footer)
   ============================================================ */

:root {
  /* ── Warna Brand (dipakai lewat inline style var() di HTML) ── */
  --color-brand-blue: #285296;
  --color-brand-yellow: #ff9c00;
  --color-brand-red: #c81014;

  /* ── Hero (dark, foto latar dari internet) ── */
  --hero-bg-image: url("assets/backgroundhome.avif");
  --color-hero-overlay-1: rgba(12, 14, 18, 0.8);
  --color-hero-overlay-2: rgba(12, 14, 18, 0.9);

  /* ── Warna Utama ── */
  --color-accent: #e35f26;
  --color-accent-hover: #c74e1b;
  --color-text: #16181c;
  --color-text-ftr: #ffffff;
  --color-text-secondary: #4a4e56;
  --color-text-muted: #6d7178;

  /* ── Background ── */
  --color-bg: #ffffff;
  --color-bg-cream: #f7f3ed;
  --color-bg-alt: #faf8f5;
  --color-bg-dark: #23262b;
  --color-bg-dark-alt: #2c2f35;
  --color-bg-footer: #2c2f35;

  /* ── Border ── */
  --color-border: #e7e2d9;
  --color-border-light: #efebe4;
  --color-border-dark: #3a3d43;

  /* ── Tipografi ── */
  --font-heading: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* ── Layout ── */
  --container-max: 1240px;
  --section-gap: 5.5rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  /* ── Shadow ── */
  --shadow-sm: 0 1px 3px rgba(20, 20, 20, 0.05);
  --shadow-md: 0 8px 24px rgba(20, 20, 20, 0.07);
  --shadow-lg: 0 20px 45px rgba(20, 20, 20, 0.12);
}

/* ════════════════════════════════════════════════════════════
   RESET & BASE
   ════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 84px;

  /* KUNCI 1: Cegah bocor samping dari level HTML */
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-secondary);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* KUNCI 2: Pastikan body juga mengunci lebar layar */
  width: 100%;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* ════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ════════════════════════════════════════════════════════════ */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

h1 {
  font-size: 2.9rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.15rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

/* ── Section Eyebrow (label kecil di atas heading, dengan nomor) ── */
.section-header {
  counter-reset: section-counter;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.9rem;
}

.section-eyebrow::before {
  counter-increment: section-counter;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* Nomor eyebrow di dalam dark-section pakai warna terang */
.dark-section .section-eyebrow::before,
#ai-employee .section-eyebrow::before {
  color: rgba(255, 255, 255, 0.45);
}

/* Matikan penomoran duplikat di h2 (versi lama) */
.section-header h2::before {
  content: none;
}

/* ════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  line-height: 1.4;
  background: transparent;
  text-align: center;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(227, 95, 38, 0.28);
}

.btn-yellow {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
}
.btn-yellow:hover {
  background: #2c2f35;
  border-color: #2c2f35;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.btn-outline-light {
  border-color: var(--color-border);
  color: var(--color-text);
  background: #fff;
}
.btn-outline-light:hover {
  border-color: var(--color-text);
  background: var(--color-bg-cream);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border-light);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo img {
  display: block;
  height: 48px;      /* tinggi logo */
  width: auto;       /* lebar mengikuti rasio asli */
  max-width: 100%;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0 1.5rem 0 0;
}

.nav-links li {
  display: inline-flex;
}

.nav-links a {
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
  white-space: nowrap;
}
.nav-links li:first-child a {
  color: var(--color-text);
  font-weight: 700;
}
.nav-links a:hover {
  color: var(--color-accent);
  background: rgba(227, 95, 38, 0.06);
}

.nav-links a.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-accent);
  color: #fff !important;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  margin-left: 0.75rem;
  font-weight: 600;
}
.nav-links a.nav-cta::after {
  font-size: 0.85em;
  line-height: 1;
}
.nav-links a.nav-cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(227, 95, 38, 0.25);
}

/* ── Hamburger (mobile) ── */
.nav-toggle {
  display: none;
  position: relative;
  top: auto;
  right: auto;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin: 0;
}

.nav-toggle .hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle .hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── Mobile Nav — Sidebar dari kanan ke kiri — Fix ── */
@media (max-width: 992px) {
  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    width: 85vw;
    min-height: 100vh;
    min-height: 100dvh;
    background: #e05a26;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 2.5rem;

    gap: 0;
    z-index: 9999;
    overflow-y: auto;
    border: none;
    align-items: stretch;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.active {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-links::before {
    position: fixed;
    inset: 0;
    right: 85vw;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .nav-links.active::before {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: auto;
    list-style: none;
  }

  .nav-links a {
    display: block;
    padding: 0.9rem 0;
    font-size: clamp(18px, 4.5vw, 26px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff !important;
    border-bottom: 1px solid rgba(46, 45, 45, 0.224);
    text-align: left;
    border-radius: 0;
    transition: opacity 0.2s ease;
  }
  .nav-links a:hover {
    opacity: 0.7;
  }

  .nav-links a.nav-cta {
    display: inline-flex;
    align-items: center;

    justify-content: center;

    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 3rem;
    background: #fff;
    color: #e05a26 !important;
    padding: 1.1rem 1.5rem;
    margin-left: 0;
    border-radius: 0;
    width: 100%;
    border-bottom: none;
    text-align: center;
  }

  /* KUNCI 8: Tombol burger/close agar terlihat di bg gelap */
  .nav-toggle {
    display: block;
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10001;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .hamburger span {
    background-color: var(--color-nav-text, #333);
  }

  .nav-toggle.active .hamburger span {
    background-color: #fff;
  }

  .nav-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .nav-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ════════════════════════════════════════════════════════════
   HERO — cream background, two columns
   ════════════════════════════════════════════════════════════ */
.hero {
  padding-top: 132px;
  padding-bottom: 0;
  background:
    linear-gradient(
      100deg,
      var(--color-hero-overlay-2) 0%,
      var(--color-hero-overlay-1) 45%,
      rgba(12, 14, 18, 0.55) 100%
    ),
    var(--hero-bg-image) center 30% / cover no-repeat;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  padding-bottom: 7rem;
}

.hero-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
  color: #fff;
}
.accent-highlight {
  color: var(--color-accent);
  font-style: italic;
  font-weight: 800;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 0.75rem;
  max-width: 46ch;
}
.hero-desc em {
  color: #fff;
  font-style: italic;
}

.hero-quote {
  display: flex;
  flex-direction: column;
  order: 3;
  margin: 0 0 0.5rem;
  padding: 0;
  border-left: none;
  background: transparent;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  order: 4;
}

.hero-actions .btn-outline-light {
  display: none;
}
.hero-actions .btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.hero-actions .btn-yellow:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}
.hero-actions .btn-yellow::after {
  content: "↗";
  font-size: 0.85em;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-visual-bright,
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-lg);
  background: var(--color-bg);
  border: none;
  padding: 1.75rem 1.9rem;
}

.hero-visual img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

.hero-visual-overlay {
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-visual-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid var(--color-border-light);
  padding-bottom: 0.9rem;
  margin-bottom: 1rem;
}

.hero-visual-title {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}
.hero-visual-title strong {
  color: var(--color-text);
  font-weight: 700;
}

.hero-visual-input {
  background: transparent;
  padding: 0 0 1rem;
  border-radius: 0;
  font-size: 0.85rem;
  font-style: italic;
  border-left: none;
  margin-bottom: 0.6rem;
  color: var(--color-text-secondary);
  border-bottom: 1px dashed var(--color-border);
}
.hero-visual-output {
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-size: 0.82rem;
  border-left: none;
  color: var(--color-text-secondary);
  line-height: 1.8;
}
.hero-visual-output strong:first-child {
  color: #1d8348;
  font-size: 0.88rem;
}

.hero-visual-bright::after,
.hero-visual::after {
  content: "↗";
  position: absolute;
  right: -9px;
  bottom: -18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 18px rgba(227, 95, 38, 0.4);
}

/* ── Responsive Hero ── */
@media (max-width: 1440px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding-top: 120px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-visual img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
  .hero {
    padding-top: 100px;
    padding-bottom: 2.5rem;
  }
  .hero-title {
    font-size: 1.7rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-visual img {
    height: 160px;
  }
  .hero-visual-overlay {
    padding: 0;
  }
  .hero-visual-input,
  .hero-visual-output {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-label {
    font-size: 0.6rem;
  }
  .hero-visual-bright,
  .hero-visual {
    padding: 1.2rem 1.25rem;
  }
}

/* ════════════════════════════════════════════════════════════
   SECTION SPACING & HEADERS
   ════════════════════════════════════════════════════════════ */
.section-padding {
  padding: var(--section-gap) 0;
}

.section-bg {
  background: var(--color-bg);
}
.section-surface {
  background: var(--color-bg);
}
.section-bordered {
  border-top: none;
  border-bottom: none;
}

.section-header {
  text-align: left;
  margin-bottom: 3rem;
  max-width: 680px;
}

.section-header h2 {
  font-size: 2.15rem;
  margin-bottom: 0.6rem;
}
.section-header p {
  color: var(--color-text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: 0;
}

#pricing .section-header {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
#pricing .section-header p {
  margin-left: auto;
  margin-right: auto;
}

/* ════════════════════════════════════════════════════════════
   ROI METRICS BAR
   ════════════════════════════════════════════════════════════ */
.roi-metrics-bar {
  background: transparent;
  padding: 0;
  border-top: none;
  border-bottom: none;
  margin-top: -64px;
  position: relative;
  z-index: 2;
}
.roi-metrics-bar .roi-flex {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem 0.5rem;
}
.roi-metrics-bar > .container[style] {
  color: var(--color-text-muted) !important;
  margin-top: 0.85rem !important;
}

.roi-flex {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.roi-divider {
  display: none;
}

.roi-item {
  padding: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--color-border-light);
}

.roi-icon {
  font-size: 20px;
  margin-bottom: 0.8rem;
  opacity: 0.8;
  color: var(--color-border-dark);
}

.roi-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 0.6rem;
}

.roi-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  max-width: 180px;
}

.roi-item:last-of-type {
  border-right: none;
}

@media (max-width: 768px) {
  .roi-metrics-bar {
    margin-top: 1.5rem;
    padding: 0 1rem;
  }

  .roi-flex {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .roi-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border-light);
    padding: 1rem 1.25rem;
    min-height: auto;
  }

  .roi-item:last-child {
    border-bottom: none;
  }

  .roi-number {
    font-size: 1.8rem;
  }

  .roi-label {
    font-size: 0.8rem;
  }
}

/* ════════════════════════════════════════════════════════════
   VIDEO DEMO
   ════════════════════════════════════════════════════════════ */
.demo-video-card {
  max-width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #111;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ════════════════════════════════════════════════════════════
   CASE STUDIES
   ════════════════════════════════════════════════════════════ */
#cases {
  background: var(--color-bg-alt);
}

.uniform-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.uniform-card {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem 3rem;
}
.uniform-card:first-child {
  padding-top: 0.5rem;
}
.uniform-card:last-child {
  border-bottom: none;
}

.uniform-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  background: rgba(227, 95, 38, 0.09);
  color: var(--color-accent);
  width: max-content;
  grid-column: 1;
}

.uniform-card h3 {
  font-size: 1.2rem;
  grid-column: 1;
  margin-bottom: 0.35rem;
  margin-top: 0.75rem;
}

.case-highlight {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-accent);
  background: transparent;
  padding: 0;
  border-radius: 0;
  grid-column: 1;
  width: auto;
  min-width: 0;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 0.1rem;
}

.case-highlight-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  grid-column: 1;
  margin-bottom: 0.5rem;
}

.case-challenge {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: start;
  line-height: 1.75;
}
.case-challenge strong {
  color: var(--color-text);
}
.case-solution {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--color-text-secondary);
  grid-column: 2;
  grid-row: 4;
  align-self: start;
  line-height: 1.75;
  border-left: 3px solid var(--color-accent);
  background: rgba(227, 95, 38, 0.05);
  padding: 0.85rem 1.1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 0.9rem;
}
.case-solution strong {
  color: var(--color-accent);
  font-style: normal;
}

@media (max-width: 768px) {
  .uniform-card {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding: 2rem 0;
  }
  .case-challenge,
  .case-solution {
    grid-column: 1;
    grid-row: auto;
  }
  .case-highlight {
    width: 100% !important;
    font-size: 2.1rem;
  }
}

/* ════════════════════════════════════════════════════════════
   AI AGENTS — Dark section
   ════════════════════════════════════════════════════════════ */
#ai-employee {
  background: var(--color-bg-dark);
}
#ai-employee .section-eyebrow {
  color: var(--color-accent);
}
#ai-employee .section-header h2 {
  color: #fff;
}
#ai-employee .section-header p {
  color: rgba(255, 255, 255, 0.55);
}

.ai-agents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.agent-card {
  background: var(--color-bg-dark-alt);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}
.agent-card:hover {
  background: var(--color-bg-dark-alt);
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.agent-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 1.1rem;
  padding-bottom: 0;
  border-bottom: none;
}
.agent-avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-bottom: 1rem;
  background: var(--color-accent) !important;
}
.fin-avatar,
.scm-avatar,
.rev-avatar,
.hr-avatar {
  background: var(--color-accent) !important;
}

.agent-card h3 {
  font-size: 1rem;
  margin: 0;
  color: #fff;
}

.agent-skills {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.9rem;
}
.agent-skills li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.agent-skills svg {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .ai-agents-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .ai-agents-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════════
   PRICING — Card-style table
   ════════════════════════════════════════════════════════════ */
#pricing {
  background: var(--color-bg);
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.tab-btn {
  flex: 1;
  min-width: 0;
  padding: 0.6rem 0.4rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 50px;

  font-weight: 600;
  font-size: clamp(0.6rem, 2.8vw, 0.8rem);

  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.2s;

  white-space: normal;
  text-align: center;
}

.tab-btn:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
}
.tab-btn.active {
  color: #fff;
  background: var(--color-text);
  border-color: var(--color-text);
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  border: none;
  border-radius: 0;
  margin-bottom: 1rem;
  background: transparent;
  padding: 1.5rem 0.5rem 0.5rem;
  scrollbar-width: thin;
}
.table-responsive::-webkit-scrollbar {
  height: 6px;
}
.table-responsive::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 999px;
}

.enterprise-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 1.5rem 0;
  font-size: 0.85rem;
  min-width: 820px;
  table-layout: fixed;
}
.enterprise-table th:first-child,
.enterprise-table td:first-child {
  width: 190px;
}

.enterprise-table th,
.enterprise-table td {
  padding: 1rem 1.4rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border-light);
  border-right: none;
  background: var(--color-bg);
  vertical-align: middle;
}
.enterprise-table th:first-child,
.enterprise-table td:first-child {
  background: transparent;
  border-bottom-color: transparent;
  padding-left: 0.25rem;
  padding-right: 0.75rem;
  text-align: left;
  font-size: 0.82rem;
  color: var(--color-text-secondary);
}

.enterprise-table th:not(:first-child),
.enterprise-table td:not(:first-child) {
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  box-shadow: 0 1px 0 var(--color-border);
}
.enterprise-table thead th:not(:first-child) {
  border-top: 1px solid var(--color-border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}
.enterprise-table tbody tr:last-child td:not(:first-child) {
  border-bottom: 1px solid var(--color-border);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding-bottom: 2rem;
}
.enterprise-table tbody tr:last-child td:not(:first-child) {
  background: var(--color-bg-alt);
}
.enterprise-table th {
  background: var(--color-bg);
  font-weight: 700;
}
.enterprise-table td.text-left,
.enterprise-table th.text-left {
  text-align: left;
}
.enterprise-table
  tbody
  tr:nth-child(odd)
  td:not(:first-child):not(.highlight-col) {
  background: var(--color-bg-alt);
}
.enterprise-table tbody tr td:not(:first-child) {
  transition: background 0.15s;
}

.highlight-col {
  background: #fffaf6 !important;
  border-left: 2px solid var(--color-accent) !important;
  border-right: 2px solid var(--color-accent) !important;
  box-shadow: var(--shadow-lg) !important;
  position: relative;
  transform: scale(1.035);
  z-index: 3;
}

thead .highlight-col {
  border-top: 2px solid var(--color-accent) !important;
}
tbody tr:last-child .highlight-col {
  border-bottom: 2px solid var(--color-accent) !important;
  background: #fff5ee !important;
}
tbody tr:nth-child(odd) .highlight-col {
  background: #fff5ee !important;
}

.plan-spacer {
  height: 0.25rem;
}
.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 10px rgba(227, 95, 38, 0.35);
}
.plan-name {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.plan-price {
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
}
.plan-price .period {
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.plan-billed {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  margin-top: 0.4rem;
  line-height: 1.6;
}
.plan-billed del {
  opacity: 0.65;
}
.plan-billed strong {
  color: var(--color-text-secondary);
}

.plan-corporate-cta {
  background: var(--color-accent) !important;
  color: #fff !important;
  border-color: var(--color-accent) !important;
  box-shadow: 0 8px 18px rgba(227, 95, 38, 0.3);
}
.plan-corporate-cta:hover {
  background: var(--color-accent-hover) !important;
  transform: translateY(-2px);
}

.tooltip-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  font-size: 0.55rem;
  font-weight: 700;
  margin-left: 4px;
  cursor: help;
  border: 1px solid var(--color-border);
  vertical-align: middle;
}
.tooltip-trigger:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* ── Add-ons ── */
.add-ons-wrapper {
    max-width: 1000px;
    margin: 40px auto 0 auto;
    padding: 20px;
}

.add-ons-wrapper-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.add-ons-wrapper-note {
    font-size: 1rem;
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.addon-card {
    background: #ffffff;
    border: 1px solid rgba(212, 99, 29, 0.424);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.addon-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.addon-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
}

.addon-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.promo-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #e53e3e;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.old-price {
    font-size: 0.9rem;
    color: #a0aec0;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

.price-unit {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 2px;
}

.addon-card.action-card {
    grid-column: 1 / -1; 
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: var(--color-bg);
    border: 1px dashed #cbd5e0; 
    padding: 32px;
    margin-top: 8px;
}

.addon-card.action-card .addon-info {
    max-width: 70%;
}

.addon-card.action-card .addon-desc {
    color: var(--color-accent);
    margin-top: 6px;
    font-size: 0.95rem;
}

.addon-action .btn {
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 50px;
    white-space: nowrap;
    border: none !important;
}

@media (max-width: 768px) {
    .addons-grid {
        grid-template-columns: 1fr;
    }
    .addon-card.action-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .addon-card.action-card .addon-info {
        max-width: 100%;
    }
}

.enterprise-card {
  display: flex;
  flex-direction: column; 
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  padding: 2.5rem 2rem !important;
  overflow: hidden;
}

.enterprise-card-highlighted {
  border-color: var(--color-border); 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.enterprise-info {
  padding: 2rem 1.5rem;
}

.section-eyebrow.eyebrow-yellow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.enterprise-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
}

.enterprise-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.enterprise-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.enterprise-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  padding: 0.5rem 0;
}

.enterprise-features svg {
  flex-shrink: 0;
}

.enterprise-action {
  padding: 2rem 1.5rem;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
}

.enterprise-price-label {
  font-size: 0.8rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 900;
  margin: 0.25rem 0;
  display: block;
}

.enterprise-price-sublabel {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.enterprise-action-cta {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background-color: #e35f26;
  color: var(--color-bg);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.enterprise-action-cta:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}


@media (min-width: 868px) {
  .enterprise-card {
    flex-direction: row; 
    align-items: stretch;
  }

  .enterprise-info {
    flex: 1;
    padding: 3rem;
  }

  .enterprise-action {
    width: 360px;
    padding: 3rem;
    border-top: none;
    border-left: 1px solid var(--color-border-light);
    justify-content: center;
  }

  .enterprise-info h3 {
    font-size: 2rem;
  }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .enterprise-table {
    border-spacing: 1rem 0;
    min-width: 700px;
  }
  .enterprise-card {
    padding: 2rem;
    gap: 2rem;
  }
  .highlight-col {
    transform: scale(1.02);
  }
}

@media (max-width: 768px) {
  .pricing-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
  }
  .pricing-tabs::-webkit-scrollbar {
    height: 4px;
  }
  .tab-btn {
    flex-shrink: 0;
  }

  .compact-table {
    min-width: 480px;
  }

  .enterprise-card {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 1.75rem;
  }
  .enterprise-features {
    grid-template-columns: 1fr;
  }
  .enterprise-action {
    min-width: auto;
    width: 100%;
  }

  #tab-sme .table-responsive {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    padding: 0.75rem 0 1.25rem;
  }
  #tab-sme .enterprise-table {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 80vw);
    grid-template-rows: repeat(8, auto);
    column-gap: 1rem;
    row-gap: 0;
    width: max-content;
    min-width: 0;
    table-layout: auto;
    border-spacing: 0;
    font-size: 0.85rem;
    padding: 0 1.25rem;
  }
  #tab-sme .enterprise-table thead,
  #tab-sme .enterprise-table tbody,
  #tab-sme .enterprise-table tr {
    display: contents;
  }

  /* Sembunyikan kolom label "Komponen Layanan" */
  #tab-sme .enterprise-table th:first-child,
  #tab-sme .enterprise-table td:first-child {
    display: none;
  }

  /* Kelompokkan tiap kolom (Starter / Business / Corporate) jadi satu kartu */
  #tab-sme .enterprise-table th:nth-child(2),
  #tab-sme .enterprise-table td:nth-child(2) {
    grid-column: 1;
  }
  #tab-sme .enterprise-table th:nth-child(3),
  #tab-sme .enterprise-table td:nth-child(3) {
    grid-column: 2;
  }
  #tab-sme .enterprise-table th:nth-child(4),
  #tab-sme .enterprise-table td:nth-child(4) {
    grid-column: 3;
  }

  #tab-sme .enterprise-table th,
  #tab-sme .enterprise-table td {
    border-left: 1px solid var(--color-border) !important;
    border-right: 1px solid var(--color-border) !important;
    border-bottom: 1px solid var(--color-border-light) !important;
    border-top: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: var(--color-bg);
    padding: 0.95rem 1.25rem;
    text-align: center;
    transform: none !important;
    width: auto;
  }
  #tab-sme .enterprise-table thead th {
    scroll-snap-align: center;
    border-top: 1px solid var(--color-border) !important;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
    padding-top: 1.9rem;
    padding-bottom: 1.5rem;
  }
  #tab-sme .enterprise-table tbody tr:last-child td {
    border-bottom: 1px solid var(--color-border) !important;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg) !important;
    padding-bottom: 1.9rem;
  }
  #tab-sme .enterprise-table tbody tr:nth-child(odd) td {
    background: var(--color-bg-alt);
  }
  #tab-sme .enterprise-table tbody tr:last-child td {
    background: var(--color-bg-alt);
  }

  /* Kartu "Corporate" (highlight) tetap ditonjolkan */
  #tab-sme .enterprise-table th:nth-child(4),
  #tab-sme .enterprise-table td:nth-child(4) {
    border-left: 2px solid var(--color-accent) !important;
    border-right: 2px solid var(--color-accent) !important;
    background: #fff5ee !important;
    box-shadow: var(--shadow-lg) !important;
  }
  #tab-sme .enterprise-table thead th:nth-child(4) {
    border-top: 2px solid var(--color-accent) !important;
  }
  #tab-sme .enterprise-table tbody tr:last-child td:nth-child(4) {
    border-bottom: 2px solid var(--color-accent) !important;
  }

  #tab-sme .plan-price {
    font-size: 1.55rem;
  }
}

@media (max-width: 480px) {
  .tab-btn {
    padding: 0.5rem 1.1rem;
    font-size: 0.75rem;
  }
  .add-ons-wrapper-title {
    font-size: 1.05rem;
  }
  .enterprise-info h3 {
    font-size: 1.2rem;
  }
  .enterprise-action .price-amount {
    font-size: 1.6rem;
  }
  .enterprise-card {
    padding: 1.25rem;
    border-radius: var(--radius-md);
  }
  .enterprise-action {
    padding: 1.25rem;
  }
  .plan-badge {
    font-size: 0.58rem;
    padding: 0.3rem 0.7rem;
  }
  #tab-sme .enterprise-table {
    grid-template-columns: repeat(3, 84vw);
  }
}
/* ════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════ */
#contact {
  background: var(--color-bg);
  padding: 6rem 0;
}

/* ===============================
   Layout
================================== */

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 110px;
  max-width: 450px;
}

.contact-info h2 {
  font-size: 2rem;
  margin: 0.8rem 0 1rem;
}

.contact-info p {
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* ===============================
   Card
================================== */

.contact-form-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  width: 100%;
}

/* ===============================
   Privacy Notice
================================== */

.privacy-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.privacy-notice svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-accent);
}

.privacy-notice-title {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.privacy-notice-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ===============================
   Form
================================== */

#waForm {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: 0.8rem 0.2rem;
  color: var(--color-text);
  font-size: 0.95rem;
  outline: none;
  transition: 0.25s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--color-accent);
}

#waForm > .form-group {
  width: 100%;
}

/* ===============================
   Button
================================== */

button[type="submit"].btn {
  width: 100%;
  padding: 1rem;
  margin-top: 0.5rem;

  border: none;
  border-radius: 10px;

  background: var(--color-accent);
  color: #fff;

  font-size: 0.95rem;
  font-weight: 600;

  cursor: pointer;
  transition: 0.3s;
}

button[type="submit"].btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* ===============================
   Mobile
================================== */

@media (max-width: 890px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info {
    position: static;
    max-width: 100%;
    text-align: left;
  }

  .contact-info h2,
  .contact-info p {
    text-align: left;
  }

  .contact-form-card {
    max-width: 100%;
    margin: 0;
  }
}

/* ════════════════════════════════════════════════════════════
   TOOLTIP
   ════════════════════════════════════════════════════════════ */
.tooltip-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  font-size: 0.5rem;
  font-weight: 700;
  margin-left: 4px;
  cursor: help;
  border: 1px solid var(--color-border);
}
.tooltip-trigger:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* ════════════════════════════════════════════════════════════
   FOOTER — light section
   ════════════════════════════════════════════════════════════ */
.footer {
  padding: 3.5rem 0 2rem;
  background: var(--color-bg-footer);
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  transition: color 0.15s;
}
.footer-links a:hover {
  color: var(--color-accent);
}
.footer .logo-image {
  display: block;
  height: 48px;     
  width: auto;      
  max-width: 100%;
}

.footer p {
  color: var(--color-text-muted) !important;
}
.footer h4 {
  color: var(--color-text-ftr) !important;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE FINE-TUNE (1920 / 1440 / 1024 / 768 / 480)
   ════════════════════════════════════════════════════════════ */
@media (min-width: 1600px) {
  .container {
    max-width: 1320px;
  }
  .hero-title {
    font-size: 3.1rem;
  }
}

@media (max-width: 1440px) {
  :root {
    --section-gap: 4.75rem;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-gap: 3.75rem;
  }
  h2 {
    font-size: 1.85rem;
  }
  .section-header h2 {
    font-size: 1.85rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 3rem;
  }
  .section-header {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
  .roi-number {
    font-size: 1.5rem;
  }
  .enterprise-card {
    padding: 1.25rem;
  }
  .contact-form-card {
    padding: 1.1rem;
  }
}
