/* ════════════════════════════════════════
       DESIGN TOKENS
    ════════════════════════════════════════ */
:root {
  --primary: #5d9b59;
  --primary-dark: #3e7039;
  --primary-light: #7dbb78;
  --primary-xlight: #e8f5e7;
  --primary-tint: #f0faf0;

  --accent: #f59e0b;
  --accent-light: #fef3c7;
  --accent-dark: #d97706;

  --od-blue: #1a6fe8;
  --od-blue-light: #d8e6ff;

  --surface: #ffffff;
  --surface-2: #f7faf7;
  --surface-3: #eff7ef;
  --bg: #f4f9f4;

  --text-heading: #142314;
  --text-body: #2d4a2d;
  --text-muted: #607060;
  --text-faint: #8fa38f;

  --border: #d4e8d3;
  --border-light: #e8f2e8;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(93, 155, 89, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md:
    0 4px 12px rgba(93, 155, 89, 0.12), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 8px 30px rgba(93, 155, 89, 0.16), 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow-xl:
    0 20px 60px rgba(93, 155, 89, 0.18), 0 8px 16px rgba(0, 0, 0, 0.1);

  --font: "Open Sans", sans-serif;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ════════════════════════════════════════
       UTILITY
    ════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-xlight);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-eyebrow .material-icons-round {
  font-size: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title .hi {
  color: var(--primary);
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.btn-primary-sm:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-primary-sm .material-icons-round {
  font-size: 17px;
}

/* ════════════════════════════════════════
       HERO / BANNER
    ════════════════════════════════════════ */
.hero {
  margin-top: 48px;
  padding: 80px 0 0;
  background: linear-gradient(160deg, #f0faf0 0%, #ffffff 45%, #fef9f0 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(93, 155, 89, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 40px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  background: var(--accent-light);
  border: 1.5px solid #fcd34d;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeDown 0.6s ease both;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 22px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-title .line2 {
  color: var(--primary);
}

.hero-title .line3 {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary) 0%, #3e7039 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
  margin-bottom: 44px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: white;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(93, 155, 89, 0.35);
}

.btn-hero-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(93, 155, 89, 0.4);
}

.btn-hero-primary .material-icons-round {
  font-size: 19px;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: var(--radius-full);
  background: white;
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--border);
  transition: all var(--transition);
}

.btn-hero-outline:hover {
  border-color: var(--primary);
  background: var(--primary-xlight);
  transform: translateY(-2px);
}

.btn-hero-outline .material-icons-round {
  font-size: 19px;
}

/* Hero trust indicators */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}

.trust-stat {
  display: flex;
  flex-direction: column;
}

.trust-stat .num {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.trust-stat .lbl {
  font-size: 12px;
  color: var(--text-faint);
  font-weight: 600;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 1;
  animation: fadeLeft 0.8s 0.2s ease both;
}

.dashboard-mockup {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
}

.dash-topbar {
  background: var(--primary);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-topbar-left img {
  height: 24px;
  filter: brightness(10);
}

.dash-topbar span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
}

.dash-topbar-right {
  display: flex;
  gap: 8px;
}

.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.dash-body {
  padding: 20px;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.dash-metric {
  background: var(--primary-tint);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px;
}

.dash-metric .metric-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 6px;
}

.dash-metric .metric-val {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-dark);
}

.dash-metric .metric-change {
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 2px;
}

.dash-table-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 8px;
  padding: 8px 10px;
  background: var(--surface-3);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 8px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  align-items: center;
  transition: background var(--transition);
}

.dash-row:hover {
  background: var(--primary-tint);
}

.dash-row .item-name {
  font-weight: 600;
  color: var(--text-heading);
}

.dash-row .badge-stock {
  display: inline-flex;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
}

.badge-green {
  background: #d1fae5;
  color: #065f46;
}

.badge-yellow {
  background: #fef3c7;
  color: #92400e;
}

.badge-red {
  background: #fee2e2;
  color: #991b1b;
}

/* Floating integration chip */
.integration-chip {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1.5px solid var(--od-blue-light);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(26, 111, 232, 0.15);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  color: var(--od-blue);
}

.integration-chip img {
  height: 20px;
}

.integration-chip .chip-arrow {
  font-size: 16px;
}

/* hero wave bottom */
.hero-wave {
  margin-top: 80px;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
}

/* ════════════════════════════════════════
       BUSINESS TIERS STRIP
    ════════════════════════════════════════ */
.tiers-strip {
  background: var(--primary);
  padding: 24px 0;
}

.tiers-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}

.tier-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.tier-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tier-icon .material-icons-round {
  font-size: 22px;
  color: white;
}

.tier-item strong {
  font-size: 15px;
  font-weight: 700;
  display: block;
  color: white;
}

.tier-item span {
  font-size: 12px;
  opacity: 0.8;
}

.tier-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
}

/* ════════════════════════════════════════
       FEATURES
    ════════════════════════════════════════ */
.features {
  padding: 96px 0;
  background: white;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-header .section-sub {
  margin: 0 auto;
}

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

.feature-card {
  background: var(--surface-2);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card.featured {
  background: linear-gradient(145deg, var(--primary-tint) 0%, white 100%);
  border-color: var(--primary);
  grid-column: span 1;
}

.feature-card.featured::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon .material-icons-round {
  font-size: 26px;
  color: var(--primary);
}

.feature-card.featured .feature-icon {
  background: var(--primary);
}

.feature-card.featured .feature-icon .material-icons-round {
  color: white;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--primary-xlight);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
}

.feature-tag .material-icons-round {
  font-size: 12px;
}

/* Big feature spotlight */
.feature-spotlight {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--primary-tint);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.spotlight-content {
  padding: 48px 40px;
}

.spotlight-content .section-title {
  font-size: clamp(24px, 3vw, 34px);
}

.spotlight-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.spotlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-body);
}

.spotlight-list .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.spotlight-list .check .material-icons-round {
  font-size: 13px;
}

.spotlight-visual {
  background: var(--primary);
  height: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.spotlight-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.receipt-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 280px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.receipt-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border);
}

.receipt-header .r-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--primary-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
}

.receipt-header .r-icon .material-icons-round {
  font-size: 18px;
  color: var(--primary);
}

.receipt-header h4 {
  font-size: 13px;
  font-weight: 700;
}

.receipt-header span {
  font-size: 11px;
  color: var(--text-muted);
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 5px 0;
}

.receipt-row .r-name {
  color: var(--text-muted);
}

.receipt-row .r-val {
  font-weight: 600;
  color: var(--text-heading);
}

.receipt-total {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 2px solid var(--primary);
}

.receipt-total .r-name {
  font-weight: 700;
  font-size: 14px;
}

.receipt-total .r-val {
  font-weight: 800;
  font-size: 16px;
  color: var(--primary);
}

.receipt-status {
  margin-top: 14px;
  background: #d1fae5;
  color: #065f46;
  border-radius: var(--radius-full);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.receipt-status .material-icons-round {
  font-size: 15px;
}

/* ════════════════════════════════════════
       PRICING / PLANS
    ════════════════════════════════════════ */
.pricing {
  padding: 96px 0;
  background: var(--bg);
}

.pricing-header {
  text-align: center;
  margin-bottom: 52px;
}

.pricing-header .section-sub {
  margin: 0 auto;
}

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

.plan-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.plan-card.popular {
  border-color: var(--primary);
  background: linear-gradient(175deg, var(--primary-tint) 0%, white 40%);
  transform: scale(1.03);
}

.plan-card.popular:hover {
  transform: scale(1.03) translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.plan-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.plan-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.plan-price {
  margin-bottom: 24px;
}

.plan-price .currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}

.plan-price .amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.04em;
  line-height: 1;
}

.plan-price .period {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.plan-price .note {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 4px;
}

.plan-divider {
  height: 1px;
  background: var(--border-light);
  margin: 20px 0;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
}

.plan-features li .material-icons-round {
  font-size: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-features li.off {
  color: var(--text-faint);
}

.plan-features li.off .material-icons-round {
  color: var(--text-faint);
}

.btn-plan {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-plan-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}

.btn-plan-outline:hover {
  border-color: var(--primary);
  background: var(--primary-xlight);
}

.btn-plan-filled {
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 14px rgba(93, 155, 89, 0.3);
}

.btn-plan-filled:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(93, 155, 89, 0.35);
}

/* ════════════════════════════════════════
       ONEDELIVER INTEGRATION
    ════════════════════════════════════════ */
.integration {
  padding: 96px 0;
  background: white;
}

.integration-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.integration-visual {
  position: relative;
}

.integration-main-card {
  background: linear-gradient(145deg, #1a6fe8 0%, #0d47a1 100%);
  border-radius: var(--radius-xl);
  padding: 36px;
  color: white;
  box-shadow: 0 20px 60px rgba(26, 111, 232, 0.3);
}

.integration-main-card .int-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.integration-main-card img {
  height: 40px;
  filter: brightness(10);
}

.integration-main-card h3 {
  font-size: 20px;
  font-weight: 700;
}

.integration-main-card p {
  font-size: 13px;
  opacity: 0.8;
}

.int-flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.int-step {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.int-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.int-step-text {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
}

.int-connector {
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-light);
  z-index: 2;
}

.int-connector .material-icons-round {
  font-size: 24px;
  color: var(--primary);
}

.int-finventory-chip {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}

.int-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
  margin-bottom: 28px;
}

.int-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  background: var(--primary-xlight);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid var(--border);
}

.int-badge .material-icons-round {
  font-size: 16px;
}

.int-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.int-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.int-benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--primary-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.int-benefit-icon .material-icons-round {
  font-size: 20px;
  color: var(--primary);
}

.int-benefit h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.int-benefit p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════
       FAQ
    ════════════════════════════════════════ */
.faq {
  padding: 96px 0;
  background: var(--bg);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: flex-start;
}

.faq-sidebar {
  position: sticky;
  top: 88px;
}

.faq-sidebar .section-sub {
  margin-top: 16px;
}

.faq-contact-cta {
  margin-top: 28px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: white;
}

.faq-contact-cta p {
  font-size: 14px;
  opacity: 0.88;
  margin-bottom: 14px;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.faq-item:hover {
  border-color: var(--border);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.faq-question h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
  flex: 1;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background var(--transition),
    transform var(--transition);
}

.faq-icon .material-icons-round {
  font-size: 18px;
  color: var(--text-muted);
}

.faq-item.open .faq-icon {
  background: var(--primary);
  transform: rotate(180deg);
}

.faq-item.open .faq-icon .material-icons-round {
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ════════════════════════════════════════
       CONTACT
    ════════════════════════════════════════ */
.contact {
  padding: 96px 0;
  background: white;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: flex-start;
}

.contact-info .section-sub {
  margin-top: 16px;
}

.contact-methods {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--surface-2);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-body);
  transition: all var(--transition);
}

.contact-method:hover {
  border-color: var(--primary);
  background: var(--primary-tint);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon .material-icons-round {
  font-size: 22px;
  color: var(--primary);
}

.contact-method strong {
  font-size: 14px;
  font-weight: 700;
  display: block;
  color: var(--text-heading);
}

.contact-method span {
  font-size: 13px;
  color: var(--text-muted);
}

.contact-form-card {
  background: var(--surface-2);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.contact-form-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-body);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-heading);
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(93, 155, 89, 0.12);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235d9b59' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: white;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(93, 155, 89, 0.3);
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(93, 155, 89, 0.4);
}

.btn-submit .material-icons-round {
  font-size: 19px;
}

/* ════════════════════════════════════════
       ANIMATIONS
    ════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ════════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .plan-card.popular {
    transform: none;
  }

  .integration-inner {
    grid-template-columns: 1fr;
  }

  .int-connector {
    display: none;
  }

  .faq-inner {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .btn-primary-sm {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

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

  .hero-visual {
    display: none;
  }

  .tiers-inner .tier-sep {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-spotlight {
    grid-template-columns: 1fr;
  }

  .spotlight-visual {
    min-height: 280px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 28px 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 48px 0 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    justify-content: center;
  }
}

/* scrollbar */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* toast */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--text-heading);
  color: white;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition:
    opacity 0.3s,
    transform 0.3s;
  z-index: 9999;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast .material-icons-round {
  color: var(--primary-light);
  font-size: 18px;
}
