:root {
  --navy: #0f3a3e;
  --blue: #2f6f6d;
  --teal: #0f3a3e;
  --gold: #d4af37;
  --sky: #e8edea;
  --off: #f8fafc;
  --gray: #eef2f7;
  --ink: #243638;
  --muted: #667575;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(15, 58, 62, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #eef6ff 0, #f8fafc 640px, #f6f8fb 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--gold);
  border-radius: var(--radius);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 100;
  padding: 0 20px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 12px 14px;
  border: 1px solid rgba(234, 246, 255, 0.18);
  border-radius: 8px;
  background: rgba(15, 58, 62, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(86px, 7.5vw, 116px);
  height: 34px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  background: transparent;
  mix-blend-mode: normal;
}

.brand-text {
  display: grid;
  gap: 3px;
}

.brand-text strong,
.brand-text small {
  display: block;
  line-height: 1.12;
  letter-spacing: 0;
}

.brand-text strong {
  color: #f3f8ff;
  font-family: Manrope, sans-serif;
  font-size: clamp(1.08rem, 1.55vw, 1.52rem);
  font-weight: 800;
  line-height: 1.04;
}

.brand-text small {
  color: var(--gold);
  font-size: clamp(0.68rem, 0.9vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.05;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  padding: 10px 12px;
  color: rgba(234, 246, 255, 0.84);
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--white);
  background: rgba(60, 129, 122, 0.14);
  transform: translateY(-1px);
}

.nav-menu .nav-cta {
  color: var(--navy);
  background: var(--gold);
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  color: var(--navy);
  background: #B8942F;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
}

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

.section-pad {
  padding: 104px 0;
}

.section-band {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 780px;
  margin-top: -74px;
  padding: 150px 0 108px;
  color: var(--ink);
  background:
    linear-gradient(115deg, #eaf6ff 0 58%, transparent 58% 100%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 88px;
  background: #f4f8fc;
  clip-path: polygon(0 68%, 100% 32%, 100% 100%, 0% 100%);
  content: "";
}

.hero-shape {
  position: absolute;
  opacity: 0.46;
  transform: skewX(-14deg) rotate(-5deg);
}

.hero-shape-one {
  width: 230px;
  height: 78px;
  right: 11%;
  top: 19%;
  border: 1px solid rgba(47, 111, 109, 0.14);
  background: rgba(60, 129, 122, 0.18);
}

.hero-shape-two {
  width: 310px;
  height: 92px;
  left: -92px;
  bottom: 14%;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.14);
}

.hero-grid,
.feature-grid,
.live-grid,
.contact-grid,
.split,
.detail-grid {
  display: grid;
  align-items: center;
  gap: 54px;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--blue);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.75rem, 4.65vw, 4.85rem);
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

h3 {
  font-size: 1.22rem;
}

p {
  margin: 0;
}

.hero-copy p {
  max-width: 620px;
  margin-top: 22px;
  color: #42546b;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 14px 34px rgba(47, 111, 109, 0.2);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(47, 111, 109, 0.16);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-badges span,
.live-points span,
.mini-tags span,
.pill-grid span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 8px 11px;
  font-size: 0.88rem;
  font-weight: 700;
}

.trust-badges span {
  color: #26374c;
  border-color: rgba(47, 111, 109, 0.12);
  background: rgba(255, 255, 255, 0.76);
}

.trust-badges span::before,
.check-list li::before {
  content: "\2713  ";
  color: var(--gold);
}

.hero-media {
  position: relative;
  min-height: 560px;
}

.hero-media img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 35px 100px rgba(15, 58, 62, 0.18);
}

.hero-media::after {
  position: absolute;
  inset: 26px -14px -14px 26px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(47, 111, 109, 0.75), rgba(60, 129, 122, 0.5));
  content: "";
}

.hero-card {
  position: absolute;
  max-width: 290px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 800;
}

.hero-card-main {
  right: -22px;
  bottom: 44px;
  max-width: 350px;
}

.hero-card-mini {
  top: 64px;
  left: -20px;
  width: 170px;
}

.stats {
  position: relative;
  z-index: 2;
  margin-top: -70px;
}

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

.stat-card,
.service-card,
.why-card,
.support-card,
.detail-panel,
.legal-panel,
.intro-panel,
.contact-form,
.testimonial-shell,
.accordion details {
  border: 1px solid rgba(19, 34, 53, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 24px;
  background: linear-gradient(135deg, #ffffff 0%, var(--sky) 100%);
  transition: transform 180ms ease;
}

.stat-card:hover,
.service-card:hover,
.support-card:hover,
.why-card:hover {
  transform: translateY(-5px);
}

.stat-card span {
  display: block;
  color: var(--blue);
  font-family: Manrope, sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  font-weight: 800;
  line-height: 1;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
}

.intro {
  background: #f4f8fc;
}

.section-copy p,
.section-heading p,
.feature-copy p,
.live-copy p,
.contact-info p,
.detail-panel p,
.legal-panel p,
.why-card p,
.service-card p,
.support-card p,
.timeline-step p {
  color: var(--muted);
}

.intro-panel,
.legal-panel,
.detail-panel {
  padding: 34px;
}

.intro-panel p + p {
  margin-top: 18px;
}

.support {
  background:
    linear-gradient(90deg, rgba(60, 129, 122, 0.08), transparent 52%),
    #ffffff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading p {
  margin-top: 16px;
  font-size: 1.04rem;
}

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

.image-band {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.15fr 0.9fr 0.95fr;
  margin-top: 28px;
}

.image-band figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(15, 58, 62, 0.12);
}

.image-band img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 320ms ease;
}

.image-band figure:hover img {
  transform: scale(1.04);
}

.image-band figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(15, 58, 62, 0.76);
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.support-card {
  min-height: 244px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.support-card span,
.service-card .icon,
.timeline-step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--white);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  font-weight: 800;
}

.support-card strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.3;
}

.support-card p {
  margin-top: 12px;
}

.services {
  background:
    linear-gradient(180deg, #eef2f7 0%, #f7fafc 100%);
}

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

.service-card,
.why-card {
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(234, 246, 255, 0.76));
}

.service-media {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #0F3A3E;
}

.service-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 38%, rgba(15, 58, 62, 0.42));
  content: "";
}

.service-media img,
.service-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.service-card:hover .service-media img,
.service-card:hover .service-media video {
  transform: scale(1.035);
}

.service-card .icon,
.service-card h3,
.service-card p,
.service-card a {
  margin-right: 28px;
  margin-left: 28px;
}

.service-card .icon {
  margin-top: -24px;
}

.service-card p,
.why-card p {
  margin-top: 12px;
}

.service-card a {
  display: inline-flex;
  margin-top: 22px;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 800;
}

.coming-soon {
  background: linear-gradient(145deg, #fff9e8, #ffffff);
}

.why {
  background: #ffffff;
}

.why-card strong {
  display: block;
  padding-left: 18px;
  border-left: 4px solid var(--gold);
  font-size: 1.08rem;
}

.process {
  background:
    linear-gradient(135deg, #edf7ff 0%, #f0fdfa 100%);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.timeline::before {
  position: absolute;
  top: 54px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--gold));
  content: "";
}

.timeline-step {
  position: relative;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 15px 45px rgba(15, 58, 62, 0.1);
}

.timeline-step span {
  position: relative;
  z-index: 1;
}

.timeline-step p {
  margin-top: 10px;
  font-size: 0.95rem;
}

.immigration {
  color: var(--ink);
  background:
    linear-gradient(110deg, #ffffff 0 44%, transparent 44% 100%),
    #eaf6ff;
}

.live-scan .eyebrow {
  color: var(--gold);
}

.immigration .eyebrow {
  color: var(--blue);
}

.feature-image img {
  height: 540px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 13px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: #26374c;
  box-shadow: 0 10px 28px rgba(15, 58, 62, 0.06);
}

.live-scan {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(55deg, transparent 0 66%, rgba(212, 175, 55, 0.18) 66% 100%),
    linear-gradient(135deg, #061522, #0F3A3E 60%, #0f3a5f);
}

.live-points,
.mini-tags,
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.live-points {
  margin: 28px 0;
}

.live-points span {
  background: rgba(255, 255, 255, 0.1);
}

.fingerprint {
  position: relative;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(60, 129, 122, 0.22), rgba(255, 255, 255, 0.04));
}

.fingerprint span {
  position: absolute;
  inset: var(--inset, 60px);
  border: 3px solid rgba(234, 246, 255, 0.7);
  border-bottom-color: transparent;
  border-radius: 48% 48% 42% 42%;
}

.fingerprint span:nth-child(1) { --inset: 44px; }
.fingerprint span:nth-child(2) { --inset: 94px; border-color: rgba(60, 129, 122, 0.85); border-bottom-color: transparent; }
.fingerprint span:nth-child(3) { --inset: 144px; }
.fingerprint span:nth-child(4) { --inset: 194px; border-color: rgba(212, 175, 55, 0.8); border-bottom-color: transparent; }

.tax {
  background: #f4fbff;
}

.tax-grid {
  display: grid;
  align-items: center;
  gap: 54px;
  grid-template-columns: 0.88fr 1.12fr;
}

.tax-grid .section-heading {
  margin-bottom: 28px;
}

.tax-photo {
  position: relative;
}

.tax-photo::after {
  position: absolute;
  inset: 24px -14px -14px 24px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), rgba(60, 129, 122, 0.5));
  content: "";
}

.tax-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 25px 74px rgba(15, 58, 62, 0.14);
}

.pill-grid span,
.mini-tags span {
  color: var(--navy);
  border-color: rgba(47, 111, 109, 0.12);
  background: var(--white);
}

.notary-admin {
  background:
    linear-gradient(120deg, rgba(212, 175, 55, 0.16), transparent 40%),
    #f7fafc;
}

.detail-grid {
  align-items: stretch;
}

.detail-panel .btn {
  margin-top: 28px;
}

.detail-panel .mini-tags,
.legal-panel .mini-tags {
  margin-top: 24px;
}

.legal {
  background: var(--off);
}

.testimonials {
  background: #ffffff;
}

.testimonial-shell {
  display: grid;
  align-items: center;
  gap: 18px;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  padding: 28px;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.testimonial {
  display: none;
  align-items: stretch;
  gap: 28px;
  min-height: 230px;
}

.testimonial.active {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.story-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.13), rgba(60, 129, 122, 0.08)),
    rgba(15, 58, 62, 0.34);
}

.story-meta span,
.testimonial span {
  color: #d08a00;
  letter-spacing: 0;
}

.story-meta span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.story-meta strong {
  color: rgba(234, 246, 255, 0.92);
  font-family: Manrope, sans-serif;
  font-size: 1.26rem;
  line-height: 1.25;
}

.testimonial p {
  max-width: 780px;
  margin: 10px 0 16px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
  line-height: 1.62;
}

.faq {
  background: #eef2f7;
}

.accordion {
  display: grid;
  gap: 14px;
}

.accordion details {
  padding: 0;
  overflow: hidden;
}

.accordion summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 800;
}

.accordion summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.accordion p {
  padding: 0 24px 24px;
  color: var(--muted);
}

.contact {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(60, 129, 122, 0.2) 0 22%, transparent 22% 100%),
    linear-gradient(135deg, #0F3A3E, #103862 54%, #2F6F6D);
}

.contact .eyebrow {
  color: var(--gold);
}

.contact-info p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-info > p {
  margin-top: 16px;
  font-size: 1.08rem;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-list p {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-list strong {
  display: block;
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.form-row {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

select option {
  color: var(--navy);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.form-status {
  min-height: 24px;
  color: var(--gold);
  font-weight: 700;
}

.footer {
  padding: 62px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  background: #05111d;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.6fr 0.7fr 0.9fr 1.1fr;
}

.footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: Manrope, sans-serif;
}

.footer a {
  display: block;
  margin: 8px 0;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 18px;
}

.footer-logo {
  width: min(100%, 190px);
  height: 70px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.video-story,
.case-builder {
  position: relative;
  overflow: hidden;
}

.video-story {
  background:
    linear-gradient(125deg, rgba(212, 175, 55, 0.1) 0 28%, transparent 28% 100%),
    #102235;
}

.video-grid,
.builder-grid {
  display: grid;
  align-items: center;
  gap: 54px;
  grid-template-columns: 1.08fr 0.92fr;
}

.video-frame {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(234, 246, 255, 0.16);
  border-radius: 8px;
  background: #081725;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.video-frame video {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.video-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(15, 58, 62, 0.82)),
    linear-gradient(90deg, rgba(15, 58, 62, 0.34), transparent 48%);
  content: "";
}

.video-control {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  min-width: 78px;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  background: rgba(15, 58, 62, 0.68);
  cursor: pointer;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.video-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(15, 58, 62, 0.68);
  backdrop-filter: blur(16px);
}

.video-caption span,
.journey-item span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.video-caption strong {
  font-family: Manrope, sans-serif;
  font-size: 1.35rem;
}

.journey-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.journey-item {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(234, 246, 255, 0.12);
  border-radius: 8px;
  color: rgba(234, 246, 255, 0.8);
  background: rgba(234, 246, 255, 0.06);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.journey-item:hover,
.journey-item.active {
  transform: translateX(6px);
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.1);
}

.journey-item strong {
  color: var(--white);
  font-family: Manrope, sans-serif;
}

.journey-item small {
  color: rgba(234, 246, 255, 0.7);
  font-size: 0.92rem;
}

.case-builder {
  background:
    linear-gradient(65deg, transparent 0 58%, rgba(60, 129, 122, 0.12) 58% 100%),
    #0b1828;
}

.service-hero {
  padding-top: 150px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(60, 129, 122, 0.14) 0 32%, transparent 32% 100%),
    linear-gradient(135deg, #0F3A3E 0%, #10243a 62%, #0a1726 100%);
}

.service-hero-grid,
.service-detail-grid {
  display: grid;
  align-items: center;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.service-hero p {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(234, 246, 255, 0.78);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
}

.service-detail {
  background:
    linear-gradient(120deg, rgba(212, 175, 55, 0.08), transparent 38%),
    #0d1c2d;
}

.service-detail .detail-panel p + p {
  margin-top: 16px;
}

.builder-panel {
  padding: 18px;
  border: 1px solid rgba(234, 246, 255, 0.14);
  border-radius: 8px;
  background: rgba(244, 239, 227, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.path-tabs {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 16px;
}

.path-tabs button {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(234, 246, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-weight: 800;
}

.path-tabs button.active {
  color: var(--navy);
  background: var(--gold);
}

.builder-output {
  padding: 26px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(234, 246, 255, 0.1), rgba(60, 129, 122, 0.06)),
    rgba(15, 58, 62, 0.48);
}

.builder-output p {
  margin-top: 12px;
  color: rgba(234, 246, 255, 0.72);
}

.builder-output ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.builder-output li {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(234, 246, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
}

.builder-output li::before {
  color: var(--gold);
  content: "\2713  ";
}

body {
  color: #edf6ff;
  background: linear-gradient(180deg, #0F3A3E 0, #10243a 42%, #0a1726 100%);
}

.nav {
  background: transparent;
  box-shadow: none;
}

.nav-menu a {
  color: rgba(234, 246, 255, 0.84);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--white);
  background: transparent;
}

.hero {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(60, 129, 122, 0.18) 0 34%, transparent 34% 100%),
    linear-gradient(38deg, transparent 0 64%, rgba(212, 175, 55, 0.12) 64% 100%),
    linear-gradient(135deg, rgba(15, 58, 62, 0.9), rgba(13, 48, 83, 0.92)),
    url("https://images.unsplash.com/photo-1573497491208-6b1acb260507?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.hero::after {
  background: #102235;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero-copy p {
  color: rgba(234, 246, 255, 0.8);
}

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #B8942F);
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.18);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.trust-badges span {
  color: rgba(234, 246, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(15, 58, 62, 0.42);
}

.hero-media img,
.tax-photo img {
  border-color: rgba(244, 239, 227, 0.9);
}

.hero-card {
  background: rgba(244, 239, 227, 0.94);
}

.stat-card,
.service-card,
.why-card,
.support-card,
.detail-panel,
.legal-panel,
.intro-panel,
.contact-form,
.testimonial-shell,
.accordion details {
  border-color: rgba(234, 246, 255, 0.12);
  background: rgba(16, 34, 53, 0.76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.stat-card {
  background: linear-gradient(135deg, rgba(244, 239, 227, 0.14), rgba(60, 129, 122, 0.12));
}

.stat-card span {
  color: var(--gold);
}

.intro {
  background: #102235;
}

.section-copy p,
.section-heading p,
.feature-copy p,
.live-copy p,
.contact-info p,
.detail-panel p,
.legal-panel p,
.why-card p,
.service-card p,
.support-card p,
.timeline-step p {
  color: rgba(234, 246, 255, 0.72);
}

.support {
  background:
    linear-gradient(90deg, rgba(60, 129, 122, 0.11), transparent 52%),
    #0d1c2d;
}

.services {
  background: linear-gradient(180deg, #132a40 0%, #0c1a2a 100%);
}

.service-card {
  background: linear-gradient(145deg, rgba(234, 246, 255, 0.1), rgba(60, 129, 122, 0.07));
}

.service-card .icon {
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.service-card a {
  color: #6ea8ff;
}

.coming-soon {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.16), rgba(234, 246, 255, 0.08));
}

.why {
  background:
    linear-gradient(115deg, rgba(212, 175, 55, 0.08) 0 26%, transparent 26% 100%),
    #0f2033;
}

.process {
  background: linear-gradient(135deg, #0c1a2a 0%, #123552 100%);
}

.timeline-step {
  background: rgba(244, 239, 227, 0.09);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
}

.immigration {
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(244, 239, 227, 0.1) 0 44%, transparent 44% 100%),
    #102235;
}

.immigration .eyebrow {
  color: var(--gold);
}

.check-list li {
  color: rgba(234, 246, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.tax,
.legal,
.faq {
  background: #0d1c2d;
}

.pill-grid span,
.mini-tags span {
  color: rgba(234, 246, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.notary-admin {
  background:
    linear-gradient(120deg, rgba(212, 175, 55, 0.11), transparent 40%),
    #132a40;
}

.testimonials {
  background: #102235;
}

.testimonials .section-heading {
  max-width: 680px;
}

.testimonial p {
  color: rgba(234, 246, 255, 0.9);
}

.footer-logo {
  background: transparent;
  box-shadow: none;
  mix-blend-mode: normal;
}

.accordion p {
  color: rgba(234, 246, 255, 0.72);
}

@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .live-grid,
  .contact-grid,
  .split,
  .detail-grid,
  .video-grid,
  .builder-grid,
  .service-hero-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .hero-media img,
  .feature-image img,
  .video-frame,
  .video-frame video {
    min-height: 0;
    height: 430px;
  }

  .stats-grid,
  .support-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .timeline::before {
    display: none;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    top: 8px;
    padding: 0 10px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    padding: 8px 10px;
  }

  .brand {
    gap: 8px;
    max-width: calc(100% - 54px);
  }

  .brand-logo {
    width: 78px;
    height: 30px;
  }

  .brand-text strong {
    font-size: clamp(0.86rem, 3.6vw, 1.06rem);
    line-height: 1.05;
  }

  .brand-text small {
    font-size: clamp(0.54rem, 2.35vw, 0.64rem);
    letter-spacing: 0.11em;
  }

  .nav-menu {
    position: fixed;
    top: 78px;
    right: 10px;
    left: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding: 16px;
    border-radius: 8px;
    background: rgba(15, 58, 62, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 14px;
  }

  .section-pad {
    padding: 72px 0;
  }

  .hero {
    padding: 132px 0 78px;
  }

  .service-hero {
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(2.08rem, 9.8vw, 3.15rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.55rem, 7.2vw, 2.15rem);
    line-height: 1.12;
  }

  .hero-copy p,
  .section-heading p {
    font-size: 0.98rem;
  }

  .hero-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .stats {
    margin-top: 0;
    padding-top: 20px;
  }

  .stats-grid,
  .support-grid,
  .service-grid,
  .why-grid,
  .timeline,
  .image-band,
  .tax-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tax-photo img {
    height: 360px;
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .slider-btn {
    width: 100%;
    height: 44px;
  }

  .testimonial.active {
    display: grid;
    grid-template-columns: 1fr;
  }

  .testimonial {
    gap: 16px;
    min-height: 0;
  }

  .story-meta {
    min-height: 0;
    padding: 18px;
  }

  .story-meta strong {
    font-size: 1.08rem;
  }

  .testimonial p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .video-frame,
  .video-frame video {
    height: 380px;
  }

  .path-tabs {
    grid-template-columns: 1fr;
  }

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

/* Final responsive polish for the current multi-page frontend. */
.site-header {
  top: 10px;
}

.nav {
  width: min(1180px, calc(100% - 24px));
  padding: 10px 12px;
  background: rgba(15, 58, 62, 0.88);
  border-color: rgba(234, 246, 255, 0.16);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

.brand {
  flex: 0 1 auto;
}

.brand-logo {
  width: clamp(78px, 7vw, 104px);
  height: 32px;
}

.brand-text strong {
  font-size: clamp(1rem, 1.28vw, 1.28rem);
  line-height: 1.04;
}

.brand-text small {
  font-size: clamp(0.62rem, 0.76vw, 0.76rem);
  letter-spacing: 0.13em;
}

.nav-menu {
  flex: 0 0 auto;
}

.nav-menu a {
  padding: 9px 10px;
  font-size: 0.9rem;
}

.nav-menu .nav-cta {
  padding-inline: 14px;
}

.hero {
  min-height: 700px;
  padding-top: 132px;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.45rem, 4.15vw, 4.15rem);
}

h2 {
  font-size: clamp(1.78rem, 2.75vw, 2.75rem);
}

.hero-copy p {
  max-width: 560px;
  font-size: clamp(0.98rem, 1.04vw, 1.08rem);
}

.hero-media,
.hero-media img {
  min-height: 0;
  height: 500px;
}

@media (max-width: 1100px) {
  .nav {
    gap: 14px;
  }

  .brand-logo {
    width: 76px;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  .brand-text small {
    font-size: 0.58rem;
    letter-spacing: 0.11em;
  }

  .nav-menu a {
    padding-inline: 8px;
    font-size: 0.84rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 0;
    padding: 0;
  }

  .nav {
    width: 100%;
    padding: 8px 10px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .brand {
    gap: 7px;
    max-width: calc(100% - 52px);
  }

  .brand-logo {
    width: 62px;
    height: 26px;
    flex: 0 0 auto;
  }

  .brand-text {
    min-width: 0;
    gap: 2px;
  }

  .brand-text strong {
    max-width: 180px;
    font-size: clamp(0.8rem, 3.5vw, 0.98rem);
    line-height: 1.05;
  }

  .brand-text small {
    max-width: 180px;
    font-size: clamp(0.48rem, 2.2vw, 0.58rem);
    letter-spacing: 0.08em;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .nav-menu {
    top: 58px;
    right: 10px;
    left: 10px;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 64px;
  }

  .hero-grid {
    gap: 34px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.48rem, 6.8vw, 2rem);
    line-height: 1.12;
  }

  .hero-copy p {
    margin-top: 16px;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-badges {
    gap: 8px;
    margin-top: 20px;
  }

  .trust-badges span {
    width: 100%;
    font-size: 0.84rem;
  }

  .hero-media,
  .hero-media img {
    height: 320px;
  }

  .hero-media::after {
    inset: 14px -8px -8px 14px;
  }

  .stats-grid {
    gap: 12px;
  }

  .stat-card,
  .service-card,
  .why-card,
  .detail-panel,
  .legal-panel,
  .intro-panel,
  .contact-form,
  .testimonial-shell,
  .accordion details {
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
  }

  .service-media {
    height: 170px;
  }

  .video-frame,
  .video-frame video {
    height: 320px;
  }

  .contact-list p,
  .accordion summary,
  .accordion p {
    word-break: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    width: 54px;
  }

  .brand-text strong {
    max-width: 150px;
    font-size: 0.76rem;
  }

  .brand-text small {
    max-width: 150px;
    font-size: 0.44rem;
    letter-spacing: 0.07em;
  }
}

/* Service-card frontend refinement after moving visuals into each card. */
.services .section-heading {
  max-width: 820px;
}

.service-grid {
  align-items: stretch;
  gap: 22px;
}

.service-card {
  min-height: 475px;
}

.service-card h3 {
  margin-top: 18px;
  font-size: 1.18rem;
  line-height: 1.18;
}

.service-card p {
  flex: 1 1 auto;
  font-size: 0.96rem;
  line-height: 1.62;
}

.service-card a {
  align-self: flex-start;
  margin-top: 18px;
}

.service-media {
  height: 132px;
}

.service-card .icon {
  width: 44px;
  height: 44px;
  margin-top: -22px;
  margin-bottom: 14px;
}

.coming-soon {
  grid-column: span 1;
}

@media (min-width: 981px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .service-card {
    min-height: 455px;
  }

  .service-media {
    height: 128px;
  }
}

@media (max-width: 760px) {
  .services .section-heading {
    margin-bottom: 28px;
  }

  .service-grid {
    gap: 16px;
  }

  .service-card {
    min-height: 0;
  }

  .service-media {
    height: 124px;
  }

  .service-card .icon,
  .service-card h3,
  .service-card p,
  .service-card a {
    margin-right: 20px;
    margin-left: 20px;
  }

  .service-card .icon {
    margin-top: -20px;
    margin-bottom: 12px;
  }

  .service-card h3 {
    margin-top: 14px;
    font-size: 1.08rem;
  }

  .service-card p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .service-card a {
    margin-top: 14px;
    margin-bottom: 22px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-pad {
    padding: 64px 0;
  }

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

  .stat-card {
    padding: 18px;
  }

  .stat-card span {
    font-size: 1.45rem;
  }

  .stat-card strong {
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .video-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 14px;
  }

  .video-caption strong {
    font-size: 1.04rem;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .brand-text strong {
    max-width: 168px;
  }

  .brand-text small {
    max-width: 168px;
  }

  .hero-media,
  .hero-media img {
    height: 280px;
  }

  .service-media {
    height: 118px;
  }
}

.service-media-pair {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.service-page-media {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(234, 246, 255, 0.14);
  border-radius: 8px;
  background: #0F3A3E;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.service-page-media img,
.service-page-media video {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.service-page-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(15, 58, 62, 0.82));
  content: "";
}

.service-page-media span {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  color: var(--white);
  font-family: Manrope, sans-serif;
  font-weight: 800;
}

@media (max-width: 760px) {
  .service-media-pair {
    grid-template-columns: 1fr;
  }

  .service-page-media,
  .service-page-media img,
  .service-page-media video {
    min-height: 260px;
  }
}

/* Web view correction: full desktop composition without changing mobile behavior. */
@media (min-width: 1180px) {
  .container {
    width: min(1320px, calc(100% - 96px));
  }

  .nav {
    width: min(1320px, calc(100% - 96px));
    padding: 12px 16px;
  }

  .brand-logo {
    width: 92px;
    height: 36px;
  }

  .brand-text strong {
    font-size: 1.18rem;
  }

  .brand-text small {
    font-size: 0.7rem;
  }

  .nav-menu a {
    padding: 10px 12px;
    font-size: 0.94rem;
  }

  .hero {
    min-height: 790px;
    padding-top: 146px;
    padding-bottom: 96px;
  }

  .hero-grid {
    gap: 64px;
    grid-template-columns: minmax(0, 0.96fr) minmax(500px, 0.92fr);
  }

  h1 {
    max-width: 760px;
    font-size: clamp(3.85rem, 4.45vw, 5.25rem);
  }

  .hero-copy p {
    max-width: 650px;
    font-size: 1.16rem;
  }

  .hero-media,
  .hero-media img {
    height: 560px;
  }

  .stats {
    margin-top: -46px;
  }

  .video-story {
    padding-top: 92px;
  }

  .video-grid {
    gap: 64px;
    grid-template-columns: minmax(540px, 0.95fr) minmax(0, 0.82fr);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Mobile-first finish: keep the desktop composition, but make phones feel intentional. */
@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    background: linear-gradient(180deg, #0F3A3E 0, #0b1d30 46%, #071725 100%);
  }

  .container {
    width: min(100% - 30px, 1160px);
  }

  .site-header {
    position: sticky;
    top: 0;
    padding: 0;
  }

  .nav {
    width: 100%;
    min-height: 62px;
    padding: 8px 12px;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    background: rgba(15, 58, 62, 0.96);
  }

  .brand {
    gap: 9px;
    max-width: calc(100% - 52px);
  }

  .brand-logo {
    width: 68px;
    height: 28px;
  }

  .brand-text strong {
    max-width: 210px;
    font-size: clamp(0.92rem, 4vw, 1.04rem);
    white-space: normal;
  }

  .brand-text small {
    max-width: 210px;
    font-size: clamp(0.54rem, 2.35vw, 0.62rem);
    letter-spacing: 0.1em;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    background: rgba(234, 246, 255, 0.1);
  }

  .nav-menu {
    top: 68px;
    right: 12px;
    left: 12px;
    gap: 4px;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid rgba(234, 246, 255, 0.16);
    background: rgba(15, 58, 62, 0.98);
  }

  .nav-menu a {
    padding: 12px 14px;
  }

  .nav-menu .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    margin-top: -62px;
    padding: 116px 0 52px;
    background:
      linear-gradient(145deg, rgba(60, 129, 122, 0.18) 0 42%, transparent 42% 100%),
      linear-gradient(180deg, rgba(15, 58, 62, 0.94), rgba(12, 32, 50, 0.96)),
      url("https://images.unsplash.com/photo-1573497491208-6b1acb260507?auto=format&fit=crop&w=1000&q=82") center / cover;
  }

  .hero::after,
  .hero-shape {
    display: none;
  }

  .hero-grid {
    gap: 26px;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
  }

  .hero-grid > *,
  .video-grid > *,
  .split > *,
  .contact-grid > *,
  .service-detail-grid > *,
  .service-hero-grid > * {
    min-width: 0;
    max-width: 100%;
  }

  .hero .eyebrow {
    max-width: 280px;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 0.72rem;
    line-height: 1.3;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10vw, 2.9rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.62rem, 7vw, 2.08rem);
    overflow-wrap: anywhere;
  }

  .hero-copy p {
    max-width: 34rem;
    margin-top: 16px;
    color: rgba(234, 246, 255, 0.82);
    font-size: 0.98rem;
    line-height: 1.62;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 22px;
  }

  .trust-badges span {
    min-width: 0;
    width: auto;
    padding: 9px 10px;
    font-size: 0.78rem;
    line-height: 1.28;
    overflow-wrap: anywhere;
  }

  .hero-media {
    min-height: 0;
    max-width: 100%;
    padding-bottom: 0;
  }

  .hero-media,
  .hero-media img {
    height: auto;
  }

  .hero-media img {
    aspect-ratio: 16 / 10;
    border-width: 4px;
    object-position: center;
  }

  .hero-media::after {
    display: none;
  }

  .hero-card-main {
    position: static;
    max-width: none;
    margin-top: 10px;
    padding: 14px;
  }

  .hero-card-main strong {
    font-size: 1rem;
  }

  .hero-card-main span {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .hero-card-mini {
    display: none;
  }

  .stats {
    margin-top: 0;
    padding: 18px 0 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .stat-card {
    min-width: 0;
    padding: 16px;
  }

  .stat-card span {
    font-size: clamp(1.4rem, 7vw, 1.9rem);
  }

  .stat-card strong {
    font-size: 0.86rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .section-pad {
    padding: 56px 0;
  }

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

  .section-heading p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .video-copy {
    order: -1;
  }

  .video-frame,
  .video-frame video {
    height: auto;
    min-height: 0;
  }

  .video-frame video {
    aspect-ratio: 16 / 10;
  }

  .video-caption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 12px;
  }

  .video-caption strong {
    font-size: 0.98rem;
  }

  .service-grid {
    gap: 12px;
  }

  .service-card {
    position: relative;
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    grid-template-rows: auto auto 1fr auto;
    gap: 0 14px;
    min-height: 0;
    padding: 12px;
  }

  .service-media {
    grid-row: 1 / span 4;
    width: 104px;
    height: 128px;
    border-radius: 8px;
  }

  .service-card .icon,
  .service-card h3,
  .service-card p,
  .service-card a {
    margin-right: 0;
    margin-left: 0;
  }

  .service-card .icon {
    position: absolute;
    top: 84px;
    left: 20px;
    width: 34px;
    height: 34px;
    margin: 0;
    font-size: 0.78rem;
  }

  .service-card h3 {
    margin-top: 2px;
    font-size: 1rem;
    line-height: 1.18;
  }

  .service-card p {
    margin-top: 7px;
    font-size: 0.82rem;
    line-height: 1.48;
  }

  .service-card a {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 0.86rem;
  }

  .intro-panel,
  .legal-panel,
  .detail-panel,
  .contact-form,
  .testimonial-shell {
    padding: 20px;
  }

  .contact-form {
    gap: 13px;
  }

  .footer {
    padding-top: 44px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .brand-logo {
    width: 60px;
  }

  .brand-text strong {
    max-width: 172px;
    font-size: 0.86rem;
  }

  .brand-text small {
    max-width: 172px;
    font-size: 0.5rem;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 0 12px;
  }

  .service-media {
    width: 92px;
    height: 124px;
  }

  .service-card .icon {
    top: 82px;
    left: 18px;
  }
}

/* Client feedback revision: warm teal, classic gold, standalone logo, and higher contrast. */
html {
  color-scheme: light;
}

body {
  color: #243638;
  background: #faf9f6;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #d4af37;
  outline-offset: 3px;
}

.site-header {
  top: 10px;
}

.nav {
  background: rgba(15, 58, 62, 0.94);
  border-color: rgba(232, 237, 234, 0.18);
}

.brand {
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(116px, 9.4vw, 154px);
  height: 50px;
}

.brand-text {
  display: none;
}

.nav-menu a {
  color: #e8edea;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: #ffffff;
  background: rgba(212, 175, 55, 0.16);
}

.nav-menu .nav-cta,
.btn-primary {
  color: #172526;
  background: #d4af37;
  box-shadow: 0 14px 34px rgba(70, 55, 12, 0.18);
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  color: #172526;
  background: #b8942f;
}

.btn {
  min-height: 46px;
}

.btn-secondary {
  color: #e8edea;
  border-color: rgba(232, 237, 234, 0.34);
  background: rgba(232, 237, 234, 0.08);
}

.hero {
  color: #e8edea;
  background:
    linear-gradient(115deg, rgba(15, 58, 62, 0.86), rgba(15, 58, 62, 0.48)),
    url("https://images.unsplash.com/photo-1573497491208-6b1acb260507?auto=format&fit=crop&w=1800&q=88") center / cover;
}

.hero::after {
  background: #faf9f6;
}

.hero-logo {
  width: clamp(132px, 14vw, 190px);
  height: auto;
  margin-bottom: 22px;
}

.hero .eyebrow,
.eyebrow {
  color: #d4af37;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.5rem, 4.8vw, 5rem);
}

.hero h2 {
  max-width: 760px;
  margin-top: 14px;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.6vw, 3rem);
  line-height: 1.12;
}

.hero-copy p {
  color: #e8edea;
}

.trust-badges span {
  color: #e8edea;
  border-color: rgba(232, 237, 234, 0.28);
  background: rgba(15, 58, 62, 0.55);
}

.trust-badges span::before,
.check-list li::before {
  color: #d4af37;
}

.hero-media img,
.feature-image img,
.tax-photo img {
  border-color: rgba(250, 249, 246, 0.9);
  filter: brightness(1.06) saturate(1.04);
}

.hero-card {
  color: #243638;
  background: rgba(250, 249, 246, 0.94);
}

.hero-card span {
  color: #667575;
}

.hero-card small,
.hero-card a,
.service-card a {
  color: #0f3a3e;
}

.stats,
.intro,
.process,
.testimonials,
.faq {
  color: #243638;
  background: #faf9f6;
}

.stats {
  padding-bottom: 42px;
}

.stats-grid {
  align-items: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  min-width: 0;
  overflow: visible;
  color: #243638;
  border-color: #d9dfdc;
  background: #ffffff;
}

.stat-card span {
  color: #0f3a3e;
  overflow-wrap: anywhere;
}

.stat-card strong {
  overflow-wrap: anywhere;
}

.services {
  color: #243638;
  background: #f2f0ea;
}

.video-story,
.immigration,
.legal,
.contact {
  color: #e8edea;
  background: #0f3a3e;
}

.why,
.notary-admin,
.tax,
.service-detail {
  color: #243638;
  background: #faf9f6;
}

.live-scan {
  color: #243638;
  background:
    linear-gradient(120deg, rgba(212, 175, 55, 0.14), transparent 44%),
    #f4efe4;
}

.footer {
  color: #dce4df;
  background: #09272a;
}

.section-copy p,
.section-heading p,
.feature-copy p,
.live-copy p,
.contact-info p,
.detail-panel p,
.legal-panel p,
.why-card p,
.service-card p,
.support-card p,
.timeline-step p,
.accordion p,
.footer p {
  color: #667575;
}

.video-story .section-heading p,
.video-copy p,
.contact-info p,
.contact-list p,
.footer p,
.legal .section-heading p,
.immigration .section-heading p {
  color: #e8edea;
}

.stat-card,
.service-card,
.why-card,
.support-card,
.detail-panel,
.legal-panel,
.intro-panel,
.contact-form,
.testimonial-shell,
.accordion details,
.timeline-step {
  border-color: #d9dfdc;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(36, 54, 56, 0.12);
}

.service-card {
  background: #ffffff;
}

.service-card .icon,
.support-card span,
.timeline-step span {
  color: #172526;
  background: #d4af37;
}

.service-media::after {
  background: linear-gradient(180deg, transparent 45%, rgba(15, 58, 62, 0.48));
}

.video-frame::after,
.service-page-media::after {
  background: linear-gradient(180deg, transparent 48%, rgba(15, 58, 62, 0.52));
}

.video-caption {
  color: #ffffff;
  background: rgba(15, 58, 62, 0.68);
}

.testimonial-shell {
  color: #243638;
  background: #ffffff;
}

.story-meta {
  border-color: rgba(212, 175, 55, 0.32);
  background: #faf9f6;
}

.story-meta span {
  color: #8b711f;
}

.story-meta strong,
.testimonial strong {
  color: #243638;
}

.testimonial p {
  position: relative;
  color: #243638;
}

.testimonial p::before {
  color: #d4af37;
  content: "\201C";
  font-family: Manrope, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 0;
}

.slider-btn {
  color: #172526;
  background: #d4af37;
}

.accordion details {
  color: #243638;
}

.accordion summary {
  position: relative;
  min-height: 56px;
  padding-right: 62px;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #172526;
  background: #d4af37;
  content: "+";
  font-weight: 800;
  transform: translateY(-50%);
}

.accordion details[open] {
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 20px 54px rgba(36, 54, 56, 0.15);
}

.accordion details[open] summary {
  color: #0f3a3e;
}

.accordion details[open] summary::after {
  content: "-";
}

.accordion p {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  transition: max-height 240ms ease, padding 240ms ease;
}

.accordion details[open] p {
  max-height: 280px;
  padding-bottom: 24px;
}

.contact-list p,
.contact-form {
  border-color: rgba(232, 237, 234, 0.24);
  background: rgba(250, 249, 246, 0.12);
}

label {
  color: #e8edea;
}

input,
select,
textarea {
  color: #ffffff;
  border-color: rgba(232, 237, 234, 0.36);
  background: rgba(15, 58, 62, 0.42);
}

input::placeholder,
textarea::placeholder {
  color: #dce4df;
}

.fee-panel {
  display: none;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.7);
  border-radius: 8px;
  color: #243638;
  background: #faf9f6;
}

.fee-panel.is-active,
.fee-panel.always-visible {
  display: flex;
}

.fee-panel h2,
.fee-panel h3 {
  margin: 0;
  color: #243638;
  font-size: 1.1rem;
}

.fee-panel p {
  margin-top: 7px;
  color: #243638;
}

.fee-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #172526;
  background: #d4af37;
  font-weight: 800;
}

.fee-ack {
  display: flex;
  gap: 10px;
  align-items: start;
  margin-top: 12px;
  color: #243638;
  font-size: 0.95rem;
}

.fee-ack input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: #0f3a3e;
}

.footer-logo {
  width: min(100%, 190px);
  height: 76px;
}

@media (max-width: 980px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card-main {
    right: 12px;
  }
}

@media (max-width: 1180px) {
  .hero-card-main {
    right: 12px;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 0;
  }

  .nav {
    min-height: 64px;
    background: rgba(15, 58, 62, 0.98);
  }

  .brand-logo {
    width: 112px;
    height: 42px;
  }

  .menu-toggle {
    background: rgba(232, 237, 234, 0.12);
  }

  .hero {
    margin-top: -64px;
    padding-top: 118px;
  }

  .hero-logo {
    width: 96px;
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8.2vw, 2.45rem);
    line-height: 1.07;
  }

  .hero h2 {
    font-size: clamp(1.16rem, 5.45vw, 1.58rem);
    line-height: 1.18;
  }

  .hero-copy p {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

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

  .stat-card {
    min-height: 116px;
  }

  .accordion summary {
    min-height: 58px;
    padding: 18px 58px 18px 18px;
  }

  .accordion p {
    padding-right: 18px;
    padding-left: 18px;
  }

  .accordion details[open] p {
    padding-bottom: 20px;
  }

  .fee-panel {
    padding: 15px;
  }
}

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