:root {
  --primary: #0f4c81;
  --secondary: #2e8bc0;
  --accent: #00b894;
  --dark: #1f2937;
  --light: #f8fafc;
  --white: #ffffff;
  --text: #4b5563;
  --border: #e5e7eb;
  --shadow: 0 24px 70px rgba(15, 76, 129, .14);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.7;
  background: var(--white);
}
h1, h2, h3, h4, .brand { color: var(--dark); font-family: Poppins, Inter, sans-serif; letter-spacing: 0; }
h1 { font-size: clamp(2.45rem, 5vw, 4.75rem); line-height: 1.06; font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3vw, 3rem); line-height: 1.16; font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 700; }
a { color: inherit; text-decoration: none; transition: .25s ease; }
img { max-width: 100%; display: block; }

.top-bar { background: var(--dark); color: #d1d5db; font-size: .88rem; padding: .55rem 0; }
.top-meta, .top-social { display: flex; gap: 1.25rem; align-items: center; }
.top-meta i, .top-social a:hover { color: var(--accent); }
.site-header { position: sticky; top: 0; z-index: 1000; box-shadow: 0 10px 35px rgba(31, 41, 55, .08); }
.navbar { padding: 1rem 0; }
.brand { display: inline-flex; gap: .75rem; align-items: center; }
.brand-mark {
  width: 46px; height: 46px; border-radius: var(--radius);
  display: grid; place-items: center; color: white; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.brand small { display: block; color: var(--secondary); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.nav-link { color: var(--dark); font-size: .94rem; font-weight: 600; }
.nav-link i { color: var(--secondary); margin-right: .25rem; }
.nav-link:hover { color: var(--primary); }
.mega-menu { width: 100%; border: 0; border-radius: 0; padding: 1.25rem 0; box-shadow: var(--shadow); }
.mega-link { display: flex; gap: .75rem; align-items: center; padding: .9rem; border-radius: var(--radius); background: var(--light); font-weight: 700; }
.mega-link i { color: var(--accent); }
.mega-link:hover { transform: translateY(-2px); color: var(--primary); background: #eef8ff; }

.btn { border-radius: var(--radius); font-weight: 700; padding: .8rem 1.25rem; position: relative; overflow: hidden; }
.btn-gradient { color: white; border: 0; background: linear-gradient(135deg, var(--primary), var(--secondary) 65%, var(--accent)); box-shadow: 0 14px 30px rgba(15, 76, 129, .22); }
.btn-gradient:hover { color: white; transform: translateY(-2px); }
.btn-outline-premium { border: 1px solid rgba(15, 76, 129, .25); color: var(--primary); background: white; }
.btn-light-premium { background: white; color: var(--primary); border: 0; }
.ripple { position: absolute; border-radius: 50%; transform: scale(0); animation: ripple .6s linear; background: rgba(255,255,255,.55); }
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

.hero { padding: 7.25rem 0 5rem; background: radial-gradient(circle at 80% 10%, rgba(46,139,192,.16), transparent 35%), linear-gradient(180deg, #fff, var(--light)); overflow: hidden; }
.hero p, .page-hero p { font-size: 1.12rem; max-width: 670px; }
.eyebrow { display: inline-flex; color: var(--accent); font-weight: 800; text-transform: uppercase; font-size: .78rem; letter-spacing: .08em; margin-bottom: .8rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 2rem 0; }
.hero-trust { display: flex; gap: 1.1rem; flex-wrap: wrap; color: var(--dark); }
.hero-trust span { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: .6rem .85rem; }
.hero-image { position: relative; }
.hero-image img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; }
.glass-card { position: absolute; left: 2rem; bottom: 2rem; display: flex; gap: .75rem; align-items: center; padding: 1rem 1.2rem; color: white; border-radius: var(--radius); background: rgba(15,76,129,.72); backdrop-filter: blur(14px); box-shadow: var(--shadow); font-weight: 700; }

.section { padding: 5.5rem 0; }
.soft-bg { background: var(--light); }
.section-heading { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.page-hero { padding: 5.5rem 0; color: white; background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.page-hero h1, .page-hero .eyebrow, .page-hero p { color: white; }
.info-card, .feature-card, .service-card, .testimonial-card, .blog-card, .contact-panel, .form-card, .mini-card {
  border: 1px solid var(--border); border-radius: var(--radius); background: white; box-shadow: 0 12px 35px rgba(31,41,55,.06);
}
.info-card, .feature-card, .testimonial-card, .blog-card, .contact-panel, .form-card { padding: 1.5rem; }
.feature-card { height: 100%; transition: .25s ease; }
.feature-card:hover, .service-card:hover, .blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-card i { width: 48px; height: 48px; display: grid; place-items: center; border-radius: var(--radius); color: white; background: linear-gradient(135deg, var(--secondary), var(--accent)); margin-bottom: 1rem; }

.service-card { height: 100%; overflow: hidden; transition: .25s ease; }
.service-card img { width: 100%; height: 185px; object-fit: cover; }
.service-card > div { padding: 1.35rem; }
.service-card i { color: var(--accent); }
.service-card h2, .service-card h3 { margin-top: .55rem; }
.service-card p { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.service-card a { color: var(--primary); font-weight: 800; }
.service-card-large img { height: 230px; }

.split-band, .cta-band { color: white; background: linear-gradient(135deg, var(--primary), #123a5f); }
.split-band h2, .split-band .eyebrow, .split-band p, .cta-band h2, .cta-band .eyebrow { color: white; }
.program-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.program-tile { min-height: 120px; display: grid; place-items: center; padding: 1rem; border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius); color: white; background: rgba(255,255,255,.1); backdrop-filter: blur(12px); font-weight: 800; text-align: center; }
.benefit-list { display: grid; gap: 1rem; }
.benefit-list div { display: flex; gap: .8rem; align-items: center; padding: 1rem; border-radius: var(--radius); background: var(--light); color: var(--dark); font-weight: 700; }
.benefit-list i, .mini-card i { color: var(--accent); }
.industry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
.industry-grid span, .mini-card { padding: 1rem; text-align: center; font-weight: 800; color: var(--dark); }
.process-line { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.process-step { padding: 1.3rem; border-radius: var(--radius); background: var(--light); text-align: center; }
.process-step span { width: 42px; height: 42px; display: grid; place-items: center; margin: 0 auto 1rem; border-radius: 50%; color: white; background: var(--primary); font-weight: 800; }
.stats { padding: 4rem 0; background: var(--dark); color: white; }
.stat-card { text-align: center; }
.stat-card strong { display: block; color: white; font: 800 3rem Poppins, sans-serif; }
.testimonial-card { min-height: 255px; }
.testimonial-card > i { color: var(--accent); font-size: 2rem; }
.swiper-pagination { position: static; margin-top: 1.5rem; }
.blog-card span { color: var(--accent); font-weight: 800; }
.share { display: flex; gap: .8rem; color: var(--primary); margin-top: 1rem; }
.recent-post { display: block; padding: .75rem 0; border-bottom: 1px solid var(--border); color: var(--primary); font-weight: 700; }
.cta-band { padding: 4rem 0; }

.detail-image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 2rem; }
.premium-accordion .accordion-item { border-color: var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: .8rem; }
.contact-panel { position: sticky; top: 125px; }
.contact-panel iframe { width: 100%; height: 260px; border: 0; border-radius: var(--radius); margin-top: 1rem; }
.form-card label { color: var(--dark); font-weight: 700; margin-bottom: .4rem; }
.form-control, .form-select { border-radius: var(--radius); padding: .85rem 1rem; border-color: var(--border); }
.disclaimer { border-left: 4px solid var(--accent); background: var(--light); padding: 1.25rem; border-radius: var(--radius); }
.value-stack { display: grid; gap: 1rem; }
.value-stack div, .timeline div { padding: 1.25rem; border-radius: var(--radius); background: var(--light); }
.timeline { display: grid; gap: 1rem; }
.timeline span { color: var(--primary); font-weight: 800; }
.narrow { max-width: 860px; }

.footer { background: #111827; color: #d1d5db; padding: 4rem 0 1.25rem; }
.footer h3 { color: white; font-size: 1rem; margin-bottom: 1rem; }
.footer a { display: block; color: #d1d5db; margin: .45rem 0; }
.footer a:hover { color: var(--accent); }
.footer-brand strong { color: white; }
.social-round { display: flex; gap: .6rem; }
.social-round a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.08); }
.newsletter { display: flex; background: white; border-radius: var(--radius); overflow: hidden; margin-top: 1rem; }
.newsletter input { width: 100%; border: 0; padding: .8rem; }
.newsletter button { border: 0; width: 48px; color: white; background: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.25rem; font-size: .9rem; }
.whatsapp-float { position: fixed; right: 1.25rem; bottom: 1.25rem; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; color: white; background: #25d366; z-index: 999; box-shadow: var(--shadow); font-size: 1.55rem; }

@media (max-width: 991px) {
  .hero { padding-top: 4rem; }
  .process-line { grid-template-columns: repeat(2, 1fr); }
  .contact-panel { position: static; }
  .mega-menu { box-shadow: none; }
}
@media (max-width: 575px) {
  .section { padding: 4rem 0; }
  .hero-actions, .hero-trust { display: grid; }
  .program-grid, .process-line { grid-template-columns: 1fr; }
  .glass-card { left: 1rem; right: 1rem; bottom: 1rem; }
}

/* Production polish layer - 2026 enterprise pass */
:root {
  --primary: #0F3D68;
  --secondary: #11C5A4;
  --accent: #0EA5E9;
  --background: #F7FAFC;
  --dark: #0F172A;
  --text: #475569;
  --border: rgba(15, 61, 104, .12);
  --shadow-sm: 0 10px 28px rgba(15, 23, 42, .07);
  --shadow-md: 0 18px 48px rgba(15, 61, 104, .13);
  --shadow-lg: 0 28px 80px rgba(15, 61, 104, .18);
  --radius: 8px;
  --radius-card: 18px;
}
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
body {
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(14, 165, 233, .10), transparent 30rem),
    radial-gradient(circle at 88% 18%, rgba(17, 197, 164, .09), transparent 28rem),
    linear-gradient(90deg, rgba(15, 61, 104, .025) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, var(--background) 42%, #fff 100%);
  background-size: auto, auto, 64px 64px, auto;
}
h1 { font-size: clamp(48px, 5vw, 76px); line-height: 1.04; max-width: 650px; text-wrap: balance; }
h2 { line-height: 1.14; text-wrap: balance; }
.container { width: min(1320px, calc(100vw - 32px)); max-width: min(1320px, calc(100vw - 32px)); }
:focus-visible { outline: 3px solid rgba(17, 197, 164, .45); outline-offset: 3px; }
.site-header { background: rgba(255,255,255,.84); backdrop-filter: blur(18px); box-shadow: 0 12px 34px rgba(15,23,42,.07); }
.top-bar { padding: .34rem 0; font-size: .82rem; background: linear-gradient(90deg, var(--dark), var(--primary)); }
.top-meta { gap: .9rem; }
.top-meta span { white-space: nowrap; }
.navbar { min-height: 72px; padding: .52rem 0; }
.site-header.is-scrolled .navbar { min-height: 64px; padding: .38rem 0; background: rgba(255,255,255,.9) !important; }
.brand-logo { width: clamp(190px, 19vw, 250px); max-height: 54px; object-fit: contain; }
.navbar-nav { gap: .04rem; }
.navbar .nav-link { min-height: 42px; padding: .52rem .46rem !important; border-radius: 7px; font-size: .84rem; font-weight: 700; white-space: nowrap; gap: .32rem; }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--primary); background: rgba(14,165,233,.10); }
.navbar .nav-link.active::after { left: .5rem; right: .5rem; bottom: .24rem; height: 2px; background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent)); }
.navbar .btn-consult { min-height: 44px; padding: .68rem 1rem; font-size: .9rem; white-space: nowrap; }
.dropdown.position-static .mega-menu { left: 0 !important; right: 0 !important; width: 100vw; max-width: 100vw; }
.mega-menu { max-height: calc(100vh - 96px); overflow-y: auto; padding: 1.25rem 0 1.5rem; background: rgba(255,255,255,.98); box-shadow: var(--shadow-lg); }
.mega-link { min-height: 64px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.btn { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: .55rem; border-radius: var(--radius); }
.btn-gradient { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 62%, var(--secondary) 100%); box-shadow: 0 18px 38px rgba(15,61,104,.24); }
.btn-gradient:hover { box-shadow: 0 22px 48px rgba(17,197,164,.22), 0 18px 38px rgba(15,61,104,.20); }
.hero { min-height: calc(100vh - 112px); padding: 4rem 0 3.25rem; }
.hero::before { background-size: 72px 72px; opacity: .8; }
.hero h1 { color: #082f53; }
.hero p { max-width: 65ch; color: #425466; line-height: 1.72; }
.hero-actions { margin: 1.55rem 0 1.35rem; }
.hero-actions .btn { min-width: 176px; }
.hero-trust { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .75rem; max-width: 650px; }
.hero-trust span { min-width: 0; min-height: 66px; border-color: var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.hero-image { padding: .62rem; border-radius: var(--radius-card); box-shadow: var(--shadow-lg); background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(238,248,255,.82)); }
.hero-image::after { content: ""; position: absolute; inset: -24px; z-index: -1; border-radius: 32px; background: radial-gradient(circle, rgba(14,165,233,.18), transparent 65%); filter: blur(8px); }
.hero-image img { min-height: 430px; max-height: 520px; aspect-ratio: 1.16 / 1; border-radius: 14px; }
.hero-metric { right: .65rem; top: 1.45rem; max-width: calc(50% - 1rem); border: 1px solid var(--border); border-radius: var(--radius); }
.hero-metric-bottom { left: .65rem; bottom: 5.75rem; right: auto; top: auto; }
.glass-card { left: 1.25rem; bottom: 1.25rem; max-width: calc(100% - 2.5rem); border-radius: var(--radius); }
.section { padding: 5.25rem 0; }
.section-heading { margin-bottom: 2.4rem; }
.info-card, .feature-card, .service-card, .testimonial-card, .blog-card, .contact-panel, .form-card, .mini-card, .process-step, .industry-grid span, .program-tile, .opportunity-timeline div, .stat-card { border-radius: var(--radius-card); }
.feature-card, .service-card, .blog-card, .testimonial-card { height: 100%; transition: transform .25s ease, box-shadow .25s ease; }
.feature-card:hover, .service-card:hover, .blog-card:hover, .testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card { display: flex; flex-direction: column; overflow: hidden; }
.service-card > div { flex: 1; display: flex; flex-direction: column; }
.service-card a, .read-more-link { margin-top: auto; }
.industry-grid span { min-height: 116px; transition: transform .25s ease, box-shadow .25s ease; }
.industry-grid span:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-step { min-height: 210px; }
.testimonial-card { border-top: 4px solid var(--secondary); }
.blog-card { border-top: 4px solid var(--secondary); }
.cta-band { padding: 4.5rem 0; }
.footer { background: linear-gradient(135deg, rgba(17,197,164,.08), transparent 38%), #0b1220; }
.footer-main { padding-top: 3.25rem; }
.footer-map iframe { height: 180px; border-radius: var(--radius); }
.footer-bottom { align-items: center; }
.footer-bottom span:last-child { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: flex-end; }
.footer-bottom span:last-child a { margin: 0; }
@media (min-width: 992px) {
  .hero .row { display: grid; grid-template-columns: minmax(0,45%) minmax(0,55%); align-items: center; gap: 2.5rem; --bs-gutter-x: 0; }
  .hero .row > [class*="col-"] { width: auto; max-width: none; }
}
@media (max-width: 1199px) {
  .brand-logo { width: 188px; max-height: 48px; }
  .navbar .nav-link { font-size: .8rem; padding-inline: .34rem !important; }
  .navbar .btn-consult { padding-inline: .78rem; font-size: .84rem; }
  .hero-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 991px) {
  .section { padding: 4.25rem 0; }
  .navbar-collapse { padding: 1rem 0 .5rem; }
  .navbar .nav-link { width: 100%; justify-content: flex-start; font-size: .95rem; padding: .75rem .85rem !important; }
  .navbar .btn-consult { width: 100%; margin: .5rem 0 0 !important; }
  .mega-menu { width: 100%; max-width: 100%; max-height: 60vh; padding: 1rem; border-radius: var(--radius); }
  .hero { min-height: auto; padding: 3.4rem 0; }
  .hero-image::before { display: none; }
  .process-timeline::before { display: none; }
}
@media (max-width: 767px) {
  .container, .navbar > .container, .hero > .container { width: 100%; max-width: 100%; padding-left: 16px; padding-right: 16px; }
  .navbar > .container { display: flex; flex-wrap: nowrap; }
  .navbar-brand.brand { max-width: calc(100vw - 88px); overflow: hidden; }
  .brand-logo { width: clamp(188px, 60vw, 235px); max-height: 52px; }
  .section { padding: 3.2rem 0; }
  .hero { padding: 2.8rem 0 3rem; }
  .hero .row { margin-left: 0; margin-right: 0; --bs-gutter-x: 0; }
  .hero .row > [class*="col-"] { padding-left: 0; padding-right: 0; }
  .hero h1 { width: 100%; max-width: 100%; font-size: clamp(28px, 7.8vw, 36px); line-height: 1.16; overflow-wrap: break-word; text-wrap: auto; }
  .hero p, .hero-actions, .hero-trust, .hero .eyebrow { width: 100%; max-width: 100%; min-width: 0; }
  .eyebrow { white-space: normal; flex-wrap: wrap; font-size: .7rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; min-width: 0; }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-image img { min-height: 300px; max-height: 360px; }
  .hero-metric { position: static; display: inline-block; max-width: 100%; margin: .75rem .5rem 0 0; }
  .glass-card { position: static; max-width: 100%; margin-top: .75rem; }
  .program-grid, .process-line { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; gap: .75rem; }
  .footer-bottom span:last-child { display: grid; gap: .4rem; justify-content: flex-start; }
}
@media (max-width: 420px) {
  .brand-logo { width: clamp(174px, 58vw, 218px); max-height: 48px; }
  .hero h1 { font-size: clamp(28px, 8.2vw, 34px); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* Overflow-safe animation guard */
[data-aos],
[data-aos].aos-init,
[data-aos].aos-animate {
  transform: none !important;
}
.row,
.container,
[class*="col-"] {
  min-width: 0;
}

@media (max-width: 767px) {
  .section .row,
  .footer .row,
  .page-hero .row {
    margin-left: 0;
    margin-right: 0;
  }
  .section .row > [class*="col-"],
  .footer .row > [class*="col-"],
  .page-hero .row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Final UI polish layer - responsive finishing pass */
.section {
  position: relative;
  isolation: isolate;
}
.section:not(.soft-bg):not(.split-band):not(.faq-section)::after {
  content: "";
  position: absolute;
  left: max(16px, calc((100vw - min(1320px, calc(100vw - 32px))) / 2));
  right: max(16px, calc((100vw - min(1320px, calc(100vw - 32px))) / 2));
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 61, 104, .10), transparent);
  pointer-events: none;
}
.soft-bg {
  background:
    radial-gradient(circle at 15% 0%, rgba(14, 165, 233, .08), transparent 28rem),
    linear-gradient(180deg, #f8fbfd 0%, #f3f8fb 100%);
}
.hero {
  position: relative;
  background:
    radial-gradient(circle at 68% 18%, rgba(14, 165, 233, .18), transparent 27rem),
    radial-gradient(circle at 16% 24%, rgba(17, 197, 164, .10), transparent 25rem),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 58%, #f7fafc 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(15, 61, 104, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 61, 104, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
  pointer-events: none;
}
@media (min-width: 1200px) {
  .navbar-nav { gap: .48rem; }
  .navbar .nav-link { padding-inline: .66rem !important; }
}
.btn-gradient {
  background-size: 180% 180%;
  background-position: 0% 50%;
  transition: transform .25s ease, box-shadow .25s ease, background-position .35s ease;
}
.btn-gradient i,
.btn-consult i,
.read-more-link i,
.btn-light-premium i {
  transition: transform .25s ease;
}
.btn-gradient:hover,
.btn-consult:hover,
.btn-light-premium:hover {
  transform: translateY(-3px);
}
.btn-gradient:hover {
  background-position: 100% 50%;
  box-shadow: 0 24px 55px rgba(14, 165, 233, .24), 0 16px 34px rgba(15, 61, 104, .18);
}
.btn-gradient:hover i,
.btn-consult:hover i,
.read-more-link:hover i,
.btn-light-premium:hover i {
  transform: translateX(5px);
}
.hero-trust span {
  display: flex;
  min-height: 82px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .18rem;
  text-align: center;
  line-height: 1.25;
}
.hero-trust strong {
  display: block;
  color: var(--primary);
  font: 800 1.15rem/1.1 Poppins, Inter, sans-serif;
}
.hero-metric {
  position: absolute;
  display: grid;
  min-width: 148px;
  min-height: 88px;
  place-items: center;
  padding: .95rem 1rem;
  text-align: center;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}
.hero-metric strong {
  color: var(--primary);
  font: 800 1.45rem/1 Poppins, Inter, sans-serif;
}
.hero-metric span {
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.25;
}
.industry-grid {
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
  align-items: stretch;
}
.industry-grid span {
  display: grid;
  min-height: 138px;
  place-items: center;
  gap: .7rem;
  padding: 1.2rem .95rem;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fff, rgba(248, 251, 253, .95));
  box-shadow: var(--shadow-sm);
  line-height: 1.2;
}
.industry-grid span i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 14px 26px rgba(15, 61, 104, .16);
  font-size: 1.2rem;
}
.industry-grid span:hover {
  border-color: rgba(14, 165, 233, .32);
  background: #fff;
}
.opportunity-timeline,
.atomy-timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}
.opportunity-timeline::before,
.atomy-timeline::before {
  content: "";
  position: absolute;
  top: 1.4rem;
  bottom: 1.4rem;
  left: 26px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--secondary));
  opacity: .55;
}
.opportunity-timeline div,
.atomy-timeline div {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: 76px;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-sm);
}
.opportunity-timeline span,
.atomy-timeline span {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 26px rgba(14, 165, 233, .20);
  font-weight: 800;
}
.opportunity-timeline p,
.atomy-timeline p {
  margin: 0;
  color: var(--dark);
  font-weight: 700;
}
.atomy-timeline p {
  display: grid;
  gap: .22rem;
  color: var(--text);
  font-weight: 500;
}
.atomy-timeline p strong { color: var(--dark); }
.atomy-journey {
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,250,252,.92));
  box-shadow: var(--shadow-sm);
}
.footer-main { padding-top: 2.8rem; }
.footer-map {
  margin-top: 2rem;
  padding: .5rem;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-card);
  background: rgba(255,255,255,.055);
}
.footer-map iframe {
  display: block;
  width: 100%;
  min-height: 210px;
  border: 0;
}
.newsletter {
  align-items: stretch;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}
.newsletter input { min-height: 46px; }
.newsletter button {
  width: 52px;
  flex: 0 0 52px;
  transition: background .25s ease, transform .25s ease;
}
.newsletter button:hover { background: var(--accent); filter: brightness(1.05); }
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 5.35rem;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, box-shadow .25s ease;
  z-index: 998;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
@media (max-width: 991px) {
  .hero-image {
    display: block;
    margin-top: 2rem;
  }
  .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .brand-logo,
  .footer-logo {
    width: auto;
    max-width: 182px;
    max-height: 40px;
  }
  .navbar { min-height: 60px; padding: .42rem 0; }
  .hero {
    padding: 2.35rem 0 2.8rem;
  }
  .hero h1 {
    font-size: clamp(26px, 7vw, 32px);
    line-height: 1.15;
  }
  .hero p { font-size: 1rem; line-height: 1.62; }
  .hero-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; }
  .hero-trust span { min-height: 86px; padding: .75rem .55rem; }
  .hero-image { padding: .45rem; border-radius: 14px; }
  .hero-image img {
    width: 100%;
    min-height: 220px;
    max-height: 285px;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    border-radius: 12px;
  }
  .hero-metric {
    display: inline-grid;
    min-width: calc(50% - .5rem);
    min-height: 76px;
    margin: .65rem .35rem 0 0;
    padding: .75rem .55rem;
  }
  .glass-card { justify-content: center; text-align: center; }
  .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
  .industry-grid span { min-height: 122px; padding: .9rem .55rem; font-size: .9rem; }
  .industry-grid span i { width: 44px; height: 44px; border-radius: 12px; }
  .opportunity-timeline::before,
  .atomy-timeline::before { left: 23px; }
  .opportunity-timeline div,
  .atomy-timeline div { grid-template-columns: 48px minmax(0, 1fr); gap: .8rem; padding: .85rem; }
  .opportunity-timeline span,
  .atomy-timeline span { width: 48px; height: 48px; }
  .footer-map { margin-top: 1.6rem; }
  .footer-map iframe { min-height: 190px; }
  .newsletter input { min-width: 0; }
  .whatsapp-float { right: 1rem; bottom: 1rem; }
  .back-to-top { right: 1rem; bottom: 4.85rem; }
}
@media (max-width: 420px) {
  .brand-logo,
  .footer-logo { max-width: 168px; max-height: 40px; }
  .hero h1 { font-size: clamp(25px, 7.4vw, 31px); }
  .hero-trust { grid-template-columns: 1fr 1fr; }
}

/* Final rectification layer - screenshot QA fixes */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: auto;
  height: auto;
  padding: .7rem 1rem;
  border-radius: var(--radius);
  color: #fff;
  background: var(--primary);
  box-shadow: var(--shadow-md);
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 9999;
}
.about-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(14, 165, 233, .08), transparent 24rem),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}
.about-layout { align-items: center; }
.about-section h2 { max-width: 560px; margin-bottom: 1rem; }
.about-section p { max-width: 620px; margin-bottom: 0; }
.about-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}
.about-proof div {
  display: grid;
  gap: .25rem;
  min-height: 104px;
  align-content: center;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.about-proof strong {
  display: block;
  color: var(--primary);
  font: 800 2rem/1 Poppins, Inter, sans-serif;
}
.about-proof span {
  display: block;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
}
.about-showcase {
  display: grid;
  gap: 1rem;
}
.about-image-card {
  position: relative;
  padding: .62rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(240,248,253,.92));
  box-shadow: var(--shadow-lg);
}
.about-image-card img {
  width: 100%;
  min-height: 330px;
  max-height: 410px;
  object-fit: cover;
  border-radius: 14px;
}
.about-badge {
  position: absolute;
  left: 1.3rem;
  bottom: 1.3rem;
  display: grid;
  gap: .12rem;
  max-width: calc(100% - 2.6rem);
  padding: .85rem 1rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(15, 61, 104, .82);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .16);
}
.about-badge strong,
.about-badge span { color: #fff; line-height: 1.25; }
.about-badge span { font-size: .86rem; opacity: .9; }
.about-card-row { margin-top: .1rem; }
.about-mini-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: .55rem;
  padding: 1.15rem;
}
.about-mini-card i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.about-mini-card h3 { margin: .2rem 0 0; }
.about-mini-card p { margin: 0; font-size: .94rem; line-height: 1.55; }
.process-line.process-timeline {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.05rem;
  align-items: stretch;
}
.process-line.process-timeline::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 33px;
  height: 2px;
  display: block;
  background: linear-gradient(90deg, rgba(15,61,104,.10), var(--accent), rgba(17,197,164,.35));
  z-index: -1;
}
.process-step {
  position: relative;
  display: flex;
  min-height: 238px;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.35rem 1rem;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fff, #f8fbfd);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(14,165,233,.30);
  box-shadow: var(--shadow-md);
}
.process-step span {
  width: 46px;
  height: 46px;
  margin: 0 auto .8rem;
  border: 4px solid #fff;
  box-shadow: 0 14px 30px rgba(14,165,233,.18);
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.process-step i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: .9rem;
  border-radius: 14px;
  color: var(--primary);
  background: rgba(14, 165, 233, .10);
  font-size: 1.15rem;
}
.process-step h3 { margin-bottom: .45rem; }
.process-step p { margin: 0; font-size: .94rem; line-height: 1.55; }
.footer { padding: 3.6rem 0 1.15rem; }
.footer-main { align-items: flex-start; padding-top: 0; }
.footer p { margin-bottom: .55rem; line-height: 1.55; }
.footer .newsletter { max-width: 100%; margin-top: 1.1rem; }
.footer-map { display: none !important; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.1rem;
}
.footer-legal {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.footer-legal a {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin: 0;
}
.footer-legal a:not(:last-child)::after {
  content: "|";
  color: rgba(255,255,255,.34);
}
.whatsapp-float { bottom: 1.15rem; }
.back-to-top { bottom: 5rem; }
@media (max-width: 991px) {
  .about-layout { gap: 2rem; }
  .about-image-card img { min-height: 280px; }
  .process-line.process-timeline {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-left: 1.15rem;
  }
  .process-line.process-timeline::before {
    left: 22px;
    right: auto;
    top: 14px;
    bottom: 14px;
    width: 2px;
    height: auto;
    display: block;
    background: linear-gradient(180deg, var(--accent), rgba(17,197,164,.24));
  }
  .process-step {
    min-height: auto;
    align-items: flex-start;
    padding: 1.1rem 1.1rem 1.1rem 2.4rem;
    text-align: left;
  }
  .process-step span {
    position: absolute;
    left: -1.15rem;
    top: 1.1rem;
    margin: 0;
  }
  .process-step i { margin: 0 0 .8rem; }
}
@media (max-width: 767px) {
  .about-proof { grid-template-columns: 1fr; gap: .75rem; }
  .about-proof div { min-height: 86px; padding: 1rem; }
  .about-proof strong { font-size: 1.75rem; }
  .about-image-card { padding: .45rem; }
  .about-image-card img { min-height: 230px; max-height: 300px; }
  .about-badge {
    position: static;
    max-width: 100%;
    margin-top: .65rem;
    background: linear-gradient(135deg, var(--primary), rgba(14,165,233,.88));
  }
  .about-mini-card { min-height: 180px; }
  .process-line.process-timeline { padding-left: .95rem; }
  .process-line.process-timeline::before { left: 18px; }
  .process-step { padding-left: 2.15rem; }
  .process-step span { left: -1rem; }
  .footer-bottom,
  .footer-legal {
    justify-content: flex-start;
  }
  .footer-legal { gap: .5rem; }
  .whatsapp-float { right: 1rem; bottom: 1rem; }
  .back-to-top { right: 1rem; bottom: 4.8rem; }
}

/* Process connector stacking correction */
.process-line.process-timeline { isolation: isolate; }
.process-line.process-timeline::before { z-index: 0; }
.process-step { z-index: 1; }

/* Premium enterprise testimonial component */
.testimonial-section {
  padding: 120px 0;
  background: #F8FBFD;
}
.testimonial-container {
  width: min(1320px, calc(100vw - 32px));
  max-width: min(1320px, calc(100vw - 32px));
}
.testimonial-heading {
  margin-bottom: 3rem;
}
.testimonial-heading .eyebrow {
  color: var(--primary);
  letter-spacing: .12em;
}
.testimonial-heading h2 {
  color: var(--primary);
  font-weight: 700;
}
.testimonial-heading-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.35rem;
  color: var(--secondary);
  font-size: 1.45rem;
}
.testimonial-heading-quote span {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 61, 104, .24));
}
.testimonial-heading-quote span:last-child {
  background: linear-gradient(90deg, rgba(15, 61, 104, .24), transparent);
}
.testimonial-slider {
  padding: .5rem .25rem .25rem;
}
.testimonial-slider .swiper-wrapper {
  align-items: stretch;
}
.testimonial-slider .swiper-slide {
  height: auto;
}
.testimonial-card {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 440px;
  flex-direction: column;
  overflow: hidden;
  padding: 40px;
  border: 1px solid rgba(15, 61, 104, .10);
  border-top: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 61, 104, .10);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: .78;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(.22);
  transform-origin: left;
  transition: transform .35s ease, opacity .35s ease;
}
.testimonial-card:hover,
.testimonial-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(17, 197, 164, .24);
  box-shadow: 0 30px 76px rgba(15, 61, 104, .18);
}
.testimonial-card:hover::before,
.testimonial-card:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}
.testimonial-quote-icon {
  color: #0F3D68;
  font-size: 32px;
  line-height: 1;
  transition: transform .35s ease;
}
.testimonial-card:hover .testimonial-quote-icon,
.testimonial-card:focus-visible .testimonial-quote-icon {
  transform: scale(1.08);
}
.rating {
  display: flex;
  gap: .28rem;
  margin: 1.15rem 0 1.2rem;
  color: #FFC107;
  font-size: 1rem;
  letter-spacing: 0;
}
.testimonial-star-muted {
  color: rgba(255, 193, 7, .32);
}
.testimonial-review {
  min-height: 110px;
  margin: 0;
  color: #334155;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.02rem;
  line-height: 1.78;
}
.testimonial-divider {
  width: 100%;
  height: 1px;
  margin: auto 0 1.6rem;
  background: rgba(15, 61, 104, .10);
}
.client-row {
  display: flex;
  align-items: center;
  gap: 1.05rem;
}
.client-avatar {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border: 2px solid rgba(14, 165, 233, .24);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(15, 61, 104, .12);
  transition: transform .35s ease, box-shadow .35s ease;
}
.client-avatar-fallback {
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 30% 24%, rgba(255,255,255,.34), transparent 28%),
    linear-gradient(135deg, #0F3D68 0%, #0EA5E9 52%, #11C5A4 100%);
  font: 700 1.25rem/1 Poppins, Inter, sans-serif;
}
.testimonial-card:hover .client-avatar,
.testimonial-card:focus-visible .client-avatar {
  transform: scale(1.05);
  box-shadow: 0 16px 34px rgba(15, 61, 104, .18);
}
.client-info {
  min-width: 0;
}
.client-info h3 {
  margin: 0 0 .18rem;
  color: #0F172A;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.14;
}
.client-info span,
.client-info small {
  display: block;
  color: #64748B;
  font-size: .95rem;
  line-height: 1.35;
}
.client-info span {
  font-weight: 600;
}
.testimonial-slider .swiper-pagination {
  position: static;
  margin-top: 2rem;
}
.testimonial-slider .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(15, 61, 104, .22);
  opacity: 1;
  transition: width .3s ease, background .3s ease, transform .3s ease;
}
.testimonial-slider .swiper-pagination-bullet-active {
  width: 34px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: translateY(-1px);
}
@media (max-width: 991px) {
  .testimonial-section {
    padding: 90px 0;
  }
  .testimonial-card {
    min-height: 420px;
    padding: 34px;
  }
}
@media (max-width: 575px) {
  .testimonial-section {
    padding: 72px 0;
  }
  .testimonial-card {
    min-height: 0;
    padding: 28px;
  }
  .testimonial-review {
    min-height: 120px;
  }
  .client-row {
    align-items: flex-start;
  }
  .client-info h3 {
    font-size: 22px;
  }
}

/* Inner page design rectification: About and Skill Development */
.subpage-hero {
  position: relative;
  overflow: hidden;
  padding: 6.4rem 0 5.6rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(17, 197, 164, .20), transparent 26rem),
    radial-gradient(circle at 18% 10%, rgba(14, 165, 233, .16), transparent 28rem),
    linear-gradient(135deg, #0F3D68 0%, #123A5F 58%, #0B2239 100%);
}
.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 74%);
  pointer-events: none;
}
.subpage-hero .container {
  position: relative;
  z-index: 1;
}
.subpage-hero h1 {
  max-width: 860px;
  font-size: clamp(38px, 4vw, 64px);
}
.subpage-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.86);
}
.subpage-hero-panel {
  display: grid;
  gap: .8rem;
  padding: 1.1rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-card);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
}
.subpage-hero-panel span {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: .78rem;
  padding: .85rem 1rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255,255,255,.10);
  font-weight: 700;
}
.subpage-hero-panel i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  border-radius: 10px;
  color: #0F3D68;
  background: #fff;
}
.about-detail-section,
.skill-program-section {
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}
.value-card-stack,
.training-steps {
  display: grid;
  gap: 1rem;
}
.value-card,
.strength-card,
.skill-program-card,
.training-step,
.impact-timeline-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.value-card:hover,
.strength-card:hover,
.skill-program-card:hover,
.training-step:hover,
.impact-timeline-item:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 165, 233, .30);
  box-shadow: var(--shadow-md);
}
.value-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
}
.value-card i,
.strength-card i,
.skill-program-card i {
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 14px 30px rgba(15, 61, 104, .16);
}
.value-card i {
  width: 56px;
  height: 56px;
  border-radius: 16px;
}
.value-card h3,
.strength-card h3,
.skill-program-card h3,
.training-step h3,
.impact-timeline-item h3 {
  margin: 0 0 .35rem;
  color: var(--dark);
}
.value-card p,
.skill-program-card p,
.training-step p,
.impact-timeline-item p {
  margin: 0;
  line-height: 1.62;
}
.strength-card {
  display: grid;
  min-height: 172px;
  align-content: center;
  gap: 1rem;
  padding: 1.35rem;
  text-align: center;
}
.strength-card i {
  width: 58px;
  height: 58px;
  margin: 0 auto;
  border-radius: 16px;
  font-size: 1.25rem;
}
.impact-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.impact-timeline::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 39px;
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 61, 104, .10), var(--accent), rgba(17, 197, 164, .32));
}
.impact-timeline-item {
  position: relative;
  padding: 1.35rem;
}
.impact-timeline-item span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  min-width: 70px;
  height: 42px;
  place-items: center;
  margin-bottom: 1rem;
  border: 4px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 12px 28px rgba(15, 61, 104, .16);
  font-weight: 800;
}
.skill-program-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 1.45rem;
}
.skill-program-card i {
  width: 58px;
  height: 58px;
  margin-bottom: 1.1rem;
  border-radius: 16px;
  font-size: 1.25rem;
}
.skill-program-card h3 {
  font-size: 1.12rem;
}
.skill-program-card p {
  color: #526173;
}
.training-method-section h2 {
  max-width: 560px;
}
.training-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.15rem;
}
.training-step > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  color: var(--primary);
  background: rgba(14, 165, 233, .10);
  font: 800 1rem/1 Poppins, Inter, sans-serif;
}
.skill-cta-band h2 {
  max-width: 720px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .subpage-hero {
    padding: 5rem 0 4.25rem;
  }
  .impact-timeline {
    grid-template-columns: 1fr;
    padding-left: 1.1rem;
  }
  .impact-timeline::before {
    left: 18px;
    right: auto;
    top: 12px;
    bottom: 12px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--accent), rgba(17,197,164,.24));
  }
  .impact-timeline-item span {
    margin-left: -2.1rem;
  }
}
@media (max-width: 575px) {
  .subpage-hero {
    padding: 4rem 0 3.6rem;
  }
  .subpage-hero h1 {
    font-size: clamp(30px, 8vw, 38px);
  }
  .subpage-hero-panel,
  .value-card,
  .skill-program-card,
  .training-step,
  .impact-timeline-item {
    padding: 1rem;
  }
  .value-card,
  .training-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: .85rem;
  }
  .value-card i,
  .training-step > span {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
  .skill-program-card {
    min-height: auto;
  }
  .skill-cta-band .container {
    display: grid;
    gap: 1.4rem;
  }
}
