/* ============================================================
   SECURITY PAGE STYLES
   ============================================================ */

/* --- SECTION: Compliance Standards (4 cards with bullets) --- */
.sec-standards {
  padding: 80px 0;
  background: white;
}
.sec-standards__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.sec-standards__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.sec-standards__eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: var(--fs-tiny);
  font-weight: var(--fw-semi);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  background: rgba(59, 191, 178, 0.08);
  border: 1px solid rgba(59, 191, 178, 0.2);
  margin-bottom: 16px;
}
.sec-standards__headline {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.sec-standards__subhead {
  font-size: var(--fs-body);
  color: var(--color-gray);
  line-height: var(--lh-body);
}

.sec-standards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 840px;
  margin: 0 auto;
}

.sec-standards__card {
  position: relative;
  padding: 32px 24px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-default);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sec-standards__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-teal);
}

.sec-standards__coral-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
  background: #FF7A6B;
  white-space: nowrap;
}

.sec-standards__icon-wrap svg {
  width: 24px;
  height: 24px;
  display: block;
  margin: auto;
  color: var(--color-teal);
}
.sec-standards__card-headline {
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  margin-bottom: 8px;
}
.sec-standards__card-body {
  font-size: var(--fs-small);
  color: var(--color-gray);
  line-height: var(--lh-body);
  margin-bottom: 16px;
}

.sec-standards__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: left;
  margin-top: auto;
}
.sec-standards__bullet {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.5;
}

/* --- SECTION: Data Protection (3-column visual) --- */
.sec-protection {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    #F8F9FC 0%,
    #EDF8F7 15%,
    #E8F5F3 40%,
    #EDF8F7 70%,
    #F2FAF9 85%,
    #F8F9FC 100%
  );
}
.sec-protection__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.sec-protection__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.sec-protection__eyebrow--coral {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: var(--fs-tiny);
  font-weight: var(--fw-semi);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF7A6B;
  background: rgba(255, 122, 107, 0.08);
  border: 1px solid rgba(255, 122, 107, 0.2);
  margin-bottom: 16px;
}
.sec-protection__headline {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  line-height: 1.2;
}

.sec-protection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.sec-protection__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sec-protection__img-wrap {
  margin-bottom: 24px;
  max-width: 240px;
}
.sec-protection__img {
  width: 100%;
  height: auto;
  display: block;
}
.sec-protection__icon-large {
  margin-bottom: 24px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 191, 178, 0.08);
  border: 2px solid rgba(59, 191, 178, 0.2);
  border-radius: 24px;
}
.sec-protection__col-heading {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  margin-bottom: 8px;
}
.sec-protection__col-body {
  font-size: var(--fs-body);
  color: var(--color-gray);
  line-height: var(--lh-body);
  max-width: 320px;
}

/* --- SECTION: Dedicated Server Deep Dive (dark navy) --- */
.sec-dedicated {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    #0F2238 0%,
    #142D4A 20%,
    #18395F 50%,
    #142D4A 80%,
    #0F2238 100%
  );
  overflow: hidden;
}
.sec-dedicated__ring {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 240px;
  opacity: 0.06;
  pointer-events: none;
}
.sec-dedicated__dots {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 200px;
  opacity: 0.08;
  pointer-events: none;
}
.sec-dedicated__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.sec-dedicated__eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: var(--fs-tiny);
  font-weight: var(--fw-semi);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF7A6B;
  background: rgba(255, 122, 107, 0.1);
  border: 1px solid rgba(255, 122, 107, 0.2);
  margin-bottom: 16px;
}
.sec-dedicated__headline {
  font-size: 44px;
  font-weight: var(--fw-bold);
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}
.sec-dedicated__body {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.82);
  line-height: var(--lh-body);
  margin-bottom: 32px;
}
.sec-dedicated__body p {
  margin-bottom: 16px;
}
.sec-dedicated__body p:last-child {
  margin-bottom: 0;
}

.sec-dedicated__features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.sec-dedicated__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.sec-dedicated__cta-wrap {
  margin-top: 8px;
}
.sec-dedicated__cta-btn {
  display: inline-block;
  background: white;
  color: #18395F;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.sec-dedicated__cta-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.sec-dedicated__illustration {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec-dedicated__shield-img {
  width: 220px;
  position: relative;
  z-index: 2;
}
.sec-dedicated__lock-img {
  width: 100px;
  position: absolute;
  bottom: 30px;
  right: 20px;
  z-index: 3;
}
.sec-dedicated__deco-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  opacity: 0.08;
  z-index: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .sec-dedicated__shield-img {
    animation: featureFloat 9s ease-in-out infinite alternate;
  }
  .sec-dedicated__lock-img {
    animation: featureFloat 7s ease-in-out infinite alternate-reverse;
  }
  .sec-dedicated__deco-ring {
    animation: ringPulse 5s ease-in-out infinite;
  }
}

/* --- SECTION: BAA & Compliance Documentation --- */
.sec-baa {
  padding: 80px 0;
  background: white;
}
.sec-baa__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.sec-baa__headline {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.sec-baa__body {
  font-size: var(--fs-body);
  color: var(--color-gray);
  line-height: var(--lh-body);
  margin-bottom: 32px;
}
.sec-baa__callout {
  background: rgba(59, 191, 178, 0.06);
  border-left: 4px solid var(--color-teal);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin-bottom: 32px;
  text-align: left;
}
.sec-baa__callout p {
  font-size: var(--fs-body);
  color: var(--color-dark);
  line-height: var(--lh-body);
  font-style: italic;
  margin: 0;
}
.sec-baa__cta {
  display: inline-block;
  padding: 16px 36px;
  background: var(--color-teal);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.sec-baa__cta:hover {
  background: #2fa898;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(59, 191, 178, 0.3);
}

/* --- SECTION: Security FAQ (accordion) --- */
.sec-faq {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    #F8F9FC 0%,
    #F5F6FA 30%,
    #F2F3F8 50%,
    #F5F6FA 70%,
    #F8F9FC 100%
  );
}
.sec-faq__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.sec-faq__header {
  text-align: center;
  margin-bottom: 48px;
}
.sec-faq__eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: var(--fs-tiny);
  font-weight: var(--fw-semi);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  background: rgba(59, 191, 178, 0.08);
  border: 1px solid rgba(59, 191, 178, 0.2);
  margin-bottom: 16px;
}
.sec-faq__headline {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  line-height: 1.2;
}

.sec-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sec-faq__item {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.sec-faq__item:hover {
  border-color: var(--color-teal);
}
.sec-faq__item[open] {
  border-color: var(--color-teal);
  box-shadow: 0 4px 16px rgba(59, 191, 178, 0.08);
}

.sec-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: var(--fs-body);
  font-weight: var(--fw-semi);
  color: var(--color-dark);
  line-height: 1.4;
  list-style: none;
  user-select: none;
}
.sec-faq__question::-webkit-details-marker {
  display: none;
}
.sec-faq__question::marker {
  display: none;
  content: "";
}

.sec-faq__chevron {
  width: 20px;
  height: 20px;
  color: var(--color-gray);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.sec-faq__item[open] .sec-faq__chevron {
  transform: rotate(180deg);
  color: var(--color-teal);
}

.sec-faq__answer {
  padding: 0 24px 20px;
}
.sec-faq__answer p {
  font-size: var(--fs-body);
  color: var(--color-gray);
  line-height: var(--lh-body);
  margin: 0;
}

/* --- HERO SPLIT VARIANT for security hero --- */
.inner-hero__inner--split {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.inner-hero__content--left {
  text-align: left;
}
.inner-hero__headline--left {
  text-align: left;
}
.inner-hero__subheadline--left {
  text-align: left;
  margin-left: 0;
}
.inner-hero__cta-group--left {
  justify-content: flex-start;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .sec-standards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sec-dedicated__inner {
    grid-template-columns: 1fr;
  }
  .sec-dedicated__illustration {
    display: none;
  }
  .sec-protection__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .inner-hero__inner--split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .inner-hero__content--left {
    text-align: center;
  }
  .inner-hero__headline--left {
    text-align: center;
  }
  .inner-hero__subheadline--left {
    text-align: center;
  }
  .inner-hero__cta-group--left {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .sec-standards__grid {
    grid-template-columns: 1fr;
  }
  .sec-protection__grid {
    grid-template-columns: 1fr;
  }
  .sec-protection__col {
    max-width: 400px;
    margin: 0 auto;
  }
  .sec-dedicated__headline {
    font-size: 28px;
  }
  .sec-dedicated__cta-wrap {
    text-align: center;
  }
  .sec-faq__question {
    padding: 16px 20px;
    font-size: 16px;
  }
  .sec-faq__answer {
    padding: 0 20px 16px;
  }
  .sec-dedicated__ring,
  .sec-dedicated__dots {
    display: none;
  }
}
