/* =========================================================
   OAPPS Blocks Library — Shared reusable page section blocks
   =========================================================

   TYPOGRAPHY GUIDE (STRICT — no exceptions)
   ──────────────────────────────────────────
   Fonts:   Outfit (display/headings)  |  Roboto (body/text)
   Weights: 400 (regular), 500 (medium), 700 (prices only)
   ⚠ Weight 300 is BANNED — never use it.

   HEADING SCALE (Outfit):
   ├─ Hero title (centered):  72px / 500
   ├─ Hero title (split):     clamp(36–56px) / 500
   ├─ Hero subtitle:          22px / 400
   ├─ Section title:          48px / 500
   ├─ Feature/Intro title:    40px / 500
   ├─ Band text (gradient):   28px / 500
   ├─ Band text (dark):       32px / 500
   ├─ Step name:              24px / 500
   ├─ Card title:             20px / 500
   ├─ FAQ question:           18px / 500
   └─ Pricing price:          48px / 700  (ONLY 700 usage)

   BODY SCALE (Roboto):
   ├─ Body text:              16px / 400  (color: #555)
   ├─ Card description:       15px / 400  (color: muted)
   ├─ Section label:          14px / 500  (uppercase, 3px spacing, primary)
   ├─ Nav link:               14px / 400
   ├─ Button text:            16px / 500  (uppercase, 2px spacing)
   ├─ Small label:            13px / 500  (uppercase)
   ├─ Badge/tag:              12px / 500
   └─ Footer/copyright:       13px / 400

   COLOR ROLES:
   ├─ Headings: #252427 (--text)
   ├─ Body text: #555555
   ├─ Muted text: #8B959E (--text-muted)
   ├─ Primary accent: #596FFF
   ├─ Feature subtitle: #596FFF (Roboto 18px/400)
   └─ Dark section body: rgba(255,255,255,0.65)
   ========================================================= */

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #252427;
  background: #fff;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== DESIGN TOKENS ===== */
:root {
  --primary: #596FFF;
  --primary-dark: #3D52DE;
  --primary-light: #8898FF;
  --text: #252427;
  --text-muted: #8B959E;
  --dark-bg: #222125;
  --dark-bg-alt: #242228;
  --deep-navy: #0A0F31;
  --white: #FFFFFF;
  --border: rgba(0,0,0,0.12);
  --pink: #F9A7FF;
  --light-bg: #FAFAFA;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== CONTAINERS ===== */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SHARED TYPOGRAPHY ===== */
.oapps-section-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 16px;
}
.oapps-section-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  background: var(--primary);
  border-radius: 48px;
  padding: 15px 40px;
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}
.btn-primary:hover {
  box-shadow: 0px 10px 20px rgba(0,11,48,0.25);
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary--white {
  background: var(--white);
  color: var(--primary);
}
.btn-primary--white:hover {
  box-shadow: 0px 10px 20px rgba(0,0,0,0.2);
}
.btn-secondary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--text);
  border-radius: 30px;
  padding: 12px 32px;
  transition: background var(--transition-interactive), color var(--transition-interactive);
}
.btn-secondary:hover {
  background: var(--text);
  color: var(--white);
}


/* ==========================================================
   1. BLOCK: HERO (.oapps-hero)
   ========================================================== */
.oapps-hero {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

/* --- Photo/bg variant (default) --- */
.oapps-hero__bg {
  position: relative;
  width: 100%;
  height: 55vh;
  max-height: 500px;
  min-height: 320px;
  background-size: cover;
  background-position: center center;
}
.oapps-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: -20px auto 0;
  padding: 0 24px;
}
.oapps-hero__title {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 20px;
}
.oapps-hero__subtitle {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.4;
}
.oapps-hero__desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.oapps-hero__tagline {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 32px;
}

/* --- Split variant (text left, visual right) --- */
.oapps-hero--split {
  padding: 80px 0 60px;
}
.oapps-hero--split .oapps-hero__bg { display: none; }
.oapps-hero--split .oapps-hero__content {
  text-align: left;
  max-width: none;
  margin: 0;
  padding: 0;
}
.oapps-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.oapps-hero__text {}
.oapps-hero__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.oapps-hero--split .oapps-hero__title {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 20px;
}
.oapps-hero--split .oapps-hero__subtitle {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.4;
}
.oapps-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.oapps-hero__visual img,
.oapps-hero__visual svg {
  border-radius: 12px;
  width: 100%;
  height: auto;
  display: block;
}
.oapps-hero__visual img {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}


/* ==========================================================
   2. BLOCK: INTRO (.oapps-intro)
   ========================================================== */
.oapps-intro {
  padding: 100px 0;
  background: var(--white);
}
.oapps-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.oapps-intro__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
}
.oapps-intro__body {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}
.oapps-intro__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.oapps-intro__visual svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}


/* ==========================================================
   3. BLOCK: PROCESS STEPS (.oapps-process)
   ========================================================== */
.oapps-process {
  padding: 100px 0;
  background: #FAFAFA;
}
.oapps-process__header {
  text-align: center;
  margin-bottom: 80px;
}
.oapps-process__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 16px;
}
.oapps-process__title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
}
.oapps-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}
.oapps-step:last-child {
  margin-bottom: 0;
}
.oapps-step--reverse {
  direction: rtl;
}
.oapps-step--reverse > * {
  direction: ltr;
}
.oapps-step__number {
  font-family: var(--font-display);
  font-size: 140px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  opacity: 0.08;
  text-align: center;
  user-select: none;
}
.oapps-step__content {}
.oapps-step__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
}
.oapps-step__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}


/* ==========================================================
   4. BLOCK: FEATURE ROW (.oapps-feature)
   ========================================================== */
.oapps-feature {
  padding: 96px 0;
  background: var(--white);
}
.oapps-feature:nth-child(even) {
  background: #FAFAFA;
}
.oapps-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.oapps-feature__grid--reverse {
  direction: rtl;
}
.oapps-feature__grid--reverse > * {
  direction: ltr;
}
.oapps-feature__image img,
.oapps-feature__image svg {
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  width: 100%;
  height: auto;
}
.oapps-feature__image svg {
  box-shadow: none;
}
.oapps-feature__content {
  max-width: 520px;
}
.oapps-feature__grid--reverse .oapps-feature__content {
  margin-left: auto;
}
.oapps-feature__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 12px;
}
.oapps-feature__subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.5;
}
.oapps-feature__desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}
.oapps-feature__bullets {
  margin-bottom: 32px;
}
.oapps-feature__bullets li {
  font-family: var(--font-body);
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.oapps-feature__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.6;
}


/* ==========================================================
   5. BLOCK: BAND (.oapps-band)
   ========================================================== */
.oapps-band {
  background-image: linear-gradient(0.627turn, rgba(89,111,255,1) 0%, rgba(33,50,162,1) 100%);
  padding: 72px 0;
  text-align: center;
}
.oapps-band__text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.35;
}
.oapps-band--dark {
  background-image: none;
  background: var(--dark-bg);
}
.oapps-band--dark .oapps-band__text {
  font-size: 32px;
  max-width: 740px;
}


/* ==========================================================
   6. BLOCK: CARDS GRID (.oapps-cards)
   ========================================================== */
.oapps-cards {
  padding: 100px 0;
  background: var(--white);
}
.oapps-cards__header {
  text-align: center;
  margin-bottom: 64px;
}
.oapps-cards__title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
}
.oapps-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.oapps-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}
.oapps-card:hover {
  box-shadow: 0px 15px 30px -10px rgba(0,11,48,0.2);
  transform: translateY(-4px);
}
.oapps-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
}
.oapps-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.oapps-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}


/* ==========================================================
   7. BLOCK: PRICING (.oapps-pricing)
   ========================================================== */
.oapps-pricing {
  padding: 100px 0;
  background: #FAFAFA;
}
.oapps-pricing__header {
  text-align: center;
  margin-bottom: 16px;
}
.oapps-pricing__title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.oapps-pricing__subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 64px;
  line-height: 1.6;
}
.oapps-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center;
}
.oapps-pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 44px 36px;
  text-align: center;
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}
.oapps-pricing-card:hover {
  box-shadow: 0px 15px 30px -10px rgba(0,11,48,0.2);
  transform: translateY(-4px);
}
.oapps-pricing-card--featured {
  border: 2px solid var(--primary);
  padding: 52px 36px;
  position: relative;
  box-shadow: 0px 10px 40px -10px rgba(89,111,255,0.2);
}
.oapps-pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 20px;
  border-radius: 20px;
  white-space: nowrap;
}
.oapps-pricing-card__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 20px;
}
.oapps-pricing-card__price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.oapps-pricing-card__price span {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
}
.oapps-pricing-card__detail {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}
.oapps-pricing-card__features {
  text-align: left;
  margin-bottom: 32px;
}
.oapps-pricing-card__features li {
  font-family: var(--font-body);
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}
.oapps-pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(89,111,255,0.15);
  border: 2px solid var(--primary);
}


/* ==========================================================
   8. BLOCK: COMPARISON TABLE (.oapps-table)
   ========================================================== */
.oapps-table-wrap {
  overflow-x: auto;
  margin-top: 64px;
  -webkit-overflow-scrolling: touch;
}
table.oapps-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.oapps-table thead th {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  padding: 14px 16px;
  background: #FAFAFA;
  border-bottom: 2px solid var(--border);
  color: var(--text);
  white-space: nowrap;
}
.oapps-table thead th:first-child {
  border-radius: 8px 0 0 0;
}
.oapps-table thead th:last-child {
  border-radius: 0 8px 0 0;
}
.oapps-table tbody td {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: #555;
}
.oapps-table .check {
  color: var(--primary);
  font-weight: 500;
  font-size: 18px;
}
.oapps-table .dash {
  color: var(--text-muted);
  font-size: 18px;
}


/* ==========================================================
   9. BLOCK: FAQ ACCORDION (.oapps-faq)
   ========================================================== */
.oapps-faq {
  padding: 100px 0;
  background: var(--deep-navy);
}
.oapps-faq__header {
  text-align: center;
  margin-bottom: 64px;
}
.oapps-faq__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-light);
  margin-bottom: 16px;
}
.oapps-faq__title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
}
.oapps-faq__list {
  max-width: 800px;
  margin: 0 auto;
}
.oapps-faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.oapps-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}
.oapps-faq__question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.5);
  transition: transform 0.3s ease;
}
.oapps-faq__item.is-open .oapps-faq__question svg {
  transform: rotate(180deg);
}
.oapps-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
}
.oapps-faq__answer p {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  padding-bottom: 24px;
}
.oapps-faq__item.is-open .oapps-faq__answer {
  max-height: 500px;
}


/* ==========================================================
   10. BLOCK: STATS (.oapps-stats)
   ========================================================== */
.oapps-stats {
  padding: 100px 0;
  background: var(--deep-navy);
}
.oapps-stats__header {
  text-align: center;
  margin-bottom: 64px;
}
.oapps-stats__header h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.oapps-stats__header p {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.oapps-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.oapps-stat__value {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1;
}
.oapps-stat__label {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}


/* ==========================================================
   11. BLOCK: CTA (.oapps-cta)
   ========================================================== */
.oapps-cta {
  padding: 100px 0;
  background: var(--dark-bg);
  text-align: center;
}
.oapps-cta__title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.oapps-cta__body {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}


/* ==========================================================
   12. BLOCK: SOCIAL PROOF (.oapps-social-proof)
   ========================================================== */
.oapps-social-proof {
  padding: 64px 0;
  background: #f6f7fb;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.oapps-social-proof__text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.oapps-social-proof__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.oapps-social-proof__logo {
  height: 32px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.oapps-social-proof__logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}


/* ==========================================================
   13. BLOCK: CHECKLIST (.oapps-checklist)
   ========================================================== */
.oapps-checklist {
  padding: 100px 0;
  background: var(--white);
}
.oapps-checklist__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.oapps-checklist__header h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.oapps-checklist__header p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
.oapps-checklist__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}
.oapps-checklist__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.oapps-checklist__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(89,111,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.oapps-checklist__check svg {
  width: 14px;
  height: 14px;
}
.oapps-checklist__item span {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}


/* ==========================================================
   14. BLOCK: FADE-IN ANIMATION
   ========================================================== */
.fade-in-element {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-in-element.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================
   RESPONSIVE — 1024px breakpoint
   ========================================================== */
@media (max-width: 1024px) {
  /* Hero */
  .oapps-hero__title { font-size: 52px; }
  .oapps-hero__bg { max-height: 50vh; }
  .oapps-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .oapps-hero--split .oapps-hero__title { font-size: 44px; }
  .oapps-hero--split .oapps-hero__visual { order: 1; }
  .oapps-hero--split {
    padding: 60px 0 40px;
  }
  .oapps-hero--split .oapps-hero__content {
    text-align: center;
  }

  /* Intro */
  .oapps-intro__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .oapps-intro__visual { order: -1; }

  /* Default (non-split) hero photo bg variant */
  .oapps-hero:not(.oapps-hero--split) .oapps-hero__bg { max-height: 50vh; }
  .oapps-intro__visual svg { max-width: 280px; }

  /* Steps */
  .oapps-step {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .oapps-step--reverse { direction: ltr; }
  .oapps-step__number { font-size: 100px; }

  /* Feature */
  .oapps-feature__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .oapps-feature__grid--reverse { direction: ltr; }
  .oapps-feature__content {
    max-width: none;
  }
  .oapps-feature__grid--reverse .oapps-feature__content {
    margin-left: 0;
  }

  /* Cards */
  .oapps-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Pricing */
  .oapps-pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .oapps-pricing-card--featured {
    padding: 44px 36px;
  }

  /* Stats */
  .oapps-stats__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Checklist */
  .oapps-checklist__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Social Proof */
  .oapps-social-proof__logos {
    gap: 32px;
  }
}


/* ==========================================================
   RESPONSIVE — 640px breakpoint
   ========================================================== */
@media (max-width: 640px) {
  /* Hero */
  .oapps-hero__title { font-size: 40px; }
  .oapps-hero__subtitle { font-size: 18px; }
  .oapps-hero__bg { max-height: 40vh; }
  .oapps-hero--split .oapps-hero__title { font-size: 36px; }

  /* Section titles */
  .oapps-section-title,
  .oapps-process__title,
  .oapps-cards__title,
  .oapps-pricing__title,
  .oapps-faq__title,
  .oapps-stats__header h2,
  .oapps-cta__title,
  .oapps-checklist__header h2 {
    font-size: 36px;
  }

  /* Intro */
  .oapps-intro__title { font-size: 32px; }

  /* Feature */
  .oapps-feature__title { font-size: 32px; }

  /* Band */
  .oapps-band__text { font-size: 22px; }
  .oapps-band--dark .oapps-band__text { font-size: 24px; }

  /* Steps */
  .oapps-step__number { font-size: 80px; }

  /* Buttons */
  .btn-primary { padding: 13px 32px; font-size: 14px; }

  /* Pricing */
  .oapps-pricing-card__price { font-size: 40px; }

  /* Cards */
  .oapps-cards__grid { grid-template-columns: 1fr; }

  /* Stats */
  .oapps-stat__value { font-size: 44px; }

  /* Social Proof logos */
  .oapps-social-proof__logos { gap: 24px; }
  .oapps-social-proof__logo { height: 24px; }
}
