/* ===== ENTERPRISE SECURITY EXCELLENCE SECTION ===== */
.sec-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 85px;
  /* OLD flat/gradient backgrounds:
  background: linear-gradient(170deg, #060b06 0%, #0a0f0a 30%, #0d120d 60%, #0a0f0a 100%);
  background: #0C1E1B;
  */
  background: #0C1E1B;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Layer 1: Diagonal gradient overlay */
.sec-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(1, 89, 65, 0.4) 0%,
    rgba(2, 112, 79, 0.35) 30%,
    rgba(26, 158, 110, 0.25) 60%,
    rgba(62, 194, 138, 0.2) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Layer 2: Grid pattern */
.sec-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(62, 194, 138, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 194, 138, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Layer 3: Center glow */
.sec-hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(26, 158, 110, 0.25) 0%,
    rgba(1, 89, 65, 0.12) 40%,
    transparent 70%
  );
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

/* Layer 4: Top-right accent glow */
.sec-hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(62, 194, 138, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
}

.sec-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
  text-align: center;
  width: 100%;
}

.sec-hero-title {
  font-size: 68px;
  font-weight: 800;
  color: #f0f0f0;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.sec-hero-subtitle {
  font-size: 17px;
  color: rgba(240, 240, 240, 0.7);
  font-weight: 500;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 64px;
}

/* ---- Metrics Cards Row ---- */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.metric-card {
  background: linear-gradient(
    160deg,
    rgba(16, 26, 16, 0.85) 0%,
    rgba(10, 18, 10, 0.95) 100%
  );
  border: 1px solid rgba(126, 207, 60, 0.1);
  border-radius: 16px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.metric-card:hover {
  border-color: rgba(126, 207, 60, 0.22);
  box-shadow: 0 0 28px rgba(126, 207, 60, 0.06);
  transform: translateY(-4px);
}

.metric-value {
  font-size: 42px;
  font-weight: 800;
  color: #EBEB41;
  letter-spacing: -0.02em;
  line-height: 1;
}

.metric-label {
  font-size: 15px;
  color: rgba(240, 240, 240, 0.6);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

/* ===== FULL SECURITY COVERAGE MATRIX ===== */
.coverage-section {
  position: relative;
  /* OLD: background: linear-gradient(180deg, #0a0f0a 0%, #0c130c 50%, #0a0f0a 100%); */
  background: #0C1E1B;
  padding: 100px 0 120px;
  overflow: hidden;
}

/* Gradient overlay for coverage */
.coverage-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(1, 89, 65, 0.35) 0%,
    rgba(2, 112, 79, 0.25) 50%,
    rgba(1, 89, 65, 0.35) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.coverage-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(62, 194, 138, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 194, 138, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.coverage-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Light card container */
.coverage-container {
  background: #f5f6f8;
  border-radius: 24px;
  padding: 64px 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.coverage-title {
  font-size: 40px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 20px;
}

.coverage-subtitle {
  font-size: 16px;
  color: #555;
  font-weight: 450;
  line-height: 1.75;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

/* ---- Security Grid ---- */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ---- Coverage Card ---- */
.coverage-card {
  background: #fff;
  border: 1px solid #e8e9ec;
  border-radius: 14px;
  padding: 28px 28px 32px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.coverage-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.coverage-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(235, 235, 65, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.coverage-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

/* ---- Checklist ---- */
.coverage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.coverage-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: #444;
  line-height: 1.55;
  font-weight: 450;
}

.coverage-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23198754' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ===== OUR EXPERT TEAMS (inside coverage container) ===== */
.teams-block {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid #e0e1e5;
}

.teams-title {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.teams-subtitle {
  font-size: 15px;
  color: #777;
  font-weight: 450;
  text-align: center;
  margin-bottom: 40px;
}

/* ---- Team Card ---- */
.team-card {
  background: linear-gradient(
    155deg,
    #0c1a16 0%,
    #0a1410 40%,
    #081210 100%
  );
  border: 1px solid rgba(93, 224, 192, 0.12);
  border-radius: 18px;
  padding: 36px 36px 40px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.team-card:last-child {
  margin-bottom: 0;
}

.team-card:hover {
  border-color: rgba(93, 224, 192, 0.25);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.15);
}

.team-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.team-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(93, 224, 192, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.team-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #5de0c0;
  letter-spacing: -0.01em;
}

/* ---- Arrow bullet list ---- */
.team-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-weight: 450;
}

.team-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  top: 0;
  color: #5de0c0;
  font-weight: 600;
  font-size: 15px;
}

/* ===== TRUST & COMPLIANCE ===== */
.trust-block {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid #e0e1e5;
  text-align: center;
}

.trust-heading {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.trust-heading--spaced {
  margin-top: 48px;
}

/* Trusted By pills */
.trust-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-pill {
  background: #edeef1;
  color: #333;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  letter-spacing: 0.01em;
}

/* Compliance pills */
.compliance-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.compliance-pill {
  background: #edeef1;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  letter-spacing: 0.01em;
}

/* Global Markets */
.global-markets {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.market-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.market-flag {
  display: flex;
  align-items: center;
  line-height: 1;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.market-name {
  font-size: 15px;
  font-weight: 600;
  color: #2a7de1;
  letter-spacing: 0.01em;
}

/* ===== FINAL CTA CARD ===== */
.cta-card {
  margin-top: 64px;
  background: linear-gradient(
    155deg,
    #0c1e1b 0%,
    #0a1a16 40%,
    #071410 100%
  );
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.cta-card-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.25;
}

.cta-card-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 450;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-card-btn {
  display: inline-block;
  background: #EBEB41;
  color: #0C1E1B;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 40px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
  box-shadow: 0 0 20px rgba(235, 235, 65, 0.15);
}

.cta-card-btn:hover {
  background: #facc15;
  box-shadow: 0 0 32px rgba(235, 235, 65, 0.3);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE: LARGE TABLETS (<=1200px) ===== */
@media (max-width: 1200px) {
  .sec-hero-title {
    font-size: 46px;
  }

  .coverage-title {
    font-size: 34px;
  }

  .coverage-container {
    padding: 48px 40px;
  }
}

/* ===== RESPONSIVE: TABLETS (<=1024px) ===== */
@media (max-width: 1024px) {
  .sec-hero-inner {
    padding: 60px 24px;
  }

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

  .coverage-section {
    padding: 80px 24px;
  }

  .coverage-container {
    padding: 40px 32px;
  }
}

/* ===== RESPONSIVE: SMALL TABLETS (<=768px) ===== */
@media (max-width: 768px) {
  .sec-hero {
    padding-top: 70px;
  }

  .sec-hero-title {
    font-size: 36px;
  }

  .sec-hero-subtitle {
    font-size: 15px;
    margin-bottom: 48px;
  }

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

  .metric-card {
    padding: 32px 20px;
  }

  .metric-value {
    font-size: 34px;
  }

  .coverage-section {
    padding: 60px 16px;
  }

  .coverage-container {
    padding: 32px 20px;
    border-radius: 18px;
  }

  .coverage-title {
    font-size: 28px;
  }

  .coverage-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .teams-block {
    margin-top: 48px;
    padding-top: 40px;
  }

  .teams-title {
    font-size: 26px;
  }

  .team-card {
    padding: 28px 22px 32px;
  }

  .trust-block {
    margin-top: 48px;
    padding-top: 40px;
  }

  .trust-heading {
    font-size: 20px;
  }

  .global-markets {
    gap: 20px;
  }

  .cta-card {
    padding: 40px 28px;
  }

  .cta-card-title {
    font-size: 26px;
  }

  .cta-card-subtitle {
    font-size: 14px;
  }
}

/* ===== RESPONSIVE: MOBILE (<=480px) ===== */
@media (max-width: 480px) {
  .sec-hero-inner {
    padding: 48px 16px;
  }

  .sec-hero-title {
    font-size: 28px;
  }

  .sec-hero-subtitle {
    font-size: 14px;
    margin-bottom: 36px;
  }

  .metrics-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .metric-card {
    padding: 28px 20px;
  }

  .metric-value {
    font-size: 32px;
  }

  .coverage-section {
    padding: 40px 12px;
  }

  .coverage-container {
    padding: 24px 16px;
    border-radius: 14px;
  }

  .coverage-title {
    font-size: 24px;
  }

  .coverage-card {
    padding: 22px 20px 26px;
  }

  .teams-title {
    font-size: 22px;
  }

  .teams-subtitle {
    font-size: 13px;
  }

  .team-card {
    padding: 24px 18px 28px;
    border-radius: 14px;
  }

  .team-card-title {
    font-size: 18px;
  }

  .team-list li {
    font-size: 13.5px;
  }

  .trust-block {
    margin-top: 40px;
    padding-top: 32px;
  }

  .trust-heading {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .trust-heading--spaced {
    margin-top: 36px;
  }

  .trust-pill {
    font-size: 13px;
    padding: 8px 18px;
  }

  .compliance-pill {
    font-size: 12px;
    padding: 8px 16px;
  }

  .global-markets {
    gap: 16px;
    margin-top: 36px;
  }

  .market-flag svg {
    width: 24px;
    height: 17px;
  }

  .market-name {
    font-size: 13px;
  }

  .cta-card {
    margin-top: 48px;
    padding: 32px 20px;
    border-radius: 16px;
  }

  .cta-card-title {
    font-size: 22px;
  }

  .cta-card-subtitle {
    font-size: 13px;
  }

  .cta-card-btn {
    font-size: 14px;
    padding: 12px 32px;
  }
}
