
/* Company Profile page - isolated styling */
.company-profile-page {
  background: #f5f7fa;
}

.company-profile-page .breadcrumbs {
  min-height: 330px;
}

.company-profile-page .profile-shell {
  padding: 70px 0 90px;
}

.profile-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 15%, rgba(40, 199, 111, .28), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(254, 185, 0, .24), transparent 26%),
    linear-gradient(135deg, #071b2c 0%, #0c3448 50%, #05131f 100%);
  box-shadow: 0 30px 70px rgba(3, 18, 30, .22);
}

.profile-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(255,255,255,.12) 0 1px, transparent 1px 100%);
  background-size: 44px 44px;
  opacity: .18;
}

.profile-hero-content {
  position: relative;
  z-index: 1;
  padding: 54px;
}

.profile-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #b9ffd3;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.profile-hero-title {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.05em;
}

.profile-hero-title span {
  color: #33d064;
}

.profile-hero-text {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.75;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.profile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.profile-btn:hover {
  transform: translateY(-2px);
}

.profile-btn.primary {
  color: #071b2c;
  background: #feb900;
  box-shadow: 0 16px 28px rgba(254,185,0,.25);
}

.profile-btn.primary:hover {
  color: #071b2c;
  background: #ffcf45;
}

.profile-btn.ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
}

.profile-btn.ghost:hover {
  color: #fff;
  background: rgba(255,255,255,.16);
}

.profile-cover-stack {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 42px 42px 42px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-cover-card {
  position: relative;
  width: min(350px, 90%);
  padding: 10px;
  border-radius: 26px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 25px 55px rgba(0,0,0,.25);
  transform: rotate(2deg);
}

.profile-cover-card img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.profile-floating-note {
  position: absolute;
  left: -28px;
  bottom: 68px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 270px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  color: #122536;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
  font-weight: 800;
}

.profile-floating-note i {
  color: #0aa850;
  font-size: 24px;
}

.profile-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.profile-stat {
  padding: 24px;
  border: 1px solid rgba(15, 34, 49, .08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(6, 26, 40, .06);
}

.profile-stat strong {
  display: block;
  color: #061b2b;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.profile-stat span {
  display: block;
  margin-top: 8px;
  color: #687684;
  font-size: 13px;
  line-height: 1.45;
}

.profile-section {
  margin-top: 70px;
}

.profile-section-title {
  margin-bottom: 28px;
  text-align: center;
}

.profile-section-title .kicker {
  display: inline-block;
  margin-bottom: 9px;
  color: #009b4a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.profile-section-title h3 {
  margin: 0;
  color: #0b2234;
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 900;
  letter-spacing: -.03em;
}

.profile-section-title p {
  max-width: 760px;
  margin: 12px auto 0;
  color: #637181;
  font-size: 16px;
  line-height: 1.7;
}

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

.profile-info-card,
.profile-capability-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 28px;
  border: 1px solid rgba(15, 34, 49, .08);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(7, 27, 44, .07);
}

.profile-info-card::after,
.profile-capability-card::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(254,185,0,.16);
}

.profile-info-card i,
.profile-capability-card i {
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #009b4a, #23c45e);
  font-size: 24px;
}

.profile-info-card h4,
.profile-capability-card h4 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: #10283a;
  font-size: 18px;
  font-weight: 900;
}

.profile-info-card p,
.profile-capability-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #647280;
  line-height: 1.65;
}

.profile-process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 24px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(7, 27, 44, .07);
}

.profile-step {
  position: relative;
  padding: 22px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f7fafc 0%, #eef3f7 100%);
  text-align: center;
}

.profile-step b {
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #071b2c;
  background: #feb900;
  font-size: 13px;
}

.profile-step span {
  display: block;
  color: #10283a;
  font-weight: 900;
  line-height: 1.35;
}

.profile-cert-card {
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(7, 27, 44, .09);
}

.profile-cert-image {
  height: 100%;
  min-height: 560px;
  padding: 28px;
  background: linear-gradient(135deg, #ecfff2 0%, #f9fbfd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-cert-image img {
  max-width: 100%;
  max-height: 620px;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(0,0,0,.12);
}

.profile-cert-body {
  padding: 44px;
}

.profile-cert-body h3 {
  margin: 0 0 16px;
  color: #0b2234;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.profile-cert-body p {
  color: #637181;
  line-height: 1.75;
}

.profile-cert-list {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}

.profile-cert-list div {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f5f8fa;
}

.profile-cert-list span {
  display: block;
  color: #71808e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.profile-cert-list strong {
  display: block;
  margin-top: 5px;
  color: #0b2234;
  font-size: 18px;
}

.profile-download-band {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(135deg, #071b2c 0%, #0d3c54 100%);
  box-shadow: 0 22px 55px rgba(7, 27, 44, .16);
}

.profile-download-band::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(254,185,0,.18);
}

.profile-download-band h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 900;
}

.profile-download-band p,
.profile-download-band .profile-actions {
  position: relative;
  z-index: 1;
}

.profile-download-band p {
  max-width: 650px;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}

@media (max-width: 1199px) {
  .profile-card-grid,
  .profile-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile-process { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .profile-cover-stack { padding: 0 40px 46px; }
}

@media (max-width: 767px) {
  .profile-hero-content { padding: 34px 26px; }
  .profile-hero-text { font-size: 16px; }
  .profile-card-grid,
  .profile-stat-grid,
  .profile-process { grid-template-columns: 1fr; }
  .profile-cover-stack { padding: 0 24px 34px; }
  .profile-floating-note { position: static; margin: 18px auto 0; }
  .profile-cert-image { min-height: auto; padding: 20px; }
  .profile-cert-body { padding: 28px; }
  .profile-download-band { padding: 30px; }
}
