.trust-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 20px 105px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(
      circle at 10% 12%,
      rgba(1, 162, 0, 0.13),
      transparent 32%
    ),
    radial-gradient(
      circle at 90% 70%,
      rgba(1, 162, 0, 0.08),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #f4fff5 0%,
      #ffffff 52%,
      #f7faf7 100%
    );
}

.trust-hero-decoration {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.trust-hero-decoration-one {
  width: 420px;
  height: 420px;
  top: -220px;
  right: -110px;
  border: 1px solid rgba(1, 162, 0, 0.12);
  box-shadow:
    0 0 0 65px rgba(1, 162, 0, 0.025),
    0 0 0 130px rgba(1, 162, 0, 0.015);
}

.trust-hero-decoration-two {
  width: 380px;
  height: 380px;
  bottom: -240px;
  left: -130px;
  border: 1px solid rgba(1, 162, 0, 0.1);
}

.trust-hero-container {
  max-width: 940px;
  text-align: center;
}

.trust-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.trust-hero h1 span {
  color: var(--primary-dark);
}

.trust-hero-introduction {
  max-width: 760px;
  margin: 26px auto 0;
  font-size: 1.05rem;
  line-height: 1.85;
}

.trust-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-principles-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 36px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.trust-principles-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-principles-strip span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--primary);
}

.trust-intro {
  padding: 100px 20px;
  background: var(--section-background);
}

.trust-intro-grid {
  max-width: 1050px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: start;
  margin: 0 auto;
}

.trust-intro h2,
.conversation-privacy h2,
.security-content h2,
.control-panel h2 {
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.trust-intro-copy {
  display: grid;
  gap: 18px;
}

.trust-intro-copy p {
  font-size: 0.98rem;
  line-height: 1.9;
}

.trust-section {
  padding: 110px 20px;
}

.trust-section-alt {
  background: var(--section-background);
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 17px;
  color: var(--text);
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.section-heading > p {
  line-height: 1.8;
}

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

.trust-card {
  min-height: 285px;
  padding: 29px;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: #ffffff;
  box-shadow: var(--shadow-small);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(1, 162, 0, 0.25);
  box-shadow: var(--shadow-medium);
}

.trust-card-number {
  display: block;
  margin-bottom: 44px;
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.trust-card h3 {
  margin-bottom: 11px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.4;
}

.trust-card p {
  font-size: 0.87rem;
  line-height: 1.75;
}

.conversation-privacy {
  padding: 110px 20px;
  background: #ffffff;
}

.conversation-privacy-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
  padding: clamp(36px, 6vw, 68px);
  border: 1px solid rgba(1, 162, 0, 0.15);
  border-radius: 36px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(1, 162, 0, 0.09),
      transparent 34%
    ),
    var(--section-background);
}

.conversation-privacy-content h2 {
  margin-bottom: 22px;
}

.conversation-privacy-content p {
  margin-bottom: 16px;
  line-height: 1.85;
}

.conversation-flow {
  display: grid;
}

.conversation-flow-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: start;
}

.conversation-flow-step > span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
}

.conversation-flow-step strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 0.9rem;
}

.conversation-flow-step p {
  font-size: 0.8rem;
  line-height: 1.6;
}

.conversation-flow-line {
  width: 1px;
  height: 24px;
  margin: 6px 0 6px 20px;
  background: rgba(1, 162, 0, 0.24);
}

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

.access-grid article {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #ffffff;
}

.access-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 13px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.access-grid h3 {
  margin-bottom: 9px;
  color: var(--text);
  font-size: 1rem;
}

.access-grid p {
  font-size: 0.83rem;
  line-height: 1.7;
}

.security-section {
  padding: 115px 20px;
  background: #0d1710;
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
}

.security-content h2 {
  margin-bottom: 22px;
  color: #ffffff;
}

.security-content p {
  color: #b9c6bc;
  line-height: 1.85;
}

.security-section .eyebrow {
  border-color: rgba(111, 255, 113, 0.2);
  background: rgba(1, 162, 0, 0.12);
  color: #75e878;
}

.security-list {
  display: grid;
  gap: 12px;
}

.security-list > div {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.security-list span {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #62db65;
}

.security-list strong {
  color: #f3f8f4;
  font-size: 0.87rem;
}

.control-section {
  padding: 110px 20px;
  background: #ffffff;
}

.control-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--section-background);
}

.control-panel > div:first-child {
  max-width: 700px;
}

.control-panel h2 {
  margin-bottom: 18px;
}

.control-panel p {
  line-height: 1.8;
}

.control-actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-faq {
  padding: 110px 20px;
  background: var(--section-background);
}

.trust-faq-list {
  max-width: 880px;
  display: grid;
  gap: 12px;
  margin: 0 auto;
}

.trust-faq-list details {
  border: 1px solid var(--border);
  border-radius: 17px;
  background: #ffffff;
  box-shadow: var(--shadow-small);
}

.trust-faq-list summary {
  position: relative;
  padding: 21px 58px 21px 22px;
  color: var(--text);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 700;
  list-style: none;
}

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

.trust-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--primary-dark);
  font-size: 1.3rem;
  transform: translateY(-50%);
}

.trust-faq-list details[open] summary::after {
  content: "−";
}

.trust-faq-list p {
  padding: 0 22px 22px;
  font-size: 0.87rem;
  line-height: 1.8;
}

.trust-cta {
  padding: 100px 20px;
}

.trust-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(36px, 6vw, 66px);
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(1, 162, 0, 0.12),
      transparent 32%
    ),
    var(--section-background);
  border: 1px solid rgba(1, 162, 0, 0.14);
}

.trust-cta-card > div {
  max-width: 720px;
}

.trust-cta-card h2 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

@media (max-width: 960px) {
  .trust-intro-grid,
  .conversation-privacy-panel,
  .security-grid {
    grid-template-columns: 1fr;
  }

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

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

  .control-panel,
  .trust-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .control-actions {
    flex-direction: row;
  }
}

@media (max-width: 640px) {
  .trust-hero {
    padding-top: 82px;
    padding-bottom: 80px;
  }

  .trust-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .trust-principles-strip {
    flex-direction: column;
    align-items: center;
  }

  .trust-intro,
  .trust-section,
  .conversation-privacy,
  .security-section,
  .control-section,
  .trust-faq,
  .trust-cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .trust-intro-grid {
    gap: 28px;
    text-align: center;
  }

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

  .conversation-privacy-panel,
  .control-panel,
  .trust-cta-card {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .control-actions {
    width: 100%;
    flex-direction: column;
  }

  .control-actions .button,
  .trust-cta-card > .button {
    width: 100%;
  }
}

/* =========================================================
   Privacy & Trust alignment consistency
   ========================================================= */

/* Centre the intro section */
.trust-intro-grid {
  max-width: 920px;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 0 auto;
  text-align: center;
}

.trust-intro-grid > div:first-child {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.trust-intro h2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.trust-intro-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

/* Centre the conversation privacy heading/content */
.conversation-privacy-panel {
  grid-template-columns: 1fr;
  max-width: 980px;
  margin: 0 auto;
}

.conversation-privacy-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.conversation-privacy-content .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.conversation-privacy-content h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 22px;
}

.conversation-privacy-content p {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.conversation-flow {
  width: min(100%, 760px);
  margin: 20px auto 0;
  text-align: left;
}

/* Centre the security section heading/content */
.security-grid {
  grid-template-columns: 1fr;
  max-width: 980px;
  margin: 0 auto;
}

.security-content {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.security-content .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.security-content h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 22px;
}

.security-content p {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.security-list {
  width: min(100%, 840px);
  margin: 0 auto;
  text-align: left;
}

/* Centre the user-control section */
.control-panel {
  max-width: 980px;
  margin: 0 auto;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.control-panel > div:first-child {
  max-width: 800px;
}

.control-panel .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.control-panel h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.control-panel p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.control-actions {
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

/* Centre the final CTA */
.trust-cta-card {
  max-width: 980px;
  margin: 0 auto;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.trust-cta-card > div {
  max-width: 800px;
}

.trust-cta-card .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.trust-cta-card h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.trust-cta-card p {
  text-align: center;
}

/* Keep detailed/internal content naturally left aligned */
.trust-card,
.access-grid article,
.conversation-flow,
.security-list {
  text-align: left;
}

@media (max-width: 640px) {
  .trust-intro-grid,
  .conversation-privacy-content,
  .security-content,
  .control-panel,
  .trust-cta-card {
    text-align: center;
  }

  .control-actions {
    width: 100%;
    flex-direction: column;
  }
}
