/* ============ GLOBAL STYLES ============ */

:root {
  --bg-main: #f4f9ff;
  --bg-card: #ffffff;
  --accent-green: #22c55e;
  --accent-blue: #0f9cf5;
  --accent-soft-green: rgba(34, 197, 94, 0.12);
  --accent-soft-blue: rgba(15, 156, 245, 0.08);
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-subtle: #d0e2ff;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --transition-fast: 0.18s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(15, 156, 245, 0.12), transparent 55%),
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.08), transparent 50%),
    var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

/* ============ LAYOUT WRAPPER ============ */

.page-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 18px 60px;
}

/* ============ HEADER / NAVBAR ============ */

.site-header {
  position: sticky;
  top: 10px;
  z-index: 50;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(20px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 20% 0, #22c55e, #0f9cf5 60%, #0b699c 100%);
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(15, 156, 245, 0.55);
  font-size: 20px;
  font-weight: 700;
}

.logo-text-main {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 18px;
}

.logo-text-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), border-color var(--transition-fast),
    color var(--transition-fast);
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 156, 245, 0.5);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(15, 156, 245, 0.65);
}

.btn-outline {
  background: #ffffff;
  color: var(--text-main);
  border-color: var(--border-subtle);
}

.btn-outline:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

/* ============ HERO SECTION ============ */

.hero {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.hero-left {
  position: relative;
}

.hero-tagbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 6px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.98);
  font-size: 11px;
}

.hero-kicker-pill {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent-soft-green);
  color: #15803d;
  font-size: 13px;
}

.hero-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--accent-soft-blue);
  color: #0b4a6f;
}

.hero-title {
  font-size: clamp(28px, 3.7vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  color: var(--text-muted);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-green);
}

/* HERO RIGHT CARD */

.hero-right {
  position: relative;
}

.hero-card {
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 18px 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at top, rgba(15, 156, 245, 0.14), transparent 60%),
    radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.16), transparent 60%);
  opacity: 0.9;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.hero-badge-soft {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  background: rgba(248, 250, 252, 0.98);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

.hero-card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-card-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.price-row {
  display: flex;
  gap: 10px;
  margin: 10px 0 4px;
}

.price-chip {
  flex: 1;
  padding: 8px 9px;
  border-radius: 16px;
  background: var(--accent-soft-green);
  font-size: 11px;
}

.price-chip strong {
  display: block;
  font-size: 13px;
  color: #166534;
}

.price-chip.secondary {
  background: var(--accent-soft-blue);
}

.price-chip.secondary strong {
  color: #075985;
}

.hero-list {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 0;
  font-size: 11px;
  color: var(--text-muted);
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 4px;
}

.hero-list-bullet {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid var(--accent-blue);
  display: grid;
  place-items: center;
  font-size: 9px;
  color: var(--accent-blue);
}

.hero-floating {
  position: absolute;
  right: 0;
  bottom: -18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 10px 12px;
  font-size: 11px;
  max-width: 240px;
}

.hero-floating strong {
  display: block;
  font-size: 12px;
  margin-bottom: 2px;
}

/* ============ SECTIONS GENERIC ============ */

.section {
  margin-top: 44px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-end;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.section-title {
  font-size: 19px;
  font-weight: 600;
}

.section-sub {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 480px;
}

/* ============ CARDS & GRIDS ============ */

.card {
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 16px 15px;
  font-size: 13px;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top right, rgba(15, 156, 245, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
  transition: all var(--transition-fast);
}

.card-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  background: var(--accent-soft-blue);
  color: #0b4a6f;
  margin-bottom: 8px;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.card p {
  color: var(--text-muted);
}

.pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* ============ PARTNER LOGOS MARQUEE ============ */

.partner-strip-wrapper {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 10px 14px;
  overflow: hidden;
}

.partner-strip {
  display: flex;
  gap: 16px;
  animation: marquee 22s linear infinite;
}

.partner-strip:hover {
  animation-play-state: paused;
}

.partner-logo {
  min-width: 150px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  font-size: 12px;
}

.partner-logo-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.partner-logo span {
  font-weight: 500;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ TESTIMONIALS ============ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.testimonial {
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  padding: 14px 12px;
  font-size: 12px;
}

.testimonial-company {
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

/* ============ PRICING ============ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
}

.price-card.highlight {
  border-color: var(--accent-blue);
  box-shadow: 0 22px 50px rgba(15, 156, 245, 0.3);
}

.price-plan {
  font-weight: 600;
  font-size: 15px;
}

.price-value {
  margin-top: 4px;
  font-size: 22px;
  font-weight: 700;
}

.price-value span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

.price-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.price-features {
  margin: 10px 0 12px;
  list-style: none;
  padding-left: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.price-features li {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.price-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-green);
  flex-shrink: 0;
  margin-top: 4px;
}

/* ============ STEPS ============ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  font-size: 12px;
}

.step-card {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
  padding: 12px 11px;
}

.step-number {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent-soft-green);
  color: #166534;
  font-size: 12px;
  margin-bottom: 6px;
  font-weight: 600;
}

.step-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

/* ============ FAQ & FORMS ============ */

.faq-item {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  margin-bottom: 10px;
  padding: 12px 12px 10px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
  font-size: 12px;
}

.faq-q {
  font-weight: 600;
  margin-bottom: 4px;
}

.faq-a {
  color: var(--text-muted);
}

.form-card {
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 16px 14px;
  font-size: 13px;
}

.form-row {
  margin-bottom: 10px;
}

label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 3px;
  display: block;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  padding: 8px 9px;
  background: #ffffff;
  color: var(--text-main);
  font-family: inherit;
  font-size: 12px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast);
}

input::placeholder,
textarea::placeholder {
  color: #cbd5f5;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 1px rgba(15, 156, 245, 0.35);
  background: #f9fbff;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

/* ============ FOOTER ============ */

.site-footer {
  margin-top: 44px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============ UTILITIES ============ */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  font-size: 11px;
  color: var(--text-muted);
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-green);
}

/* Simple fade-in animation */

.fade-up {
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 0.7s ease-out forwards;
}

.fade-up.delay-1 { animation-delay: 0.12s; }
.fade-up.delay-2 { animation-delay: 0.22s; }
.fade-up.delay-3 { animation-delay: 0.32s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ RESPONSIVE ============ */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-right {
    order: -1;
  }
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page-wrapper {
    padding-inline: 14px;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 22px;
  }
  .nav-links {
    flex-wrap: wrap;
  }
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* ===== Partner strip auto scroll ===== */

.partner-strip {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.partner-track {
  display: inline-flex;
  gap: 12px;
  white-space: nowrap;
  animation: partners-scroll 40s linear infinite;
}

/* pills */

.partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #f9fafb;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

.partner-circle {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #22c55e;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
/* ===== WhatsApp API features table (WConnect style) ===== */
.wa-features-wrap {
  margin-top: 38px; /* spacing increased to give breathing room */
}

.wa-features-card {
  padding: 18px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

/* header inside the card */
.wa-table-head .wa-table-title {
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--text-main);
  font-weight: 700;
}

.wa-table-head .wa-table-sub {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 13px;
}

/* table basics */
.wa-features-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  color: var(--text-main);
}

.wa-features-table thead th {
  text-align: left;
  padding: 10px 12px;
  font-weight: 600;
  font-size: 13px;
  color: var(--accent-blue);
  background: linear-gradient(90deg, rgba(15,156,245,0.03), rgba(34,197,94,0.02));
  border-bottom: 1px solid var(--border-subtle);
}

.wa-features-table tbody td {
  padding: 10px 12px;
  border-bottom: 1px dashed rgba(0,0,0,0.04);
  vertical-align: top;
}

.wa-features-table tbody tr:hover td {
  background: rgba(15,156,245,0.02);
}

/* small badges in availability column */
.wa-features-table tbody td:last-child {
  white-space: nowrap;
  font-weight: 600;
  color: var(--text-muted);
}

/* make availability clearer */
.wa-features-table tbody td:last-child:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  vertical-align: -1px;
}

/* simple color mapping using attribute text (keeps markup simple) */
.wa-features-table tbody tr td:last-child:contains("✅ Verified only") { /* fallback - browsers don't support :contains; keep for reference */ }
.wa-features-table tbody tr td:last-child {
  /* we'll color via small keywords in content — keep subtle */
}

/* Responsive: stack cells on narrow screens */
@media (max-width: 720px) {
  .wa-features-card { padding: 14px; }
  .wa-features-table thead { display: none; }
  .wa-features-table tbody td {
    display: block;
    width: 100%;
    padding: 10px 12px;
  }
  .wa-features-table tbody tr {
    margin-bottom: 12px;
    display: block;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .wa-features-table tbody td:first-child {
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
  }
}
/* ===== consistent horizontal spacing for section inner content ===== */
/* Keeps pricing / grids / partner-strip aligned with hero/other blocks */
.section > .pricing-grid,
.section > .grid-2,
.section > .grid-3,
.section > .partner-strip-wrapper,
.section > .wa-features-wrap,
.section > .testimonials-grid {
  padding-inline: 14px; /* inner horizontal breathing room */
}

/* slightly larger on desktop so rounded cards have visible side gap */
@media (min-width: 960px) {
  .section > .pricing-grid,
  .section > .grid-2,
  .section > .grid-3,
  .section > .partner-strip-wrapper,
  .section > .wa-features-wrap,
  .section > .testimonials-grid {
    padding-inline: 22px;
  }
}

/* small defensive rule: if any price-card was stretched edge-to-edge, constrain it */
.pricing-grid .price-card {
  min-width: 0; /* avoid overflow on small screens */
}

/* if any earlier rule used negative margins, override it subtly */
.section .card,
.section .price-card,
.section .partner-strip-wrapper {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
/* Fix: Give equal left-right spacing to all sections */
.section {
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box;
}

@media (min-width: 960px) {
  .section {
    padding-left: 32px;
    padding-right: 32px;
  }
}
/* Fix: Pricing section should not touch screen edges */
#pricing .pricing-grid {
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box;
}

@media (min-width: 960px) {
  #pricing .pricing-grid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
/* Fix: Contact, FAQ & Process grids touching screen edge */
#contact .grid-2,
#faq .grid-2,
#process .steps-grid {
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box;
}

@media (min-width: 960px) {
  #contact .grid-2,
  #faq .grid-2,
  #process .steps-grid {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* ===== FORCE OVERRIDE: partner marquee compact + faster ===== */
.partner-strip-wrapper .partner-strip,
.section#partners .partner-strip,
.partner-strip {
  padding: 6px 8px !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  align-items: center !important;
}

/* shrink each partner pill */
.partner-strip-wrapper .partner-logo,
.section#partners .partner-logo,
.partner-logo {
  min-width: 110px !important;
  padding: 6px 10px !important;
  font-size: 12px !important;
  border-radius: 999px !important;
  box-shadow: 0 8px 18px rgba(15,23,42,0.06) !important;
}

/* shrink icon */
.partner-strip-wrapper .partner-logo .partner-logo-icon,
.section#partners .partner-logo .partner-logo-icon,
.partner-logo-icon {
  width: 24px !important;
  height: 24px !important;
  line-height: 24px !important;
  font-size: 12px !important;
}

/* make marquee faster — reduce animation duration */
.partner-strip-wrapper .partner-strip,
.section#partners .partner-strip,
.partner-strip {
  animation-name: partners-scroll !important;
  animation-duration: 12s !important; /* decrease to speed up (12s = faster) */
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
  will-change: transform !important;
}

/* ensure keyframes exist/override */
@keyframes partners-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* responsive tighter */
@media (max-width:480px) {
  .partner-strip-wrapper .partner-logo { min-width: 82px !important; padding:5px 8px !important; font-size:11px !important; }
  .partner-strip-wrapper .partner-strip { animation-duration: 9s !important; gap:8px !important; }
}
/* ===== Quick fix: make features table horizontally scrollable on small screens ===== */
/* Paste at the END of styles.css */

.wa-features-wrap {
  width: 100%;
  overflow-x: auto;                     /* enable horizontal scroll */
  -webkit-overflow-scrolling: touch;    /* smooth scroll on iOS */
}

.wa-features-table {
  min-width: 680px;                     /* allow table to keep column layout on small screens */
  width: 100%;
  border-collapse: collapse;
}

/* optional: nicer scroll look */
.wa-features-wrap::-webkit-scrollbar { height: 8px; }
.wa-features-wrap::-webkit-scrollbar-thumb { background: rgba(15,23,42,0.06); border-radius: 999px; }
