/* ============================================================
   AGENDAMENTO-SERVICO.BLOG — Main Stylesheet
   Wofe Alimentos LTDA — CNPJ: 49.987.200/0001-79
   Design: Civic Digital / Form-Forward
   Fonts: Unbounded (display) + Rubik (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;800&family=Rubik:wght@300;400;500;600&display=swap');

:root {
  --navy:        #0C1B33;
  --navy-mid:    #1A3260;
  --navy-light:  #243B5E;
  --blue:        #0EA5E9;
  --blue-dark:   #0284C7;
  --blue-pale:   #E0F2FE;
  --red:         #E53935;
  --red-hover:   #C62828;
  --bg:          #F0F4FF;
  --bg-alt:      #FFFFFF;
  --text:        #1E2D4E;
  --text-mid:    #475569;
  --text-light:  #94A3B8;
  --border:      #E2E8F0;
  --shadow-sm:   0 2px 8px rgba(12,27,51,0.08);
  --shadow:      0 4px 24px rgba(12,27,51,0.12);
  --shadow-lg:   0 8px 48px rgba(12,27,51,0.20);
  --font-head:   'Unbounded', sans-serif;
  --font-body:   'Rubik', sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ======== UTILITIES ======== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ======== DISCLAIMER BAR ======== */
.disclaimer-bar {
  background: var(--navy);
  color: #64748B;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 7px 0;
  text-align: center;
  border-bottom: 2px solid var(--blue);
  letter-spacing: 0.01em;
}
.disclaimer-bar strong { color: #F87171; }
.disclaimer-bar a { color: var(--blue); text-decoration: underline; }

/* ======== AD NOTICE ======== */
.ad-notice {
  background: #FEF3C7;
  color: #78350F;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 5px 0;
  text-align: center;
  border-bottom: 1px solid #FDE68A;
}

/* ======== HEADER ======== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  gap: 20px;
}
.logo { display: flex; flex-direction: column; gap: 1px; text-decoration: none; }
.logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.logo-tagline { font-size: 0.62rem; color: var(--text-light); font-weight: 400; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 3px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav a:hover, .nav a.active { color: var(--navy); border-bottom-color: var(--blue); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--navy);
  padding: 4px 8px;
}

/* ======== BREADCRUMB ======== */
.breadcrumb { background: #fff; border-bottom: 1px solid var(--border); padding: 7px 0; }
.breadcrumb ol { list-style: none; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb li { font-size: 0.73rem; color: var(--text-light); }
.breadcrumb li + li::before { content: '›'; margin-right: 6px; }
.breadcrumb li a { color: var(--blue-dark); }
.breadcrumb li a:hover { text-decoration: underline; }
.breadcrumb .current { color: var(--text-mid); font-weight: 500; }

/* ======== HERO (SPLIT LAYOUT) ======== */
.hero {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 55%, #0E2A50 100%);
  position: relative;
  overflow: hidden;
  padding: 64px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 58px, rgba(14,165,233,0.035) 58px, rgba(14,165,233,0.035) 60px),
    repeating-linear-gradient(-45deg, transparent, transparent 58px, rgba(14,165,233,0.02) 58px, rgba(14,165,233,0.02) 60px);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 52px;
  align-items: center;
}
.hero-content { color: #fff; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.28);
  color: #7DD3FC;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  color: #fff;
}
.hero-content h1 em { font-style: normal; color: var(--blue); }
.hero-content p { font-size: 0.95rem; color: #94A3B8; margin-bottom: 28px; line-height: 1.75; }
.hero-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: #CBD5E1;
}
.hero-pill-icon {
  width: 22px;
  height: 22px;
  background: rgba(14,165,233,0.18);
  border: 1px solid rgba(14,165,233,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ======== FORM CARD ======== */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #38BDF8, var(--blue));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.form-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 4px;
  line-height: 1.3;
}
.form-sub {
  font-size: 0.78rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.55;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select {
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0 11px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.14);
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
}
.form-check input[type=checkbox] {
  width: 16px; height: 16px;
  accent-color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.form-check label { font-size: 0.76rem; color: var(--text-mid); line-height: 1.55; }
.form-check label a { color: var(--blue-dark); text-decoration: underline; }
.btn-submit {
  width: 100%;
  height: 46px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.79rem;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(229,57,53,0.32);
}
.btn-submit:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(229,57,53,0.38);
}
.btn-submit:active { transform: translateY(0); }
.form-micro {
  margin-top: 10px;
  font-size: 0.65rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.55;
}
.form-success {
  display: none;
  text-align: center;
  padding: 16px 8px;
}
.form-success-icon {
  width: 52px; height: 52px;
  background: #DCFCE7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
}
.form-success h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: #15803D;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.form-success p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }

/* ======== SECTION ======== */
.section { padding: 64px 0; }
.section-alt { background: #fff; }
.section-label {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--navy);
  letter-spacing: -0.035em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.section-desc { font-size: 0.92rem; color: var(--text-mid); max-width: 520px; margin-bottom: 40px; line-height: 1.7; }

/* ======== STEPS ======== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.step-num {
  width: 38px; height: 38px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.82rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.step-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.65; }
.step-card p a { color: var(--blue-dark); text-decoration: underline; }

/* ======== TRUST BAR ======== */
.trust-bar {
  background: var(--navy);
  padding: 24px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}
.trust-item { padding: 0 20px; }
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,0.1); }
.trust-item .t-val {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.04em;
  display: block;
}
.trust-item .t-label { font-size: 0.72rem; color: #64748B; margin-top: 2px; }

/* ======== INFO BOXES ======== */
.info-box-danger {
  background: #FEF2F2;
  border-left: 4px solid #EF4444;
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin: 20px 0;
}
.info-box-danger h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.76rem;
  color: #B91C1C;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.info-box-danger p { font-size: 0.83rem; color: #7F1D1D; line-height: 1.6; }
.info-box-danger ul { padding-left: 18px; margin-top: 8px; }
.info-box-danger li { font-size: 0.83rem; color: #7F1D1D; line-height: 1.6; margin-bottom: 5px; }
.info-box-danger a { color: #1D4ED8; text-decoration: underline; }

.info-box-tip {
  background: #F0FDF4;
  border-left: 4px solid #22C55E;
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin: 20px 0;
}
.info-box-tip h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.76rem;
  color: #15803D;
  margin-bottom: 5px;
}
.info-box-tip p { font-size: 0.83rem; color: #14532D; line-height: 1.6; }

/* ======== FAQ ======== */
.faq-section { padding: 60px 0; }
.faq-wrap { display: flex; flex-direction: column; gap: 6px; max-width: 820px; }
.faq-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left;
  background: none; border: none;
  padding: 15px 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .15s;
}
.faq-q::after {
  content: '+';
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-light);
  flex-shrink: 0;
  transition: transform .22s;
}
.faq-q:hover { background: var(--bg); }
.faq-block.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-block.open .faq-a { max-height: 500px; }
.faq-a p {
  padding: 0 18px 15px;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 13px;
}

/* ======== FOOTER ======== */
.site-footer { background: var(--navy); color: #64748B; padding: 52px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.88rem;
  color: #fff;
  display: block;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}
.footer-grid > div > p { font-size: 0.78rem; color: #64748B; line-height: 1.7; }
.footer-grid nav h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 14px;
}
.footer-grid nav ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-grid nav a { font-size: 0.78rem; color: #64748B; transition: color .2s; }
.footer-grid nav a:hover { color: var(--blue); }
.footer-sep { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin-bottom: 20px; }
.footer-disclaimer {
  font-size: 0.7rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 12px;
  background: rgba(14,165,233,0.05);
  border: 1px solid rgba(14,165,233,0.1);
  border-radius: 8px;
  padding: 12px 16px;
}
.footer-disclaimer a { color: var(--blue); }
.footer-company { font-size: 0.7rem; color: #475569; line-height: 1.75; margin-bottom: 12px; }
.footer-copy { font-size: 0.65rem; color: #334155; }

/* ======== LEGAL PAGES ======== */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 52px 20px 72px;
}
.legal h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--navy);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}
.legal-updated { display: block; font-size: 0.73rem; color: var(--text-light); margin-bottom: 32px; }
.legal h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin: 28px 0 10px;
  letter-spacing: -0.02em;
}
.legal p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 12px; }
.legal ul, .legal ol { padding-left: 20px; margin: 10px 0 14px; }
.legal li { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 6px; }
.legal a { color: var(--blue-dark); text-decoration: underline; }
.tbl { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.83rem; }
.tbl th, .tbl td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; }
.tbl th { background: var(--bg); font-weight: 600; color: var(--navy); }
.tbl td { color: var(--text-mid); }

/* ======== ARTICLE PAGES ======== */
.article-header {
  background: linear-gradient(140deg, var(--navy), var(--navy-mid));
  padding: 52px 0;
}
.article-header-inner { max-width: 820px; margin: 0 auto; padding: 0 20px; }
.article-badge {
  display: inline-block;
  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.3);
  color: #7DD3FC;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.article-header h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  color: #fff;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.article-header .subtitle { font-size: 0.92rem; color: #94A3B8; line-height: 1.75; }
.article-body { max-width: 820px; margin: 0 auto; padding: 44px 20px 64px; }
.article-body h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 32px 0 10px;
  border-left: 3px solid var(--blue);
  padding-left: 12px;
}
.article-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--text);
  margin: 20px 0 8px;
}
.article-body p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.article-body ul, .article-body ol { padding-left: 20px; margin: 10px 0 14px; }
.article-body li { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 6px; }
.article-body a { color: var(--blue-dark); text-decoration: underline; }
.article-body .tbl { font-size: 0.83rem; }
.proc-steps { background: var(--bg); border-radius: 10px; padding: 18px 22px; margin: 16px 0; }
.proc-steps h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.proc-steps ol { padding-left: 20px; }
.proc-steps li { font-size: 0.86rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 10px; }
.ref-section { padding: 28px 0 48px; }
.ref-section h3 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ref-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ref-list li { font-size: 0.82rem; }
.ref-list a { color: var(--blue-dark); text-decoration: underline; }
.article-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 32px 0;
  text-align: center;
  color: #fff;
}
.article-cta h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.article-cta p { font-size: 0.85rem; color: #94A3B8; margin-bottom: 18px; }
.btn-cta-article {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 12px 24px;
  border-radius: 8px;
  letter-spacing: 0.01em;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 14px rgba(229,57,53,0.3);
}
.btn-cta-article:hover { background: var(--red-hover); transform: translateY(-1px); }

/* ======== COOKIE BANNER ======== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 2px solid var(--blue);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform .32s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.75rem; color: #94A3B8; flex: 1; min-width: 200px; line-height: 1.5; }
.cookie-inner a { color: var(--blue); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-accept, .cookie-essential, .cookie-reject {
  height: 32px; padding: 0 14px;
  border: none; border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.74rem; font-weight: 600; cursor: pointer;
}
.cookie-accept { background: var(--blue); color: #fff; }
.cookie-essential { background: rgba(255,255,255,0.08); color: #94A3B8; border: 1px solid rgba(255,255,255,0.15); }
.cookie-reject { background: transparent; color: #64748B; border: 1px solid rgba(255,255,255,0.08); }

/* ======== CONTACT PAGE ======== */
.contact-wrap { max-width: 820px; margin: 0 auto; padding: 52px 20px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}
.contact-info p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.contact-icon {
  width: 34px; height: 34px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.75rem; font-weight: 600; color: var(--navy); }
.contact-item span { font-size: 0.84rem; color: var(--text-mid); }

/* ======== HERO ALIASES & EXTRAS ======== */
.hero-text { color: #fff; }
.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  color: #fff;
}
.hero-title span { color: var(--blue); }
.hero-sub { font-size: 0.95rem; color: #94A3B8; margin-bottom: 16px; line-height: 1.75; }
.hero-note { font-size: 0.8rem; color: #7DD3FC; background: rgba(14,165,233,0.08); border: 1px solid rgba(14,165,233,0.2); border-radius: 8px; padding: 10px 14px; margin-bottom: 28px; line-height: 1.6; }
.hero-note strong { color: #fff; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--blue); letter-spacing: -0.04em; line-height: 1; }
.stat-label { font-size: 0.68rem; color: #64748B; margin-top: 3px; }
.hero-form-wrap { position: relative; z-index: 1; }
.form-card-header { margin-bottom: 20px; }
.form-card-header h2 { font-family: var(--font-head); font-weight: 700; font-size: 0.96rem; color: var(--navy); letter-spacing: -0.025em; margin-bottom: 4px; line-height: 1.3; }
.form-card-header p { font-size: 0.78rem; color: var(--text-mid); line-height: 1.55; }
.form-disclaimer { margin-top: 10px; font-size: 0.65rem; color: var(--text-light); text-align: center; line-height: 1.55; }
.form-disclaimer a { color: var(--blue-dark); text-decoration: underline; }
.success-icon { width: 52px; height: 52px; background: #DCFCE7; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 14px; }
.btn-gov { display: inline-block; margin-top: 14px; background: var(--blue); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 0.78rem; padding: 10px 20px; border-radius: 8px; transition: background .2s; }
.btn-gov:hover { background: var(--blue-dark); }
.trust-item strong { display: block; font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.trust-item .trust-icon { font-size: 1.3rem; margin-bottom: 6px; display: block; }
.trust-item p { font-size: 0.72rem; color: #64748B; line-height: 1.5; }
.steps-section { padding: 64px 0; background: var(--bg); }
.section-sub { font-size: 0.92rem; color: var(--text-mid); max-width: 520px; margin: 0 auto 40px; line-height: 1.7; text-align: center; }
.faq-list { display: flex; flex-direction: column; gap: 6px; max-width: 820px; margin: 0 auto; }
.faq-arrow { font-size: 1.1rem; font-weight: 300; color: var(--text-light); flex-shrink: 0; transition: transform .22s; display: none; }
.cta-section { padding: 64px 0; background: var(--navy); }
.cta-block { text-align: center; color: #fff; max-width: 640px; margin: 0 auto; }
.cta-block h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.1rem, 2.5vw, 1.5rem); letter-spacing: -0.035em; margin-bottom: 12px; }
.cta-block p { font-size: 0.92rem; color: #94A3B8; margin-bottom: 24px; line-height: 1.7; }
.btn-cta { display: inline-block; background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; padding: 14px 28px; border-radius: 10px; letter-spacing: 0.01em; transition: background .2s, transform .15s; box-shadow: 0 4px 18px rgba(229,57,53,0.35); }
.btn-cta:hover { background: var(--red-hover); transform: translateY(-2px); }
.article-wrap { padding: 40px 0 64px; }
.article-content h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.2rem, 2.5vw, 1.6rem); color: var(--navy); letter-spacing: -0.035em; margin-bottom: 8px; line-height: 1.2; }
.article-meta-info { font-size: 0.73rem; color: var(--text-light); margin-bottom: 24px; }
.article-content { max-width: 820px; }
.article-content h2 { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--navy); letter-spacing: -0.02em; margin: 32px 0 10px; border-left: 3px solid var(--blue); padding-left: 12px; }
.article-content h3 { font-family: var(--font-head); font-weight: 700; font-size: 0.86rem; color: var(--text); margin: 20px 0 8px; }
.article-content p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.article-content ul, .article-content ol { padding-left: 20px; margin: 10px 0 14px; }
.article-content li { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 6px; }
.article-content a { color: var(--blue-dark); text-decoration: underline; }
.legal h3 { font-family: var(--font-head); font-weight: 700; font-size: 0.86rem; color: var(--text); margin: 20px 0 8px; }

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 40px 0 60px; }
  .hero::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-item + .trust-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav {
    display: none;
    flex-direction: column;
    position: absolute; top: 58px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 20px; gap: 0;
  }
  .nav.show { display: flex; }
  .nav a { padding: 10px 0; border-bottom: 1px solid var(--border); border-right: none; }
  .nav a:last-child { border-bottom: none; }
  .nav-toggle { display: block; }
  .site-header { position: relative; }
}
