/* ═══════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #1565C0;
  --divider: #0791D0;
  --navy: #0D2B5E;
  --cp-bg: #000040;
  --orange: #E67E22;
  --green-btn: #2ECC71;
  --green-wa: #25D366;
  --teal: #17a2b8;
  --white: #ffffff;
  --gray-bg: #f0f2f5;
  --text-dark: #1a1a2e;
  --text-body: #333333;
  --text-muted: #666666;

  --font-rob: 'Roboto', sans-serif;
  --pad-x: 20px;

  --text-xs: 0.75rem;
  --text-sm: 0.8125rem;
  --text-base: 0.875rem;
  --text-md: 0.9375rem;
  --text-lg: 1rem;
  --text-xl: 1.125rem;
  --text-2xl: 1.25rem;
  --text-3xl: 1.5rem;
  --text-4xl: 1.75rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-rob);
  font-size: var(--text-base);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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


/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-rob);
  font-weight: 700;
  font-size: var(--text-base);
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
  transition: opacity 0.2s, transform 0.15s;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn:active {
  opacity: 0.80;
  transform: translateY(0);
}

.btn--blue {
  background: var(--blue);
  color: var(--white);
}

.btn--green {
  background: var(--green-btn);
  color: var(--white);
}

.btn--sm {
  font-size: var(--text-sm);
  padding: 10px 18px;
}

/* Hero CTA — split-label */
.btn--hero {
  width: 100%;
  justify-content: space-between;
  padding: 0;
  min-height: 52px;
  overflow: hidden;
  border-radius: 6px;
}

.btn-label {
  display: flex;
  align-items: center;
  padding: 0 20px;
  flex: 1;
  height: 100%;
  font-size: var(--text-base);
  font-weight: 700;
}

.btn-divider {
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  align-self: stretch;
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
  height: 100%;
}

@media (min-width: 600px) {
  .btn {
    font-size: var(--text-md);
    padding: 13px 24px;
  }

  .btn--sm {
    font-size: var(--text-base);
    padding: 11px 20px;
  }

  .btn--hero {
    min-height: 56px;
  }

  .btn-arrow {
    font-size: 1.6rem;
  }
}


/* ═══════════════════════════════════════════════════
   FAB WHATSAPP
═══════════════════════════════════════════════════ */
.fab-whatsapp {
  position: fixed;
  left: 0;
  bottom: 32px;
  z-index: 9999;
  height: 44px;
  border-radius: 0 8px 8px 0;
  background: var(--green-wa);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  box-shadow: 2px 4px 18px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fab-whatsapp:hover {
  transform: translateX(4px);
  box-shadow: 4px 6px 26px rgba(37, 211, 102, 0.70);
}

.fab-whatsapp__label {
  font-weight: 500;
  font-size: var(--text-xs);
  color: var(--white);
  white-space: nowrap;
}

.fab-whatsapp__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@media (min-width: 600px) {
  .fab-whatsapp {
    bottom: 100px;
    height: 48px;
    padding: 0 18px;
    gap: 10px;
  }

  .fab-whatsapp__label {
    font-size: var(--text-sm);
  }

  .fab-whatsapp__icon {
    width: 26px;
    height: 26px;
  }
}


/* ═══════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════
   SECTION 1 — HERO
   Mobile-first → grid 2 colunas ≥900px
   Decorativos apenas ≥1200px
═══════════════════════════════════════════════════ */
.hero {
  background-color: var(--gray-bg);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Decorativos: ocultos por padrão, aparecem só ≥1200px */
.hero-deco {
  display: none !important;
}

/* ── Topbar ── */
.hero-topbar {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 16px 0 0;
}

.hero-topbar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* ── Layout inner — mobile ── */
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px var(--pad-x) 32px;
  gap: 24px;
}

.hero-left {
  display: flex;
  align-items: flex-start;
}

.hero-brand {
  display: flex;
  flex-direction: column;
}

.brand-svg--title {
  max-width: 100%;
  height: auto;
}

.brand-svg--subtitle {
  max-width: 100%;
  height: auto;
  margin-top: 8px;
}

.hero-right {
  display: flex;
  flex-direction: column;
}

/* ── Hero Card ── */
.hero-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
  padding: 22px 18px 20px;
  width: 100%;
}

.hero-card__title {
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 16px;
  line-height: 1.4;
}

.hero-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-card__list li {
  font-weight: 500;
  font-size: var(--text-base);
  color: var(--cp-bg);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}

.plus-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  object-fit: contain;
}

.hero-card__cta-label {
  font-weight: 700;
  font-size: var(--text-xl);
  color: #0F50AA;
  margin-bottom: 14px;
  line-height: 1.3;
}

.hero-card__disclaimer {
  font-weight: 400;
  font-size: var(--text-xs);
  color: var(--blue);
  margin-top: 10px;
  line-height: 1.4;
}

/* ── 600px ── */
@media (min-width: 600px) {
  .hero-topbar__inner {
    padding: 0 32px;
  }

  .logo-img {
    height: 48px;
  }

  .hero__inner {
    padding: 24px 32px 40px;
    gap: 28px;
  }

  .hero-card {
    padding: 28px 26px 24px;
  }

  .hero-card__title {
    font-size: var(--text-2xl);
  }

  .hero-card__list {
    gap: 14px;
  }

  .hero-card__list li {
    font-size: var(--text-md);
  }

  .hero-card__cta-label {
    font-size: var(--text-2xl);
  }

  .hero-card__disclaimer {
    font-size: var(--text-sm);
  }
}

/* ── Desktop ≥900px — grid 2 colunas ── */
@media (min-width: 900px) {
  .logo-img {
    height: 60px;
  }

  .hero-topbar__inner {
    padding: 0 clamp(32px, 5vw, 60px);
  }

  .hero__inner {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 380px);
    min-height: 440px;
    padding: 0 clamp(20px, 3vw, 60px) 48px;
    gap: clamp(16px, 2vw, 40px);
    align-items: center;
  }

  .hero {
    background-image:
      url('assets/img/PROAISSIST_ESQUERDA.svg'),
      url('assets/img/PROAISSIST_CARD1.svg'),
      url('assets/img/PROAISSIST_CARD2.svg');
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size:
      clamp(260px, 22vw, 400px),
      clamp(260px, 30vw, 450px),
      clamp(300px, 40vw, 600px);
    background-position:
      -32% 5%,
      104% -5%,
      85% 120%;
  }

  .hero-left {
    padding: 56px 0 0;
  }

  .brand-svg--title,
  .brand-svg--subtitle {
    position: relative;
    top: -110px;
  }

  .brand-svg--title {
    max-width: 520px;
  }

  .brand-svg--subtitle {
    max-width: 480px;
  }

  .hero-right {
    align-self: flex-start;
    margin-top: -80px;
    position: relative;
    z-index: 2;
    min-width: 0;
    max-width: 100%;
  }

  .hero-card {
    border-radius: 0 0 12px 12px;
    padding: 36px 28px 32px;
    width: 100%;
  }

  .hero-card__title {
    font-size: var(--text-2xl);
    margin-bottom: 18px;
  }

  .hero-card__list {
    gap: 14px;
    margin-bottom: 22px;
  }

  .hero-card__list li {
    font-size: var(--text-md);
  }

  .hero-card__cta-label {
    font-size: var(--text-3xl);
    margin-bottom: 16px;
  }

  .hero-card__disclaimer {
    font-size: var(--text-sm);
  }
}

@media (min-width: 1000px) {
  .hero {
    background-image:
      url('assets/img/PROAISSIST_ESQUERDA.svg'),
      url('assets/img/PROAISSIST_CARD1.svg'),
      url('assets/img/PROAISSIST_CARD2.svg');
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size:
      clamp(260px, 22vw, 400px),
      clamp(260px, 30vw, 450px),
      clamp(300px, 40vw, 600px);
    background-position:
      -29% 5%,
      102% -5%,
      88% 150%;
  }
}

/* ── ≥1100px ── */
@media (min-width: 1100px) {
  .hero__inner {
    padding: 0 60px 48px;
    gap: 40px;
  }

  .hero-card {
    padding: 36px 36px 32px;
  }

  .hero {
    background-image:
      url('assets/img/PROAISSIST_ESQUERDA.svg'),
      url('assets/img/PROAISSIST_CARD1.svg'),
      url('assets/img/PROAISSIST_CARD2.svg');
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size:
      clamp(260px, 22vw, 400px),
      clamp(260px, 30vw, 450px),
      clamp(300px, 40vw, 600px);
    background-position:
      -25% 20%,
      99% -5%,
      88% 170%;
  }
}

/* ── ≥1200px — decorativos ativados ── */
@media (min-width: 1200px) {
  .hero {
    background-image:
      url('assets/img/PROAISSIST_ESQUERDA.svg'),
      url('assets/img/PROAISSIST_CARD1.svg'),
      url('assets/img/PROAISSIST_CARD2.svg');
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size:
      clamp(260px, 22vw, 400px),
      clamp(260px, 30vw, 450px),
      clamp(300px, 40vw, 600px);
    background-position:
      -23% 20%,
      87% -80%,
      82% -280%;
  }
}


/* ═══════════════════════════════════════════════════
   SECTION 2 — CLIENTE PRO
   Decorativos apenas ≥1200px
═══════════════════════════════════════════════════ */
.cliente-pro {
  background-color: var(--cp-bg);
  position: relative;
}

/* Decorativos: ocultos por padrão */
.cliente-pro__deco-wrap {
  display: none !important;
}

.cliente-pro__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 20px var(--pad-x) 40px;
}

.cliente-pro__card {
  background: var(--white);
  border-radius: 12px;
  padding: 22px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 2;
}

.cliente-pro__salutation {
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.cliente-pro__body {
  font-weight: 500;
  font-size: var(--text-base);
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 14px;
}

.cliente-pro__divider {
  border: none;
  border-top: 3px solid var(--divider);
  width: 100px;
  margin-bottom: 14px;
}

.cliente-pro__highlight {
  font-size: var(--text-base);
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 18px;
}

.cliente-pro__benefits {
  padding: 28px 0 0;
}

.benefits__title {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.5;
}

.benefits__strong {
  font-weight: 800;
}

.benefits__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefits__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.5;
}

.benefits__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  padding: 9px;
}

.benefits__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 600px) {
  .cliente-pro__inner {
    padding: 24px 32px 44px;
  }

  .cliente-pro__card {
    padding: 26px;
  }

  .cliente-pro__salutation {
    font-size: var(--text-xl);
  }

  .cliente-pro__body {
    font-size: var(--text-md);
  }

  .cliente-pro__highlight {
    font-size: var(--text-md);
  }

  .benefits__title {
    font-size: var(--text-md);
    margin-bottom: 24px;
  }

  .benefits__list {
    gap: 22px;
  }

  .benefits__list li {
    font-size: var(--text-md);
    gap: 16px;
  }

  .benefits__icon {
    width: 48px;
    height: 48px;
  }
}

@media (min-width: 900px) {
  .cliente-pro {
    background-image: url('assets/img/PROAISSIST_ESQUERDA_CLIENTEPRO.svg');
    background-repeat: no-repeat;
    background-size: clamp(300px, 28vw, 500px);
    background-position: -5% 90%;
  }

  .cliente-pro__inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
    padding: 0 clamp(32px, 5vw, 60px) 52px;
  }

  .cliente-pro__card {
    padding: 62px 36px;
    margin-top: -52px;
  }

  .cliente-pro__salutation {
    font-size: var(--text-xl);
    margin-bottom: 10px;
  }

  .cliente-pro__body {
    font-size: var(--text-md);
    margin-bottom: 16px;
  }

  .cliente-pro__divider {
    width: 130px;
    margin-bottom: 16px;
  }

  .cliente-pro__highlight {
    font-size: var(--text-md);
    margin-bottom: 20px;
  }

  .cliente-pro__benefits {
    padding: 44px 0 0 44px;
  }

  .benefits__title {
    font-size: var(--text-lg);
    margin-bottom: 26px;
  }

  .benefits__list {
    gap: 26px;
  }

  .benefits__list li {
    font-size: var(--text-md);
    gap: 18px;
  }

  .benefits__icon {
    width: 52px;
    height: 52px;
    padding: 10px;
  }
}

/* ── ≥1200px — decorativos ativados ── */
@media (min-width: 1200px) {
  .cliente-pro {
    background-image: url('assets/img/PROAISSIST_ESQUERDA_CLIENTEPRO.svg');
    background-repeat: no-repeat;
    background-size: clamp(300px, 28vw, 500px);
    background-position: 10% 90%;
  }
}


/* ═══════════════════════════════════════════════════
   SECTION 3 — FEATURES / DIAGRAM
   Mobile: coluna única, spine oculto
   ≥800px: grid simétrico 1fr auto 1fr com spine
   Decorativos direita apenas ≥1200px
═══════════════════════════════════════════════════ */
.features {
  background: var(--gray-bg);
  position: relative;
  overflow: hidden;
}

/* Decorativo direito: oculto por padrão */
.features-deco-right {
  display: none;
}

.features-deco-right img {
  width: 100%;
  height: auto;
}

.features__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px var(--pad-x) 40px;
}

.features__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--cp-bg);
  margin-bottom: 6px;
  line-height: 1.3;
}

.features__title-bar {
  width: 100px;
  height: 3px;
  background: var(--blue);
  margin-bottom: 28px;
}

/* ── Mobile: coluna única ── */
.features__diagram {
  display: flex;
  flex-direction: column;
}

.diagram-spine {
  display: none;
}

.spine-img {
  display: block;
}

.diagram-col {
  display: flex;
  flex-direction: column;
}

.diagram-col--left,
.diagram-col--right {
  position: relative;
  padding-left: 14px;
  gap: 24px;
}

.diagram-col--left::before,
.diagram-col--right::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg,
      rgba(21, 101, 192, 0.75) 0%,
      rgba(21, 101, 192, 0.15) 100%);
}

.diagram-col--right {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px dashed rgba(21, 101, 192, 0.20);
}

.diagram-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.diagram-item__header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.diagram-icon {
  width: 40px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.diagram-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border-radius: 5px;
  font-weight: 500;
  font-size: var(--text-xs);
  color: var(--white);
  white-space: nowrap;
  padding: 0 10px;
  min-width: 120px;
}

.diagram-badge--red {
  background: #e8472e;
}

.diagram-badge--green {
  background: #5cb85c;
}

.diagram-badge--navy {
  background: var(--navy);
}

.diagram-badge--amber {
  background: #c89a10;
}

.diagram-badge--teal {
  background: var(--teal);
}

.diagram-desc {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
  padding-left: 50px;
}

@media (min-width: 600px) {
  .features__inner {
    padding: 40px 32px 48px;
  }

  .features__title {
    font-size: var(--text-3xl);
  }

  .features__title-bar {
    width: 120px;
    margin-bottom: 32px;
  }

  .diagram-col--left,
  .diagram-col--right {
    padding-left: 16px;
    gap: 28px;
  }

  .diagram-col--right {
    margin-top: 36px;
    padding-top: 32px;
  }

  .diagram-badge {
    height: 34px;
    font-size: var(--text-sm);
  }

  .diagram-desc {
    font-size: var(--text-sm);
    padding-left: 54px;
  }

  .diagram-icon {
    width: 42px;
    height: 38px;
  }
}

/* ── ≥800px: grid simétrico com spine ── */
@media (min-width: 800px) {
  .features__diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 0;
  }

  .diagram-col--left::before,
  .diagram-col--right::before {
    display: none;
  }

  .diagram-col--left {
    padding: 0;
    gap: 36px;
    margin-top: 50px;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .diagram-col--right {
    padding: 0;
    border-top: none;
    gap: 36px;
    margin-top: 90px;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }


  .diagram-spine {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 64px;
    position: relative;
    z-index: 2;
  }

  .spine-img {
    width: 64px;
    height: 100%;
    object-fit: fill;
    display: block;
  }

  .diagram-badge {
    height: 32px;
    font-size: var(--text-xs);
    padding: 0 12px;
    min-width: 150px;
  }

  .diagram-desc {
    font-size: var(--text-xs);
    padding-left: 52px;
  }

  .diagram-icon {
    width: 38px;
    height: 34px;
  }

  .diagram-col--left .diagram-item {
    align-items: flex-end;
  }


  .diagram-col--left .diagram-desc {
    text-align: right;
    padding-left: 0;
    padding-right: 52px;
  }
}

@media (min-width: 900px) {
  .features-deco-right {
    display: block;
    position: absolute;
    right: 10%;
    top: -30%;
    width: 36%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.70;
  }

  .features__inner {
    padding: 52px clamp(32px, 5vw, 60px) 60px;
  }

  .features__title {
    font-size: var(--text-4xl);
  }

  .features__title-bar {
    width: 140px;
    margin-bottom: 40px;
  }

  .diagram-spine {
    width: 96px;
  }

  .spine-img {
    width: 96px;
  }

  .diagram-col--left {
    gap: 72px;
    padding-right: 16px;
    padding-top: 0px;
  }

  .diagram-col--right {
    gap: 72px;
    padding-left: 16px;
    margin-top: 110px;
  }

  .diagram-icon {
    width: 46px;
    height: 40px;
  }

  .diagram-badge {
    height: 34px;
    font-size: var(--text-sm);
    padding: 0 14px;
    min-width: 180px;
  }

  .diagram-desc {
    font-size: var(--text-sm);
    padding-left: 58px;
    max-width: 280px;
  }

  .diagram-col--left .diagram-desc {
    padding-right: 58px;
  }
}

@media (min-width: 1100px) {
  .features-deco-right {
    display: block;
    position: absolute;
    right: 10%;
    top: -40%;
    width: 36%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.70;
  }

  .diagram-spine {
    width: 104px;
  }

  .spine-img {
    width: 104px;
  }

  .diagram-col--left {
    gap: 80px;
    padding-right: 20px;
    padding-top: 8px;
  }

  .diagram-col--right {
    gap: 90px;
    padding-left: 20px;
    margin-top: 130px;
  }

  .diagram-desc {
    max-width: 300px;
  }
}

/* ── ≥1200px — decorativo direito ativado ── */
@media (min-width: 1200px) {
  .features-deco-right {
    display: block;
    position: absolute;
    right: 10%;
    top: -50%;
    width: 36%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.70;
  }
}


/* ═══════════════════════════════════════════════════
   SECTION 4 — IDEAL PARA
═══════════════════════════════════════════════════ */
.ideal {
  background: var(--white);
}

.ideal__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px var(--pad-x) 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ideal__title {
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.4;
}

.ideal__title strong {
  font-weight: 700;
}

.ideal__list-wrap {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: stretch;
}

.ideal__gradient-bar {
  width: 7px;
  border-radius: 6px;
  flex-shrink: 0;
  background: linear-gradient(180deg,
      #e8472e 0%,
      #E67E22 25%,
      #27AE60 50%,
      #17a2b8 75%,
      #0D2B5E 100%);
}

.ideal__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.ideal__list li {
  font-weight: 500;
  font-size: var(--text-md);
  line-height: 1.6;
  color: #0F50AA;
  padding: 3px 0;
}

.ideal__mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── Mockup Window ── */
.mockup-window {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  width: 100%;
  max-width: 460px;
  transition: transform 0.4s ease;
}

.mockup-titlebar {
  background: #e8eaed;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.mockup-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mockup-dot--red {
  background: #ff5f56;
}

.mockup-dot--yellow {
  background: #ffbd2e;
}

.mockup-dot--green {
  background: #27c93f;
}

.mockup-urlbar {
  flex: 1;
  background: var(--white);
  border-radius: 20px;
  height: 18px;
  margin-left: 8px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  overflow: hidden;
}

.mockup-url-text {
  font-size: 0.5rem;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-body {
  padding: 12px 14px 10px;
}

.mockup-section-title {
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 4px;
}

.mockup-section-title--orange {
  color: var(--orange);
  border-bottom: none;
  margin-top: 6px;
  text-align: left;
}

.mockup-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 10px;
}

.mockup-field {
  display: flex;
  gap: 3px;
  margin-bottom: 2px;
  font-size: 0.6rem;
}

.mockup-label {
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.mockup-value {
  color: var(--text-muted);
}

.mockup-value--blurred {
  color: transparent;
  background: #d8dce0;
  border-radius: 3px;
  user-select: none;
}

.mockup-hr {
  border: none;
  border-top: 1px solid #e8eaed;
  margin: 6px 0;
}

.mockup-analysis-text {
  font-size: 0.58rem;
  color: #555;
  line-height: 1.55;
  background: #fffdf5;
  border: 1px solid #f0e0c0;
  border-left: 3px solid var(--orange);
  border-radius: 0 6px 6px 0;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mockup-footer {
  font-size: 0.5rem;
  color: #999;
  text-align: right;
  margin-top: 6px;
  font-style: italic;
}

@media (min-width: 600px) {
  .ideal__inner {
    padding: 40px 32px 52px;
    gap: 32px;
  }

  .ideal__title {
    font-size: var(--text-3xl);
  }

  .ideal__list li {
    font-size: var(--text-lg);
  }

  .ideal__list-wrap {
    gap: 16px;
    margin-bottom: 28px;
  }

  .ideal__gradient-bar {
    width: 8px;
  }
}

@media (min-width: 900px) {
  .ideal__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(24px, 4vw, 40px);
    align-items: center;
    padding: clamp(40px, 5vw, 56px) clamp(32px, 5vw, 60px) clamp(48px, 6vw, 64px);
  }

  .ideal__title {
    font-size: var(--text-4xl);
    margin-bottom: 24px;
  }

  .ideal__list li {
    font-size: var(--text-xl);
  }

  .ideal__list-wrap {
    gap: 16px;
    margin-bottom: 36px;
  }

  .ideal__gradient-bar {
    width: 9px;
  }

  .mockup-window {
    max-width: 520px;
    box-shadow: 0 14px 56px rgba(0, 0, 0, 0.20);
    transform: perspective(1200px) rotateY(-8deg) rotateX(3deg) rotateZ(1deg);
  }

  .mockup-window:hover {
    transform: perspective(1200px) rotateY(-3deg) rotateX(1deg) rotateZ(0deg);
  }

  .mockup-titlebar {
    padding: 9px 14px;
    gap: 6px;
  }

  .mockup-dot {
    width: 10px;
    height: 10px;
  }

  .mockup-urlbar {
    height: 20px;
    margin-left: 10px;
    padding: 0 10px;
  }

  .mockup-url-text {
    font-size: 0.58rem;
  }

  .mockup-body {
    padding: 14px 18px 12px;
  }

  .mockup-section-title {
    font-size: 0.72rem;
    margin-bottom: 9px;
    padding-bottom: 5px;
  }

  .mockup-fields-grid {
    gap: 3px 14px;
  }

  .mockup-field {
    font-size: 0.62rem;
    gap: 4px;
  }

  .mockup-analysis-text {
    font-size: 0.60rem;
    padding: 9px 11px;
    gap: 5px;
  }

  .mockup-footer {
    font-size: 0.56rem;
    margin-top: 7px;
  }
}