/*
 * Academatic — White Premium Theme
 * Brand: #2563EB blue | #0F172A navy | #FFFFFF white
 */

/* ══ DESIGN TOKENS ══════════════════════════════════════ */
:root {
  --bg:          #FFFFFF;
  --bg-alt:      #F0F7FF;
  --bg-alt-2:    #EFF6FF;

  --blue:        #2563EB;
  --blue-dark:   #1E40AF;
  --blue-darker: #1E3A8A;
  --blue-mid:    #3B82F6;
  --blue-soft:   #60A5FA;
  --blue-light:  #DBEAFE;
  --blue-lighter:#EFF6FF;

  --navy:        #0F172A;
  --navy-mid:    #1E293B;
  --text:        #334155;
  --text-muted:  #64748B;
  --text-dim:    #94A3B8;

  --border:      rgba(37,99,235,0.14);
  --border-gray: #E2E8F0;

  --shadow-sm:   0 1px 4px rgba(37,99,235,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 20px rgba(37,99,235,0.11), 0 2px 8px rgba(0,0,0,0.05);
  --shadow-lg:   0 8px 40px rgba(37,99,235,0.15), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-xl:   0 20px 60px rgba(37,99,235,0.18), 0 8px 24px rgba(0,0,0,0.08);

  --grad-blue:   linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  --grad-text:   linear-gradient(120deg, #1E3A8A 0%, #2563EB 55%, #3B82F6 100%);
  --grad-hero:   linear-gradient(160deg, #EFF6FF 0%, #DBEAFE 28%, #F0F7FF 60%, #fff 100%);
  --grad-card:   linear-gradient(145deg, #fff 0%, #F8FBFF 100%);
  --grad-accent: linear-gradient(135deg, #1E3A8A 0%, #2563EB 50%, #3B82F6 100%);

  --header-height: 68px;
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-2xl: 48px;

  scroll-behavior: smooth;
}

/* ══ RESET ════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Cairo', 'Segoe UI Arabic', Tahoma, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }

@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ══ FOCUS ════════════════════════════════════════════════ */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible) { outline: none; }

/* ══ UTILITIES ════════════════════════════════════════════ */
.ltr-inline { direction: ltr; unicode-bidi: isolate; display: inline; }

.section-wrapper {
  max-width: 72rem;
  margin: 0 auto;
  padding: 5.5rem 1.5rem;
}

section[id] { scroll-margin-top: var(--header-height); }

/* Gradient text */
.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section eyebrow badge */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--blue-lighter);
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.75;
}

/* ══ HEADER ═══════════════════════════════════════════════ */
#site-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(37,99,235,0.10);
  box-shadow: 0 2px 20px rgba(37,99,235,0.07);
}

/* ══ CTA BUTTONS ══════════════════════════════════════════ */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.25rem;
  border-radius: var(--r-md);
  background: var(--grad-blue);
  color: #fff;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(37,99,235,0.38), 0 1px 4px rgba(0,0,0,0.08);
  transition: transform .18s, box-shadow .18s, filter .18s;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.cta-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,rgba(255,255,255,0.13) 0%,transparent 100%);
  pointer-events: none;
}
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,99,235,0.45), 0 2px 8px rgba(0,0,0,0.1);
  filter: brightness(1.06);
}
.cta-primary:active { transform: scale(0.98); }
@media (min-width:640px) { .cta-primary { width: auto; } }

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: var(--r-md);
  border: 2px solid var(--blue-light);
  background: rgba(37,99,235,0.05);
  color: var(--blue-dark);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, border-color .18s, transform .18s, box-shadow .18s;
  width: 100%;
}
.cta-secondary:hover {
  background: var(--blue-lighter);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,99,235,0.14);
}
@media (min-width:640px) { .cta-secondary { width: auto; } }

/* ══ §1 HERO ══════════════════════════════════════════════ */
#hero {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
}
.hero-blob--1 {
  width: 560px; height: 560px;
  background: rgba(37,99,235,0.10);
  top: -160px; left: -160px;
}
.hero-blob--2 {
  width: 420px; height: 420px;
  background: rgba(96,165,250,0.09);
  bottom: -100px; right: 5%;
}
.hero-blob--3 {
  width: 280px; height: 280px;
  background: rgba(29,78,216,0.07);
  top: 40%; left: 40%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1rem 2.5rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    padding: 5rem 1.5rem 4.5rem;
  }
}

/* ── Hero Copy ── */
.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .hero-copy { gap: 1.5rem; }
}

.hero-headline {
  font-size: clamp(1.75rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.hero-sub {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hero-sub p { color: var(--text); font-size: 0.92rem; }
.hero-sub .sub-dim { color: var(--text-muted); font-size: 0.84rem; }
@media (min-width: 480px) {
  .hero-sub p { font-size: 1.08rem; }
  .hero-sub .sub-dim { font-size: 0.96rem; }
}

/* Pill badges for trust bullets */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 50px;
  background: #fff;
  border: 1.5px solid var(--blue-light);
  color: var(--blue-darker);
  font-size: 0.76rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 480px) {
  .hero-pills { gap: 0.6rem; }
  .hero-pill { font-size: 0.88rem; padding: 0.45rem 1rem; }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}
@media (min-width: 480px) {
  .hero-ctas { flex-direction: row; width: auto; gap: 0.75rem; }
}

/* CTA main with icon + animated arrow */
.hero-cta-main {
  gap: 0.5rem;
  font-size: 1rem !important;
}
.hero-cta-icon { font-size: 1.15em; }
.hero-cta-arrow {
  transition: transform 0.25s ease;
}
.hero-cta-main:hover .hero-cta-arrow {
  transform: translateX(-5px);
}

/* Trust micro-row */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 0.15rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}
.hero-trust-item svg { flex-shrink: 0; width: 14px; height: 14px; }
@media (min-width: 480px) {
  .hero-trust { gap: 1.25rem; }
  .hero-trust-item { font-size: 0.83rem; gap: 0.4rem; }
  .hero-trust-item svg { width: 16px; height: 16px; }
}

/* ── Hero Image Visual ── */
.hero-visual {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  order: -1;
  width: 100%;
}

@media (min-width: 900px) {
  .hero-visual {
    order: 0;
    width: auto;
    max-width: 380px;
  }
}

/* Creative frame wrapper — mobile only decorative treatment */
.hero-visual-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

/* Decorative rotating ring behind image — mobile only */
.hero-visual-ring {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px dashed rgba(37,99,235,0.18);
  animation: spin-slow 20s linear infinite;
  pointer-events: none;
}
@keyframes spin-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@media (min-width: 900px) {
  .hero-visual-ring { display: none; }
}

.hero-visual-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 220px;
  border-radius: 24px;
  overflow: visible;
}
@media (min-width: 360px) {
  .hero-visual-wrap { max-width: 240px; }
}
@media (min-width: 480px) {
  .hero-visual-wrap { max-width: 280px; }
}
@media (min-width: 900px) {
  .hero-visual-wrap { max-width: 380px; }
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow:
    0 8px 32px rgba(37,99,235,0.22),
    0 2px 8px rgba(0,0,0,0.06);
  display: block;
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .hero-image {
    border-radius: var(--r-xl);
    box-shadow: 0 24px 64px rgba(37,99,235,0.28);
  }
}

/* Float cards — hidden on mobile, shown on desktop */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(37,99,235,0.16);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-darker);
  box-shadow: 0 8px 24px rgba(37,99,235,0.15);
  display: none;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  z-index: 10;
  backdrop-filter: blur(4px);
}
@media (min-width: 900px) {
  .float-card { display: flex; }
}

.float-card--1 { top: 12%; left: -12px; animation: floatA 3.6s ease-in-out infinite; }
.float-card--2 { bottom: 32%; left: -16px; animation: floatB 4.2s ease-in-out infinite .6s; }
.float-card--3 { bottom: 8%; right: -12px; animation: floatC 3.9s ease-in-out infinite 1.1s; }

/* Mobile-only overlay badges around the image */
.hero-mobile-badges {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .hero-mobile-badges { display: none; }
}

.hero-mobile-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.65rem;
  border-radius: 50px;
  background: #fff;
  border: 1.5px solid rgba(37,99,235,0.14);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue-darker);
  box-shadow: 0 3px 12px rgba(37,99,235,0.12);
  white-space: nowrap;
}
.hero-mobile-badge--1 { animation: badge-pop 0.5s ease-out 0.2s both; }
.hero-mobile-badge--2 { animation: badge-pop 0.5s ease-out 0.4s both; }
.hero-mobile-badge--3 { animation: badge-pop 0.5s ease-out 0.6s both; }

@keyframes badge-pop {
  0%   { opacity: 0; transform: scale(0.7) translateY(8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes floatA {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes floatB {
  0%,100% { transform: translateY(-4px); }
  50%      { transform: translateY(7px); }
}
@keyframes floatC {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-9px) rotate(2deg); }
}

/* ══ §2 PROBLEM ═══════════════════════════════════════════ */
#problem { background: var(--bg-alt); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width:640px) { .problem-grid { grid-template-columns: repeat(3,1fr); } }

.problem-card {
  background: var(--grad-card);
  border: 1.5px solid rgba(37,99,235,0.10);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 4px; height: 100%;
  background: var(--grad-blue);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.problem-card__img {
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
  display: block;
}
.problem-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-lighter);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 0.875rem;
  border: 1px solid var(--blue-light);
}
.problem-card__title { font-weight: 700; color: var(--navy); font-size: 1rem; }
.problem-card__body  { color: var(--text-muted); font-size: 0.88rem; margin-top: 0.25rem; }

.problem-reframe {
  background: var(--grad-blue);
  border-radius: var(--r-xl);
  padding: 2rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.problem-reframe::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}
.problem-reframe::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.problem-reframe p { position: relative; z-index: 1; }

/* ══ §3 SOLUTION ══════════════════════════════════════════ */
#solution { background: var(--bg); }

.solution-card {
  background: #fff;
  border: 1.5px solid rgba(37,99,235,0.13);
  border-radius: var(--r-2xl);
  padding: 2.75rem;
  max-width: 680px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .solution-card .flex.items-start { flex-direction: row; gap: 0.875rem; }
  .solution-card .flex.items-start > span { width: 44px; height: 44px; }
  .solution-card .flex.items-start > span svg { width: 22px; height: 22px; }
  .solution-card .flex.items-start > div h3 { font-size: 1.2rem; }
  .solution-card .flex.items-start > div p { font-size: 0.9rem; }
}
.solution-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 4px;
  background: var(--grad-blue);
}

.solution-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.solution-label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.875rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--blue-lighter);
  color: var(--blue-dark);
  border: 1px solid var(--blue-light);
}

/* ══ §4 LEARN ═════════════════════════════════════════════ */
#learn { background: var(--bg-alt); }

.learn-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-bottom: 2rem;
  list-style: none; padding: 0;
}
@media (min-width:640px)  { .learn-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px) { .learn-grid { grid-template-columns: repeat(3,1fr); } }

.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background: #fff;
  border: 1.5px solid rgba(37,99,235,0.10);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.learn-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37,99,235,0.25);
}

.learn-check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--grad-blue);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(37,99,235,0.28);
  margin-top: 2px;
}

.learn-highlight {
  background: var(--grad-blue);
  border-radius: var(--r-lg);
  padding: 1.25rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  color: #fff;
}

/* ══ §5 FUTURE ════════════════════════════════════════════ */
#future {
  background: var(--grad-accent);
  position: relative;
  overflow: hidden;
}
#future::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -150px; right: -150px;
  pointer-events: none;
}
#future::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -80px; left: 10%;
  pointer-events: none;
}

.future-card {
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.20);
  border-radius: var(--r-xl);
  padding: 2rem;
  color: #fff;
  line-height: 1.75;
  backdrop-filter: blur(8px);
  transition: background .2s, transform .2s;
}
.future-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }

.future-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.future-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.future-dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  margin-top: 9px;
}

/* ══ §6 PROJECT TIMELINE ══════════════════════════════════ */
#project { background: var(--bg); }

.timeline {
  list-style: none;
  padding: 0;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}
/* Vertical connector line */
.timeline::before {
  content: '';
  position: absolute;
  top: 28px; bottom: 28px;
  right: 23px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-light), var(--blue));
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--r-md);
  background: var(--grad-card);
  border: 1.5px solid rgba(37,99,235,0.10);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.75rem;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.timeline-step:hover { transform: translateX(-4px); box-shadow: var(--shadow-md); }

.timeline-step__num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,99,235,0.32);
  position: relative;
  z-index: 1;
}

.timeline-step__title { font-weight: 700; color: var(--navy); }
.timeline-step__sub   { font-size: 0.88rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ══ §7 PROFESSIONAL ══════════════════════════════════════ */
#professional { background: var(--bg-alt); }

.pro-card {
  background: linear-gradient(160deg, #0F172A 0%, #1E3A8A 100%);
  border-radius: var(--r-2xl);
  padding: 3rem 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.pro-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 4px;
  background: var(--grad-blue);
}
.pro-card::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(37,99,235,0.15);
  top: -80px; left: -80px;
  pointer-events: none;
}

.pro-card__title   { color: #fff; font-size: 1.8rem; font-weight: 800; }
.pro-card__subtitle{ color: rgba(255,255,255,0.65); margin-top: 0.3rem; font-size: 0.95rem; }

.pro-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (min-width: 540px) { .pro-items { grid-template-columns: 1fr 1fr; } }

.pro-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md);
  padding: 0.875rem 1.1rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background .2s, border-color .2s;
}
.pro-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(96,165,250,0.35);
}

.pro-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.10);
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  position: relative; z-index: 1;
}

/* ══ §8 AUDIENCE ══════════════════════════════════════════ */
#audience { background: var(--bg); }

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 720px;
  margin: 0 auto;
  list-style: none; padding: 0;
}
@media (min-width:640px)  { .audience-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px) { .audience-grid { grid-template-columns: repeat(3,1fr); } }

.audience-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  background: #fff;
  border: 1.5px solid rgba(37,99,235,0.10);
  border-radius: var(--r-lg);
  padding: 1.75rem 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: default;
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37,99,235,0.28);
}

.audience-card__icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--blue-lighter);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  border: 1px solid var(--blue-light);
}

.audience-footer {
  margin-top: 2rem;
  text-align: center;
}
.audience-cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.5rem;
  border-radius: var(--r-xl);
  background: var(--grad-blue);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: var(--shadow-lg);
}

/* ══ §9 BENEFITS ══════════════════════════════════════════ */
#benefits { background: var(--bg-alt); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width:640px)  { .benefits-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px) { .benefits-grid { grid-template-columns: repeat(3,1fr); } }

.benefit-card {
  background: #fff;
  border: 1.5px solid rgba(37,99,235,0.10);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 3px;
  background: var(--grad-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37,99,235,0.25);
}
.benefit-card:hover::after { transform: scaleX(1); }

.benefit-card__icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--blue-lighter);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid var(--blue-light);
}

.benefit-card__title { font-weight: 700; color: var(--navy); }
.benefit-card__body  { font-size: 0.88rem; color: var(--text-muted); margin-top: 0.3rem; }

/* ══ §10 OFFER ════════════════════════════════════════════ */
#offer {
  background: var(--grad-accent);
  position: relative;
  overflow: hidden;
}
#offer::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -200px; right: -150px;
  pointer-events: none;
}

.offer-wrapper { position: relative; z-index: 1; }

.offer-card {
  background: #fff;
  border-radius: var(--r-2xl);
  padding: 3rem 2.5rem;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 5px;
  background: var(--grad-blue);
}

.offer-old-price {
  font-size: 1rem;
  color: var(--text-dim);
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  margin-bottom: 0.5rem;
}

.offer-new-price {
  font-size: clamp(1.3rem, 3.5vw, 1.6rem);
  font-weight: 700;
  color: var(--navy-mid);
  margin-bottom: 0.5rem;
}

.offer-price-big {
  font-size: clamp(3.5rem, 10vw, 5rem);
  font-weight: 800;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: inline-block;
  filter: drop-shadow(0 2px 8px rgba(37,99,235,0.25));
}

.offer-saving {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.875rem;
  border-radius: 50px;
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid #86EFAC;
  margin: 0.5rem auto 1rem;
}

@keyframes pulse-ring {
  0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
}
.offer-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: #FEF2F2;
  color: #B91C1C;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid #FECACA;
  margin-bottom: 1.5rem;
  animation: pulse-ring 2.2s ease-in-out infinite;
}

.offer-features {
  text-align: right;
  border-top: 1px solid #F1F5F9;
  padding-top: 1.25rem;
  margin: 0 0 1.75rem;
}
.offer-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

/* ══ §11 WHY NOW ══════════════════════════════════════════ */
#why-now { background: var(--bg); }

.why-now-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
@media (min-width:640px) { .why-now-split { grid-template-columns: 1fr 1fr; } }

.why-card {
  border-radius: var(--r-xl);
  padding: 2rem;
  line-height: 1.7;
}
.why-card--neg {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  color: var(--text-muted);
}
.why-card--pos {
  background: var(--blue-lighter);
  border: 2px solid var(--blue-light);
  color: var(--blue-darker);
  box-shadow: var(--shadow-md);
}
.why-card__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  display: block;
}

/* ══ §12 ORDER FORM ═══════════════════════════════════════ */
#order { background: var(--bg-alt); }

.order-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) { .order-layout { grid-template-columns: 1.15fr 1fr; align-items: start; } }

.order-form-card {
  background: #fff;
  border: 1.5px solid rgba(37,99,235,0.12);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.5rem;
}
.form-row label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}
.form-row input {
  padding: 0.875rem 1.1rem;
  border: 2px solid var(--border-gray);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy);
  background: #fff;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  min-height: 52px;
}
.form-row input::placeholder { color: var(--text-dim); }
.form-row input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
  outline: none;
}
.form-row input[aria-invalid="true"] {
  border-color: #DC2626;
  box-shadow: 0 0 0 4px rgba(220,38,38,0.09);
}
.error {
  color: #DC2626;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3em;
  line-height: 1.5;
}
#order-submit { min-height: 54px; font-size: 1.1rem; font-weight: 700; }
#order-success {
  scroll-margin-top: var(--header-height);
  background: #F0FDF4;
  border: 2px solid #86EFAC;
  color: #15803D;
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.7;
}

/* Order guide side card */
.order-guide {
  background: linear-gradient(160deg, #0F172A 0%, #1E3A8A 100%);
  border-radius: var(--r-xl);
  padding: 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.order-guide::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 4px;
  background: var(--grad-blue);
}
.order-guide__title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.order-guide-step {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.1rem;
}
.order-guide-step__num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.20);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}
.order-guide-step p { color: rgba(255,255,255,0.80); font-size: 0.9rem; font-weight: 500; }
.order-guide-step strong { color: #fff; }

/* ══ §13 PAYMENT ══════════════════════════════════════════ */
#payment { background: var(--bg); }

.payment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width:540px) { .payment-grid { grid-template-columns: 1fr 1fr; } }

.payment-card {
  background: #fff;
  border: 2px solid rgba(37,99,235,0.13);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.payment-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 4px;
  background: var(--grad-blue);
}
.payment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.payment-card__label { font-weight: 700; font-size: 1.05rem; color: var(--blue-darker); }

.payment-card__handle {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: var(--bg-alt);
  padding: 0.6rem 1rem;
  border-radius: var(--r-sm);
  display: inline-block;
  border: 1px solid var(--border);
  font-variant-numeric: tabular-nums;
}

.payment-card__copy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  background: var(--blue-lighter);
  color: var(--blue-dark);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid var(--blue-light);
  cursor: pointer;
  transition: background .18s, color .18s, transform .15s, box-shadow .15s;
  align-self: flex-start;
}
.payment-card__copy:hover {
  background: var(--grad-blue);
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,99,235,0.30);
}

.payment-card__feedback {
  font-size: 0.875rem;
  font-weight: 700;
  color: #15803D;
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  min-height: 1.4em;
}

.payment-instruction {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border-radius: var(--r-md);
  background: var(--blue-lighter);
  border: 1px solid var(--blue-light);
  color: var(--blue-darker);
  font-weight: 600;
  font-size: 0.95rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ══ §14 CONFIRM ══════════════════════════════════════════ */
#confirm { background: var(--bg-alt); }

.confirm-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  position: relative;
}
@media (min-width: 640px) {
  .confirm-steps { flex-direction: row; gap: 0; }
}

/* Connector line between steps */
.confirm-step-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Horizontal connector on desktop */
@media (min-width: 640px) {
  .confirm-step-wrap:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, var(--blue-light), var(--blue));
    z-index: 0;
  }
}

.confirm-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  width: 100%;
  background: #fff;
  border: 1.5px solid rgba(37,99,235,0.10);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  transition: transform .2s, box-shadow .2s;
}
@media (min-width: 640px) {
  .confirm-step { margin: 0 0.375rem; }
}
.confirm-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.confirm-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}

.confirm-step__title { font-weight: 700; color: var(--navy); font-size: 1rem; }
.confirm-step__sub   { font-size: 0.85rem; color: var(--text-muted); }

.confirm-channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}
.confirm-channel {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid;
  width: 100%;
  background: none;
  cursor: pointer;
}
.confirm-channel--disabled {
  border-color: var(--border-gray);
  color: var(--text-dim);
  cursor: not-allowed;
  background: #FAFAFA;
}
.confirm-channel--active {
  border-color: rgba(37,99,235,0.22);
  background: var(--blue-lighter);
  color: var(--blue-darker);
}

/* ══ §15 CLOSING ══════════════════════════════════════════ */
#closing {
  background: var(--grad-accent);
  position: relative;
  overflow: hidden;
}
#closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 5.5rem 1.5rem 5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.closing-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto 2.5rem;
  text-align: right;
  list-style: none;
  padding: 0;
}
.closing-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}
.closing-item--star { color: #BFDBFE; }

.closing-check {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: #fff;
}

/* Closing CTA */
.closing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 3rem;
  border-radius: var(--r-xl);
  background: #fff;
  color: var(--blue);
  font-family: inherit;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.20);
  transition: transform .2s, box-shadow .2s;
  border: none;
  cursor: pointer;
}
.closing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

/* ══ FOOTER ═══════════════════════════════════════════════ */
footer {
  background: linear-gradient(135deg, #0A1628 0%, #0F172A 100%);
  color: var(--text-dim);
  text-align: center;
  padding: 1.5rem 1rem 5rem;
  font-size: 0.88rem;
}
#footer-year { font-variant-numeric: tabular-nums; }

/* ══ FIXED BOTTOM CTA BAR ═════════════════════════════════ */
.fixed-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(37,99,235,0.12);
  box-shadow: 0 -4px 24px rgba(37,99,235,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.fixed-cta-bar__text {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 480px) { .fixed-cta-bar__text { display: none; } }

/* ══ FIXED CALL & WHATSAPP ═════════════════════════════════ */
.fixed-contact {
  position: fixed;
  left: 1.25rem;
  bottom: 5rem;
  z-index: 110;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.fixed-contact__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  color: #fff;
}
.fixed-contact__btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.25); }
.fixed-contact__btn svg { width: 26px; height: 26px; }
.fixed-contact--wa  { background: #25D366; }
.fixed-contact--call { background: #2563EB; }

/* ══ RESPONSIVE ═══════════════════════════════════════════ */

/* ── ≤ 768px tablets / small screens ── */
@media (max-width: 768px) {
  .section-wrapper { padding: 3rem 1rem; }
  .solution-card, .pro-card { padding: 1.5rem; }
  .offer-card { padding: 1.75rem 1.25rem; }
  .order-form-card { padding: 1.5rem; }
  .order-guide { padding: 1.5rem; }

  .problem-reframe { padding: 1.5rem 1.25rem; }

  .closing-inner { padding: 3.5rem 1rem 4rem; }

  .closing-cta { padding: 1rem 2rem; font-size: 1.1rem; }

  .fixed-contact { bottom: 5.25rem; left: 0.75rem; }
  .fixed-contact__btn { width: 46px; height: 46px; }
  .fixed-contact__btn svg { width: 22px; height: 22px; }

  .future-card { padding: 1.5rem; }
  .future-card__title { font-size: 1.1rem; }

  .timeline::before { right: 21px; }
  .timeline-step__num { width: 40px; height: 40px; font-size: 1rem; }

  .payment-card { padding: 1.25rem; }
  .payment-card__handle { font-size: 1.2rem; padding: 0.5rem 0.75rem; }

  .audience-cta-pill { padding: 0.75rem 1.5rem; font-size: 1rem; }
}

/* ── ≤ 480px phones ── */
@media (max-width: 480px) {
  .section-wrapper { padding: 2.5rem 0.875rem; }
  .solution-card, .pro-card { padding: 1.25rem; }
  .offer-card { padding: 1.5rem 1rem; }
  .order-form-card { padding: 1.25rem; }
  .order-guide { padding: 1.25rem; }

  .section-title { font-size: 1.35rem; }
  .section-subtitle { font-size: 0.9rem; }

  .badge-pill { font-size: 0.75rem; padding: 0.3rem 0.75rem; }

  .problem-grid { gap: 0.75rem; }
  .problem-card { padding: 1rem; }
  .problem-reframe { padding: 1.25rem 1rem; }
  .problem-reframe p { font-size: 1rem; }

  .solution-label { font-size: 0.75rem; padding: 0.25rem 0.6rem; }

  .learn-item { padding: 0.875rem 1rem; font-size: 0.9rem; }
  .learn-check { width: 22px; height: 22px; }
  .learn-highlight { padding: 1rem 1.25rem; }
  .learn-highlight p { font-size: 0.95rem; }

  .future-card { padding: 1.25rem; }
  .future-card__title { font-size: 1.05rem; margin-bottom: 1rem; }
  .future-card li { font-size: 0.9rem; }

  .timeline-step { padding: 0.875rem 1rem; gap: 1rem; }
  .timeline-step__num { width: 36px; height: 36px; font-size: 0.9rem; }
  .timeline-step__title { font-size: 0.9rem; }
  .timeline-step__sub { font-size: 0.8rem; }

  .pro-card { padding: 1.25rem; }
  .pro-card__title { font-size: 1.4rem; }
  .pro-item { padding: 0.75rem 0.875rem; font-size: 0.85rem; }

  .audience-card { padding: 1.25rem 0.875rem; }
  .audience-card__icon { width: 46px; height: 46px; font-size: 1.35rem; }

  .benefit-card { padding: 1.25rem; }
  .benefit-card__icon { width: 42px; height: 42px; }
  .benefit-card__title { font-size: 0.9rem; }
  .benefit-card__body { font-size: 0.82rem; }

  .offer-price-big { font-size: 2.75rem; }
  .offer-old-price { font-size: 0.9rem; }
  .offer-new-price { font-size: 1.1rem; }
  .offer-feature { font-size: 0.85rem; }
  .offer-saving, .offer-urgency { font-size: 0.78rem; }

  .form-row input { padding: 0.75rem 0.875rem; min-height: 48px; font-size: 0.95rem; }
  #order-submit { min-height: 48px; font-size: 1rem; }

  .order-guide-step p { font-size: 0.82rem; }

  .payment-card__label { font-size: 0.95rem; }
  .payment-card__handle { font-size: 1.1rem; }
  .payment-card__copy { font-size: 0.82rem; padding: 0.5rem 1rem; }

  .confirm-step__num { width: 46px; height: 46px; font-size: 1.15rem; }
  .confirm-step__title { font-size: 0.9rem; }
  .confirm-step__sub { font-size: 0.8rem; }

  .closing-inner { padding: 2.75rem 0.875rem 3.5rem; }
  .closing-item { font-size: 0.95rem; }
  .closing-cta { padding: 0.875rem 1.75rem; font-size: 1rem; }

  .fixed-cta-bar { padding: 0.6rem 0.75rem; }
  .fixed-cta-bar .cta-primary { font-size: 0.82rem; padding: 0.6rem 1.25rem; }

  .fixed-contact { bottom: 4.75rem; left: 0.5rem; }
  .fixed-contact__btn { width: 42px; height: 42px; }
  .fixed-contact__btn svg { width: 20px; height: 20px; }

  .cta-primary { font-size: 0.95rem; padding: 0.75rem 1.5rem; }
  .cta-secondary { font-size: 0.9rem; padding: 0.7rem 1.25rem; }

  .why-card { padding: 1.5rem 1.25rem; }
  .why-card p { font-size: 0.95rem; }

  footer { padding: 1.25rem 0.75rem; font-size: 0.82rem; }

  .payment-instruction { font-size: 0.85rem; padding: 0.875rem 1rem; }
}

/* ── ≤ 360px very small phones ── */
@media (max-width: 360px) {
  .section-wrapper { padding: 2rem 0.625rem; }

  .hero-headline { font-size: 1.5rem; }
  .hero-visual-ring { width: 220px; height: 220px; }

  .section-title { font-size: 1.2rem; }
  .offer-price-big { font-size: 2.5rem; }
  .badge-pill { font-size: 0.7rem; padding: 0.25rem 0.6rem; }

  .solution-card, .pro-card, .offer-card,
  .order-form-card, .order-guide { padding: 1rem; }

  .cta-primary { font-size: 0.9rem; padding: 0.65rem 1.25rem; }
  .cta-secondary { font-size: 0.85rem; }

  .fixed-contact__btn { width: 38px; height: 38px; }
  .fixed-contact__btn svg { width: 18px; height: 18px; }
}
