:root {
  --canvas: #f7f4ec;
  --canvas-deep: #efebe1;
  --indigo: #101a3c;
  --indigo-soft: #27304a;
  --teal: #0da99e;
  --teal-bright: #20d6c7;
  --aqua: #dff8f4;
  --white: #ffffff;
  --text: #101a3c;
  --muted: #5f6679;
  --border: #d8dee9;
  --border-warm: #ded9ce;
  --shadow-sm: 0 12px 32px rgba(16, 26, 60, 0.08);
  --shadow-lg: 0 28px 74px rgba(16, 26, 60, 0.13);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 28px;
  --container: 1312px;
  --font-en: "Manrope", Arial, sans-serif;
  --font-bn: "Noto Sans Bengali", "Manrope", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--text);
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html[lang="bn"] body {
  font-family: var(--font-bn);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
select {
  cursor: pointer;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  text-wrap: balance;
}

::selection {
  background: var(--teal-bright);
  color: var(--indigo);
}

:focus-visible {
  outline: 3px solid rgba(32, 214, 199, 0.62);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 128px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 16px;
  left: 16px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--indigo);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(16, 26, 60, 0.1);
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.brand-main {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.065em;
}

.brand-sub {
  margin-top: 8px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.43em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 36px 0 34px;
  font-size: 15px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 26px;
}

.language-switch {
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.lang-button {
  padding: 4px;
  border: 0;
  background: transparent;
  color: var(--muted);
}

.lang-button:hover,
.lang-button.is-active {
  color: var(--teal);
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  transition:
    transform 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.text-link svg {
  width: 21px;
  height: 21px;
  transition: transform 200ms ease;
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(5px);
}

.button-small {
  min-height: 48px;
  padding: 12px 21px;
  background: var(--indigo);
  color: var(--white);
  font-size: 14px;
  box-shadow: 0 8px 22px rgba(16, 26, 60, 0.12);
}

.button-small:hover,
.button-primary:hover {
  background: #172552;
  box-shadow: 0 14px 30px rgba(16, 26, 60, 0.2);
}

.button-primary {
  background: var(--indigo);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(16, 26, 60, 0.15);
}

.button-secondary {
  border-color: rgba(16, 26, 60, 0.35);
  background: rgba(255, 255, 255, 0.45);
}

.button-secondary:hover {
  border-color: var(--teal);
  background: var(--white);
}

.button-teal {
  background: var(--teal-bright);
  color: var(--indigo);
}

.button-teal:hover {
  background: #5ce7dc;
  box-shadow: 0 14px 30px rgba(32, 214, 199, 0.18);
}

.button-full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--indigo);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 45;
  height: calc(100vh - 80px);
  overflow-y: auto;
  background: var(--canvas);
}

.mobile-menu nav {
  display: grid;
  padding-top: 28px;
}

.mobile-menu a {
  padding: 18px 0;
  border-bottom: 1px solid var(--border-warm);
  font-size: 20px;
  font-weight: 700;
}

.hero {
  overflow: hidden;
  padding-top: 92px;
  padding-bottom: 50px;
}

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

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(58px, 5.35vw, 82px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.hero-description {
  max-width: 580px;
  margin-bottom: 34px;
  color: #41485c;
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions .button {
  min-width: 220px;
}

.hero-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.pulse::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--teal);
  border-radius: inherit;
  content: "";
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.6);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

.compliance-visual {
  position: relative;
  min-height: 550px;
}

.compliance-visual::before {
  position: absolute;
  top: 1%;
  right: 2%;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(32, 214, 199, 0.36), transparent 45%),
    linear-gradient(145deg, rgba(223, 248, 244, 0.95), rgba(223, 248, 244, 0.16));
  content: "";
  filter: blur(0.2px);
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(13, 169, 158, 0.25);
  border-radius: 50%;
}

.orbit-one {
  top: 20px;
  right: -20px;
  width: 475px;
  height: 475px;
}

.orbit-two {
  top: 96px;
  right: 58px;
  width: 330px;
  height: 330px;
}

.dashboard-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(16, 26, 60, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.overview-card {
  top: 88px;
  left: 0;
  width: 350px;
  padding: 22px;
}

.dashboard-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--border);
}

.dashboard-heading > div {
  display: grid;
  gap: 2px;
}

.dashboard-heading strong {
  font-size: 16px;
}

.dashboard-kicker {
  color: var(--muted);
  font-size: 11px;
}

.secure-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--aqua);
  color: #087b73;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.secure-chip span:first-child {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.status-list {
  display: grid;
  gap: 3px;
  padding-top: 10px;
}

.status-row {
  display: grid;
  min-height: 66px;
  align-items: center;
  gap: 10px;
  grid-template-columns: 36px 1fr auto;
}

.status-icon,
.service-icon,
.calendar-icon,
.contact-method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--aqua);
  color: var(--indigo);
}

.status-icon {
  width: 36px;
  height: 36px;
}

.status-icon svg {
  width: 19px;
  height: 19px;
}

.status-copy {
  display: grid;
  line-height: 1.3;
}

.status-copy strong {
  font-size: 12px;
}

.status-copy small {
  color: var(--muted);
  font-size: 9px;
}

.status-pill {
  padding: 5px 7px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: 8px;
  font-weight: 800;
}

.status-pill-soft {
  background: var(--aqua);
  color: #087b73;
}

.document-card {
  top: 32px;
  right: 0;
  width: 210px;
  min-height: 290px;
  padding: 26px 22px 20px;
}

.document-fold {
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
  background: var(--canvas);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.document-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.document-icon {
  color: var(--teal);
}

.document-icon svg {
  width: 25px;
  height: 25px;
}

.document-top span:last-child {
  display: grid;
  line-height: 1.25;
}

.document-top small {
  color: var(--muted);
  font-size: 9px;
}

.document-top strong {
  font-size: 12px;
}

.doc-line {
  width: 62%;
  height: 6px;
  margin-bottom: 10px;
  border-radius: 99px;
  background: #e8ebf0;
}

.line-wide {
  width: 88%;
}

.doc-table {
  display: grid;
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid var(--border);
  border-radius: 6px;
  grid-template-columns: repeat(3, 1fr);
}

.doc-table span {
  height: 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.doc-table span:nth-child(-n + 3) {
  background: var(--teal);
}

.document-check {
  position: absolute;
  right: -16px;
  bottom: -16px;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--canvas);
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
}

.document-check svg {
  width: 23px;
  height: 23px;
  stroke-width: 2.3;
}

.deadline-card {
  right: 6px;
  bottom: 54px;
  display: grid;
  width: 215px;
  gap: 3px;
  padding: 20px;
}

.calendar-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 11px;
}

.calendar-icon svg {
  width: 18px;
  height: 18px;
}

.deadline-card small {
  color: var(--muted);
  font-size: 10px;
}

.deadline-card strong {
  font-size: 16px;
}

.deadline-label {
  width: max-content;
  margin-top: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--aqua);
  color: #087b73;
  font-size: 9px;
  font-weight: 800;
}

.summary-card {
  bottom: 3px;
  left: 12px;
  display: grid;
  width: 355px;
  padding: 17px;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

.summary-card > div {
  display: grid;
  align-content: center;
  min-height: 70px;
  gap: 3px;
  padding: 0 8px;
  border-right: 1px solid var(--border);
}

.summary-card > div:last-child {
  border-right: 0;
}

.summary-card strong {
  font-size: 20px;
  line-height: 1;
}

.summary-card span {
  color: var(--muted);
  font-size: 8px;
  line-height: 1.3;
}

.summary-card .teal {
  color: var(--teal);
}

.hero-services {
  display: grid;
  gap: 24px;
  margin-top: 60px;
  grid-template-columns: repeat(3, 1fr);
}

.hero-service-card {
  display: grid;
  min-height: 112px;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(16, 26, 60, 0.03);
  grid-template-columns: 62px 1fr 26px;
  font-size: 19px;
  font-weight: 700;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.hero-service-card:hover {
  border-color: rgba(13, 169, 158, 0.65);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.service-icon {
  width: 62px;
  height: 62px;
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.card-arrow {
  width: 23px;
  height: 23px;
  color: var(--teal);
  transition: transform 200ms ease;
}

.hero-service-card:hover .card-arrow {
  transform: translateX(5px);
}

.trust-bar {
  border-block: 1px solid rgba(16, 26, 60, 0.12);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  display: grid;
  min-height: 118px;
  align-content: center;
  padding: 24px 42px;
  border-right: 1px solid var(--border);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid strong {
  margin-bottom: 3px;
  font-size: 16px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 13px;
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 80px;
  margin-bottom: 52px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.55fr);
}

.section-heading.compact {
  grid-template-columns: minmax(0, 780px);
}

.section-heading h2,
.about-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.section-heading > p,
.about-copy > p,
.faq-intro > p,
.contact-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.services-section {
  background:
    radial-gradient(circle at 95% 6%, rgba(32, 214, 199, 0.12), transparent 24%),
    var(--canvas);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 26, 60, 0.035);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.service-card::after {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--aqua);
  content: "";
  opacity: 0;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.service-card:hover {
  border-color: rgba(13, 169, 158, 0.5);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.service-card:hover::after {
  opacity: 0.55;
  transform: scale(1.25);
}

.card-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #a5adbd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-icon.large {
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
}

.service-icon.large svg {
  width: 27px;
  height: 27px;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.service-card p {
  min-height: 84px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.service-card ul {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 19px;
  color: #343b52;
  font-size: 13px;
}

.service-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  align-items: center;
  gap: 92px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.about-visual {
  position: relative;
  min-height: 520px;
  padding: 56px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(32, 214, 199, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 214, 199, 0.09) 1px, transparent 1px),
    var(--indigo);
  background-size: 34px 34px;
}

.about-panel {
  position: relative;
  z-index: 2;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.mini-label {
  display: block;
  margin-bottom: 32px;
  color: var(--teal-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.about-panel > strong {
  display: block;
  margin-bottom: 14px;
  font-size: 42px;
  letter-spacing: -0.04em;
}

.about-panel > p {
  max-width: 370px;
  margin-bottom: 44px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.progress-track {
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
}

.progress-track span {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: var(--teal-bright);
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 700;
}

.floating-note {
  position: absolute;
  right: 16px;
  bottom: 34px;
  z-index: 3;
  display: flex;
  width: 275px;
  align-items: center;
  gap: 14px;
  padding: 19px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.note-check {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--teal);
  font-size: 21px;
  font-weight: 800;
}

.floating-note > span:last-child {
  display: grid;
}

.floating-note strong {
  font-size: 13px;
}

.floating-note small {
  color: var(--muted);
  font-size: 10px;
}

.about-copy > p {
  margin: 28px 0 38px;
}

.value-list {
  display: grid;
}

.value-list > div {
  display: grid;
  align-items: start;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  grid-template-columns: 42px 1fr;
}

.value-list > div:last-child {
  border-bottom: 1px solid var(--border);
}

.value-list > div > span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.value-list p {
  display: grid;
  gap: 4px;
  margin-bottom: 0;
}

.value-list strong {
  font-size: 16px;
}

.value-list small {
  color: var(--muted);
  font-size: 13px;
}

.process-section {
  overflow: hidden;
  background: var(--canvas);
}

.process-grid {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.process-grid::before {
  position: absolute;
  top: 34px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: var(--border);
  content: "";
}

.process-card {
  position: relative;
  padding: 0 30px;
  text-align: center;
}

.process-number {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 7px 20px rgba(16, 26, 60, 0.05);
}

.process-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 800;
}

.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  align-items: start;
  gap: 92px;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.faq-intro > p {
  margin: 26px 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

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

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

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.faq-plus {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

details[open] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 660px;
  margin: -4px 52px 26px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.contact-section {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--white);
}

.contact-shell {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 5% 10%, rgba(32, 214, 199, 0.16), transparent 28%),
    var(--indigo);
  color: var(--white);
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 0.78fr);
}

.contact-copy {
  padding: 76px 66px;
}

.eyebrow.light {
  color: var(--teal-bright);
}

.contact-copy h2 {
  max-width: 560px;
}

.contact-copy > p {
  max-width: 620px;
  margin: 25px 0 34px;
  color: rgba(255, 255, 255, 0.67);
}

.contact-methods {
  display: grid;
  gap: 4px;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
}

.contact-method-icon {
  width: 43px;
  height: 43px;
  background: rgba(32, 214, 199, 0.13);
  color: var(--teal-bright);
}

.contact-method-icon svg {
  width: 20px;
  height: 20px;
}

.contact-methods a > span:last-child {
  display: grid;
}

.contact-methods small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
}

.contact-methods strong {
  font-size: 13px;
}

.contact-form {
  margin: 18px;
  padding: 46px;
  border-radius: 20px;
  background: var(--white);
  color: var(--indigo);
  box-shadow: var(--shadow-lg);
}

.form-heading {
  margin-bottom: 28px;
}

.form-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--aqua);
  color: #087b73;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form h3 {
  margin-bottom: 0;
  font-size: 29px;
  letter-spacing: -0.035em;
}

.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--indigo-soft);
  font-size: 11px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: 0;
  background: #fbfcfd;
  color: var(--indigo);
  font-size: 13px;
  font-weight: 500;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 105px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(32, 214, 199, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #989eac;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.site-footer {
  padding: 94px 0 28px;
  background: var(--white);
}

.footer-top {
  display: grid;
  gap: 72px;
  padding-bottom: 56px;
  grid-template-columns: 1.3fr 0.55fr 0.85fr;
}

.footer-brand p {
  max-width: 390px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 10px;
  font-size: 13px;
}

.footer-column a,
.footer-column address {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--teal);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
}

.footer-bottom a:hover {
  color: var(--teal);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 42;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 5px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 15px 32px rgba(20, 80, 43, 0.25);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-float:hover {
  box-shadow: 0 20px 38px rgba(20, 80, 43, 0.34);
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke-width: 0;
}

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

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

html[lang="bn"] .eyebrow {
  letter-spacing: 0.04em;
}

html[lang="bn"] .hero h1,
html[lang="bn"] .section-heading h2,
html[lang="bn"] .about-copy h2,
html[lang="bn"] .faq-intro h2,
html[lang="bn"] .contact-copy h2 {
  letter-spacing: -0.02em;
  line-height: 1.22;
}

html[lang="bn"] .brand-main,
html[lang="bn"] .brand-sub {
  font-family: var(--font-en);
}

@media (max-width: 1220px) {
  .container {
    width: min(calc(100% - 64px), var(--container));
  }

  .desktop-nav {
    gap: 24px;
  }

  .header-actions {
    gap: 17px;
  }

  .hero-grid {
    gap: 32px;
    grid-template-columns: minmax(0, 1fr) minmax(470px, 0.9fr);
  }

  .overview-card {
    width: 320px;
  }

  .document-card {
    width: 190px;
  }

  .contact-copy {
    padding: 66px 48px;
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-inner {
    min-height: 80px;
  }

  .hero {
    padding-top: 72px;
  }

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

  .hero-copy {
    max-width: 850px;
  }

  .compliance-visual {
    width: min(100%, 690px);
    min-height: 570px;
    margin-inline: auto;
  }

  .hero-services {
    margin-top: 34px;
  }

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

  .about-grid,
  .faq-grid {
    gap: 60px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    padding-bottom: 30px;
  }

  .contact-methods {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-methods a {
    align-items: flex-start;
  }

  .contact-form {
    margin-top: 0;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .section {
    padding: 84px 0;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: clamp(50px, 11vw, 72px);
  }

  .hero-services {
    grid-template-columns: 1fr;
  }

  .hero-service-card {
    min-height: 98px;
  }

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

  .trust-grid > div,
  .trust-grid > div:first-child {
    min-height: 94px;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    gap: 22px;
    grid-template-columns: 1fr;
  }

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

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

  .service-card p {
    min-height: auto;
  }

  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .about-copy {
    order: -1;
  }

  .process-grid {
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }

  .process-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    text-align: left;
  }

  .process-number {
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .footer-top {
    gap: 38px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    backdrop-filter: blur(12px);
  }

  .brand-main {
    font-size: 20px;
  }

  .brand-sub {
    margin-top: 6px;
    font-size: 9px;
  }

  .header-actions {
    gap: 11px;
  }

  .language-switch {
    gap: 4px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(45px, 13vw, 61px);
    line-height: 1.06;
  }

  .hero-description {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

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

  .compliance-visual {
    min-height: 510px;
    margin-top: 10px;
    transform: scale(0.92);
    transform-origin: top center;
  }

  .compliance-visual::before {
    right: 50%;
    width: 390px;
    height: 390px;
    transform: translateX(50%);
  }

  .overview-card {
    top: 88px;
    left: 50%;
    width: min(330px, 86vw);
    transform: translateX(-58%);
  }

  .document-card {
    top: 18px;
    right: 2%;
    width: 166px;
    min-height: 235px;
    padding: 22px 17px 16px;
  }

  .deadline-card {
    right: 0;
    bottom: 68px;
    width: 180px;
  }

  .summary-card {
    bottom: 0;
    left: 0;
    width: min(340px, 90vw);
  }

  .hero-services {
    margin-top: -10px;
  }

  .section-heading h2,
  .about-copy h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .about-visual {
    min-height: 470px;
    padding: 24px;
  }

  .about-panel {
    padding: 28px;
  }

  .about-panel > strong {
    font-size: 34px;
  }

  .floating-note {
    right: 10px;
    bottom: 24px;
    width: min(265px, 80vw);
  }

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

  .contact-copy {
    padding: 54px 25px 30px;
  }

  .contact-form {
    margin: 12px;
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 420px) {
  .brand-main {
    font-size: 18px;
  }

  .brand-sub {
    letter-spacing: 0.32em;
  }

  .language-switch span {
    display: none;
  }

  .lang-button {
    padding: 3px;
  }

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

  .compliance-visual {
    width: 116%;
    margin-left: -8%;
  }

  .overview-card {
    transform: translateX(-59%);
  }

  .hero-service-card {
    gap: 13px;
    grid-template-columns: 52px 1fr 22px;
    font-size: 16px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
  }
}

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

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

@media print {
  .site-header,
  .hero-actions,
  .whatsapp-float,
  .contact-form {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section {
    padding: 40px 0;
  }
}
