/* ===== VARIABLES & BASE ===== */
:root {
  --font-heading: 'Lora', serif;
  --font-body: 'Mulish', -apple-system, sans-serif;

  --c-dark: #0d2740;
  --c-dark-hover: #16395c;
  --c-slate: #41546a;
  --c-text: #46586c;
  --c-text-light: #5b6b7c;
  --c-text-muted: #7c8ca0;
  --c-bg: #f5f7fa;
  --c-bg-alt: #f7f9fc;
  --c-border: #e2e8f0;

  --c-brand-blue: #1d5d8e;
  --c-brand-orange: #e8801f;
  --c-brand-green: #18874c;
  --c-brand-green-hover: #15793f;

  --shadow-sm: 0 6px 16px rgba(24, 135, 76, 0.22);
  --shadow-md: 0 10px 24px rgba(24, 135, 76, 0.26);
  --shadow-lg: 0 22px 44px -26px rgba(13, 39, 64, 0.4);
  --shadow-card: 0 30px 70px -28px rgba(13, 39, 64, 0.4);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--c-dark);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection {
  background: var(--c-dark);
  color: #fff;
}

input,
textarea,
select,
button {
  font-family: var(--font-body);
}

section {
  scroll-margin-top: 84px;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.16, 0.7, 0.3, 1), transform 0.7s cubic-bezier(0.16, 0.7, 0.3, 1);
}

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

/* Staggered entrance for cards */
.stagger-grid>div {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active .stagger-grid>div {
  opacity: 1;
  transform: none;
}

.reveal.active .stagger-grid>div:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal.active .stagger-grid>div:nth-child(2) {
  transition-delay: 0.15s;
}

.reveal.active .stagger-grid>div:nth-child(3) {
  transition-delay: 0.25s;
}

.reveal.active .stagger-grid>div:nth-child(4) {
  transition-delay: 0.35s;
}

.reveal.active .stagger-grid>div:nth-child(5) {
  transition-delay: 0.45s;
}

.reveal.active .stagger-grid>div:nth-child(6) {
  transition-delay: 0.55s;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 247, 250, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, background-color 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--c-border);
  box-shadow: 0 6px 24px -16px rgba(13, 39, 64, 0.4);
  background: rgba(255, 255, 255, 0.95);
}

.header-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: height 0.3s ease;
}

.site-header.scrolled .header-container {
  height: 64px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 13px;
  cursor: pointer;
  text-decoration: none;
}

.logo-area img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo-area:hover img {
  transform: scale(1.05);
}

.logo-text {
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 1.8px;
  color: var(--c-text-muted);
  text-transform: uppercase;
  border-left: 1px solid #d8e0e8;
  padding-left: 13px;
  line-height: 1.35;
}

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

.nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--c-slate);
  text-decoration: none;
  padding: 9px 13px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  background: #eef2f7;
  color: var(--c-dark);
}

/* WhatsApp Pulse Button */
.wa-btn {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-brand-green);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.wa-btn:hover {
  background: var(--c-brand-green-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.wa-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ff0a8;
  display: inline-block;
  position: relative;
}

/* Pulse Animation for shadow only */
@keyframes pulse-shadow {
  0% {
    box-shadow: 0 0 0 0 rgba(127, 240, 168, 0.7);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(127, 240, 168, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(127, 240, 168, 0);
  }
}

.wa-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: pulse-shadow 2s infinite;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 118px 0 80px;
}

.hero-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 100px;
  padding: 7px 15px 7px 11px;
  margin-bottom: 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.badge-dots {
  display: inline-flex;
  gap: 3px;
  align-items: center;
}

.badge-dot-1 {
  width: 13px;
  height: 3px;
  background: var(--c-brand-orange);
  border-radius: 2px;
}

.badge-dot-2 {
  width: 13px;
  height: 3px;
  background: #cdd6e0;
  border-radius: 2px;
}

.badge-dot-3 {
  width: 13px;
  height: 3px;
  background: var(--c-brand-green);
  border-radius: 2px;
}

.badge-text {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--c-slate);
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--c-dark);
  margin-bottom: 22px;
  text-wrap: balance;
}

.hero-desc {
  font-size: 18.5px;
  line-height: 1.62;
  color: var(--c-text);
  max-width: 540px;
  margin-bottom: 34px;
  text-wrap: pretty;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-brand-green);
  color: #fff;
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 26px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.2s;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--c-brand-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(24, 135, 76, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--c-dark);
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 24px;
  border-radius: 12px;
  text-decoration: none;
  border: 1.5px solid #d4dde7;
  transition: 0.2s;
}

.btn-secondary:hover {
  border-color: var(--c-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.hero-checks {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-check {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-check-icon {
  color: var(--c-brand-green);
  font-size: 15px;
}

/* Advisor Card */
.advisor-card {
  background: #fff;
  border: 1px solid #e7ecf2;
  border-radius: 22px;
  padding: 14px;
  box-shadow: var(--shadow-card);
  min-width: 280px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.advisor-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.advisor-img {
  position: relative;
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
  background: #eef2f7;
  display: block;
}

.advisor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.advisor-dots {
  position: absolute;
  top: 13px;
  right: 13px;
  display: inline-flex;
  gap: 3px;
  z-index: 2;
}

.advisor-dot-1 {
  width: 16px;
  height: 3px;
  background: var(--c-brand-orange);
  border-radius: 2px;
}

.advisor-dot-2 {
  width: 16px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.advisor-dot-3 {
  width: 16px;
  height: 3px;
  background: var(--c-brand-green);
  border-radius: 2px;
}

.advisor-info {
  padding: 20px 14px 8px;
}

.advisor-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--c-dark);
  line-height: 1.15;
}

.advisor-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--c-text-muted);
  margin-top: 3px;
}

.advisor-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.advisor-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f3f6fa;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 6px 11px;
  font-size: 12.5px;
  font-weight: 700;
  color: #33475c;
  transition: background 0.2s, border-color 0.2s;
}

.advisor-card:hover .advisor-tag {
  background: #fff;
  border-color: #d1d9e2;
}

/* ===== SECTION HEADERS ===== */
.section-subtitle {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-brand-blue);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  color: var(--c-dark);
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-text-light);
  text-wrap: pretty;
}

/* ===== JURISDICTIONS ===== */
.jurisdictions-sec {
  padding: 84px 0;
  background: #fff;
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.jur-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

.tabs {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab-indicator {
  position: absolute;
  left: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--c-brand-orange);
  z-index: 3;
  height: 44px;
  /* computed from JS normally */
  top: 9px;
  transition: top 0.38s cubic-bezier(0.16, 0.7, 0.3, 1), height 0.38s cubic-bezier(0.16, 0.7, 0.3, 1);
}

.tab-btn {
  min-height: 62px;
  box-sizing: border-box;
  padding: 13px 17px;
  border-radius: 13px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  text-align: left;
  width: 100%;
  transition: background 0.28s, color 0.28s, border-color 0.28s, box-shadow 0.28s, transform 0.28s;
  background: #fff;
  color: var(--c-dark);
  border: 1px solid var(--c-border);
  outline: none;
}

.tab-btn.active {
  background: var(--c-dark);
  color: #fff;
  border: 1px solid var(--c-dark);
  box-shadow: 0 12px 26px -12px rgba(13, 39, 64, 0.5);
  transform: translateX(3px);
}

.tab-btn:hover:not(.active) {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.tab-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--c-brand-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tab-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tab-sub {
  font-size: 11.5px;
  font-weight: 600;
  opacity: 0.62;
}

.tab-panels {
  position: relative;
}

.tab-panel {
  background: var(--c-bg-alt);
  border: 1px solid #e7ecf2;
  border-radius: 18px;
  padding: 38px;
  min-height: 360px;
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 25px;
  color: var(--c-dark);
  margin-bottom: 8px;
}

.panel-desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text);
  max-width: 560px;
  margin-bottom: 20px;
  text-wrap: pretty;
}

.panel-tags {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.panel-tag {
  background: var(--c-dark);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 7px;
  letter-spacing: 0.2px;
}

.panel-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}

.panel-svc {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.panel-svc-icon {
  color: var(--c-brand-green);
  font-size: 16px;
  line-height: 1.4;
  flex-shrink: 0;
  margin-top: 1px;
}

.panel-svc-text {
  font-size: 14.5px;
  line-height: 1.5;
  color: #33475c;
}

/* ===== CAPABILITIES ===== */
.capabilities-sec {
  padding: 96px 0;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.cap-card {
  background: #fff;
  border: 1px solid #e7ecf2;
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px -12px rgba(13, 39, 64, 0.35);
  border-color: #d6e0ea;
}

.cap-num {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--c-brand-orange);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 18px;
}

.cap-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--c-dark);
  margin-bottom: 10px;
}

.cap-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--c-text-light);
}

.catalog-toggle-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.catalog-toggle-btn {
  background: #fff;
  border: 1px solid var(--c-brand-blue);
  color: var(--c-brand-blue);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.catalog-toggle-btn:hover {
  background: var(--c-brand-blue);
  color: #fff;
}

.catalog-icon {
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.catalog-toggle-btn[aria-expanded="true"] .catalog-icon {
  transform: rotate(45deg);
}

.catalog-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.catalog-content.open {
  grid-template-rows: 1fr;
}

.catalog-inner {
  overflow: hidden;
}

.services-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-block {
  background: #fff;
  border: 1px solid #e7ecf2;
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 4px 20px rgba(13, 39, 64, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(13, 39, 64, 0.06);
  border-color: #d6e0ea;
}

.service-block.full-width {
  grid-column: 1 / -1;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 22px;
}

.service-desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--c-text);
  margin-bottom: 24px;
  text-wrap: pretty;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #33475c;
  line-height: 1.45;
}

.svc-icon {
  color: var(--c-brand-green);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.sspo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: #f8fafc;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #eef2f6;
}

.sspo-subtitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-brand-blue);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .sspo-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-block {
    padding: 24px;
  }
}

/* ===== ABOUT ===== */
.about-sec {
  padding: 96px 0;
  background: #fff;
  border-top: 1px solid #eef2f6;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  min-width: 260px;
}

.about-img {
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: #eef2f7;
  border: 1px solid #e7ecf2;
  transition: transform 0.5s ease;
  display: block;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-img-wrap:hover .about-img {
  transform: scale(1.02);
}

.about-dots {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 4px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 11px;
  box-shadow: 0 14px 30px -12px rgba(13, 39, 64, 0.35);
  transition: transform 0.3s ease;
}

.about-img-wrap:hover .about-dots {
  transform: translateX(-50%) translateY(4px);
}

.about-dot-1 {
  width: 22px;
  height: 4px;
  background: var(--c-brand-orange);
  border-radius: 2px;
}

.about-dot-2 {
  width: 22px;
  height: 4px;
  background: #cdd6e0;
  border-radius: 2px;
}

.about-dot-3 {
  width: 22px;
  height: 4px;
  background: var(--c-brand-green);
  border-radius: 2px;
}

.about-p {
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--c-text);
  margin-bottom: 16px;
  text-wrap: pretty;
}

.credentials-box {
  background: #fff;
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-brand-blue);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 14.5px;
  color: var(--c-text);
  line-height: 1.6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cred-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.cred-label {
  font-weight: 700;
  color: var(--c-dark);
  width: 110px;
  flex-shrink: 0;
  font-size: 13.5px;
}

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

.stat-item {
  padding-left: 16px;
}

.stat-item.orange {
  border-left: 3px solid var(--c-brand-orange);
}

.stat-item.gray {
  border-left: 3px solid #cdd6e0;
}

.stat-item.green {
  border-left: 3px solid var(--c-brand-green);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--c-dark);
  line-height: 1;
}

.stat-num.dashed {
  border-bottom: 2px dashed #c2cedb;
  display: inline-block;
}

.stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-muted);
  margin-top: 6px;
}

/* ===== PROCESS ===== */
.process-sec {
  padding: 96px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.process-card {
  position: relative;
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
}

.process-num {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: var(--c-dark);
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.3s;
}

.process-card:hover .process-num {
  background: var(--c-brand-orange);
}

.process-num.green {
  background: var(--c-brand-green);
}

.process-card:hover .process-num.green {
  background: var(--c-brand-green-hover);
}

.process-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 19px;
  color: var(--c-dark);
  margin-bottom: 9px;
}

.process-desc {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--c-text-light);
}

/* ===== FAQ ===== */
.faq-sec {
  padding: 90px 0;
  background: #fff;
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--c-bg-alt);
  border: 1px solid #e7ecf2;
  border-radius: 13px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-dark);
  outline: none;
}

.faq-icon {
  font-size: 24px;
  font-weight: 400;
  color: var(--c-brand-blue);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.faq-item.open .faq-content {
  opacity: 1;
}

.faq-content p {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text-light);
}

/* ===== CONTACT ===== */
.contact-sec {
  padding: 96px 0;
  background: radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1.5px) 0 0/22px 22px, var(--c-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.14;
  color: #fff;
  letter-spacing: -0.4px;
  margin-bottom: 18px;
  text-wrap: balance;
}

.contact-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #a9bccf;
  max-width: 460px;
  margin-bottom: 34px;
  text-wrap: pretty;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 24px;
  border-radius: 12px;
  text-decoration: none;
  border: 1.5px solid #3a5066;
  transition: 0.2s;
}

.btn-outline-white:hover {
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
  transition: transform 0.2s;
}

a.info-row:hover {
  transform: translateX(5px);
}

.info-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #6a8099;
  width: 62px;
  flex-shrink: 0;
  padding-top: 2px;
  text-transform: uppercase;
}

.info-val {
  font-size: 15.5px;
  color: #dce6ef;
  font-weight: 600;
  line-height: 1.5;
}

.contact-form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
}

.contact-form-wrap:hover {
  transform: translateY(-5px);
}

.form-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--c-dark);
  margin-bottom: 6px;
}

.form-desc {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-slate);
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  font-size: 15px;
  color: var(--c-dark);
  outline: none;
  transition: 0.2s;
  border: 1.5px solid #d4dde7;
  background: #fff;
}

.form-control:focus {
  border-color: var(--c-brand-blue);
  box-shadow: 0 0 0 3px rgba(29, 93, 142, 0.1);
}

.form-control.error {
  border-color: #d9534f;
  background: #fff7f6;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d2740' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

.btn-submit {
  margin-top: 4px;
  background: var(--c-dark);
  color: #fff;
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
}

.btn-submit:hover {
  background: var(--c-dark-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 39, 64, 0.2);
}

.form-footer {
  font-size: 12px;
  color: #9aa9ba;
  text-align: center;
  line-height: 1.5;
  margin-top: 16px;
}

.form-footer a {
  color: var(--c-brand-green);
  font-weight: 700;
  text-decoration: none;
}

.success-state {
  text-align: center;
  padding: 30px 8px;
  display: none;
  animation: fadeIn 0.5s ease;
}

.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e8f6ee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--c-brand-green);
  font-size: 30px;
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

.success-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  color: var(--c-dark);
  margin-bottom: 10px;
}

.success-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-text-light);
  max-width: 330px;
  margin: 0 auto 24px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0a1f33;
  padding: 48px 0 36px;
}

.footer-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo img {
  height: 43px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 1.8px;
  color: #6a8099;
  text-transform: uppercase;
  border-left: 1px solid #2a4258;
  padding-left: 14px;
  line-height: 1.4;
}

.footer-copy {
  max-width: 580px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #6a8099;
}

.footer-copy p {
  margin-bottom: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
}

.agency-credit {
  color: #8c9eb3;
}

.agency-credit a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}

.agency-credit a:hover {
  color: var(--c-brand-orange);
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  flex-direction: column;
  gap: 5px;
  z-index: 100;
  position: relative;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--c-dark);
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Overlay for mobile menu */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 39, 64, 0.4);
  backdrop-filter: blur(4px);
  z-index: 40;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--c-brand-blue);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 24px -6px rgba(13, 39, 64, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background 0.2s ease;
  z-index: 30;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--c-dark);
}

.scroll-top.show:hover {
  transform: translateY(-3px);
}

/* Hide the button while the mobile menu is open so it doesn't show through the
   dimmed overlay. */
body.menu-open .scroll-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ===== RESPONSIVE ===== */
.mobile-menu-logo {
  display: none;
}

.mobile-menu-footer {
  display: none;
}

/* Layout collapses to a single column AND the hamburger appears at the same
   breakpoint, so the desktop nav never has to crowd a narrow tablet width. */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .advisor-card {
    /* Drop the desktop min-width so the card never overflows a narrow phone. */
    min-width: 0;
  }

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

  .tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .tab-indicator {
    display: none;
    /* simpler on mobile */
  }

  .tab-btn {
    width: auto;
    flex: 1;
    min-width: 140px;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 16px 10px;
    gap: 8px;
  }

  .tab-text {
    align-items: center;
  }

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

  .about-img-wrap {
    min-width: 0;
  }

  .about-img {
    height: 320px;
  }

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

  /* --- Mobile navigation --- */
  /* Remove the header's backdrop-filter on mobile. A backdrop-filter makes the
     header a containing block for its position:fixed children, which would clip
     the full-screen menu overlay (and the sliding nav) to the header box. A
     solid background keeps the header clean without the blur. */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--c-bg);
  }

  .site-header.scrolled {
    background: #fff;
  }

  .menu-toggle {
    display: flex;
  }

  /* When the menu is open the hamburger becomes the ✕. Pin it to the viewport's
     top-right so it stays visible no matter how far the page was scrolled before
     opening — otherwise it rides along with the (scroll-locked) header and can end
     up off-screen. Fixed is viewport-relative here because the header's
     backdrop-filter is removed on mobile, so nothing traps it. */
  .menu-toggle.active {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 110;
  }

  .mobile-menu-logo {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e1e7ee;
  }

  .mobile-menu-logo img {
    width: 140px;
    height: auto;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(82vw, 300px);
    background: #fff;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 20px 24px 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    align-items: stretch;
    z-index: 50;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .main-nav.active {
    transform: translateX(0);
  }

  .nav-link {
    text-align: left;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 12px;
  }

  .wa-btn {
    margin-left: 0;
    justify-content: center;
    margin-top: 20px;
    padding: 15px;
    font-size: 15.5px;
  }

  .mobile-menu-footer {
    display: block;
    margin-top: auto;
    font-size: 11px;
    color: #94a3b8;
    text-align: center;
    padding-top: 20px;
    transition: all 0.3s ease;
  }

  .mobile-menu-footer a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .mobile-menu-footer:hover,
  .mobile-menu-footer:hover a {
    color: var(--c-slate) !important;
  }
}

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

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

/* Phone-sized tightening: trim oversized desktop padding and stop content
   from overflowing the viewport. */
@media (max-width: 600px) {
  .header-container,
  .hero-container,
  .container,
  .faq-container,
  .footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding: 92px 0 60px;
  }

  .tab-panel {
    padding: 24px;
    min-height: 0;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .info-val {
    /* Long email address must not push past its column. */
    overflow-wrap: anywhere;
  }

  .stat-num {
    font-size: 28px;
  }

  /* iOS zooms the page when a focused input is below 16px; keep it at 16px. */
  .form-control {
    font-size: 16px;
  }
}