@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #0b2240;
  --navy-soft: #14365f;
  --red: #c91432;
  --red-dark: #a50f29;
  --ink: #1d2939;
  --muted: #667085;
  --line: #d9e1ec;
  --paper: #ffffff;
  --mist: #f4f7fb;
  --warm: #f8efe8;
  --gold: #c99a3d;
  --shadow: 0 18px 50px rgba(11, 34, 64, 0.13);
  --top-bar-sticky-offset: 44px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

/* PGWP long-form guide and intake */
.pgwp-article-page {
  background: var(--mist);
}

.pgwp-article-hero {
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #eaf1f8 0%, #ffffff 58%, #f8efe8 100%);
}

.pgwp-top-layout {
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(320px, 420px);
  justify-content: center;
  align-items: start;
  gap: clamp(30px, 5vw, 70px);
}

.pgwp-intake-panel {
  padding: clamp(28px, 3vw, 38px) clamp(24px, 3vw, 32px);
  background: #0b2240;
  border: 1px solid #0b2240;
  border-radius: 9px;
  box-shadow: var(--shadow);
}

.pgwp-intake-panel h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  letter-spacing: 0.02em;
}

.pgwp-intake-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.pgwp-intake-form label {
  display: block;
}

.pgwp-intake-form .pgwp-field-full {
  grid-column: 1;
}

.pgwp-intake-form input,
.pgwp-intake-form textarea {
  width: 100%;
  padding: 15px 11px;
  color: var(--ink);
  font: inherit;
  background: white;
  border: 1px solid #b7b7b7;
  border-radius: 4px;
}

.pgwp-intake-form textarea {
  min-height: 100px;
  resize: vertical;
}

.pgwp-submit {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: max-content;
  min-width: 170px;
  padding: 17px 28px;
  color: white;
  font: inherit;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  background: var(--red);
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.pgwp-submit span {
  position: relative;
  display: block;
  width: 48px;
  height: 1px;
  background: white;
}

.pgwp-submit span::after {
  position: absolute;
  top: -4px;
  right: -1px;
  content: "";
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 8px solid white;
}

.pgwp-submit:hover {
  background: var(--red-dark);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pgwp-article-intro h1 {
  max-width: 620px;
  margin: 6px 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.pgwp-article-intro > img {
  width: 100%;
  height: clamp(230px, 27vw, 300px);
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.pgwp-article-intro > p {
  color: #46566d;
  font-size: 0.98rem;
  line-height: 1.6;
}

.pgwp-article-intro .pgwp-lead {
  margin: 18px 0 7px;
  color: var(--navy);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
}

.pgwp-toc {
  display: grid;
  gap: 0;
  margin-top: 20px;
  padding: 20px;
  background: white;
  border-left: 4px solid var(--red);
  box-shadow: 0 10px 30px rgba(11, 34, 64, 0.08);
}

.pgwp-toc strong {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.15rem;
}

.pgwp-toc a {
  padding: 9px 0;
  color: var(--navy-soft);
  border-bottom: 1px solid var(--line);
}

.pgwp-toc a:last-child {
  border-bottom: 0;
}

.pgwp-toc a:hover {
  color: var(--red);
}

.pgwp-longform {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(45px, 7vw, 90px) 0;
}

.pgwp-longform section {
  padding: 0 0 42px;
  margin: 0 0 42px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 180px;
}

.pgwp-longform section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.pgwp-longform h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.pgwp-longform h3 {
  margin: 30px 0 10px;
  color: var(--navy-soft);
  font-size: 1.3rem;
}

.pgwp-longform p,
.pgwp-longform li {
  color: #46566d;
  font-size: 1.05rem;
  line-height: 1.8;
}

.pgwp-longform ul {
  padding-left: 24px;
}

.pgwp-longform li {
  margin-bottom: 9px;
}

.pgwp-longform .button {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .pgwp-top-layout {
    grid-template-columns: 1fr;
  }

  .pgwp-intake-panel {
    order: 1;
  }

  .pgwp-article-intro {
    order: 0;
  }
}

.top-bar .top-links .instagram-link,
.top-bar .top-links .tiktok-link,
.top-bar .top-links .youtube-link,
.top-bar .top-links .instagram-link:hover,
.top-bar .top-links .tiktok-link:hover,
.top-bar .top-links .youtube-link:hover {
  display: inline-grid;
  place-items: center;
  gap: 0;
  background: transparent;
  box-shadow: none;
}

.top-bar .top-links .instagram-link::before,
.top-bar .top-links .tiktok-link::before,
.top-bar .top-links .youtube-link::before {
  display: none;
  content: none;
}

/* Work permit pillar page */
.work-permit-guide > section {
  padding: 0 0 42px;
  margin: 0 0 42px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 180px;
}

.work-permit-guide > section:last-child {
  border-bottom: 0;
}

.work-permit-guide h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.work-permit-guide > section > p,
.work-permit-guide > section > ul li {
  color: #46566d;
  font-size: 1.04rem;
  line-height: 1.75;
}

.permit-finder-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 18px;
}

.permit-finder-options button {
  padding: 15px;
  color: var(--navy);
  font: inherit;
  font-weight: 700;
  text-align: left;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.permit-finder-options button:hover,
.permit-finder-options button.is-selected {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

.permit-finder-result {
  min-height: 58px;
  padding: 17px 19px;
  color: #34445a;
  line-height: 1.6;
  background: #eaf1f8;
  border-left: 4px solid var(--red);
}

.permit-finder-result a {
  color: var(--red-dark);
  font-weight: 700;
  text-decoration: underline;
}

.work-permit-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.work-permit-card-grid > a {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(11, 34, 64, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.work-permit-card-grid > a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.work-permit-card-grid span {
  width: max-content;
  padding: 5px 9px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  background: #fbe9ed;
  border-radius: 5px;
}

.work-permit-card-grid h3 {
  margin: 17px 0 8px;
  color: var(--navy);
  font-size: 1.18rem;
}

.work-permit-card-grid p {
  margin: 0 0 18px;
  color: #58677c;
  line-height: 1.6;
}

.work-permit-card-grid strong {
  margin-top: auto;
  color: var(--red);
}

.work-permit-table td:first-child {
  color: var(--navy);
  font-weight: 700;
}

.work-permit-table tbody tr:nth-child(odd) {
  background: #ffffff;
}

.work-permit-table tbody tr:nth-child(even) {
  background: #edf3f9;
}

.work-permit-table tbody tr:hover {
  background: #e4edf7;
}

.work-permit-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.work-permit-audience-grid > div {
  padding: 20px;
  background: #f4f7fb;
  border-left: 4px solid var(--red);
  border-top: 1px solid #e3eaf3;
  border-right: 1px solid #e3eaf3;
  border-bottom: 1px solid #e3eaf3;
  box-shadow: 0 8px 24px rgba(11, 34, 64, 0.06);
  transition: background 0.18s ease, transform 0.18s ease;
}

.work-permit-audience-grid > div:hover {
  background: #eaf1f8;
  transform: translateY(-2px);
}

body.service-page.synced-service-page main > .service-detail-section {
  padding-top: 24px;
}

body.service-page .pgwp-longform {
  padding-top: 24px;
}

.work-permit-audience-grid strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.work-permit-audience-grid p {
  margin: 8px 0 0;
  color: #58677c;
  line-height: 1.55;
}

.work-permit-timeline {
  display: grid;
  gap: 0;
  padding: 0;
  margin-top: 24px;
  list-style: none;
  counter-reset: permit-step;
}

.work-permit-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 20px;
  padding: 20px 20px 20px 64px;
  counter-increment: permit-step;
  border-left: 2px solid var(--line);
}

.work-permit-timeline li::before {
  position: absolute;
  top: 15px;
  left: -22px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  content: counter(permit-step);
  color: white;
  font-weight: 800;
  background: var(--red);
  border-radius: 50%;
}

.work-permit-timeline strong {
  color: var(--navy);
}

.work-permit-timeline span {
  color: #58677c;
  line-height: 1.6;
}

.work-permit-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.work-permit-checklist label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 4px;
  color: var(--navy);
  font-weight: 650;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #cbd8e7;
  border-radius: 0;
}

.work-permit-checklist input {
  display: none;
}

.work-permit-checklist label::before {
  flex: 0 0 auto;
  content: "✓";
  color: var(--red);
  font-size: 1rem;
  font-weight: 800;
}

.work-permit-final-cta {
  padding: clamp(28px, 5vw, 48px) !important;
  color: white;
  background: var(--navy);
  border-radius: 12px;
}

.work-permit-final-cta h2,
.work-permit-final-cta p {
  color: white !important;
}

@media (max-width: 800px) {
  .permit-finder-options,
  .work-permit-card-grid,
  .work-permit-audience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .work-permit-timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 540px) {
  .permit-finder-options,
  .work-permit-card-grid,
  .work-permit-audience-grid,
  .work-permit-checklist {
    grid-template-columns: 1fr;
  }
}

/* Compact desktop service pages so more useful content appears above the fold. */
@media (min-width: 901px) {
  .site-header .site-nav {
    flex: 1;
    justify-content: center;
  }

  body:not(.service-page) .site-header {
    padding-top: 7px;
    padding-bottom: 7px;
  }

  body:not(.service-page) .brand-logo {
    width: 62px;
    height: 62px;
    padding: 3px;
    border-radius: 8px;
  }

  body:not(.service-page) .brand {
    gap: 9px;
  }

  body:not(.service-page) .brand strong {
    font-size: 1.25rem;
  }

  body:not(.service-page) .brand small {
    font-size: 0.68rem;
  }

  body:not(.service-page) .site-nav {
    gap: 3px;
  }

  body:not(.service-page) .site-nav a {
    min-height: 34px;
    padding: 7px 8px;
    font-size: 0.82rem;
  }

  body.service-page .site-header {
    padding-top: 7px;
    padding-bottom: 7px;
  }

  body.service-page .brand-logo {
    width: 62px;
    height: 62px;
    padding: 3px;
    border-radius: 8px;
  }

  body.service-page .brand {
    gap: 9px;
  }

  body.service-page .brand strong {
    font-size: 1.25rem;
  }

  body.service-page .brand small {
    font-size: 0.68rem;
  }

  body.service-page .site-nav {
    gap: 3px;
  }

  body.service-page .site-nav a {
    min-height: 34px;
    padding: 7px 8px;
    font-size: 0.82rem;
  }

  body.service-page.synced-service-page .service-detail-hero.synced-service-hero,
  body.service-page.synced-service-page.work-permit-overview-page .service-detail-hero.synced-service-hero {
    grid-template-columns: minmax(0, 560px) minmax(300px, 350px);
    gap: 38px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  body.service-page.synced-service-page .synced-service-intro,
  body.service-page.synced-service-page .service-detail-inner {
    max-width: 560px;
  }

  body.service-page.synced-service-page .service-detail-inner h1,
  body.service-page.synced-service-page.work-permit-overview-page .service-detail-inner h1 {
    max-width: 550px;
    margin-bottom: 12px;
    font-size: clamp(1.85rem, 2.6vw, 2.35rem);
  }

  body.service-page.synced-service-page .service-detail-inner > p:not(.eyebrow) {
    margin: 8px 0;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  body.service-page.synced-service-page .service-hero-visual,
  body.service-page.synced-service-page.work-permit-overview-page .service-hero-visual {
    max-width: 560px;
    height: 225px;
    margin-top: 16px;
  }

  body.service-page.synced-service-page .pgwp-intake-panel.synced-service-intake,
  body.service-page.synced-service-page.work-permit-overview-page .pgwp-intake-panel.synced-service-intake {
    max-width: 350px;
    padding: 22px;
  }

  body.service-page.synced-service-page .pgwp-intake-panel h2 {
    margin-bottom: 14px;
    font-size: 1.4rem;
  }

  body.service-page.synced-service-page .synced-service-intake .pgwp-intake-form {
    gap: 10px;
  }

  body.service-page.synced-service-page .synced-service-intake .pgwp-intake-form input,
  body.service-page.synced-service-page .synced-service-intake .pgwp-intake-form textarea {
    padding: 10px;
    font-size: 0.9rem;
  }

  body.service-page.synced-service-page .synced-service-intake .pgwp-intake-form textarea {
    min-height: 82px;
  }

  body.service-page.synced-service-page .synced-service-intake .pgwp-submit {
    min-width: 145px;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  body.service-page .pgwp-top-layout {
    grid-template-columns: minmax(0, 560px) minmax(300px, 350px);
    gap: 38px;
  }

  body.service-page .pgwp-article-hero {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  body.service-page .pgwp-article-intro h1 {
    font-size: clamp(1.85rem, 2.6vw, 2.35rem);
  }

  body.service-page .pgwp-article-intro > img {
    height: 225px;
  }

  body.service-page .pgwp-intake-panel {
    padding: 22px;
  }
}

body.synced-service-page .super-visa-guide .faq-list details {
  padding: 10px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

body.synced-service-page .super-visa-guide .faq-list summary {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

body.synced-service-page .super-visa-guide .faq-list summary::before,
body.synced-service-page .super-visa-guide .faq-list summary::after {
  display: none;
  content: none;
}

body.synced-service-page .super-visa-guide .faq-list details p {
  margin: 5px 0 0;
  padding: 0;
}

body.synced-service-page .super-visa-guide .faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
}

body.synced-service-page .super-visa-guide .faq-list summary::after {
  display: block;
  flex: 0 0 auto;
  content: "+";
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

body.synced-service-page .super-visa-guide .faq-list details[open] summary::after {
  content: "−";
}

body.synced-service-page.work-permit-overview-page .service-detail-hero.synced-service-hero {
  grid-template-columns: minmax(0, 610px) minmax(300px, 390px);
  gap: clamp(28px, 4vw, 52px);
  padding-top: clamp(28px, 4vw, 52px);
  padding-bottom: clamp(28px, 4vw, 52px);
}

body.synced-service-page.work-permit-overview-page .service-detail-inner h1 {
  max-width: 580px;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
}

body.synced-service-page.work-permit-overview-page .service-hero-visual {
  max-width: 610px;
  height: clamp(210px, 24vw, 270px);
}

body.synced-service-page.work-permit-overview-page .pgwp-intake-panel.synced-service-intake {
  max-width: 390px;
  padding: 28px;
}

body.synced-service-page.work-permit-overview-page .synced-service-intake .pgwp-intake-form {
  gap: 14px;
}

body.synced-service-page.work-permit-overview-page .synced-service-intake .pgwp-intake-form input,
body.synced-service-page.work-permit-overview-page .synced-service-intake .pgwp-intake-form textarea {
  padding: 12px 11px;
}

body.synced-service-page.work-permit-overview-page .synced-service-intake .pgwp-intake-form textarea {
  min-height: 105px;
}

body.synced-service-page.work-permit-overview-page .pgwp-submit {
  padding: 14px 24px;
}

/* Service pages use article content; numbered/lettered promotional blocks stay homepage-only. */
.service-page .detail-feature-row,
.service-page .detail-process,
.service-page .detail-why-row,
.service-page .pgwp-feature-row,
.service-page .pgwp-process,
.service-page .pgwp-why-row {
  display: none !important;
}

body.synced-service-page .work-permit-guide .faq-list details {
  padding: 10px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

body.synced-service-page .work-permit-guide .faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  color: var(--navy);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.4;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  list-style: none;
}

body.synced-service-page .work-permit-guide .faq-list summary::-webkit-details-marker {
  display: none;
}

body.synced-service-page .work-permit-guide .faq-list summary::before {
  display: none;
  content: none;
}

body.synced-service-page .work-permit-guide .faq-list summary::after {
  display: block;
  flex: 0 0 auto;
  content: "+";
  color: var(--red);
  font-size: 1.5rem;
  line-height: 1;
}

body.synced-service-page .work-permit-guide .faq-list details[open] summary::after {
  content: "−";
}

body.synced-service-page .work-permit-guide .faq-list details p {
  margin: 5px 0 0;
  padding: 0;
  color: #29384d;
  font-size: 1.04rem;
  line-height: 1.7;
}

body:not(.service-page) .faq-list details {
  padding: 10px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

body:not(.service-page) .faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  color: var(--navy);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.4;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  list-style: none;
}

body:not(.service-page) .faq-list summary::-webkit-details-marker {
  display: none;
}

body:not(.service-page) .faq-list summary::before {
  display: none;
  content: none;
}

body:not(.service-page) .faq-list summary::after {
  display: block;
  flex: 0 0 auto;
  content: "+";
  color: var(--red);
  font-size: 1.5rem;
  line-height: 1;
}

body:not(.service-page) .faq-list details[open] summary::after {
  content: "−";
}

body:not(.service-page) .faq-list details p {
  margin: 5px 0 0;
  padding: 0;
  color: #29384d;
  font-size: 1rem;
  line-height: 1.7;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 9px clamp(18px, 5vw, 72px);
  color: #607086;
  font-size: 0.8rem;
  background: white;
  border-bottom: 1px solid var(--line);
}

.page-breadcrumb a {
  color: var(--navy-soft);
}

.page-breadcrumb a:hover {
  color: var(--red);
  text-decoration: underline;
}

.topic-cluster-nav {
  width: min(1120px, calc(100% - 36px));
  margin: 12px auto 50px;
  padding: 24px;
  background: #eaf1f8;
  border-top: 3px solid var(--navy);
}

.topic-cluster-nav > strong {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 1.15rem;
}

.topic-cluster-nav > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-cluster-nav a {
  padding: 7px 10px;
  color: var(--navy);
  font-size: 0.86rem;
  background: white;
  border: 1px solid #cad7e6;
  border-radius: 5px;
}

.topic-cluster-nav a:hover,
.topic-cluster-nav a[aria-current="page"] {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

@media (max-width: 520px) {
  .pgwp-intake-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pgwp-intake-form .pgwp-field-full,
  .pgwp-submit {
    grid-column: 1;
  }
}

/* Shared article and intake layout for all non-PGWP service pages */
.synced-service-page main {
  background: var(--mist);
}

.synced-service-page .synced-service-hero {
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(320px, 420px);
  align-items: start;
  justify-content: center;
  gap: clamp(30px, 5vw, 70px);
  min-height: 0;
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 72px);
  color: var(--ink);
  background: linear-gradient(135deg, #eaf1f8 0%, #ffffff 58%, #f8efe8 100%);
}

.synced-service-page .synced-service-hero::before,
.synced-service-page .synced-service-hero::after {
  display: none;
}

.synced-service-intro {
  min-width: 0;
}

.synced-service-page .service-detail-inner {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
}

.synced-service-page .service-detail-inner h1 {
  max-width: 620px;
  margin: 6px 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.synced-service-page .service-detail-inner > p:not(.eyebrow) {
  color: #46566d;
  font-size: 1rem;
  line-height: 1.65;
}

.synced-service-page .service-hero-visual {
  position: static;
  width: 100%;
  max-width: none;
  height: clamp(230px, 27vw, 300px);
  margin: 22px 0 0;
  transform: none;
}

.synced-service-page .service-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.synced-service-page .service-detail-section {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(45px, 7vw, 90px) 0;
}

.synced-service-page .service-detail-grid {
  display: block;
}

.synced-service-page .service-detail-card {
  padding: 0 0 38px;
  margin: 0 0 38px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.synced-service-page .service-detail-card h2,
.synced-service-page .service-detail-section > h2 {
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.synced-service-page .service-detail-card p,
.synced-service-page .service-detail-card li,
.synced-service-page .service-detail-section > p,
.synced-service-page .service-detail-section > li {
  color: #46566d;
  font-size: 1.04rem;
  line-height: 1.8;
}

.synced-service-page .synced-service-intake {
  position: static;
}

@media (max-width: 900px) {
  .synced-service-page .synced-service-hero {
    grid-template-columns: 1fr;
  }

  .synced-service-page .synced-service-intake {
    order: 1;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

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

.top-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--red);
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 9px clamp(18px, 5vw, 72px);
}

.top-contact,
.top-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.top-contact > *,
.top-links > * {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.45);
}

.top-contact > *:first-child,
.top-links > *:first-child {
  padding-left: 0;
}

.top-contact > *:last-child,
.top-links > *:last-child {
  padding-right: 0;
  border-right: 0;
}

.top-bar a:hover {
  text-decoration: underline;
}

.top-bar .top-contact > span {
  display: none;
}

.top-links .instagram-link,
.top-links .tiktok-link,
.top-links .youtube-link {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 28px;
  margin-left: 4px;
  padding: 5px;
  min-height: auto;
  border-right: 0;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0;
  line-height: 1;
  background: transparent;
  box-shadow: none;
  transition: color 0.18s ease, background 0.18s ease;
}

.top-links .instagram-link {
  background: transparent;
}

.top-links .tiktok-link {
  background: transparent;
}

.top-links .youtube-link {
  background: transparent;
}

.top-links .instagram-link:hover,
.top-links .tiktok-link:hover,
  .top-links .youtube-link:hover {
  text-decoration: none;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  transform: none;
  filter: none;
  box-shadow: none;
}

.top-links .instagram-link svg,
.top-links .tiktok-link svg,
.top-links .youtube-link svg {
  display: inline-block;
  flex: 0 0 16px;
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  overflow: visible;
}

.top-links .instagram-link svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.top-links .instagram-link .social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.top-links .tiktok-link svg {
  fill: white;
}

.top-links .youtube-link svg {
  fill: white;
}

.top-links .youtube-link .social-icon-play {
  fill: var(--red);
}

.site-header {
  position: sticky;
  top: var(--top-bar-sticky-offset);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(199, 211, 227, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-logo {
  width: clamp(92px, 6.8vw, 108px);
  height: clamp(92px, 6.8vw, 108px);
  padding: 5px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(188, 201, 219, 0.8);
  background: white;
  box-shadow: 0 10px 24px rgba(11, 34, 64, 0.12);
}

.brand > span {
  display: grid;
  gap: 1px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.018em;
}

.brand small {
  color: var(--navy-soft);
  font-size: 0.83rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--navy);
  font-weight: 700;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.93rem;
  box-sizing: border-box;
}

.site-nav > a:not(.whatsapp-link):not(.nav-cta):not(.instagram-link):not(.tiktok-link):not(.youtube-link) {
  border: 1px solid var(--line);
  background: #f8fbff;
}

.site-nav > a:not(.whatsapp-link):not(.nav-cta):not(.instagram-link):not(.tiktok-link):not(.youtube-link):hover {
  color: var(--navy);
  border-color: #446d9f;
  background: #dbe8fb;
}

.site-nav a:hover {
  color: var(--navy);
  background: #e4edf9;
}

.site-nav .category-link {
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: #f8fbff;
  font-size: 0.86rem;
  line-height: 1.1;
  white-space: nowrap;
}

.site-nav .services-dropdown {
  position: relative;
}

.site-nav .services-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.93rem;
  list-style: none;
  cursor: pointer;
}

.site-nav .services-dropdown summary::-webkit-details-marker {
  display: none;
}

.site-nav .services-dropdown summary::after {
  content: "▾";
  font-size: 0.78rem;
  transition: transform 0.2s ease;
}

.site-nav .services-dropdown[open] summary::after {
  transform: rotate(180deg);
}

.site-nav .services-dropdown summary:hover,
.site-nav .services-dropdown[open] summary {
  background: var(--mist);
}

.site-nav .services-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: none;
  min-width: 560px;
  max-height: min(70vh, 540px);
  overflow: auto;
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 16px 28px rgba(10, 29, 58, 0.14);
  z-index: 40;
}

.site-nav .services-dropdown:hover .services-dropdown-menu,
.site-nav .services-dropdown[open] .services-dropdown-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 10px;
}

.site-nav .services-group {
  padding: 8px;
  border: 1px solid rgba(217, 225, 236, 0.8);
  border-radius: 8px;
  background: #fcfdff;
}

.site-nav .services-group h4 {
  margin: 0 0 6px;
  padding: 2px 2px 6px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.site-nav .services-dropdown-menu a {
  padding: 8px 10px;
  border-radius: 6px;
  white-space: normal;
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--navy);
  color: white;
}

.site-nav .nav-cta:hover {
  background: var(--red);
}

.site-nav .whatsapp-link {
  background: #20b15a;
  color: white;
}

.site-nav .whatsapp-link:hover {
  background: #178f48;
}

.site-nav .whatsapp-link {
  display: none !important;
}

.site-nav .instagram-link,
.top-links .instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d62976;
  color: white;
}

.site-nav .instagram-link::before,
.top-links .instagram-link::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background:
    radial-gradient(circle at 68% 30%, #fff 0 1.5px, transparent 2px),
    radial-gradient(circle at center, transparent 0 4px, #fff 4.5px 5.7px, transparent 6.2px),
    linear-gradient(135deg, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%);
  box-shadow: inset 0 0 0 2px #fff;
}

.site-nav .instagram-link:hover,
.top-links .instagram-link:hover {
  background: #b91f64;
}

.site-nav .tiktok-link,
.site-nav .youtube-link,
.top-links .tiktok-link,
.top-links .youtube-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
}

.site-nav .tiktok-link,
.top-links .tiktok-link {
  background: #111;
}

.site-nav .tiktok-link::before,
.top-links .tiktok-link::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background:
    linear-gradient(90deg, transparent 45%, #fff 45% 55%, transparent 55%),
    radial-gradient(circle at 36% 78%, #fff 0 2px, transparent 2.5px),
    radial-gradient(circle at 68% 30%, #fff 0 2px, transparent 2.5px);
  box-shadow: inset 0 0 0 2px #fff;
}

.site-nav .tiktok-link:hover,
.top-links .tiktok-link:hover {
  background: #000;
}

.site-nav .youtube-link,
.top-links .youtube-link {
  background: #ff0000;
}

.site-nav .youtube-link::before,
.top-links .youtube-link::before {
  content: "";
  width: 18px;
  height: 14px;
  border-radius: 4px;
  background: #fff;
  clip-path: polygon(28% 18%, 82% 50%, 28% 82%);
}

.site-nav .youtube-link:hover,
.top-links .youtube-link:hover {
  background: #d70000;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.button.primary {
  background: var(--red);
  color: white;
}

.button.primary:hover {
  background: var(--red-dark);
}

.challenge-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px) clamp(18px, 5vw, 72px) clamp(24px, 3vw, 36px);
  background: var(--navy);
}

.challenge-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 34, 64, 0.97) 0%, rgba(11, 34, 64, 0.86) 45%, rgba(11, 34, 64, 0.62) 100%),
    linear-gradient(180deg, rgba(11, 34, 64, 0.1), rgba(11, 34, 64, 0.58)),
    url("assets/simmi-hero.png") center / cover;
  opacity: 1;
  transform: scale(1.04);
}

.challenge-content,
.quick-services {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.challenge-content {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.challenge-copy h1,
.challenge-copy h2 {
  max-width: 720px;
  margin: 0;
  color: white;
  font-size: clamp(2rem, 3.25vw, 3.05rem);
  line-height: 1.02;
}

.challenge-copy h3,
.consult-box h3 {
  margin: 16px 0 6px;
  color: white;
  font-size: 1.05rem;
}

.challenge-copy p,
.consult-box p {
  max-width: 700px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.challenge-list {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: white;
  font-weight: 800;
}

.challenge-list li {
  position: relative;
  padding-left: 24px;
}

.challenge-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--red);
  transform: rotate(45deg);
}

.consult-box {
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.consult-box h3 {
  margin-top: 0;
  color: white;
}

.consult-box p {
  color: rgba(255, 255, 255, 0.8);
}

.consult-box .button {
  width: 100%;
  margin-top: 18px;
}

.quick-services {
  margin-top: 34px;
  text-align: center;
}

.quick-services .eyebrow {
  color: #ff4a60;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.quick-services h2 {
  margin: 0 0 14px;
  color: white;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
}

.quick-service-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(86px, 1fr));
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(11, 34, 64, 0.16);
}

.quick-service-card {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 92px;
  padding: 10px 8px;
  border: 1px solid #e5ebf4;
  border-radius: 7px;
  background: white;
  color: var(--navy);
  text-align: center;
  box-shadow: 0 7px 18px rgba(11, 34, 64, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.quick-service-card:hover {
  border-color: rgba(201, 20, 50, 0.55);
  box-shadow: 0 12px 24px rgba(11, 34, 64, 0.14);
  transform: translateY(-2px);
}

.service-icon {
  display: grid;
  position: relative;
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  place-items: center;
  border: 2px solid rgba(201, 20, 50, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f4f7fb);
  color: var(--red);
  font-size: 1.05rem;
  font-weight: 900;
}

.quick-service-card strong {
  color: var(--navy);
  font-size: 0.76rem;
  line-height: 1.25;
}

.trust-section {
  padding: clamp(42px, 6vw, 70px) clamp(18px, 5vw, 72px);
  background: var(--red);
  color: white;
}

.trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(280px, 1fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}

.trust-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 132px;
  padding: 22px 26px;
  border-radius: 8px;
  background: white;
  color: var(--navy);
  box-shadow: 0 16px 42px rgba(11, 34, 64, 0.18);
}

.trust-card-logo-only {
  grid-template-columns: 1fr;
  justify-items: center;
  min-height: 132px;
}

.trust-card-logo-only img {
  width: min(360px, 100%);
  height: auto;
  object-fit: contain;
}

.trust-brand,
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-brand {
  gap: 16px;
}

.trust-brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.trust-brand strong {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.05rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.9;
}

.trust-brand span {
  color: var(--red);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.04rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.trust-divider {
  width: 2px;
  height: 76px;
  background: rgba(11, 34, 64, 0.45);
}

.trust-badge img {
  width: min(220px, 100%);
  height: auto;
  object-fit: contain;
}

.trust-inner p {
  max-width: 680px;
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  line-height: 1.55;
  font-weight: 800;
}

.section {
  padding: clamp(66px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(280px, 1fr);
  gap: 36px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 38px;
}

.section-heading.compact {
  display: block;
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.consult-card h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.intro {
  background: white;
  padding-top: clamp(28px, 5vw, 56px);
  padding-bottom: clamp(24px, 4vw, 48px);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.program-card,
.quote-card,
.consult-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(11, 34, 64, 0.06);
}

.program-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.2rem;
}

.program-card h3 a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 4px;
}

.program-card h3 a:hover,
.program-card h3 a:focus-visible {
  color: var(--red);
  text-decoration: underline;
  text-decoration-color: var(--red);
  outline: none;
}

.program-card.featured h3 a {
  color: var(--navy);
}

.program-card.featured h3 a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--red);
  vertical-align: middle;
}

.program-card.featured h3 a:hover,
.program-card.featured h3 a:focus-visible {
  color: var(--red);
}

.program-card p,
.faq p,
.contact-copy p,
.form-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.why-heading {
  max-width: 1180px;
  margin: 0 auto 28px;
  text-align: center;
}

.why-heading .eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--navy);
}

.why-heading .eyebrow::before,
.why-heading .eyebrow::after {
  content: "";
  display: block;
  width: min(16vw, 140px);
  height: 2px;
  background: var(--red);
}

.why-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.05;
}

.why-heading h2 span,
.why-card h3 span {
  color: var(--red);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.why-card {
  min-height: 230px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  text-align: center;
  box-shadow: 0 10px 28px rgba(11, 34, 64, 0.08);
}

.why-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  place-items: center;
  border: 2px dashed rgba(201, 20, 50, 0.38);
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 1.85rem;
  font-weight: 900;
}

.why-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.25;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.why-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  max-width: 640px;
  margin: 34px auto 0;
}

.why-cta::before,
.why-cta::after {
  content: "";
  flex: 1;
  height: 2px;
  background: rgba(201, 20, 50, 0.28);
}

.why-cta a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-size: 0.88rem;
  font-weight: 800;
}

.services {
  background: white;
  padding-top: clamp(28px, 5vw, 56px);
  padding-bottom: clamp(18px, 3vw, 34px);
}

.refusal-support {
  background: linear-gradient(180deg, #fff, var(--mist));
  padding-top: clamp(14px, 2.4vw, 28px);
  padding-bottom: clamp(18px, 3vw, 34px);
}

.refusal-grid,
.testimonial-grid {
  display: grid;
  gap: 16px;
  max-width: 1180px;
  margin: 28px auto 0;
}

.refusal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.refusal-grid article {
  min-height: 160px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 32px rgba(11, 34, 64, 0.08);
}

.refusal-grid strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
}

.refusal-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.program-grid {
  margin-top: 38px;
}

.program-card {
  padding: 28px;
}

.program-card[id] {
  scroll-margin-top: 160px;
}

.program-card.featured {
  min-height: 236px;
  display: flex;
  flex-direction: column;
}

.program-card.featured a {
  width: fit-content;
  margin-top: auto;
  color: var(--red);
  font-weight: 800;
}

.program-card.wide > a {
  width: fit-content;
  color: var(--red);
  font-weight: 800;
}

.program-card.wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(280px, 1.22fr);
  gap: 28px;
  align-items: start;
}

.program-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(201, 20, 50, 0.09);
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.program-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-list li {
  position: relative;
  min-height: 44px;
  padding: 12px 12px 12px 34px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.35;
}

.program-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.process {
  background: #f6f7fa;
  padding-top: clamp(14px, 2.4vw, 28px);
}

.process .section-heading h2 {
  color: var(--navy);
}

.process .eyebrow {
  color: var(--red);
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(7, minmax(112px, 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 36px rgba(11, 34, 64, 0.08);
}

.process-step {
  position: relative;
  min-width: 0;
  text-align: center;
}

.process-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 31px;
  right: -23px;
  color: var(--navy);
  font-size: 1.65rem;
  font-weight: 800;
}

.step-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: #fbfcff;
  color: var(--navy);
}

.step-number {
  position: absolute;
  top: -10px;
  left: 50%;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  transform: translateX(-50%);
}

.step-symbol {
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
}

.process-step h3 {
  min-height: 40px;
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.2;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.testimonial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  background: var(--warm);
  padding-top: clamp(28px, 5vw, 56px);
  padding-bottom: clamp(18px, 3vw, 34px);
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.quote-card,
.consult-card {
  padding: clamp(28px, 5vw, 52px);
}

.quote-card {
  background: var(--navy);
  color: white;
  border-color: transparent;
}

.quote-card p {
  margin: 0 0 28px;
  font-size: clamp(1.05rem, 1.8vw, 1.38rem);
  line-height: 1.55;
}

.review-stars {
  margin-bottom: 18px;
  color: #ffb400;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

.consult-card {
  display: grid;
  align-content: center;
}

.consult-card .button {
  width: fit-content;
  margin-top: 26px;
}

.faq {
  background: white;
  padding-top: clamp(20px, 3vw, 36px);
}

.faq .faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}

.faq .faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 10px 10px 10px 30px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  color: var(--navy);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.28;
}

.faq .faq-list summary::-webkit-details-marker,
.faq .faq-list summary::marker {
  display: none;
}

.faq .faq-list summary::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.faq .faq-list details p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
   padding: 0 clamp(18px, 5vw, 72px);
   border-top: 1px solid var(--line);
 }

.service-faq-block {
   padding: clamp(24px, 4vw, 48px) 0;
 }

.service-faq-block .section-heading {
   margin-bottom: 24px;
 }

.service-faq-block .faq-list {
   border-top: 1px solid var(--line);
 }

.service-faq-block details {
   border-bottom: 1px solid var(--line);
  padding: 8px 0;
 }

.service-faq-block summary {
  position: relative;
  list-style: none;
   cursor: pointer;
  padding: 10px 10px 10px 30px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
   color: var(--navy);
  font-family: "Inter", Arial, sans-serif;
   font-size: 0.98rem;
   font-weight: 800;
   line-height: 1.28;
 }

.service-faq-block summary::-webkit-details-marker,
.service-faq-block summary::marker {
   display: none;
 }

.service-faq-block summary::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.service-faq-block summary::after {
  display: none;
 }

.service-faq-block details[open] summary::after {
  display: none;
 }

.service-faq-block details p {
   padding-top: 14px;
   margin: 0;
   color: var(--muted);
   line-height: 1.75;
 }

@media (max-width: 920px) {
   .service-faq-block .faq-list {
     padding-left: 0;
     padding-right: 0;
   }
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  background: var(--mist);
}

.contact-copy {
  align-self: center;
}

.contact-copy p {
  margin-top: 18px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: var(--navy);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: white;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(201, 20, 50, 0.18);
  border-color: var(--red);
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
}

.site-footer {
  padding: 36px clamp(18px, 5vw, 72px) 24px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-grid div,
.footer-bottom {
  display: grid;
  gap: 10px;
}

.footer-grid strong {
  color: white;
  font-size: 1rem;
}

.footer-grid p,
.footer-grid span,
.footer-grid a,
.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.footer-grid a,
.footer-bottom a {
  color: white;
  font-weight: 800;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: white;
}

.footer-bottom {
  grid-template-columns: 1fr auto;
  max-width: 1180px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #20b15a;
  color: white;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(11, 34, 64, 0.24);
}

.floating-whatsapp:hover {
  background: #178f48;
}

.service-faq-block {
  max-width: 980px;
  margin: 34px auto 0;
}

.service-page {
  background: var(--mist);
}

.service-detail-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 56px) clamp(18px, 5vw, 72px);
  background: var(--navy);
  color: white;
}

.service-detail-hero.has-visual {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(300px, 0.78fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.service-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 34, 64, 0.97), rgba(11, 34, 64, 0.72)),
    url("../assets/simmi-hero.png") center / cover;
  opacity: 0.95;
}

.service-detail-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.service-hero-visual {
  position: relative;
  z-index: 1;
  margin: 0;
  align-self: start;
}

.service-hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
}

.service-detail-hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1;
}

.service-detail-hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.7;
}

.service-detail-section {
  padding: clamp(48px, 7vw, 82px) clamp(18px, 5vw, 72px);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.detail-feature-row + .service-detail-grid,
.pgwp-feature-row + .service-detail-grid {
  margin-top: 18px;
}

.service-detail-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(11, 34, 64, 0.06);
}

.service-detail-card h2,
.service-detail-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
}

.service-detail-card p,
.service-detail-card li {
  color: var(--muted);
  line-height: 1.7;
}

.service-detail-card li a,
.program-list li a {
  display: inline;
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 0.18s ease, background-color 0.18s ease, text-decoration-color 0.18s ease;
}

.service-detail-card li a:hover,
.service-detail-card li a:focus-visible,
.program-list li a:hover,
.program-list li a:focus-visible {
  color: var(--red);
  background: rgba(201, 20, 50, 0.1);
  text-decoration-color: var(--red);
  outline: none;
}

.service-detail-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.mid-page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 24px auto 6px;
  padding: 22px 24px;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  box-shadow: 0 14px 34px rgba(11, 34, 64, 0.16);
}

.mid-page-cta strong {
  display: block;
  font-size: 1.12rem;
}

.mid-page-cta p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.mid-page-cta .button {
  min-width: 190px;
}

.service-detail-cta {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 30px;
  border-radius: 8px;
  background: var(--navy);
  color: white;
}

.service-detail-cta h2,
.service-detail-cta p {
  margin: 0;
}

.service-detail-cta p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.service-detail-cta .button {
  margin-top: 20px;
}

@media (min-width: 1200px) {
  .service-detail-hero {
    padding-top: 44px;
    padding-bottom: 52px;
    padding-left: clamp(12px, 2vw, 26px);
    padding-right: clamp(12px, 2vw, 26px);
  }

  .service-detail-hero.has-visual {
    grid-template-columns: minmax(360px, 0.86fr) minmax(460px, 0.92fr);
    gap: clamp(28px, 3vw, 56px);
  }

  .service-detail-section {
    padding-left: clamp(12px, 2vw, 26px);
    padding-right: clamp(12px, 2vw, 26px);
  }
}

.pgwp-feature-row,
.pgwp-process,
.pgwp-why-row,
.detail-feature-row,
.detail-process,
.detail-why-row {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 18px auto 0;
}

.pgwp-feature-row,
.detail-feature-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pgwp-mini-card,
.pgwp-process-step,
.pgwp-why-card,
.detail-mini-card,
.detail-process-step,
.detail-why-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 24px rgba(11, 34, 64, 0.06);
}

.pgwp-mini-card strong,
.pgwp-process-step strong,
.pgwp-why-card strong,
.detail-mini-card strong,
.detail-process-step strong,
.detail-why-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.pgwp-mini-card span,
.pgwp-process-step span,
.pgwp-why-card span,
.detail-mini-card span,
.detail-process-step span,
.detail-why-card span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 8px;
  background: rgba(201, 20, 50, 0.09);
  color: var(--red);
  font-weight: 900;
}

.pgwp-process {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pgwp-why-row,
.detail-why-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.detail-process {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

@media (min-width: 1200px) {
  .service-detail-grid,
  .mid-page-cta,
  .service-detail-cta,
  .pgwp-feature-row,
  .pgwp-process,
  .pgwp-why-row,
  .detail-feature-row,
  .detail-process,
  .detail-why-row {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 920px) {
  .top-bar {
    position: static;
  }

  .site-header {
    top: 0;
  }

  .program-card[id] {
    scroll-margin-top: 110px;
  }

  .top-bar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .top-contact > *,
  .top-links > * {
    padding-left: 0;
    padding-right: 10px;
    margin-right: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 20px;
    background: white;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .site-nav .category-link {
    white-space: normal;
  }

  .site-nav .services-dropdown {
    width: 100%;
  }

  .site-nav .services-dropdown summary {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav .services-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    max-height: none;
    margin-top: 6px;
    padding: 6px;
    border: 1px solid var(--line);
    box-shadow: none;
    grid-template-columns: 1fr;
  }

  .site-nav .services-dropdown[open] .services-dropdown-menu {
    display: grid;
  }

  .site-nav .services-dropdown-menu a {
    white-space: normal;
  }

  .section-heading,
  .challenge-content,
  .trust-inner,
  .program-grid,
  .service-detail-hero.has-visual,
  .service-detail-grid,
  .testimonial,
  .contact {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-service-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .refusal-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .google-reviews,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .pgwp-feature-row,
  .pgwp-process,
  .pgwp-why-row,
  .detail-feature-row,
  .detail-process,
  .detail-why-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .program-card.wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .program-list {
    grid-template-columns: 1fr;
  }

  .trust-card {
    max-width: 460px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
    padding: 3px;
  }

  .brand small {
    display: none;
  }

  .contact-form .button {
    width: 100%;
  }

  .quick-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-service-card {
    min-height: 88px;
  }

  .refusal-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .mid-page-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .mid-page-cta .button {
    width: 100%;
  }

  .trust-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .trust-divider {
    width: 100%;
    height: 1px;
  }

  .trust-brand,
  .trust-badge {
    justify-content: center;
  }

  .pgwp-feature-row,
  .pgwp-process,
  .pgwp-why-row,
  .detail-feature-row,
  .detail-process,
  .detail-why-row {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-heading .eyebrow::before,
  .why-heading .eyebrow::after,
  .why-cta::before,
  .why-cta::after {
    display: none;
  }

  .process-flow {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .process-step h3 {
    min-height: 0;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-footer {
    flex-direction: column;
  }
}

/* Final sizing lock: keep every synchronized service page aligned with PGWP. */
body.synced-service-page .service-detail-hero.synced-service-hero {
  grid-template-columns: minmax(0, 650px) minmax(320px, 420px);
  width: 100%;
  min-height: 0;
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 72px);
}

body.synced-service-page .synced-service-intro,
body.synced-service-page .service-detail-inner {
  width: 100%;
  max-width: 650px;
}

body.synced-service-page .service-detail-inner h1 {
  max-width: 620px;
  margin: 6px 0 18px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
}

body.synced-service-page .service-detail-inner .eyebrow {
  color: var(--navy);
}

body.synced-service-page .service-hero-visual {
  position: static;
  inset: auto;
  width: 100%;
  max-width: 650px;
  height: clamp(230px, 27vw, 300px);
  margin: 22px 0 0;
  transform: none;
}

body.synced-service-page .service-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.synced-service-page .pgwp-intake-panel.synced-service-intake {
  position: static;
  width: 100%;
  max-width: 420px;
  padding: clamp(28px, 3vw, 38px) clamp(24px, 3vw, 32px);
  justify-self: start;
}

.top-bar .top-links .facebook-link,
.top-bar .top-links .linkedin-link {
  display: inline-grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 28px;
  min-height: 0;
  margin-left: 4px;
  padding: 5px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0;
  line-height: 1;
  background: transparent;
  border: 0;
  border-radius: 4px;
  box-shadow: none;
}

.top-bar .top-links .facebook-link:hover,
.top-bar .top-links .linkedin-link:hover {
  color: white;
  text-decoration: none;
  background: transparent;
}

.top-bar .top-links .facebook-link::before,
.top-bar .top-links .linkedin-link::before {
  display: none;
  content: none;
}

.top-bar .top-links .facebook-link svg,
.top-bar .top-links .linkedin-link svg {
  display: block;
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  fill: currentColor;
}

body.synced-service-page .synced-service-intake .pgwp-intake-form {
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  padding: 0;
}

body.synced-service-page .synced-service-intake .pgwp-intake-form label,
body.synced-service-page .synced-service-intake .pgwp-intake-form input,
body.synced-service-page .synced-service-intake .pgwp-intake-form textarea {
  width: 100%;
  max-width: 100%;
}

.super-visa-guide > section {
  padding: 0 0 22px;
  margin: 0 0 24px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 180px;
}

body.synced-service-page .service-detail-section.super-visa-guide {
  padding-top: 28px;
  padding-bottom: 42px;
}

.super-visa-guide > section:last-child {
  border-bottom: 0;
}

.super-visa-guide h3 {
  margin: 28px 0 10px;
  color: var(--navy-soft);
  font-size: 1.3rem;
}

.super-visa-guide p,
.super-visa-guide li {
  color: #46566d;
  font-size: 1.04rem;
  line-height: 1.8;
}

.super-visa-guide li {
  margin-bottom: 8px;
}

.super-visa-table-wrap {
  overflow-x: auto;
  margin-top: 24px;
}

.super-visa-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: white;
}

.super-visa-table th,
.super-visa-table td {
  padding: 14px 16px;
  text-align: left;
  border: 1px solid var(--line);
}

.super-visa-table th {
  color: white;
  background: var(--navy);
}

.super-visa-guide .faq-list {
  display: grid;
  gap: 0;
}

.super-visa-guide .faq-list h3 {
  margin: 42px 0 18px;
  padding-bottom: 10px;
  color: var(--navy);
  border-bottom: 2px solid var(--red);
}

.super-visa-guide .faq-list details {
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.super-visa-guide .faq-list summary {
  color: var(--navy);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.super-visa-guide .faq-list summary::-webkit-details-marker {
  display: none;
}

.super-visa-guide .faq-list summary::after {
  display: none;
}

.super-visa-guide .faq-list details p {
  max-width: 850px;
  margin: 14px 0 0;
  color: #29384d;
  font-size: 1.04rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  body.synced-service-page .service-detail-hero.synced-service-hero {
    grid-template-columns: minmax(0, 650px);
  }

  body.synced-service-page .pgwp-intake-panel.synced-service-intake {
    max-width: 650px;
  }
}
