:root {
  --ink: #13201d;
  --muted: #5c6864;
  --line: #dbe4df;
  --paper: #f8faf8;
  --white: #ffffff;
  --teal: #0f766e;
  --teal-dark: #0c534e;
  --gold: #c4942f;
  --mint: #e7f4ef;
  --shadow: 0 22px 55px rgba(25, 38, 34, 0.14);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  box-shadow: var(--shadow);
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
iframe:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  width: 100vw;
  padding: 14px clamp(18px, 4vw, 64px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 35px rgba(18, 32, 29, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: calc(100vw - 82px);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 22px rgba(13, 24, 21, 0.16);
  overflow: hidden;
}

.brand-mark img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand small {
  margin-top: 2px;
  font-size: 0.75rem;
  opacity: 0.82;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--gold);
  color: #16221f;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
  flex: 0 0 auto;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: start;
  overflow: hidden;
  color: var(--white);
  min-height: auto;
  padding-bottom: 40px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 26, 23, 0.92), rgba(12, 26, 23, 0.68) 48%, rgba(12, 26, 23, 0.18)),
    linear-gradient(0deg, rgba(12, 26, 23, 0.72), rgba(12, 26, 23, 0.04) 48%);
}

.hero-content {
  position: relative;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 150px clamp(18px, 4vw, 42px) 48px;
}

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

.section .eyebrow {
  color: #7a5814;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions,
.cta-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 800;
}

.btn.primary {
  background: var(--gold);
  color: #15201d;
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 780px;
  margin: 46px 0 0;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.trust-strip div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.trust-strip dt {
  font-size: 1.25rem;
  font-weight: 800;
}

.trust-strip dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

p,
li {
  color: var(--muted);
  line-height: 1.68;
  overflow-wrap: break-word;
}

.intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
}

.intro-grid,
.service-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

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

.intro-grid article,
.service-card,
.testimonial-grid figure,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(25, 38, 34, 0.06);
}

.intro-grid article {
  padding: 22px;
}

.intro-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--teal);
  font-weight: 800;
}

.services {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: #eef6f3;
}

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

.service-card {
  padding: clamp(24px, 4vw, 38px);
}

.service-card.featured {
  border-color: rgba(15, 118, 110, 0.28);
  background: #fbfefd;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 900;
}

.service-card ul {
  margin: 20px 0 0;
  padding-left: 20px;
}

.about {
  width: min(1000px, calc(100% - 36px));
  margin: 0 auto;
}

.about-panel {
  padding: clamp(26px, 5vw, 46px);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.about-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.about-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 34px;
  align-items: center;
}

.profile-wrapper {
  position: relative;
  width: fit-content;
  margin: 30px auto;
}

.profile-photo {
  margin: 0;
}

.profile-photo img {
  width: 320px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
  border: 6px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.experience-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #c4942f;
  color: #000;
  padding: 18px 22px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.experience-badge strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 800;
}

.experience-badge span {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
  font-weight: 600;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.detail-list div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.detail-list span,
.detail-list strong {
  display: block;
}

.detail-list span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.contact-panel {
  padding: 28px;
}

.contact-panel a {
  display: block;
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

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

.compliance-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(25, 38, 34, 0.05);
  overflow: hidden;
}

.compliance-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px 54px 18px 22px;
  color: var(--teal-dark);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.compliance-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
  transform: translateY(-50%);
}

.compliance-item[open] summary::after {
  content: "-";
}

.compliance-content {
  padding: 0 22px 24px;
}

.compliance-content h3 {
  margin: 2px 0 14px;
  color: var(--ink);
  font-size: 1.28rem;
}

.compliance-content h4 {
  margin: 22px 0 8px;
  color: var(--teal-dark);
  font-size: 1rem;
}

.compliance-content p:last-child,
.compliance-content ul:last-child {
  margin-bottom: 0;
}

.compliance-content ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.compliance-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.compliance-cards div {
  padding: 16px;
  border-radius: 8px;
  background: var(--paper);
}

.compliance-cards span,
.compliance-cards strong {
  display: block;
}

.compliance-cards span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

.compliance-cards strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: var(--ink);
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  background: var(--paper);
  color: var(--teal-dark);
  font-size: 0.88rem;
}

.testimonials {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: #fff;
}

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

.testimonial-grid figure {
  margin: 0;
  padding: 26px;
}

blockquote {
  margin: 0 0 22px;
  color: var(--ink);
  line-height: 1.7;
}

figcaption {
  color: var(--teal-dark);
  font-weight: 800;
}

.cta-section {
  width: min(1180px, calc(100% - 36px));
  margin: 80px auto;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal-dark), #163530);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-section div {
  max-width: 680px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding: 54px clamp(18px, 4vw, 64px) 30px;
  background: #101916;
  color: var(--white);
}

.footer-top,
.footer-info,
.footer-bottom {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-top,
.footer-info {
  display: grid;
  gap: 30px;
}

.footer-top {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-info {
  grid-template-columns: 1fr 1.2fr 1fr;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.6;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
    position: absolute;
    top: 13px;
    right: auto;
    left: min(calc(100vw - 56px), 334px);
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 14px;
  }

  .nav-cta {
    text-align: center;
  }

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

  .about-profile {
    grid-template-columns: minmax(0, 1fr) 210px;
  }

  .profile-photo img {
    width: 210px;
  }

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

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

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

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding-inline: 12px;
    gap: 10px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.64rem;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-mark img {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 26, 23, 0.93), rgba(12, 26, 23, 0.76)),
      linear-gradient(0deg, rgba(12, 26, 23, 0.76), rgba(12, 26, 23, 0.2));
  }

  .hero-content {
    padding: 122px 18px 32px;
    max-width: 390px;
    margin: 0;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    max-width: calc(100vw - 36px);
    overflow-wrap: anywhere;
  }

  .hero-copy {
    max-width: 354px;
    font-size: 0.98rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .cta-section {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .trust-strip,
  .service-grid,
  .intro-grid,
  .testimonial-grid,
  .detail-list {
    grid-template-columns: 1fr;
  }

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

  .profile-photo {
    justify-self: start;
  }

  .profile-photo img {
    width: min(240px, 100%);
  }

  .compliance-cards {
    grid-template-columns: 1fr;
  }

  .section {
    width: min(100% - 32px, 1180px);
    padding: 64px 0;
  }

  .services,
  .testimonials {
    padding-inline: 16px;
  }

  .cta-section {
    margin-block: 56px;
  }
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.price-tag {
  text-align: right;
}

.old-price {
  display: block;
  color: #888;
  font-size: 0.9rem;
  text-decoration: line-through;
}

.new-price {
  display: block;
  color: #0f766e;
  font-size: 1rem;
  font-weight: 800;
}

.fo-risk-box {
  margin-top: 24px;
  padding: 20px;
  border-left: 4px solid #c4942f;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
}

.fo-risk-box strong {
  display: block;
  margin-bottom: 12px;
  color: #c4942f;
  font-size: 1.05rem;
}

.fo-risk-box p {
  margin-bottom: 10px;
  line-height: 1.7;
}

.research-report-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#1f5eff;
  color:#fff;
  text-decoration:none;
  padding:14px 24px;
  border-radius:10px;
  font-weight:600;
  margin-top:10px;
  transition:0.3s ease;
}

.research-report-btn:hover{
  background:#0d47d9;
  transform:translateY(-2px);
}

.payment-box{
  border:1px solid #d9d4c7;
  border-radius:18px;
  padding:28px;
  margin:25px 0;
  background:#fff;
}

.payment-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
}

.payment-left{
  flex:1;
}

.payment-label{
  display:block;
  font-size:13px;
  letter-spacing:1px;
  font-weight:700;
  color:#666;
  margin-bottom:15px;
  text-transform:uppercase;
}

.payment-box h3{
  font-size:34px;
  margin-bottom:12px;
  color:#111827;
  word-break:break-word;
}

.payment-box p{
  color:#666;
  margin:0;
}

.payment-qr img{
  width:170px;
  height:170px;
  object-fit:contain;
  border-radius:12px;
  background:#fff;
}

@media(max-width:768px){

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

  .payment-qr img{
    width:140px;
    height:140px;
  }

}

.mitc-list li{
  margin-bottom:16px;
  line-height:1.8;
}

.pdf-viewer {
  margin-top: 22px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #fff;
}

.pdf-viewer iframe {
  width: 100%;
  min-height: 70vh;
  border: none;
  display: block;
}

.social-title {
  margin-top: 24px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

a.social-pill:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.18);
}

.social-pill-disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.social-pill i {
  font-size: 17px;
  color: #d4a037;
}

.social-pill span {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.bse-verify-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#0b7d5c;
    color:#fff;
    padding:14px 24px;
    border-radius:12px;
    font-weight:700;
    text-decoration:none;
    transition:.3s ease;
}

.bse-verify-btn:hover{
    background:#08684c;
    transform:translateY(-2px);
}

.bse-verify-btn i{
    font-size:14px;
}

/* SERVICE PLAN OVERRIDE */

.pricing-card{
    padding:28px !important;
}

.pricing-card h3{
    font-size:34px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:16px;
    color:#13201d;
}

@media(max-width:768px){

    .pricing-card h3{
        font-size:24px;
    }

}

.price-label{
    display:inline-block;
    background:#8a6416;
    color:#fff;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    padding:6px 12px;
    border-radius:20px;
    margin-bottom:10px;
}

.old-price-new{
    font-size:18px;
    color:#98a2b3;
    text-decoration:line-through;
    font-weight:600;
    margin-top:4px;
	margin-left:10px;
    margin-bottom:18px;
}

.big-price{
    font-size:36px;
    font-weight:800;
    color:#0f766e;
    line-height:1;
    margin:8px 0;
}

.duration{
    color:#666;
    font-size:16px;
    margin-bottom:12px;
}

.feature-list{
    margin:10px 0 20px !important;
    padding:0 !important;
    list-style:none !important;
}

.feature-list li{
    padding:7px 0 !important;
    border-bottom:1px solid #edf0f2;
    font-size:15px;
}

.feature-list li:last-child{
    border-bottom:none;
}

.feature-list li::before{
    content:"✓ ";
    color:#0f766e;
    font-weight:700;
}

.plan-btn{
    margin-top:auto;
    padding:14px;
    font-size:15px;
    border-radius:12px;
}

@media(max-width:768px){

    .big-price{
        font-size:28px;
    }

}

.plan-btn{
    display:block !important;
    width:100%;
    text-align:center;
    background:#0f766e !important;
    color:#fff !important;
    padding:14px 20px !important;
    border-radius:12px !important;
    font-weight:700;
    font-size:15px;
    margin-top:20px;
    text-decoration:none;
    transition:.3s;
}

.plan-btn:hover{
    background:#0c5d57 !important;
    color:#fff !important;
}

.price-row{
    display:flex;
    align-items:flex-end;
    gap:8px;
    margin:8px 0 0;
}

.service-note{
    margin-top:30px;
    padding:14px 18px;
    background:#fff8e8;
    border-left:4px solid #c4942f;
    border-radius:8px;
    color:#5c6864;
    font-size:14px;
    line-height:1.7;
}

.service-note strong{
    color:#13201d;
}

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