:root {
  --n: rgb(255, 107, 0);       /* Primary Orange */
  --n-dk: rgb(232, 93, 0);     /* Orange Hover */
  --n-tint: rgb(255, 243, 232);/* Light Orange */
  --text: rgb(156, 163, 175);  /* Light Text */
  --txtd: rgb(15, 19, 29);     /* Heading */
  --muted: rgb(75, 85, 99);    /* Paragraph */
  --border: rgb(229, 231, 235);/* Border */
  --bg: rgb(250, 250, 250);    /* Background */
  --white: rgb(255, 255, 255); /* White */
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 100px;
  --sh-md: 0 4px 12px rgba(0,0,0,.08);
  --sh-lg: 0 8px 24px rgba(0,0,0,.10);
  --fh: 'Plus Jakarta Sans',system-ui,sans-serif;
  --fb: 'Inter',system-ui,sans-serif;
}

@keyframes pulse {
  0%,
  100% {
    transform:scale(1);
    opacity:1;
  }
  50% {
    transform:scale(.7);
    opacity:.5;
  }
}

.sec {
  width:100%;
  padding:80px 0;
}

@media (max-width:768px) {
  .sec {
    padding:56px 0;
  }
}

.sec-white {
  background:var(--white);
}

.sec-white {
  background: linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
}

.wrap {
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

@media (max-width:480px) {
  .wrap {
    padding:0 16px;
  }
}

.center {
  text-align:center;
}

.eyebrow {
  display:inline-block;
  font-family:var(--fb);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--n);
  margin-bottom:12px;
}

.eyebrow {
  background:var(--n-tint);
  padding:4px 14px;
  border-radius:var(--r-pill);
}

.h2 {
  font-family:var(--fh);
  font-size:clamp(26px,3vw,38px);
  font-weight:800;
  color:var(--txtd);
  line-height:1.2;
  letter-spacing:-.02em;
  margin:0 0 12px;
}

.h2-sub {
  font-family:var(--fb);
  font-size:17px;
  color:var(--muted);
  line-height:1.6;
  margin:0 0 48px;
  max-width:580px;
}

@media (max-width:768px) {
  .h2-sub {
    margin-bottom:32px;
  }
}

.hc .h2-sub {
  margin-left:auto;
  margin-right:auto;
}

.btn-g {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 28px;
  background:var(--n);
  color:var(--white);
  font-family:var(--fb);
  font-size:15px;
  font-weight:600;
  border-radius:var(--r-md);
  border:2px solid var(--n);
  text-decoration:none;
  transition:background .2s,border-color .2s;
  cursor:pointer;
}

.btn-g:hover {
  background:var(--n-dk);
  border-color:var(--n-dk);
  color:var(--white);
  text-decoration:none;
}

@media (max-width:480px) {
  .btn-g {
    width:100%;
    justify-content:center;
  }
}

.btn-gt {
  display:flex;
  align-items:center;
  gap:8px;
  padding:14px 28px;
  background:var(--n);
  color:var(--white);
  font-family:var(--fb);
  font-size:15px;
  font-weight:600;
  border-radius:var(--r-md);
  border:2px solid var(--n);
  text-decoration:none;
  transition:background .2s,border-color .2s;
  cursor:pointer;
}

.btn-gt:hover {
  background:var(--n-dk);
  border-color:var(--n-dk);
  color:var(--white);
  text-decoration:none;
}

@media (max-width:480px) {
  .btn-gt {
    width:100%;
    justify-content:center;
  }
}

.bbtn{
  color:var(--n-dk);
  padding:var(--n);
  align-content: center;
  content: counter(self);
  gap:8px;
  padding:14px 28px;
  background:rgb(255, 107, 0);
  content-visibility: visible;
}

.extrwdth{
  position:absolute;
  -ms-flex-item-align: auto;
  width:max-content
}

.payoutbtn{
  margin-left: 26%;
  margin-top: 7%;
}
@media (max-width:480px) {
  .payoutbtn {
    width:100%;
    justify-content:center;
  }
}

.btn-o {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 28px;
  background:rgb(255, 107, 0);
  color:var(--n);
  font-family:var(--fb);
  font-size:15px;
  font-weight:600;
  border-radius:var(--r-md);
  border:2px solid var(--border);
  text-decoration:none;
  transition:border-color .2s,color .2s;
  cursor:pointer;
}

.btn-o:hover {
  border-color:var(--n);
  color:var(--n);
  text-decoration:none;
}

@media (max-width:480px) {
  .btn-o {
    width:100%;
    justify-content:center;
  }
}

.hero {
  background:var(--white);
  padding:50px 0 64px;
  border-bottom:1px solid var(--border);
}

.hero {
  background-image:radial-gradient(circle,rgba(39,167,33,.07) 1px,transparent 1px);
  background-size:28px 28px;
}

.hero {
  background-image: radial-gradient(circle,rgba(39,167,33,.07) 1px,transparent 1px), linear-gradient(135deg,#ffffff 0%,#f0fdf4 55%,#eff6ff 100%);
  background-size: 28px 28px, 100% 100%;
}

@media (max-width:768px) {
  .hero {
    padding:56px 0 48px;
  }
}

.hero-grid {
  display:grid;
  grid-template-columns:60fr 40fr;
  gap:60px;
  align-items:center;
}

@media (max-width:1024px) {
  .hero-grid {
    gap:40px;
  }
}

@media (max-width:768px) {
  .hero-grid {
    grid-template-columns:1fr;
    gap:36px;
  }
}

.hero-badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--n-tint);
  color:var(--n-dk);
  font-family:var(--fb);
  font-size:13px;
  font-weight:600;
  padding:6px 14px 6px 10px;
  border-radius:var(--r-pill);
  margin-bottom:22px;
}
.mtopc{
  margin-top: -50px;
}

.hero-dot {
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--n);
  animation:pulse 2.4s ease-in-out infinite;
  flex-shrink:0;
}

@media (prefers-reduced-motion:reduce) {
  .hero-dot {
    animation:none;
    opacity:1;
  }
}

.hero-h1v {
  font-family:var(--fh);
  font-size:clamp(25px,3.2vw,34px);
  font-weight:600;
  line-height:1.13;
  color:var(--txtd);
  letter-spacing:-.02em;
  margin:0 0 20px;
}

@media (max-width:1024px) {
  .hero-h1v {
    font-size:30px;
  }
}

@media (max-width:768px) {
  .hero-h1v {
    font-size:25px;
  }
}


.hero-h1v2 {
  font-family:var(--fh);
  font-size:clamp(15px,2.2vw,24px);
  font-weight:300;
  line-height:0.53;
  color:var(--txtd);
  letter-spacing:-.01em;
  margin:0 0 20px;
}

@media (max-width:1024px) {
  .hero-h1v2 {
    font-size:18px;
  }
}

@media (max-width:768px) {
  .hero-h1v2 {
    font-size:14px;
  }
}

.hero-h1 {
  font-family:var(--fh);
  font-size:clamp(34px,4.5vw,54px);
  font-weight:800;
  line-height:1.13;
  color:var(--txtd);
  letter-spacing:-.025em;
  margin:0 0 20px;
}

@media (max-width:1024px) {
  .hero-h1 {
    font-size:44px;
  }
}

@media (max-width:768px) {
  .hero-h1 {
    font-size:34px;
  }
}

.hero-accent {
  color:var(--n);
}

.hero-accent {
  text-decoration:underline;
  text-decoration-color:var(--n);
  text-underline-offset:7px;
  text-decoration-thickness:3px;
}

.height{
  width: 100%;
  height: 70vh;
}

.hero-accentv {
  text-decoration-color:rgba(252, 111, 30, 1);
  text-underline-offset:10px;
  text-decoration-thickness:3px;
}

.hero-accentv2 {
  text-decoration-color:rgba(82, 252, 30, 1);
  text-underline-offset:10px;
  text-decoration-thickness:3px;
}

.hero-ctas {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:36px;
}

@media (max-width:480px) {
  .hero-ctas {
    flex-direction:column;
  }
}

.hero-trust {
  display:flex;
  align-items:center;
  gap:12px;
}

@media (max-width:768px) {
  .hero-trust {
    flex-wrap:wrap;
  }
}

.trust-avs {
  display:flex;
}

.trust-av {
  width:32px;
  height:32px;
  border-radius:50%;
  background:var(--n-dk);
  border:2px solid var(--white);
  margin-left:-8px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--fb);
  font-size:11px;
  font-weight:700;
  color:var(--n-dk);
  flex-shrink:0;
}

.trust-av:first-child {
  margin-left:0;
}

.trust-copy {
  font-family:var(--fb);
  font-size:13px;
  color:var(--muted);
  line-height:1.4;
}

.trust-copy strong {
  color:var(--text);
  font-weight:600;
}

.hero-vis {
  position:relative;
  line-height:0;
}

@media (max-width:768px) {
  .hero-vis {
    max-width:420px;
    margin:0 auto;
  }
}

@media (max-width:480px) {
  .hero-vis {
    max-width:300px;
  }
}

.hero-img {
  width:100%;
  height:auto;
  aspect-ratio:1/1;
  object-fit:cover;
  display:block;
  border-radius:50%;
  box-shadow:var(--sh-lg);
}

.fc {
  position:absolute;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(255,255,255,.85);
  border-radius:var(--r-md);
  padding:10px 14px;
  box-shadow:0 4px 20px rgba(0,0,0,.13);
  display:flex;
  align-items:center;
  gap:10px;
  min-width:140px;
}

@media (max-width:768px) {
  .fc {
    padding:8px 10px;
    min-width:116px;
    gap:8px;
  }
}

@media (max-width:480px) {
  .fc {
    padding:7px 10px;
    gap:6px;
    min-width:auto;
  }
}

.fc-emoji {
  font-size:20px;
  line-height:1;
  flex-shrink:0;
}

@media (max-width:768px) {
  .fc-emoji {
    font-size:16px;
  }
}

@media (max-width:480px) {
  .fc-emoji {
    font-size:14px;
  }
}

.fc-label {
  font-family:var(--fb);
  font-size:11px;
  color:var(--muted);
  line-height:1.3;
  margin-bottom:2px;
}

@media (max-width:768px) {
  .fc-label {
    font-size:10px;
  }
}

@media (max-width:480px) {
  .fc-label {
    display:none;
  }
}

.fc-val {
  font-family:var(--fh);
  font-size:14px;
  font-weight:700;
  color:var(--text);
  line-height:1.2;
}

@media (max-width:768px) {
  .fc-val {
    font-size:12px;
  }
}

@media (max-width:480px) {
  .fc-val {
    font-size:11px;
  }
}

.fc-1 {
  top:20px;
  left:16px;
}

.fc-2 {
  top:20px;
  right:16px;
}

.fc-3 {
  bottom:20px;
  left:16px;
}

.fc-4 {
  bottom:20px;
  right:16px;
}

.hero-stats {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--border);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  overflow:hidden;
  margin-top:52px;
}

@media (max-width:768px) {
  .hero-stats {
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:480px) {
  .hero-stats {
    grid-template-columns:repeat(2,1fr);
  }
}

.stat {
  background:var(--white);
  padding:22px 16px;
  text-align:center;
}

.stat-n {
  font-family:var(--fh);
  font-size:28px;
  font-weight:800;
  color:var(--text);
  line-height:1;
  margin-bottom:6px;
}

@media (max-width:480px) {
  .stat-n {
    font-size:22px;
  }
}

.stat-ng {
  color:var(--n);
}

.stat-l {
  font-family:var(--fb);
  font-size:12px;
  color:var(--muted);
  line-height:1.4;
}

.subj-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

@media (max-width:768px) {
  .subj-grid {
    grid-template-columns:repeat(2,1fr);
  }
}

.subj-grid .subj-card {
  border-top:3px solid var(--border);
}

.subj-grid .subj-card:nth-child(1) {
  border-top-color:#bef63b;
}

.subj-grid .subj-card:nth-child(2) {
  border-top-color:#5cf6bb;
}

.subj-grid .subj-card:nth-child(3) {
  border-top-color:#f97316;
}

.subj-grid .subj-card:nth-child(4) {
  border-top-color:#27a721;
}

.subj-grid .subj-card:nth-child(5) {
  border-top-color:#e90ede;
}

.subj-grid .subj-card:nth-child(6) {
  border-top-color:#ef4444;
}

.subj-grid .subj-card:nth-child(7) {
  border-top-color:#5708ea;
}

.subj-grid .subj-card:nth-child(8) {
  border-top-color:#26998a;
}

.subj-card {
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:20px;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  text-decoration:none;
  transition:border-color .2s,box-shadow .2s,transform .18s;
}

.subj-card:hover {
  border-color:var(--n);
  box-shadow:var(--sh-md);
  transform:translateY(-2px);
  text-decoration:none;
}

@media (prefers-reduced-motion:reduce) {
  .subj-card:hover {
    transform:none;
  }
}

.si {
  width:46px;
  height:46px;
  border-radius:var(--r-md);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  line-height:1;
}

.si-tech {
  background:#eff6ff;
}

.si-ai {
  background:#f5f3ff;
}

.si-des {
  background:#fff7ed;
}

.si-biz {
  background:#f0fdf4;
}

.si-cloud {
  background:#f0f9ff;
}

.si-cyber {
  background:#fef2f2;
}

.si-data {
  background:#fefce8;
}

.si-all {
  background:#df771723;
}

.subj-name {
  font-family:var(--fh);
  font-size:15px;
  font-weight:700;
  color:var(--text);
  line-height:1.3;
}

.subj-count {
  font-family:var(--fb);
  font-size:12px;
  color:var(--muted);
}

.subj-arr {
  font-family:var(--fb);
  font-size:13px;
  font-weight:600;
  color:var(--n);
  margin-top:auto;
}
