/* =============================================
   ELLO MARCAS — DESIGN SYSTEM
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&family=DM+Serif+Display:ital@0;1&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ── TOKENS — alinhados ao logo Ello Marcas ── */
:root {
  /* Cores extraídas do logo */
  --navy:        #0E1A35;   /* azul-marinho profundo — fundo escuro */
  --navy-mid:    #162244;   /* variação média do navy */
  --cyan:        #0EA5C9;   /* ciano do símbolo — cor principal da marca */
  --cyan-light:  #22C0E2;   /* hover / variação clara do ciano */
  --cyan-dark:   #0886A6;   /* versão mais escura — pressed states */
  --cyan-glow:   rgba(14,165,201,0.12); /* glow suave para fundos */
  --brand-text:  #1B2D5E;   /* azul escuro do texto "ELLO" no logo */

  /* Aliases semânticos — usados no CSS existente via --blue */
  --blue:        #0EA5C9;   /* = --cyan, substitui o azul royal anterior */
  --blue-light:  #22C0E2;   /* = --cyan-light */
  --blue-glow:   rgba(14,165,201,0.12);
  --shadow-blue: 0 6px 28px rgba(14,165,201,0.32);

  --white:       #FFFFFF;
  --off-white:   #F5F8FB;   /* levemente mais frio, combina com o ciano */
  --gray-50:     #EDF1F7;
  --gray-100:    #D8E0EE;
  --gray-300:    #A8B5CC;
  --gray-500:    #637089;
  --gray-600:    #475167;
  --gray-700:    #2E3D58;
  --success:     #10B981;
  --warning:     #F59E0B;
  --danger:      #EF4444;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Outfit', 'DM Sans', system-ui, sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   28px;
  --radius-full: 999px;

  --shadow-sm:   0 1px 4px rgba(14,26,53,0.07);
  --shadow-md:   0 4px 20px rgba(14,26,53,0.10);
  --shadow-lg:   0 12px 40px rgba(14,26,53,0.13);

  --transition:      0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.13s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1320px;
  --header-h:  72px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.72;
  color: var(--brand-text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── TYPOGRAPHY ── */
/* h1/h2 usam DM Serif Display para elegância editorial */
/* h3/h4 usam Outfit — geométrico, alinhado com o logo */
h1, h2 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 400;
  color: var(--navy);
}
h3, h4, h5 {
  font-family: var(--font-body);
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
}
h1 { font-size: clamp(2.8rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2.2rem, 3.8vw, 3.2rem); }
h3 { font-size: clamp(1.45rem, 2.2vw, 1.85rem); font-weight: 700; }
h4 { font-size: 1.25rem; line-height: 1.3; }
p  { color: var(--gray-600); line-height: 1.75; }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.section    { padding: 64px 0; }
.section-sm { padding: 44px 0; }
.section-tinted { background: var(--off-white); }
.section-dark   { background: var(--navy); }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  display: flex; align-items: center;
}
.site-header.scrolled {
  border-bottom-color: var(--gray-100);
  box-shadow: 0 1px 12px rgba(11,22,40,0.07);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 40px;
}

/* Logo */
/* Logo */
.logo {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}
.logo-wordmark {
  display: flex; flex-direction: column; line-height: 1;
}
.logo-wordmark-ello {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-text);
  letter-spacing: 0.06em;
}
.logo-wordmark-marcas {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 1px;
}
.logo-mark {
  width: 52px; height: 52px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 52px; height: 52px; }
.logo-mark-img { width: 52px; height: auto; object-fit: contain; display: block; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-logo .logo-mark { background: white; border-radius: 8px; padding: 4px; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-item  { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 9px 17px;
  border-radius: var(--radius-sm);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: var(--transition-fast);
  white-space: nowrap;
}
.nav-link:hover { color: var(--navy); background: var(--gray-50); }
.nav-link.active { color: var(--cyan); }
.nav-arrow { width: 14px; height: 14px; transition: transform var(--transition-fast); }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: var(--transition);
  pointer-events: none;
}
.nav-item:hover .dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--gray-600);
  transition: var(--transition-fast);
}
.dropdown a:hover { color: var(--navy); background: var(--off-white); }
.dropdown-icon {
  width: 30px; height: 30px;
  background: var(--blue-glow);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dropdown-icon svg { width: 14px; height: 14px; color: var(--cyan); }
.dropdown-text strong { display: block; font-size: 0.9375rem; font-weight: 600; color: var(--navy); }
.dropdown-text span   { font-size: 0.75rem; color: var(--gray-500); }

/* CTA Button */
.header-cta { display: flex; align-items: center; gap: 10px; }

.btn-track {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cyan);
  background: var(--cyan-glow);
  border: 1.5px solid rgba(14,165,201,0.22);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-track:hover {
  background: rgba(14,165,201,0.18);
  border-color: rgba(14,165,201,0.4);
  color: var(--cyan-dark);
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-full);
  font-size: 1.0625rem; font-weight: 600;
  transition: var(--transition);
  white-space: nowrap; cursor: pointer;
}
.btn-primary {
  background: var(--cyan); color: white;
  box-shadow: var(--shadow-blue); border: none;
}
.btn-primary:hover {
  background: var(--blue-light);
  box-shadow: 0 10px 36px rgba(14,165,201,0.38);
  transform: translateY(-1px);
}
.btn-outline {
  background: white; color: var(--navy);
  border: 1.5px solid var(--gray-100);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-ghost  { color: var(--cyan); background: transparent; border: none; }
.btn-ghost:hover { background: var(--blue-glow); }
.btn-lg     { padding: 14px 34px; font-size: 1.0625rem; }
.btn-sm     { padding: 8px 18px; font-size: 0.875rem; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: var(--transition);
}

/* ── FOOTER ── */
.site-footer {
  background: white;
  border-top: 1px solid var(--gray-100);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--gray-100);
}
.footer-desc {
  color: var(--gray-500);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 240px;
  margin-top: 2px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
}
.footer-col ul  { display: flex; flex-direction: column; gap: 10px; }
.footer-col a   { font-size: 0.9375rem; color: var(--gray-600); transition: var(--transition-fast); }
.footer-col a:hover { color: var(--cyan); }
.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--cyan-glow);
  border: 1.5px solid rgba(14,165,201,0.25);
  border-radius: var(--radius-full);
  color: var(--cyan);
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 16px;
}
.footer-whatsapp-btn:hover {
  background: rgba(14,165,201,0.2);
  border-color: var(--cyan);
}
.footer-hours p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.5;
  margin: 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray-400); }

/* ── COMPONENTS ── */

/* Section label */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block; width: 18px; height: 2px;
  background: var(--cyan); border-radius: 2px;
}

/* Section header */
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 12px; }
.section-header p  { font-size: 1.1875rem; max-width: 580px; color: var(--gray-500); }
.section-header.center p { margin: 0 auto; }

/* Card base */
.card {
  background: white; border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 28px;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon {
  width: 44px; height: 44px;
  background: var(--cyan-glow); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 20px; height: 20px; color: var(--cyan); }

/* Tag */
.tag {
  display: inline-flex; align-items: center;
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 600;
}
.tag-blue   { background: var(--cyan-glow); color: var(--cyan); }
.tag-green  { background: rgba(16,185,129,0.1); color: var(--success); }
.tag-yellow { background: rgba(245,158,11,0.1); color: var(--warning); }
.tag-red    { background: rgba(239,68,68,0.1); color: var(--danger); }

/* Accordion */
.accordion-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden; margin-bottom: 8px;
  transition: var(--transition);
}
.accordion-item.open { border-color: var(--cyan); }
.accordion-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  font-size: 1.0625rem; font-weight: 600; color: var(--navy);
  text-align: left; background: white;
  transition: var(--transition-fast);
}
.accordion-trigger:hover { background: var(--off-white); }
.accordion-item.open .accordion-trigger { background: var(--off-white); color: var(--cyan); }
.accordion-icon {
  width: 20px; height: 20px; background: var(--gray-50);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
}
.accordion-icon svg { width: 12px; height: 12px; transition: transform var(--transition); }
.accordion-item.open .accordion-icon svg { transform: rotate(45deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1); }
.accordion-body { padding: 0 22px 18px; font-size: 1.0625rem; color: var(--gray-600); line-height: 1.75; }

/* Forms */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-control {
  width: 100%; padding: 11px 15px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 1.0625rem; color: var(--navy); background: white;
  transition: var(--transition-fast); outline: none;
}
.form-control:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px var(--blue-glow); }
.form-control::placeholder { color: var(--gray-300); }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7899' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}

/* Page hero — interno */
.page-hero {
  background: var(--navy);
  padding: 36px 0 0;          /* remove padding-bottom — card flutua para baixo */
  margin-top: var(--header-h);
  position: relative; overflow: visible;  /* visible para card sair do bloco */
}

/* Glow blob direita */
.page-hero::before {
  content: ''; position: absolute;
  top: -30%; right: -5%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(14,165,201,0.15), transparent 65%);
  pointer-events: none;
}
/* Glow blob esquerda sutil */
.page-hero::after {
  content: ''; position: absolute;
  bottom: -20%; left: -5%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(14,165,201,0.06), transparent 70%);
  pointer-events: none;
}

/* Grid 2 colunas: texto + visual */
.page-hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;         /* start: visual pode crescer para baixo */
}

/* Coluna texto — padding-bottom para respirar dentro do bloco */
.page-hero-text {
  padding-bottom: 44px;
}
.page-hero-text .section-label {
  color: var(--cyan);
  margin-bottom: 14px;
}
.page-hero-text .section-label::before { background: var(--cyan); }
.page-hero-text h1 {
  color: white;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}
.page-hero-text h1 em { font-style: italic; color: rgba(255,255,255,0.5); }
.page-hero-text p {
  color: rgba(255,255,255,0.65);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 0;
}

/* Coluna visual — card flutua: começa no azul, cai no branco */
.page-hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  /* Empurra o card para baixo, invadindo a seção seguinte */
  margin-bottom: -120px;
  padding-top: 20px;
  z-index: 10;
}

/* Card de processo — flutua entre seções (navy → branco) */
.ph-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  max-width: 360px;
  box-shadow:
    0 24px 64px rgba(14,26,53,0.18),
    0 4px 16px rgba(14,26,53,0.08);
}
.ph-card-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}
.ph-card-icon {
  width: 36px; height: 36px;
  background: var(--cyan-glow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); flex-shrink: 0;
}
.ph-card-header strong { color: var(--navy); font-size: 0.9rem; font-weight: 700; display: block; }
.ph-card-header span  { color: var(--gray-500); font-size: 0.78rem; }
.ph-steps {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 18px;
}
.ph-step {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 12px;
  border-radius: 10px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
}
.ph-step.ph-done   { border-color: rgba(16,185,129,0.2); background: rgba(16,185,129,0.05); }
.ph-step.ph-active { border-color: rgba(14,165,201,0.25); background: rgba(14,165,201,0.06); }
.ph-step-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--gray-500);
  flex-shrink: 0;
}
.ph-step.ph-done .ph-step-num   { background: #10B981; color: white; }
.ph-step.ph-active .ph-step-num { background: var(--cyan); color: white; }
.ph-step-label {
  font-size: 0.82rem; color: var(--gray-400);
  flex: 1;
}
.ph-step.ph-done .ph-step-label   { color: #059669; font-weight: 500; }
.ph-step.ph-active .ph-step-label { color: var(--navy); font-weight: 600; }
.ph-step-time {
  font-size: 0.72rem;
  color: var(--gray-400);
  white-space: nowrap;
}
.ph-step.ph-active .ph-step-time { color: var(--cyan); font-weight: 600; }
.ph-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.ph-progress-wrap { flex: 1; margin-right: 16px; }
.ph-progress-label {
  display: flex; justify-content: space-between;
  font-size: 0.72rem; color: var(--gray-500);
  margin-bottom: 6px;
}
.ph-progress-label strong { color: var(--cyan); font-weight: 700; }
.ph-progress-bar {
  height: 4px; background: var(--gray-100);
  border-radius: 2px; overflow: hidden;
}
.ph-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan-dark), var(--cyan-light));
  border-radius: 2px;
}
.ph-badge {
  display: flex; align-items: center; gap: 5px;
  background: var(--cyan-glow);
  border: 1px solid rgba(14,165,201,0.2);
  border-radius: var(--radius-full);
  padding: 5px 10px;
  font-size: 0.72rem; font-weight: 600;
  color: var(--cyan); white-space: nowrap;
}

/* Stat badges flutuantes */
.ph-stat {
  position: absolute;
  background: white;
  border-radius: var(--radius-full);
  padding: 7px 14px;
  font-size: 0.8rem; font-weight: 700; color: var(--navy);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.ph-stat-1 { bottom: -10px; left: -20px; }
.ph-stat-2 { top: -10px; right: -12px; }
.ph-stat svg { flex-shrink: 0; }

/* Página sem visual (apenas texto centrado) */
.page-hero-inner.page-hero-centered {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
}
.page-hero-inner.page-hero-centered .page-hero-text p { max-width: 100%; }

/* Responsive */
@media (max-width: 1024px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .page-hero-visual {
    justify-content: flex-start;
    margin-bottom: 0;        /* cancela o float em tablet */
    padding-top: 0;
  }
  .page-hero-text { padding-bottom: 32px; }
  .ph-card { max-width: 100%; }
  .ph-stat { display: none; }
}
@media (max-width: 768px) {
  .page-hero { padding: 32px 0 28px; }
  .page-hero-text h1 { font-size: 1.9rem; }
  .page-hero-text p  { font-size: 1rem; }
  .page-hero-visual  { display: none; }
  .page-hero-text { padding-bottom: 24px; }
}

/* Large screens */
@media (min-width: 1440px) {
  .page-hero { padding: 44px 0 0; }
  .page-hero-text h1 { font-size: 3.2rem; }
  .page-hero-text p  { font-size: 1.125rem; }
  .ph-card { max-width: 400px; }
  .page-hero-visual { margin-bottom: -140px; }
}
@media (min-width: 1920px) {
  .page-hero { padding: 52px 0 0; }
  .page-hero-text h1 { font-size: 3.6rem; }
  .page-hero-visual { margin-bottom: -160px; }
}

/* Stats */
.stat-block  { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 2.4rem; color: var(--navy); display: block; }
.stat-label  { font-size: 1rem; color: var(--gray-500); }

/* Risk meter */
.risk-display { border-radius: var(--radius-lg); padding: 26px; border: 2px solid; }
.risk-low    { background: rgba(16,185,129,0.05); border-color: rgba(16,185,129,0.3); }
.risk-medium { background: rgba(245,158,11,0.05); border-color: rgba(245,158,11,0.3); }
.risk-high   { background: rgba(239,68,68,0.05);  border-color: rgba(239,68,68,0.3); }

/* Steps */
.steps { display: flex; flex-direction: column; gap: 0; }
.step  { display: flex; gap: 22px; padding-bottom: 36px; position: relative; }
.step:last-child { padding-bottom: 0; }
.step-line  { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.step-dot   { width: 38px; height: 38px; background: var(--cyan); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.875rem; font-weight: 700; position: relative; z-index: 1; }
.step-connector { width: 2px; flex: 1; background: var(--gray-100); margin-top: 4px; }
.step-content   { padding-top: 7px; padding-bottom: 14px; }
.step-content h4 { margin-bottom: 5px; }
.step-content p  { font-size: 1rem; }

/* Alert */
.alert { padding: 13px 17px; border-radius: var(--radius-sm); font-size: 0.9375rem; display: flex; align-items: flex-start; gap: 10px; }
.alert-info    { background: var(--blue-glow);              color: var(--cyan);    border: 1px solid rgba(14,165,201,0.22); }
.alert-success { background: rgba(16,185,129,0.08);         color: var(--success); border: 1px solid rgba(16,185,129,0.2); }
.alert-warning { background: rgba(245,158,11,0.08);         color: var(--warning); border: 1px solid rgba(245,158,11,0.2); }
.alert-error   { background: rgba(239,68,68,0.08);          color: var(--danger);  border: 1px solid rgba(239,68,68,0.2); }
.alert svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }

/* Divider */
.divider { width: 56px; height: 3px; background: var(--cyan); border-radius: 2px; margin: 18px 0; }
.divider.center { margin: 18px auto; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* main */
main { min-height: 60vh; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse  { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.animate-fade-up   { animation: fadeUp 0.55s var(--transition) both; }
.animate-delay-1   { animation-delay: 0.1s; }
.animate-delay-2   { animation-delay: 0.2s; }
.animate-delay-3   { animation-delay: 0.3s; }
.animate-delay-4   { animation-delay: 0.4s; }

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: white; z-index: 999;
  flex-direction: column;
  padding: 96px 24px 32px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 0; border-bottom: 1px solid var(--gray-100);
  font-size: 1.125rem; font-weight: 500; color: var(--navy);
}
.mobile-sub { padding: 8px 0 8px 16px; display: none; }
.mobile-sub.open { display: block; }
.mobile-sub a { display: block; padding: 10px 0; font-size: 1rem; color: var(--gray-600); border-bottom: 1px solid var(--gray-50); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section-sm { padding: 36px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .main-nav, .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .logo-mark { width: 40px; height: 40px; }
  .logo-mark-img { width: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { padding: 14px 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .btn-lg { padding: 13px 26px; }
}

/* ── LARGE SCREENS (1440px+) ── */
@media (min-width: 1440px) {
  :root {
    --container: 1440px;
    --header-h: 78px;
  }
  body { font-size: 21px; }
  .container { padding: 0 48px; }
  .header-inner { padding: 0 48px; }
  .section { padding: 88px 0; }
  .section-sm { padding: 56px 0; }
  .nav-link { font-size: 1.0625rem; padding: 10px 18px; }
  .logo { font-size: 1.7rem; }
}

@media (min-width: 1920px) {
  :root {
    --container: 1680px;
    --header-h: 82px;
  }
  body { font-size: 20px; }
  .container { padding: 0 56px; }
  .header-inner { padding: 0 56px; }
  .section { padding: 96px 0; }
  h1 { font-size: 4.6rem; }
  h2 { font-size: 3.4rem; }
}