.hero {
  background: linear-gradient(
    135deg,
    var(--dark-navy) 0,
    var(--navy) 60%,
    var(--blue) 100%
  );
  color: #fff;
  padding: 8rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(248, 168, 29, 0.08) 0,
    transparent 70%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: rgb(79 53 7 / 15%);
  border: 1px solid #f09a06;
  color: #f0a406;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.6);
}
.hero h1 span {
  color: var(--gold);
}
.hero p {
  font-size: 1.15rem;
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 500;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7);
}
.hero .cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.9), 0 0 16px rgba(0, 0, 0, 0.6);
}
.hero-stat .stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9), 0 0 12px rgba(0, 0, 0, 0.7);
}
/* =============================================
   WHY CHOOSE US — 6-CARD PREMIUM GRID
   ============================================= */
.why-section {
  background: #0a1422;
  padding: 5rem 2rem;
  overflow: hidden;
}
.why-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.why-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.why-section .why-section-header h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0;
}
.why-section .section-sub { color: rgba(255,255,255,0.55); }

/* Grid */
.wc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Base card */
.wc-card {
  background: #111d2e;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.06);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), box-shadow 0.32s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.wc-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 55px rgba(0,0,0,0.4);
}

/* Image header zone */
.wc-img-zone {
  position: relative;
  height: 160px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  flex-shrink: 0;
}
.wc-img-zone > * { position: relative; z-index: 2; }
.wc-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom right, rgba(10,20,34,0.75), rgba(10,20,34,0.5));
  transition: background 0.35s;
}
.wc-card:hover .wc-img-overlay {
  background: linear-gradient(to bottom right, rgba(10,20,34,0.6), rgba(10,20,34,0.35));
}
.wc-card:hover .wc-img-zone {
  background-size: 110%;
}
.wc-img-zone { transition: background-size 0.5s ease; }

/* Ghost number */
.wc-ghost {
  position: absolute !important;
  bottom: -8px; right: 12px;
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Chip tag */
.wc-chip {
  position: absolute !important;
  top: 14px; left: 14px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  background: rgba(200,169,110,0.2);
  color: #c8a96e;
  border: 1px solid rgba(200,169,110,0.4);
  backdrop-filter: blur(6px);
}
.wc-chip--blue   { background: rgba(110,143,200,0.2); color: #8ab0e8; border-color: rgba(110,143,200,0.4); }
.wc-chip--warm   { background: rgba(200,124,110,0.2); color: #e8a090; border-color: rgba(200,124,110,0.4); }
.wc-chip--teal   { background: rgba(110,200,184,0.15); color: #6ec8b8; border-color: rgba(110,200,184,0.4); }
.wc-chip--green  { background: rgba(110,200,124,0.15); color: #6ec87c; border-color: rgba(110,200,124,0.4); }
.wc-chip--purple { background: rgba(160,110,200,0.18); color: #c090e8; border-color: rgba(160,110,200,0.4); }

/* Card body */
.wc-body {
  padding: 1.5rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Icon wrap */
.wc-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(200,169,110,0.12);
  border: 1.5px solid rgba(200,169,110,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}
.wc-icon-wrap--blue   { background: rgba(110,143,200,0.12); border-color: rgba(110,143,200,0.28); }
.wc-icon-wrap--warm   { background: rgba(200,124,110,0.12); border-color: rgba(200,124,110,0.28); }
.wc-icon-wrap--teal   { background: rgba(110,200,184,0.10); border-color: rgba(110,200,184,0.28); }
.wc-icon-wrap--green  { background: rgba(110,200,124,0.10); border-color: rgba(110,200,124,0.28); }
.wc-icon-wrap--purple { background: rgba(160,110,200,0.12); border-color: rgba(160,110,200,0.28); }
.wc-card:hover .wc-icon-wrap        { background: rgba(200,169,110,0.22); }
.wc-card:hover .wc-icon-wrap--blue  { background: rgba(110,143,200,0.24); }
.wc-card:hover .wc-icon-wrap--warm  { background: rgba(200,124,110,0.24); }
.wc-card:hover .wc-icon-wrap--teal  { background: rgba(110,200,184,0.20); }
.wc-card:hover .wc-icon-wrap--green { background: rgba(110,200,124,0.20); }
.wc-card:hover .wc-icon-wrap--purple{ background: rgba(160,110,200,0.22); }

/* Title — Cormorant Garamond */
.wc-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.55rem;
  letter-spacing: 0.01em;
}

/* Description */
.wc-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 1.2rem;
}

/* Footer */
.wc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1rem;
  margin-top: auto;
}
.wc-stat {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.wc-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #c8a96e;
  line-height: 1;
  letter-spacing: -0.01em;
}
.wc-stat-label {
  font-size: 0.63rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Arrow button */
.wc-arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(200,169,110,0.12);
  border: 1.5px solid rgba(200,169,110,0.25);
  color: #c8a96e;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
  flex-shrink: 0;
}
.wc-arrow:hover { background: #c8a96e; color: #0a1422; border-color: #c8a96e; transform: rotate(45deg); }
.wc-arrow--blue   { background: rgba(110,143,200,0.12); border-color: rgba(110,143,200,0.3); color: #6e8fc8; }
.wc-arrow--blue:hover   { background: #6e8fc8; color: #0a1422; border-color: #6e8fc8; }
.wc-arrow--warm   { background: rgba(200,124,110,0.12); border-color: rgba(200,124,110,0.3); color: #c87c6e; }
.wc-arrow--warm:hover   { background: #c87c6e; color: #0a1422; border-color: #c87c6e; }
.wc-arrow--teal   { background: rgba(110,200,184,0.10); border-color: rgba(110,200,184,0.3); color: #6ec8b8; }
.wc-arrow--teal:hover   { background: #6ec8b8; color: #0a1422; border-color: #6ec8b8; }
.wc-arrow--green  { background: rgba(110,200,124,0.10); border-color: rgba(110,200,124,0.3); color: #6ec87c; }
.wc-arrow--green:hover  { background: #6ec87c; color: #0a1422; border-color: #6ec87c; }
.wc-arrow--purple { background: rgba(160,110,200,0.12); border-color: rgba(160,110,200,0.3); color: #a06ec8; }
.wc-arrow--purple:hover { background: #a06ec8; color: #0a1422; border-color: #a06ec8; }

/* Card hover border accent colors */
.wc-card[data-color="gold"]:hover   { border-color: rgba(200,169,110,0.35); }
.wc-card[data-color="blue"]:hover   { border-color: rgba(110,143,200,0.35); }
.wc-card[data-color="warm"]:hover   { border-color: rgba(200,124,110,0.35); }
.wc-card[data-color="teal"]:hover   { border-color: rgba(110,200,184,0.35); }
.wc-card[data-color="green"]:hover  { border-color: rgba(110,200,124,0.35); }
.wc-card[data-color="purple"]:hover { border-color: rgba(160,110,200,0.35); }

/* Responsive */
@media (max-width: 1024px) {
  .wc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .wc-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .why-section { padding: 3.5rem 1.2rem; }
  .why-section-header { margin-bottom: 2.5rem; }
  .wc-img-zone { height: 140px; }
  .wc-ghost { font-size: 4.5rem; }
}
/* =============================================
   5-VARIANT SERVICE CARDS
   ============================================= */

/* --- Shared grid --- */
.sv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sv-card--hero { grid-column: 1 / -1; }

/* --- Shared base card --- */
.sv-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
}
.sv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.sv-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.sv-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(200,169,110,0.15);
  border: 1.5px solid rgba(200,169,110,0.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}
.sv-icon-wrap--blue  { background: rgba(110,143,200,0.15); border-color: rgba(110,143,200,0.35); }
.sv-icon-wrap--warm  { background: rgba(200,124,110,0.15); border-color: rgba(200,124,110,0.35); }
.sv-icon-wrap--accent{ background: rgba(200,169,110,0.12); border-color: rgba(200,169,110,0.25); }
.sv-icon { font-size: 1.8rem; line-height: 1; }

.sv-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(200,169,110,0.18);
  letter-spacing: -0.03em;
  line-height: 1;
  user-select: none;
}
.sv-num--blue  { color: rgba(110,143,200,0.2); }
.sv-num--warm  { color: rgba(200,124,110,0.2); }
.sv-num--white { color: rgba(255,255,255,0.22); }

.sv-pill {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.22rem 0.8rem; border-radius: 20px;
  background: rgba(200,169,110,0.15);
  color: #c8a96e;
  border: 1px solid rgba(200,169,110,0.3);
  margin-bottom: 0.75rem;
  transition: background 0.25s, color 0.25s;
}
.sv-pill--blue   { background: rgba(110,143,200,0.12); color: #6e8fc8;  border-color: rgba(110,143,200,0.3); }
.sv-pill--warm   { background: rgba(200,124,110,0.12); color: #c87c6e;  border-color: rgba(200,124,110,0.3); }
.sv-pill--white  { background: rgba(255,255,255,0.15); color: #fff;      border-color: rgba(255,255,255,0.3); }
.sv-pill--accent { background: rgba(200,169,110,0.13); color: #c8a96e;  border-color: rgba(200,169,110,0.28); }

.sv-card h3 {
  font-size: 1.1rem; font-weight: 700;
  color: #fff; margin-bottom: 0.6rem; line-height: 1.35;
}
.sv-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75; margin-bottom: 1.1rem;
}
.sv-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #c8a96e; text-decoration: none;
  border-bottom: 1.5px solid rgba(200,169,110,0.35);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.sv-link:hover       { color: #e2c285; border-color: #e2c285; gap: 0.7rem; }
.sv-link--blue       { color: #6e8fc8;  border-color: rgba(110,143,200,0.35); }
.sv-link--blue:hover { color: #9ab8e8; border-color: #9ab8e8; }
.sv-link--warm       { color: #c87c6e;  border-color: rgba(200,124,110,0.35); }
.sv-link--warm:hover { color: #e2a090; border-color: #e2a090; }
.sv-link--white      { color: #fff; border-color: rgba(255,255,255,0.4); }
.sv-link--white:hover{ color: #c8a96e; border-color: #c8a96e; }
.sv-link--accent     { color: #c8a96e; border-color: rgba(200,169,110,0.35); }
.sv-link--accent:hover{ color: #e2c285; border-color: #e2c285; }

/* CARD 1 */
.sv-card--classic {
  background: #111d2e;
  border: 1.5px solid rgba(200,169,110,0.15);
  padding: 2rem 1.8rem;
}
.sv-card--classic:hover { border-color: rgba(200,169,110,0.4); }
.sv-card--classic:hover .sv-icon-wrap { background: rgba(200,169,110,0.25); }

/* CARD 2 */
.sv-card--stats {
  background: linear-gradient(135deg, #0d1a2e, #101e35);
  border: 1.5px solid rgba(110,143,200,0.18);
  padding: 2rem 1.8rem;
}
.sv-card--stats:hover { border-color: rgba(110,143,200,0.45); }
.sv-card--stats:hover .sv-icon-wrap--blue { background: rgba(110,143,200,0.28); }
.sv-stats-row {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 0.5rem; padding-top: 1rem;
}
.sv-stat {
  flex: 1; text-align: center;
  padding: 0 0.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.sv-stat:last-child { border-right: none; }
.sv-stat-num {
  font-size: 1.65rem; font-weight: 900;
  color: #6e8fc8; line-height: 1.1; transition: color 0.3s;
}
.sv-card--stats:hover .sv-stat-num { color: #9ab8e8; }
.sv-stat-label {
  font-size: 0.65rem; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem;
}

/* CARD 3 */
.sv-card--hero {
  background-size: cover; background-position: center;
  min-height: 320px; display: flex; align-items: flex-end;
  padding: 0; border: none;
}
.sv-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,12,24,0.95) 0%, rgba(5,12,24,0.6) 45%, rgba(5,12,24,0.15) 100%);
  transition: background 0.4s;
}
.sv-card--hero:hover .sv-hero-overlay {
  background: linear-gradient(to top, rgba(5,12,24,0.98) 0%, rgba(5,12,24,0.75) 55%, rgba(5,12,24,0.3) 100%);
}
.sv-hero-content {
  position: relative; z-index: 2;
  padding: 2.5rem 3rem;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 0.3rem; width: 100%; max-width: 700px;
}
.sv-hero-content h3 { font-size: 1.6rem; margin-bottom: 0.4rem; }

/* CARD 4 */
.sv-card--reveal {
  background: #111d2e;
  border: 1.5px solid rgba(200,124,110,0.18);
  display: flex; flex-direction: column; overflow: hidden;
}
.sv-reveal-img {
  height: 0; background-size: cover; background-position: center;
  transition: height 0.45s cubic-bezier(0.4,0,0.2,1); flex-shrink: 0;
}
.sv-card--reveal:hover .sv-reveal-img { height: 180px; }
.sv-reveal-body { padding: 1.8rem 1.8rem 2rem; flex: 1; }
.sv-card--reveal:hover { border-color: rgba(200,124,110,0.45); }
.sv-card--reveal:hover .sv-icon-wrap--warm { background: rgba(200,124,110,0.28); }

/* CARD 5 */
.sv-card--accent {
  background: linear-gradient(135deg, #0d1a2e, #0f1e30);
  border: 1.5px solid rgba(200,169,110,0.12);
  display: flex; flex-direction: row;
}
.sv-card--accent:hover { border-color: rgba(200,169,110,0.4); }
.sv-accent-bar {
  width: 5px;
  background: linear-gradient(180deg, #c8a96e, rgba(200,169,110,0.15));
  flex-shrink: 0; border-radius: 20px 0 0 20px;
  transition: width 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 16px rgba(200,169,110,0.4);
}
.sv-card--accent:hover .sv-accent-bar { width: 7px; box-shadow: 0 0 28px rgba(200,169,110,0.8); }
.sv-accent-body {
  padding: 1.8rem 1.8rem 2rem; flex: 1;
  display: flex; flex-direction: column;
}
.sv-accent-top {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem;
}
.sv-accent-thumb {
  width: 72px; height: 72px; border-radius: 12px;
  background-size: cover; background-position: center;
  border: 2px solid rgba(200,169,110,0.25);
  transition: transform 0.3s, border-color 0.3s; flex-shrink: 0;
}
.sv-card--accent:hover .sv-accent-thumb { transform: scale(1.06); border-color: rgba(200,169,110,0.5); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .sv-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-card--hero { grid-column: 1 / -1; }
  .sv-card--accent { grid-column: span 2; }
}
@media (max-width: 640px) {
  .sv-grid { grid-template-columns: 1fr; }
  .sv-card--hero, .sv-card--accent { grid-column: span 1; }
  .sv-hero-content { padding: 2rem 1.5rem; }
  .sv-hero-content h3 { font-size: 1.3rem; }
  .sv-card--accent { flex-direction: column; }
  .sv-accent-bar { width: 100%; height: 5px; border-radius: 20px 20px 0 0; background: linear-gradient(90deg, #c8a96e, rgba(200,169,110,0.15)); }
  .sv-card--accent:hover .sv-accent-bar { width: 100%; height: 7px; }
}
.about-strip {
  background: linear-gradient(
    135deg,
    var(--dark-navy) 0,
    #001a33 50%,
    var(--navy) 100%
  );
  color: #fff;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.about-strip::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(248, 168, 29, 0.08) 0,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(0, 113, 168, 0.08) 0,
      transparent 50%
    );
  animation: 15s ease-in-out infinite aboutGlow;
}
@keyframes aboutGlow {
  0%,
  100% {
    transform: translate(0, 0) rotate(0);
  }
  50% {
    transform: translate(5%, 5%) rotate(5deg);
  }
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-strip-left {
  position: relative;
}
.about-strip-left::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--blue));
  border-radius: 2px;
}
.about-strip h2 {
  color: var(--gold);
  text-align: left;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(248, 168, 29, 0.3);
}
.about-strip .divider {
  margin: 0.5rem 0 1.5rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.about-strip p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-size: 0.98rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.about-strip-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: linear-gradient(
    135deg,
    rgba(248, 168, 29, 0.08),
    rgba(0, 113, 168, 0.08)
  );
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(248, 168, 29, 0.2);
  border-left: 4px solid var(--gold);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.about-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(248, 168, 29, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.about-feature:hover::before {
  opacity: 1;
}
.about-feature:hover {
  transform: translateX(8px);
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(248, 168, 29, 0.2);
}
.about-feature .af-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(248, 168, 29, 0.2),
    rgba(0, 113, 168, 0.2)
  );
  border-radius: 10px;
  border: 1px solid rgba(248, 168, 29, 0.3);
}
.about-feature h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.about-feature p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.87rem;
  line-height: 1.6;
  margin: 0;
}
.about-btn {
  margin-top: 1rem;
  display: inline-block;
}
.process-section {
  background: var(--light-bg);
}
.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--blue));
  transform: translateX(-50%);
}
.process-step {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  gap: 1.2rem;
  position: relative;
}
.step-dot {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 1;
  justify-self: center;
}
.step-body {
  background: var(--white);
  border-radius: 10px;
  padding: 3rem 6rem;
  box-shadow: 0 2px 14px rgba(0, 61, 115, 0.09);
}
.step-body h3 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.step-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--dark-navy);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  margin-right: 0.4rem;
  vertical-align: middle;
}
.step-left .step-body {
  border-right: 4px solid var(--gold);
  text-align: right;
}
.step-right .step-body {
  border-left: 4px solid var(--gold);
  text-align: left;
}
@media (max-width: 700px) {
  .process-timeline::before {
    left: 28px;
    transform: none;
  }
  .process-step,
  .step-left,
  .step-right {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 1rem;
  }
  .step-left .step-body,
  .step-right .step-body {
    border-left: 4px solid var(--gold);
    border-right: none;
    text-align: left;
    order: 2;
  }
  .step-dot {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
    order: 1;
  }
  .step-empty {
    display: none;
  }
}
.industries-section {
  background: linear-gradient(180deg, var(--dark-navy) 0, #001a33 100%);
  position: relative;
  overflow: hidden;
}
.industries-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at 20% 30%,
      rgba(248, 168, 29, 0.08) 0,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 70%,
      rgba(0, 113, 168, 0.1) 0,
      transparent 50%
    );
}
.industries-section h2 {
  color: var(--gold);
  position: relative;
}
.industries-section .section-sub {
  color: var(--silver);
  position: relative;
}
.industries-section .divider {
  position: relative;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.industries-grid .industry-card:first-child,
.industries-grid .industry-card:nth-child(2),
.industries-grid .industry-card:nth-child(3),
.industries-grid .industry-card:nth-child(4),
.industries-grid .industry-card:nth-child(5) {
  grid-column: span 1;
}
.industry-card {
  background: rgba(0, 61, 115, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(248, 168, 29, 0.2);
  border-radius: 20px;
  padding: 2.8rem 2.2rem;
  position: relative;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.industry-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    var(--gold) 0,
    var(--blue) 50%,
    var(--gold) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}
.industry-card:hover::before {
  opacity: 1;
}
.industry-card::after {
  content: "";
  position: absolute;
  top: -100%;
  right: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(
    circle at center,
    rgba(248, 168, 29, 0.2) 0,
    transparent 60%
  );
  opacity: 0;
  transition: 0.6s;
  pointer-events: none;
}
.industry-card:hover::after {
  opacity: 1;
  top: -50%;
  right: -50%;
}
.industry-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(248, 168, 29, 0.3),
    0 0 30px rgba(248, 168, 29, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(248, 168, 29, 0.5);
  background: rgba(0, 61, 115, 0.25);
}
.ind-icon-wrap {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(248, 168, 29, 0.15),
    rgba(0, 113, 168, 0.15)
  );
  border-radius: 50%;
  border: 2px solid rgba(248, 168, 29, 0.3);
  filter: drop-shadow(0 4px 15px rgba(248, 168, 29, 0.4));
  position: relative;
  z-index: 1;
}
.industry-card h3 {
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.industry-card > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industries-grid .industry-card:nth-child(5) {
    grid-column: 1/-1;
    max-width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 700px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .industries-grid .industry-card:nth-child(5) {
    grid-column: span 1;
    max-width: 100%;
  }
  .industry-card {
    min-height: auto;
  }
}
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0, #e09610 100%);
  padding: 4rem 2rem;
  text-align: center;
}
.cta-banner h2 {
  color: var(--dark-navy);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.cta-banner p {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 1.8rem;
}
@media (max-width: 900px) {
  .about-strip-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.ind-list {
  list-style: none;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
  position: relative;
  z-index: 1;
}
.ind-list li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
  transition: 0.2s;
}
.ind-list li:hover {
  color: var(--gold);
  padding-left: 1.8rem;
}
.ind-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  transition: 0.2s;
}
.ind-list li:hover::before {
  transform: translateX(3px);
  text-shadow: 0 0 8px rgba(248, 168, 29, 0.8);
}
@media (max-width: 480px) {
  .hero {
    padding: 4rem 1.5rem;
  }
  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .hero .cta-group {
    flex-direction: column;
    gap: 0.8rem;
  }
  .hero .cta-group .btn {
    width: 100%;
    text-align: center;
  }
  .hero-stats {
    gap: 1.5rem;
    flex-direction: column;
    margin-top: 2.5rem;
  }
  .hero-stat .stat-num {
    font-size: 1.6rem;
  }
  .hero-stat .stat-label {
    font-size: 0.75rem;
  }
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .why-card {
    padding: 1.5rem 1.2rem;
  }
  .why-icon {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-card {
    padding: 2rem 1.5rem;
  }
  .service-card .icon {
    width: 60px;
    height: 60px;
    font-size: 2.3rem;
  }
  .service-card h3 {
    font-size: 1rem;
  }
  .service-card p {
    font-size: 0.85rem;
  }
  .about-strip {
    padding: 4rem 1.5rem;
  }
  .about-strip-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-strip-left::before {
    display: none;
  }
  .about-strip h2 {
    font-size: 1.6rem;
  }
  .about-strip p {
    font-size: 0.9rem;
  }
  .about-feature {
    padding: 1.2rem 1rem;
    gap: 1rem;
  }
  .about-feature .af-icon {
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
  }
  .about-feature h4 {
    font-size: 0.9rem;
  }
  .about-feature p {
    font-size: 0.82rem;
  }
  .process-timeline {
    gap: 1.5rem;
  }
  .step-body {
    padding: 1.5rem 1.2rem;
  }
  .step-body h3 {
    font-size: 0.95rem;
  }
  .step-body p {
    font-size: 0.82rem;
  }
  .industries-grid {
    gap: 1.5rem;
  }
  .industry-card {
    padding: 2rem 1.5rem;
    min-height: auto;
  }
  .ind-icon-wrap {
    width: 65px;
    height: 65px;
    font-size: 2.8rem;
  }
  .industry-card h3 {
    font-size: 1rem;
  }
  .industry-card > p {
    font-size: 0.82rem;
  }
  .ind-list li {
    font-size: 0.78rem;
  }
  .cta-banner {
    padding: 3rem 1.5rem;
  }
  .cta-banner h2 {
    font-size: 1.5rem;
  }
  .cta-banner p {
    font-size: 0.9rem;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero {
    padding: 5rem 2rem;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-stats {
    gap: 2rem;
  }
  .hero-stat .stat-num {
    font-size: 1.8rem;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
  }
  .why-card {
    padding: 1.8rem 1.4rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .service-card {
    padding: 2.2rem 1.8rem;
  }
  .about-strip {
    padding: 4.5rem 2rem;
  }
  .about-strip-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-strip h2 {
    font-size: 1.8rem;
  }
  .step-body {
    padding: 2rem;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .industries-grid .industry-card:nth-child(5) {
    grid-column: 1/-1;
    max-width: 60%;
    margin: 0 auto;
  }
  .cta-banner {
    padding: 3.5rem 2rem;
  }
  .cta-banner h2 {
    font-size: 1.75rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    padding: 6rem 3rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-stats {
    gap: 2.5rem;
  }
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
  .about-strip {
    padding: 5rem 2.5rem;
  }
  .about-strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
  .about-strip h2 {
    font-size: 2rem;
  }
  .step-body {
    padding: 2.5rem 4rem;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
  .industries-grid .industry-card:nth-child(5) {
    grid-column: 1/-1;
    max-width: 50%;
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {
  .hero {
    padding: 8rem 4rem;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .services-grid,
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .industries-grid .industry-card:nth-child(5) {
    grid-column: auto;
    max-width: 100%;
  }
}
@media (min-width: 1441px) {
  .hero-content {
    max-width: 850px;
  }
  .hero h1 {
    font-size: 3.2rem;
  }
  .why-grid {
    max-width: 1300px;
  }
  .services-grid {
    max-width: 1300px;
    grid-template-columns: repeat(3, 1fr);
  }
  .about-strip-inner {
    max-width: 1300px;
  }
  .process-timeline {
    max-width: 1000px;
  }
  .industries-grid {
    max-width: 1300px;
  }
}
