/* =============================================================
   Uraan — Subpage styles (services, countries, about, blog, contact)
   ============================================================= */

/* ---------- Services Page ---------- */
.services-list {
  display: flex; flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-1);
}
.svc-row {
  display: grid;
  grid-template-columns: 100px 1.4fr 1fr 56px;
  gap: 24px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-1);
  position: relative;
  transition: background var(--dur-base);
}
.svc-row:hover { background: var(--bg-2); padding-left: 16px; padding-right: 16px; margin: 0 -16px; border-radius: 18px; }
@media (max-width: 900px) {
  .svc-row { grid-template-columns: 64px 1fr; gap: 16px; padding: 28px 0; }
  .svc-row > div:nth-child(3), .svc-row > div:nth-child(4) { grid-column: 2 / 3; }
}
.svc-row .num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.4vw, 56px);
  color: var(--red-500);
  line-height: 1;
}
.svc-row h3 {
  font-family: var(--font-sans); font-weight: 800;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.svc-row p { font-size: 15px; line-height: 1.55; color: var(--fg-3); max-width: 50ch; margin: 0; }
.svc-row .pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pill {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  font-size: 12px; font-weight: 700;
  color: var(--ink-800);
  letter-spacing: 0.01em;
}
.svc-row .arrow {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--ink-200);
  display: grid; place-items: center;
  transition: all var(--dur-base);
  color: var(--ink-900);
}
.svc-row:hover .arrow { background: var(--red-500); border-color: var(--red-500); color: #fff; transform: translate(4px, -2px); }

/* Service highlight (banner) */
.svc-highlight {
  background: linear-gradient(135deg, #b61f28 0%, #7f1621 100%); color: #fff;
  border-radius: 28px;
  padding: clamp(40px, 5vw, 64px);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.svc-highlight::before {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
}
@media (max-width: 900px) { .svc-highlight { grid-template-columns: 1fr; } }
.svc-highlight h2 { color: #fff; font-family: var(--font-sans); font-weight: 900; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05; letter-spacing: -0.02em; }
.svc-highlight p { color: rgba(255,255,255,0.92); margin-top: 16px; font-size: 16px; line-height: 1.6; max-width: 56ch; }
.svc-highlight .actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }

/* Pricing */
/* ---------- Countries Page ---------- */
.country-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  padding: clamp(40px, 5vw, 72px) 0;
  border-bottom: 1px solid var(--border-1);
}
.country-feature:last-child { border-bottom: 0; }
.country-feature.flip { grid-template-columns: 1fr 1.2fr; }
.country-feature.flip .cf-photo { order: -1; }
@media (max-width: 900px) {
  .country-feature, .country-feature.flip { grid-template-columns: 1fr; gap: 32px; }
  .country-feature.flip .cf-photo { order: 0; }
}
.cf-photo {
  position: relative; aspect-ratio: 4/5;
  border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cf-photo img, .cf-photo .bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; background-size: cover; background-position: center;
}
.cf-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,12,0.4) 100%);
}
.cf-stamp {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(229,35,46,0.92);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-sans); font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}
.cf-body h2 {
  font-family: var(--font-sans); font-weight: 900;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.02; letter-spacing: -0.025em;
  color: var(--ink-900);
  margin-bottom: 8px;
}
.cf-cities {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--red-600);
  margin-bottom: 20px;
}
.cf-body p { font-size: 16px; line-height: 1.65; color: var(--fg-3); margin-bottom: 24px; max-width: 50ch; }
.cf-facts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin-top: 24px;
  padding: 24px;
  background: var(--bg-2);
  border-radius: 18px;
}
.cf-fact .k {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--fg-3); margin-bottom: 4px;
}
.cf-fact .v {
  font-family: var(--font-sans); font-weight: 800;
  font-size: 18px; color: var(--ink-900);
}

/* Country quick chips */
.country-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin-bottom: 56px;
}
.country-chip {
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border-1);
  font-family: var(--font-sans); font-weight: 700;
  font-size: 14px;
  color: var(--ink-800);
  transition: all var(--dur-base);
}
.country-chip:hover { background: var(--ink-900); color: #fff; border-color: var(--ink-900); transform: translateY(-1px); }

/* ---------- About Page ---------- */
.about-hero-photo {
  margin-top: clamp(40px, 5vw, 64px);
  border-radius: 28px; overflow: hidden;
  aspect-ratio: 2.4 / 1;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about-hero-photo .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.about-hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 12, 0.12) 0%, rgba(10, 10, 12, 0.6) 100%);
}
.about-quote {
  position: absolute; bottom: 32px; left: 32px; right: 32px;
  z-index: 2; color: #fff;
  font-family: var(--font-sans); font-weight: 900;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.2; letter-spacing: -0.015em;
  max-width: 30ch;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }
.value {
  background: var(--bg-2);
  border-radius: 22px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.value-num {
  font-family: var(--font-display);
  font-size: 36px; color: var(--red-500); line-height: 1;
}
.value h3 { font-family: var(--font-sans); font-weight: 800; font-size: 22px; color: var(--ink-900); letter-spacing: -0.015em; }
.value p { font-size: 15px; line-height: 1.6; color: var(--fg-3); }

.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 22px;
  overflow: hidden;
  transition: transform var(--dur-base), box-shadow var(--dur-base);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo {
  aspect-ratio: 1/1;
  background: var(--ink-100);
  background-size: cover; background-position: center;
  position: relative;
}
.team-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0) 0%, rgba(10, 10, 12, 0.12) 100%);
}
.team-body { padding: 24px; }
.team-body h3 { font-family: var(--font-sans); font-weight: 800; font-size: 20px; color: var(--ink-900); letter-spacing: -0.015em; }
.team-body .role {
  font-size: 13px; font-weight: 700; color: var(--red-600);
  letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px;
}
.team-body p { font-size: 14.5px; line-height: 1.55; color: var(--fg-3); margin-top: 12px; }

.timeline {
  display: flex; flex-direction: column; gap: 0;
  border-left: 2px solid var(--border-1);
  padding-left: 32px;
  margin-left: 16px;
}
.timeline-item {
  position: relative;
  padding: 20px 0 32px;
}
.timeline-item::before {
  content: "";
  position: absolute; left: -41px; top: 26px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--red-500);
  box-shadow: 0 0 0 4px var(--bg-1), 0 0 0 5px var(--red-200);
}
.timeline-item .year {
  font-family: var(--font-display);
  font-size: 28px; color: var(--ink-900); line-height: 1;
  margin-bottom: 8px;
}
.timeline-item h3 { font-family: var(--font-sans); font-weight: 800; font-size: 20px; color: var(--ink-900); margin-bottom: 6px; }
.timeline-item p { font-size: 15px; line-height: 1.6; color: var(--fg-3); max-width: 56ch; }

/* ---------- Blog Page ---------- */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.post-card {
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-2);
  transition: transform var(--dur-base), box-shadow var(--dur-base);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-photo {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  position: relative;
}
.post-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.02) 0%, rgba(10, 10, 12, 0.18) 100%);
}
.post-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.96);
  color: var(--red-600);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  z-index: 2;
}
.post-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-meta { display: flex; gap: 12px; align-items: center; font-size: 13px; color: var(--fg-3); }
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-300); }
.post-card h3 {
  font-family: var(--font-sans); font-weight: 800;
  font-size: 20px; color: var(--ink-900);
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.post-card p { font-size: 14.5px; line-height: 1.55; color: var(--fg-3); flex: 1; }
.post-card .read {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-sans); font-weight: 800; font-size: 14px;
  color: var(--ink-900); margin-top: 4px;
}
.post-card:hover .read { color: var(--red-600); }

.post-card.featured {
  grid-column: 1 / -1;
  flex-direction: row;
}
@media (max-width: 900px) { .post-card.featured { flex-direction: column; } }
.post-card.featured .post-photo { aspect-ratio: 16/10; flex: 1.2; min-width: 0; }
.post-card.featured .post-body { flex: 1; padding: 40px; justify-content: center; }
.post-card.featured h3 { font-size: clamp(22px, 2.4vw, 32px); }
.post-card.featured p { font-size: 16px; }

.blog-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}
.blog-filter {
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border-1);
  font-family: var(--font-sans); font-weight: 700;
  font-size: 13.5px; color: var(--ink-800);
  transition: all var(--dur-base);
}
.blog-filter:hover { border-color: var(--ink-400); }
.blog-filter.active { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }

/* Blog Article */
.article-hero {
  padding: clamp(40px, 5vw, 64px) 0 0;
  background: var(--bg-1);
}
.article-meta {
  display: flex; gap: 16px; align-items: center;
  font-size: 13px; color: var(--fg-3); font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.article-meta .post-tag-inline {
  color: var(--red-600); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700;
}
.article-hero h1 {
  font-family: var(--font-sans); font-weight: 900;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.05; letter-spacing: -0.025em;
  color: var(--ink-900);
  max-width: 22ch;
  margin-bottom: 24px;
}
.article-hero .author {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--fg-2);
  margin-bottom: 32px;
}
.article-hero .author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink-900); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-sans); font-weight: 800; font-size: 15px;
}
.article-hero .cover {
  aspect-ratio: 2.2/1; border-radius: 28px; overflow: hidden;
  margin-top: 32px;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-lg);
}
.article-body {
  max-width: 720px; margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px);
}
.article-body p, .article-body ul, .article-body ol, .article-body blockquote {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-700);
  margin-bottom: 24px;
}
.article-body h2 {
  font-family: var(--font-sans); font-weight: 900;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 56px 0 20px;
}
.article-body h3 {
  font-family: var(--font-sans); font-weight: 800;
  font-size: 22px;
  color: var(--ink-900);
  letter-spacing: -0.015em;
  margin: 36px 0 14px;
}
.article-body ul, .article-body ol { padding-left: 24px; }
.article-body li { margin-bottom: 10px; }
.article-body strong { color: var(--ink-900); font-weight: 700; }
.article-body blockquote {
  border-left: 4px solid var(--red-500);
  padding: 12px 0 12px 24px;
  font-family: var(--font-sans); font-weight: 700;
  font-size: 22px; line-height: 1.45;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  font-style: normal;
}
.article-body a { color: var(--red-600); text-decoration: underline; text-underline-offset: 3px; }

.article-callout {
  background: var(--red-50);
  border: 1px solid var(--red-100);
  border-radius: 20px;
  padding: 28px;
  margin: 36px 0;
}

.info-panel {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 24px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
}

.info-panel h3 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.info-panel p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--fg-3);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

@media (max-width: 980px) {
  .checklist-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .checklist-grid { grid-template-columns: 1fr; }
}

.checklist-card {
  background: var(--bg-2);
  border-radius: 20px;
  padding: 24px;
}

.checklist-card h4 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink-900);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.checklist-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg-3);
}

.country-directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

@media (max-width: 980px) {
  .country-directory { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .country-directory { grid-template-columns: 1fr; }
}

.country-dir-card {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base), box-shadow var(--dur-base), border-color var(--dur-base);
}

.country-dir-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink-200);
}

.country-dir-card h3 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

.country-dir-card .mini {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-600);
}

.country-dir-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg-3);
}

.country-dir-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border-2);
}

.country-dir-meta .k {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 4px;
}

.country-dir-meta .v {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-900);
  line-height: 1.45;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 980px) {
  .resource-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .resource-grid { grid-template-columns: 1fr; }
}

.resource-card {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 22px;
  padding: 24px;
  transition: transform var(--dur-base), box-shadow var(--dur-base), border-color var(--dur-base);
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink-200);
}

.resource-card h3 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink-900);
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 10px 0 10px;
}

.resource-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg-3);
}

.resource-card .mini {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-600);
}
.article-callout h4 {
  font-family: var(--font-sans); font-weight: 900;
  font-size: 18px; color: var(--red-700);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.article-callout p { font-size: 16px; margin: 0; color: var(--ink-800); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  background: var(--ink-900);
  color: #fff;
  border-radius: 28px;
  padding: clamp(32px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: ""; position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,35,46,0.32), transparent 70%);
  filter: blur(40px);
}
.contact-info > * { position: relative; z-index: 1; }
.contact-info h2 { color: #fff; font-family: var(--font-sans); font-weight: 900; font-size: clamp(28px, 3vw, 40px); line-height: 1.05; letter-spacing: -0.02em; }
.contact-info p { color: var(--ink-300); font-size: 15.5px; line-height: 1.65; margin-top: 16px; }
.contact-channels { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-channel {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: background var(--dur-base), border-color var(--dur-base);
}
.contact-channel:hover { background: rgba(255,255,255,0.07); border-color: rgba(229,35,46,0.5); }
.contact-channel .ico {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px; background: var(--red-500);
  display: grid; place-items: center; color: #fff;
}
.contact-channel .ico svg { width: 22px; height: 22px; }
.contact-channel .ck { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-400); }
.contact-channel .cv { font-family: var(--font-sans); font-weight: 800; color: #fff; font-size: 17px; margin-top: 4px; }
.contact-channel .cd { font-size: 13px; color: var(--ink-300); margin-top: 4px; }

.contact-form {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 28px;
  padding: clamp(32px, 4vw, 48px);
  display: flex; flex-direction: column; gap: 18px;
}
.contact-form h2 { font-family: var(--font-sans); font-weight: 900; font-size: clamp(28px, 3vw, 38px); color: var(--ink-900); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 6px; }
.contact-form > p { font-size: 15px; line-height: 1.55; color: var(--fg-3); margin-bottom: 8px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .contact-form .row { grid-template-columns: 1fr; } }
.contact-form .submit-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 6px; }

/* ---------- FAQ / Contact Accordion ---------- */
.faq { background: var(--ink-50); }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-1); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 4px;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--ink-900);
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: color var(--dur-base);
}
.faq-q:hover { color: var(--red-600); }
.faq-q .faq-text {
  flex: 1 1 auto;
  min-width: 0;
}
.faq-q .plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-300);
  display: grid;
  place-items: center;
  transition: transform var(--dur-base), background var(--dur-base), border-color var(--dur-base), color var(--dur-base);
  flex-shrink: 0;
  color: var(--ink-900);
  margin-top: 2px;
}
.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
  background: var(--red-500);
  border-color: var(--red-500);
  color: #fff;
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 4px 26px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-2);
  max-width: 70ch;
}

@media (max-width: 760px) {
  section[data-screen-label="03 Contact"] .faq-wrap {
    max-width: 100%;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .faq-q {
    padding: 20px 0;
    gap: 14px;
    font-size: 16px;
  }
  .faq-q .plus {
    width: 28px;
    height: 28px;
  }
  .faq-a-inner {
    padding: 0 0 20px;
    font-size: 15px;
    line-height: 1.65;
  }
}
.contact-form .privacy { font-size: 12.5px; color: var(--fg-3); line-height: 1.5; max-width: 32ch; }
