/* Phoenix IT — shared tokens & component primitives */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --phoenix-orange: #FB8F33;
  --phoenix-coral: #FA6F4D;
  --phoenix-red: #FA4D69;
  --phoenix-pink: #E7318A;
  --phoenix-magenta: #D92799;
  --phoenix-purple: #B514B3;
  --phoenix-gradient: linear-gradient(135deg, #FB8F33 0%, #FA6F4D 28%, #FA4D69 52%, #E7318A 76%, #B514B3 100%);
  --phoenix-gradient-soft: linear-gradient(135deg, rgba(251,143,51,0.18), rgba(250,77,105,0.16) 50%, rgba(181,20,179,0.18));

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

/* DARK (default) */
.theme-dark {
  --bg: #0A0A0B;
  --bg-soft: #111114;
  --panel: #15151A;
  --panel-2: #1C1C22;
  --border: #26262E;
  --border-strong: #34343E;
  --fg: #FAFAFA;
  --fg-muted: #A1A1AA;
  --fg-dim: #71717A;
  --chip-bg: rgba(255,255,255,0.05);
  --shadow-card: 0 20px 60px -20px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.04) inset;
  --hero-grid: radial-gradient(60% 80% at 70% 30%, rgba(251,143,51,0.18), transparent 60%), radial-gradient(50% 60% at 20% 80%, rgba(181,20,179,0.18), transparent 60%), radial-gradient(40% 60% at 50% 50%, rgba(231,49,138,0.10), transparent 60%), #0A0A0B;
  color-scheme: dark;
}

/* LIGHT */
.theme-light {
  --bg: #FAFAF7;
  --bg-soft: #F3F2EC;
  --panel: #FFFFFF;
  --panel-2: #F7F6F1;
  --border: #E8E6DF;
  --border-strong: #D8D6CD;
  --fg: #0B0B0E;
  --fg-muted: #52525B;
  --fg-dim: #8A8A92;
  --chip-bg: rgba(11,11,14,0.05);
  --shadow-card: 0 20px 50px -24px rgba(20,20,30,0.18), 0 1px 0 rgba(255,255,255,0.6) inset;
  --hero-grid: radial-gradient(60% 80% at 70% 30%, rgba(251,143,51,0.10), transparent 60%), radial-gradient(50% 60% at 20% 80%, rgba(181,20,179,0.10), transparent 60%), radial-gradient(40% 60% at 50% 50%, rgba(231,49,138,0.06), transparent 60%), #FAFAF7;
  color-scheme: light;
}

* { box-sizing: border-box; }

.pix-page {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

.pix-page h1, .pix-page h2, .pix-page h3, .pix-page h4 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  color: var(--fg);
  text-wrap: balance;
}

.pix-page p { margin: 0; color: var(--fg-muted); }

/* Header */
.pix-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 64px;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg), transparent 8%);
  backdrop-filter: blur(8px);
}
.pix-logo { display: flex; align-items: center; gap: 12px; }
.theme-dark .pix-logo-img-light { display: none !important; }
.theme-dark .pix-logo-img-dark { display: block !important; }
.theme-light .pix-logo-img-dark { display: none !important; }
.theme-light .pix-logo-img-light { display: block !important; }
.pix-logo-mark {
  width: 36px; height: 36px;
  background: var(--phoenix-gradient);
  border-radius: 10px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 6px 20px -6px rgba(231,49,138,0.55);
}
.pix-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 18px;
}
.pix-nav { display: flex; gap: 28px; }
.pix-nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.pix-nav a:hover, .pix-nav a.active { color: var(--fg); }

/* Buttons */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  padding: 12px 20px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s, background .2s;
}
.btn-primary {
  background: var(--phoenix-gradient);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(231,49,138,0.5), 0 1px 0 rgba(255,255,255,0.2) inset;
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--chip-bg); }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* Pills / chips */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--chip-bg);
  color: var(--fg-muted);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--phoenix-pink); box-shadow: 0 0 12px var(--phoenix-pink); }

.gradient-text {
  background: var(--phoenix-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Section */
.section { padding: 96px 64px; }
.section-tight { padding: 64px 64px; }
.section-title { font-size: 48px; font-weight: 700; }
.section-eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 16px; display: inline-flex; align-items: center; gap: 10px; }
.section-eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--phoenix-pink); }

/* Cards */
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

/* Placeholder image (striped) */
.ph-img {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      color-mix(in oklab, var(--phoenix-pink), transparent 88%) 0 16px,
      transparent 16px 32px),
    var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: var(--fg-dim);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
  overflow: hidden;
}
.ph-img span { background: var(--bg); padding: 6px 10px; border-radius: 6px; border: 1px solid var(--border); }

/* Footer */
.pix-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 56px 64px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  color: var(--fg-muted);
  font-size: 14px;
}
.pix-footer h5 { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg); margin: 0 0 14px; }
.pix-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.pix-footer a { color: var(--fg-muted); text-decoration: none; }
.pix-footer a:hover { color: var(--fg); }
.pix-footer-bottom {
  grid-column: 1 / -1;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--fg-dim);
  font-family: var(--font-mono);
}

/* Industry tabs */
.ind-tabs { display: inline-flex; padding: 4px; border: 1px solid var(--border); border-radius: 999px; background: var(--panel); gap: 4px; }
.ind-tab {
  padding: 10px 18px; border-radius: 999px; font-size: 13px; font-weight: 600;
  cursor: pointer; color: var(--fg-muted); border: none; background: transparent;
  font-family: var(--font-body);
  transition: all .2s;
}
.ind-tab.active { background: var(--phoenix-gradient); color: #fff; }
.ind-tab:hover:not(.active) { color: var(--fg); }

/* Logo strip */
.logo-strip { display: flex; gap: 56px; align-items: center; opacity: 0.7; flex-wrap: wrap; }
.logo-strip .lg {
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  color: var(--fg-muted); letter-spacing: 0.02em;
}


/* ==================== MOBILE MENU ==================== */

/* Hamburger button — hidden on desktop, shown on mobile */
.pix-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  color: var(--fg);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.pix-menu-btn:active { background: var(--bg-soft); }
.pix-menu-bars {
  position: relative;
  width: 18px;
  height: 14px;
  display: inline-block;
}
.pix-menu-bars span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease, top 0.22s ease;
}
.pix-menu-bars span:nth-child(1) { top: 0; }
.pix-menu-bars span:nth-child(2) { top: 6px; }
.pix-menu-bars span:nth-child(3) { top: 12px; }
.pix-menu-bars.open span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.pix-menu-bars.open span:nth-child(2) { opacity: 0; }
.pix-menu-bars.open span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* Drawer — fullscreen overlay on mobile */
.pix-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.pix-mobile-drawer.open {
  pointer-events: auto;
  visibility: visible;
}
.pix-mobile-drawer-scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 11, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.pix-mobile-drawer.open .pix-mobile-drawer-scrim { opacity: 1; }
.pix-mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 86vw);
  background: #FAFAF7;
  color: #0A0A0B;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -20px 0 50px -20px rgba(0, 0, 0, 0.35);
}
.pix-mobile-drawer.open .pix-mobile-drawer-panel { transform: translateX(0); }
.pix-mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(10, 10, 11, 0.08);
}
.pix-mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  flex: 1;
  overflow-y: auto;
}
.pix-mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #0A0A0B;
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 10, 11, 0.08);
}
.pix-mobile-nav a:last-child { border-bottom: none; }
.pix-mobile-nav a svg { color: rgba(10, 10, 11, 0.45); transition: transform 0.18s ease, color 0.18s ease; }
.pix-mobile-nav a:active { background: #F3F2EC; }
.pix-mobile-nav a:active svg { color: var(--phoenix-red); transform: translateX(2px); }
.pix-mobile-nav a.active { color: var(--phoenix-red); }
.pix-mobile-drawer-head span:first-child {
  color: rgba(10, 10, 11, 0.45) !important;
}
.pix-mobile-drawer-foot {
  padding: 20px 22px 28px;
  border-top: 1px solid rgba(10, 10, 11, 0.08);
  background: #FAFAF7;
}

/* ==================== RESPONSIVE / MOBILE ==================== */

/* Tablet — 1024px and down */
@media (max-width: 1024px) {
  .pix-header { padding: 16px 32px; flex-wrap: wrap; gap: 12px; }
  .pix-nav { gap: 18px; order: 3; width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .section, .section-tight { padding: 64px 32px !important; }
  .section-title { font-size: 38px !important; }
  .pix-page h1 { font-size: 56px !important; }
  .pix-footer { padding: 48px 32px 24px; grid-template-columns: 1fr 1fr !important; }
  .pix-footer > div:first-child { grid-column: 1 / -1; }
}

/* Mobile — 720px and down */
@media (max-width: 720px) {
  html, body { overflow-x: hidden; }
  .pix-page { font-size: 15px; max-width: 100% !important; overflow-x: hidden; }

  /* ---- Header — single compact row, no nav, logo + CTA ---- */
  .pix-header {
    padding: 10px 16px !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
  }
  .pix-header .pix-logo-img-light,
  .pix-header .pix-logo-img-dark {
    height: 70px !important;
    margin: -18px 0 !important;
  }
  .pix-nav { display: none !important; }
  /* Show hamburger button on mobile */
  .pix-menu-btn { display: inline-flex !important; }
  /* Hide the security-assessment CTA in header on mobile (covered by drawer foot) */
  .pix-header .btn-primary.btn-sm { display: none !important; }
  .pix-header > div:last-child {
    flex-wrap: nowrap !important;
    gap: 6px !important;
    margin-left: auto !important;
  }
  .pix-header .btn-sm {
    padding: 10px 14px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
  }
  .pix-header a[href^="tel:"] { display: none !important; }

  /* ---- Section padding ---- */
  .section, .section-tight { padding: 56px 20px !important; }
  /* Inline-padded sections (subpages use literal 80px 64px / 0 64px 80px) */
  .pix-page > section[style*="padding: 80px 64px"],
  .pix-page > section[style*="padding: 80px 64px 60px"],
  .pix-page > section[style*="padding: 0 64px 80px"],
  .pix-page > section[style*="padding: 0 64px 40px"] {
    padding: 48px 20px !important;
  }
  .section-title { font-size: 30px !important; }
  .section-eyebrow { font-size: 11px !important; }

  /* ---- Headings ---- */
  .pix-page h1 { font-size: 44px !important; line-height: 1.04 !important; letter-spacing: -0.025em !important; }
  .pix-page h2 { font-size: 30px !important; }
  .pix-page h3 { font-size: 19px !important; }

  /* ---- Force every multi-fr inline grid to stack ---- */
  /* Targets every variant across LandingV2 + Subpages */
  .pix-page [style*="grid-template-columns: 1.05fr"],
  .pix-page [style*="grid-template-columns: 1.1fr"],
  .pix-page [style*="grid-template-columns: 1.2fr 1fr"],
  .pix-page [style*="grid-template-columns: 1fr 1fr"],
  .pix-page [style*="grid-template-columns: 1fr 1.3fr"],
  .pix-page [style*="grid-template-columns: 1fr 1.4fr"],
  .pix-page [style*="grid-template-columns: 1.2fr repeat"],
  .pix-page [style*="grid-template-columns: 260px"],
  .pix-page [style*="grid-template-columns: 320px"],
  .pix-page [style*="grid-template-columns: 120px 1fr"],
  .pix-page [style*="grid-template-columns: 60px 1fr"],
  .pix-page [style*="grid-template-columns: minmax(0, 420px)"],
  .pix-page [style*="repeat(3, 1fr)"],
  .pix-page [style*="repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  /* 4-col stat band stays 2x2 */
  .pix-page [style*="repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }
  /* Testimonial inline 3-col stat row keeps 3 cols, compressed */
  .pix-page #cases [style*="repeat(3, 1fr)"] {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 14px !important;
  }

  /* ---- Hero — section #1 is grid, force block + reset padding ---- */
  .pix-page > section:first-of-type {
    display: block !important;
    min-height: auto !important;
    border-bottom: 1px solid var(--border) !important;
  }
  .pix-page > section:first-of-type > div:first-child {
    padding: 40px 20px 48px !important;
  }
  .pix-page > section:first-of-type > div:nth-child(2) {
    padding: 0 !important;
    min-height: auto !important;
    position: relative !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
  }
  /* Hero image gets a fixed-aspect block (no longer absolute on mobile) */
  .pix-page > section:first-of-type > div:nth-child(2) > img {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 5 !important;
    object-position: 35% center !important;
    display: block !important;
  }
  /* Kill the bottom gradient overlay (no longer needed when stacked) */
  .pix-page > section:first-of-type > div:nth-child(2) > div:nth-child(2) {
    display: none !important;
  }
  /* "This week" pill — sit on the image */
  .pix-page > section:first-of-type > div:nth-child(2) > div:nth-child(3) {
    top: 18px !important;
    left: 18px !important;
  }
  /* Story card — becomes a static dark panel below the image */
  .pix-page > section:first-of-type > div:nth-child(2) > div:nth-child(4) {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    border-top: 1px solid rgba(255,255,255,0.10) !important;
    padding: 28px 22px !important;
    background: #0A0A0B !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }
  /* Inner "this week" card in hero right panel */
  .pix-page > section:first-of-type > div:nth-child(2) > div:nth-child(4) {
    padding: 28px 22px !important;
    height: auto !important;
  }
  .pix-page > section:first-of-type > div:nth-child(2) h3 {
    font-size: 22px !important;
  }
  /* Hero stat strip — wraps cleanly */
  .pix-page > section:first-of-type > div:first-child > div:last-child {
    flex-wrap: wrap !important;
    gap: 10px 14px !important;
    margin-top: 36px !important;
  }
  /* Hero CTAs */
  .pix-page > section:first-of-type .btn {
    flex: 1 1 auto !important;
    justify-content: center !important;
    padding: 14px 18px !important;
  }

  /* ---- Track-record numbers band: first column (heading) stops dividing ---- */
  .pix-page [style*="1.2fr repeat(4"] > div:first-child {
    border-right: none !important;
    padding-right: 0 !important;
    padding-bottom: 16px !important;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
    grid-column: 1 / -1 !important;
  }

  /* ---- Services list rows — collapse 4-col into stacked vertical ---- */
  .pix-page #services a[style*="60px 1fr 2fr auto"] {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 24px 0 !important;
  }
  .pix-page #services a[style*="60px 1fr 2fr auto"] > div:last-child {
    display: none !important;
  }
  .pix-page #services a[style*="60px 1fr 2fr auto"] h3 { font-size: 22px !important; }

  /* ---- Switching timeline cards — stack day label above title ---- */
  .pix-page .card[style*="120px 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 22px !important;
  }

  /* ---- Pricing section ---- */
  .pix-page #pricing { padding: 56px 20px !important; }
  .pix-page #pricing h2 { font-size: 52px !important; line-height: 1 !important; }
  .pix-page #pricing [style*="font-size: 64"] { font-size: 44px !important; }
  .pix-page #pricing [style*="font-size: 72"] { font-size: 52px !important; }
  .pix-page #pricing a[href*="contact"] {
    width: 100% !important;
    justify-content: center !important;
    padding: 16px 24px !important;
    font-size: 16px !important;
  }
  /* Pricing right column — categories full width with gentle gap */
  .pix-page #pricing [style*="1fr 1.4fr"] {
    gap: 40px !important;
  }
  .pix-page #pricing [style*="56px 48px"] {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  /* ---- Testimonial carousel ---- */
  .pix-page #cases { padding: 56px 20px !important; }
  .pix-page #cases [style*="1fr 1fr"] {
    min-height: auto !important;
    gap: 32px !important;
  }
  .pix-page #cases img {
    max-height: 380px;
    object-fit: cover;
    object-position: center top;
  }
  .pix-page #cases blockquote { font-size: 18px !important; }
  /* Carousel control row */
  .pix-page #cases [style*="justify-content: space-between"][style*="border-top"] {
    flex-wrap: wrap !important;
    gap: 16px !important;
  }

  /* ---- CTA strip — section flex row → column ---- */
  .pix-page > section[style*="phoenix-gradient"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 56px 20px !important;
    gap: 24px !important;
  }
  .pix-page > section[style*="phoenix-gradient"] h2 { font-size: 32px !important; }
  .pix-page > section[style*="phoenix-gradient"] > a {
    width: 100% !important;
    justify-content: center !important;
  }

  /* ---- Cards general ---- */
  .card { padding: 22px !important; border-radius: 16px !important; }

  /* ---- Buttons general ---- */
  .btn { padding: 12px 18px; font-size: 14px; }

  /* ---- Leadership grid — stack on mobile ---- */
  .pix-page .leadership-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  /* ---- Leadership portrait — cap width so it doesn't span full mobile width ---- */
  .pix-page #leadership [style*="aspect-ratio: 4/5"] {
    max-width: 320px !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
  .pix-page #leadership h3 { font-size: 28px !important; }

  /* ---- Footer ---- */
  .pix-footer {
    padding: 40px 20px 24px !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }
  .pix-footer > div:first-child { grid-column: 1 / -1 !important; }
  .pix-footer-bottom {
    flex-direction: column !important;
    gap: 8px !important;
    align-items: flex-start !important;
  }
  .pix-footer .pix-logo-img-light,
  .pix-footer .pix-logo-img-dark {
    height: 80px !important;
    margin: -18px 0 -8px !important;
  }

  /* ---- Logo strip / industry tabs ---- */
  .logo-strip { gap: 22px; }
  .logo-strip .lg { font-size: 15px; }
  .ind-tabs { flex-wrap: wrap; }

  /* ---- Forms ---- */
  form .card { padding: 24px !important; }
  form input, form textarea, form select { font-size: 16px !important; /* iOS zoom */ }
}

/* Tiny mobile — 380px and down */
@media (max-width: 380px) {
  .pix-page h1 { font-size: 36px !important; }
  .pix-page #pricing h2 { font-size: 44px !important; }
  .section, .section-tight { padding: 44px 16px !important; }
  .pix-header { padding: 10px 14px !important; }
  .pix-header .btn-sm { padding: 9px 11px !important; font-size: 11px !important; }
  .pix-page > section:first-of-type > div:first-child { padding: 32px 16px 40px !important; }
}
