/* ============================================================
   Marketing Data Extractor — Instagram Landing Page
   style.css
   Structure:
     1.  CSS Variables (:root)
     2.  Reset / Base
     3.  Typography Base
     4.  Utility Classes
     5.  Section 1: Navigation
     6.  Section 2: Hero
     7.  Section 3: Social Proof Strip
     8.  Section 4: Problem / Solution
     9.  Section 5: Features
     10. Section 6: Use Cases
     11. Section 7: Pricing
     12. Section 8: FAQ
     13. Section 9: Final CTA
     14. Section 10: Footer
     15. Media Queries — Tablet (min-width: 768px)
     16. Media Queries — Desktop (min-width: 1100px)
     17. Animations / Transitions
   ============================================================ */


/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
  /* Brand Colors */
  --color-primary:       #1863DC;
  --color-success:       #34A853;
  --color-dark:          #0D1F2D;
  --color-dark-mid:      #1A3A4A;

  /* Text Colors */
  --color-text:          #212121;
  --color-text-body:     #444444;
  --color-text-mid:      #555555;
  --color-text-light:    #666666;
  --color-text-muted:    #999999;

  /* Backgrounds */
  --color-bg-light:      #F8F9FA;
  --color-bg-white:      #FFFFFF;

  /* Borders */
  --color-border:        #E8E8E8;
  --color-border-light:  #E0E0E0;

  /* Problem/Solution Colors */
  --color-red:           #C62828;
  --color-red-text:      #5D2828;
  --color-red-bg:        #FFF5F5;
  --color-red-border:    #FFCDD2;
  --color-green-dark:    #2E7D32;
  --color-green-text:    #1B5E20;
  --color-green-bg:      #F1F8F4;
  --color-green-border:  #C8E6C9;

  /* Accent Colors */
  --color-orange:        #FF6B35;
  --color-purple:        #9C27B0;
  --color-amber:         #F59E0B;

  /* Typography */
  --font-family:         'Open Sans', sans-serif;
  --font-weight-regular: 400;
  --font-weight-semi:    600;
  --font-weight-bold:    700;
  --font-weight-black:   800;

  /* Border Radius */
  --border-radius-sm:    6px;
  --border-radius-md:    10px;
  --border-radius-lg:    12px;

  /* Transitions */
  --transition-standard: all 0.2s ease;

  /* Layout */
  --container-max:       1100px;
  --container-nav-max:   1200px;
  --container-faq-max:   760px;
  --container-cta-max:   700px;
}


/* ============================================================
   2. RESET / BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  font-size: 16px;
  color: var(--color-text-body);
  background-color: var(--color-bg-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-family);
  background: none;
  border: none;
  cursor: pointer;
}


/* ============================================================
   3. TYPOGRAPHY BASE
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--color-text);
}

p {
  line-height: 1.7;
}


/* ============================================================
   4. UTILITY CLASSES
   ============================================================ */

/* Primary CTA Button — shared base */
.mde-cta-btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-standard);
  text-align: center;
  line-height: 1.2;
  border: none;
}

/* Green primary CTA */
.btn-primary {
  background-color: var(--color-success);
  color: #FFFFFF;
  font-size: 18px;
  padding: 16px 36px;
  min-width: 280px;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: #2D9248;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 168, 83, 0.35);
}

/* Pricing card CTA button */
.btn-pricing {
  display: block;
  width: 100%;
  padding: 14px;
  background-color: var(--color-success);
  color: #FFFFFF;
  font-weight: var(--font-weight-bold);
  font-size: 16px;
  border-radius: var(--border-radius-sm);
  text-align: center;
  text-decoration: none;
  transition: var(--transition-standard);
  margin-top: 24px;
}

.btn-pricing:hover {
  background-color: #2D9248;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(52, 168, 83, 0.30);
}

/* Section H2 */
.section-h2 {
  font-size: 26px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  text-align: center;
  margin-bottom: 12px;
}

/* Section subtitle */
.section-subtitle {
  font-size: 15px;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Section label (e.g. "SOUND FAMILIAR?") */
.section-label {
  display: block;
  font-size: 13px;
  font-weight: var(--font-weight-semi);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 40px;
}

/* Container utility */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}


/* ============================================================
   5. SECTION 1: NAVIGATION
   ============================================================ */
.mde-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-bg-white);
  height: 68px;
  transition: box-shadow 0.25s ease;
}

.mde-nav.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  display: block;
  height: 56px;
  width: auto;
}

/* Nav CTA button */
.nav-cta {
  background-color: var(--color-success);
  color: #FFFFFF;
  font-family: var(--font-family);
  font-weight: var(--font-weight-semi);
  font-size: 15px;
  padding: 10px 16px;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  line-height: 1.2;
  transition: background-color 0.2s ease;
  min-width: 0;
}

.nav-cta:hover {
  background-color: #2D9449;
}

/* Toggle short vs full nav CTA text */
.nav-cta-short {
  display: none;
}

.nav-cta-full {
  display: inline;
}


/* ============================================================
   6. SECTION 2: HERO
   ============================================================ */
.mde-hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-mid) 100%);
  padding: 56px 20px;
  text-align: center;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.hero-product-icon {
  display: block;
  margin: 0 auto 24px auto;
  width: 64px;
  height: 64px;
}

.hero-h1 {
  font-size: 30px;
  font-weight: var(--font-weight-black);
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 36px auto;
}

/* Hero CTA — extends .btn-primary */
.mde-hero .btn-primary {
  margin-bottom: 14px;
}

/* On mobile hero, full-width CTA */
.mde-hero .btn-primary {
  width: 100%;
  min-width: unset;
  max-width: 440px;
}

.hero-microcopy {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 40px;
}

/* Trust Trio */
.hero-trust-trio {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.70);
}

.trust-item i {
  color: rgba(255, 255, 255, 0.50);
  font-size: 16px;
  flex-shrink: 0;
}


/* ============================================================
   7. SECTION 3: SOCIAL PROOF STRIP
   ============================================================ */
.mde-social-proof {
  background-color: var(--color-bg-white);
  padding: 24px 20px;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.social-proof-container {
  max-width: var(--container-nav-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: var(--font-weight-semi);
  color: var(--color-text);
}

.proof-item i {
  flex-shrink: 0;
}


/* ============================================================
   8. SECTION 4: PROBLEM / SOLUTION
   ============================================================ */
.mde-problem-solution {
  background-color: var(--color-bg-white);
  padding: 48px 20px;
}

.problem-solution-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Old Way Box */
.old-way-box {
  background-color: var(--color-red-bg);
  padding: 28px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-red-border);
}

.old-way-heading {
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  color: var(--color-red);
  margin-bottom: 20px;
  text-align: left;
}

.old-way-list {
  list-style: none;
}

.old-way-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--color-red-text);
  line-height: 1.7;
}

.cross {
  color: var(--color-red);
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.7;
}

/* MDE Way Box */
.mde-way-box {
  background-color: var(--color-green-bg);
  padding: 28px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-green-border);
}

.mde-way-heading {
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  color: var(--color-green-dark);
  margin-bottom: 20px;
  text-align: left;
}

.mde-way-steps {
  list-style: none;
}

.mde-way-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--color-green-text);
  line-height: 1.7;
}

/* Numbered step circle */
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background-color: var(--color-success);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Callout dividers */
.callout-divider {
  border: none;
  height: 1px;
  margin: 20px 0;
}

.callout-divider--red {
  background-color: var(--color-red-border);
}

.callout-divider--green {
  background-color: var(--color-green-border);
}

/* Time callouts */
.time-callout {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  text-align: center;
}

.time-callout--red {
  color: var(--color-red);
}

.time-callout--green {
  color: var(--color-green-dark);
}

.time-callout-note {
  font-style: italic;
  font-size: 14px;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 6px;
}


/* ============================================================
   9. SECTION 5: FEATURES
   ============================================================ */
.mde-features {
  background-color: var(--color-bg-light);
  padding: 48px 20px;
}

.features-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Feature Card */
.mde-feature-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.mde-feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.card-icon {
  margin-bottom: 16px;
  line-height: 1;
}

.mde-feature-card h3 {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  margin: 0 0 8px 0;
}

.mde-feature-card p {
  font-size: 14px;
  color: var(--color-text-mid);
  line-height: 1.6;
  margin: 0;
}


/* ============================================================
   10. SECTION 6: USE CASES
   ============================================================ */
.mde-use-cases {
  background-color: var(--color-bg-white);
  padding: 48px 20px;
}

.use-cases-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Use cases grid — single column mobile, expands via media queries */
.use-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Use Case Card */
.mde-use-case-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
}

/* Top border color variants */
.use-case-card--blue  { border-top: 5px solid var(--color-primary); }
.use-case-card--green { border-top: 5px solid var(--color-success); }
.use-case-card--orange { border-top: 5px solid var(--color-orange); }

/* Use case label */
.use-case-label {
  display: block;
  font-size: 11px;
  font-weight: var(--font-weight-semi);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

/* Use case icon */
.use-case-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 16px;
}

.mde-use-case-card h3 {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  margin-bottom: 14px;
}

.mde-use-case-card p {
  font-size: 15px;
  color: var(--color-text-body);
  line-height: 1.7;
  margin-bottom: 12px;
}

.mde-use-case-card p:last-of-type {
  margin-bottom: 0;
}

.time-saved {
  font-size: 14px;
  font-weight: var(--font-weight-semi);
  margin-top: auto;
  padding-top: 16px;
}

/* CTA below use cases */
.use-cases-cta-wrap {
  margin-top: 48px;
  text-align: center;
}

.use-cases-cta-wrap .btn-primary {
  width: 100%;
  max-width: 380px;
  min-width: unset;
}


/* ============================================================
   11. SECTION 7: PRICING
   ============================================================ */
.mde-pricing {
  background-color: var(--color-bg-light);
  padding: 48px 20px;
}

.pricing-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.pricing-subtitle {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  font-size: 15px;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

/* Wrapper needed for card 2 above-card label */
.pricing-card-wrapper {
  display: flex;
  flex-direction: column;
}

/* Above-card label */
.pricing-above-label {
  display: block;
  font-size: 12px;
  font-weight: var(--font-weight-semi);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 8px;
}

/* Pricing Card */
.pricing-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Card 2: blue border */
.pricing-card--blue {
  border: 2px solid var(--color-primary);
}

/* Card 3: green border */
.pricing-card--green {
  border: 2px solid var(--color-success);
}

/* Most Popular badge */
.pricing-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background-color: var(--color-success);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  padding: 4px 12px;
  border-radius: 0 0 6px 6px;
}

/* Pricing card internals */
.pricing-tier-label {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 52px;
  font-weight: var(--font-weight-black);
  color: var(--color-text);
  line-height: 1.0;
  margin-bottom: 4px;
}

.price-note {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  color: var(--color-text-muted);
  vertical-align: middle;
  margin-left: 4px;
}

.pricing-credits {
  font-size: 17px;
  font-weight: var(--font-weight-semi);
  color: var(--color-success);
  margin-bottom: 24px;
}

/* Feature list (✓ bullets) */
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 10px;
}

.feature-list li::before {
  content: "\2713"; /* checkmark */
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--color-success);
  font-weight: var(--font-weight-bold);
  font-size: 14px;
}

/* Below pricing cards text */
.pricing-more {
  text-align: center;
  margin-top: 32px;
}

.pricing-more p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.pricing-more-link {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 14px;
}

.pricing-more-link:hover {
  text-decoration: underline;
}


/* ============================================================
   12. SECTION 8: FAQ
   ============================================================ */
.mde-faq-section {
  background-color: var(--color-bg-white);
  padding: 48px 20px;
}

.faq-container {
  max-width: var(--container-faq-max);
  margin: 0 auto;
}

.faq-container .section-h2 {
  margin-bottom: 40px;
}

/* FAQ accordion */
.mde-faq {
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

/* FAQ question button */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 17px;
  font-weight: var(--font-weight-semi);
  color: var(--color-text);
  text-align: left;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question[aria-expanded="true"] {
  color: var(--color-primary);
}

/* FAQ chevron icon */
.faq-icon {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--color-text-light);
  transition: transform 0.3s ease, color 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--color-primary);
}

/* FAQ answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer.is-open {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 0 20px 0;
  font-size: 15px;
  color: #444444;
  line-height: 1.7;
}


/* ============================================================
   13. SECTION 9: FINAL CTA
   ============================================================ */
.mde-final-cta {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-mid) 100%);
  padding: 56px 20px;
  text-align: center;
}

.final-cta-container {
  max-width: var(--container-cta-max);
  margin: 0 auto;
}

.final-cta-h2 {
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 16px;
}

.final-cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.6;
}

.mde-final-cta .btn-primary {
  width: 100%;
  max-width: 420px;
  min-width: unset;
  margin-bottom: 20px;
}

.final-cta-attribution {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 20px;
}


/* ============================================================
   14. SECTION 10: FOOTER
   ============================================================ */
.mde-footer {
  background-color: var(--color-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 24px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 24px;
  width: auto;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.4;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.50);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-divider {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.30);
}


/* ============================================================
   15. MEDIA QUERIES — TABLET (min-width: 768px)
   ============================================================ */
@media (min-width: 768px) {

  /* Nav */
  .mde-nav {
    height: 60px;
  }

  .nav-cta {
    padding: 10px 24px;
  }

  /* Hero */
  .mde-hero {
    padding: 80px 20px;
  }

  .hero-h1 {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .mde-hero .btn-primary {
    width: auto;
    min-width: 300px;
    max-width: none;
  }

  .hero-trust-trio {
    gap: 32px;
    flex-wrap: nowrap;
  }

  /* Social Proof Strip */
  .social-proof-container {
    flex-direction: row;
    gap: 48px;
  }

  /* Problem/Solution */
  .mde-problem-solution {
    padding: 80px 20px;
  }

  .problem-solution-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Features */
  .mde-features {
    padding: 80px 20px;
  }

  .section-h2 {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 17px;
    margin-bottom: 52px;
  }

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

  /* Use Cases */
  .mde-use-cases {
    padding: 80px 20px;
  }

  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .use-cases-cta-wrap .btn-primary {
    width: auto;
    min-width: 280px;
    max-width: none;
  }

  /* Pricing */
  .mde-pricing {
    padding: 80px 20px;
  }

  .pricing-subtitle {
    font-size: 17px;
    margin-bottom: 52px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* FAQ */
  .mde-faq-section {
    padding: 80px 20px;
  }

  /* Final CTA */
  .mde-final-cta {
    padding: 80px 20px;
  }

  .final-cta-h2 {
    font-size: 36px;
  }

  .final-cta-sub {
    font-size: 17px;
  }

  .mde-final-cta .btn-primary {
    width: auto;
    min-width: 300px;
    max-width: none;
  }

  /* Footer */
  .mde-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
    padding: 0 40px;
    gap: 0;
    text-align: left;
  }
}


/* ============================================================
   16. MEDIA QUERIES — DESKTOP (min-width: 1100px)
   ============================================================ */
@media (min-width: 1100px) {

  /* Hero */
  .hero-h1 {
    font-size: 44px;
  }

  .hero-sub {
    font-size: 20px;
  }

  /* Section H2 */
  .section-h2 {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  /* Features: 3-column grid */
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Use Cases: 3-column grid */
  .use-cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Pricing: 3-column grid */
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Final CTA */
  .final-cta-h2 {
    font-size: 40px;
  }

  .final-cta-sub {
    font-size: 18px;
  }
}


/* ============================================================
   16b. MEDIA QUERIES — SMALL MOBILE (max-width: 359px)
   ============================================================ */
@media (max-width: 359px) {
  .nav-cta-full {
    display: none;
  }
  .nav-cta-short {
    display: inline;
  }
}


/* ============================================================
   17. ANIMATIONS / TRANSITIONS
   ============================================================ */

/* Page-wide focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* FAQ accordion open state (applied via JS class toggle) */
.faq-answer {
  transition: max-height 0.35s ease;
}

/* Smooth entrance for feature cards on hover */
.mde-feature-card {
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

/* Nav scroll shadow transition */
.mde-nav {
  transition: box-shadow 0.25s ease;
}

/* CTA hover lift effects already on .btn-primary and .btn-pricing */


/* ============================================================
   18. ELEMENTOR OVERRIDES
   Prevent Elementor's global button styles from bleeding into
   the FAQ accordion buttons.
   ============================================================ */
.mde-faq-section .faq-question,
.mde-faq-section .faq-question:hover,
.mde-faq-section .faq-question:focus,
.mde-faq-section .faq-question:focus-visible,
.mde-faq-section .faq-question:active {
  background-color: transparent !important;
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 20px 0 !important;
  color: var(--color-text) !important;
}
