  :root {
    --ink: #0D0F14;
    --paper: #F7F5F0;
    --accent: #FF5C1A;
    --accent2: #1A7AFF;
    --muted: #6B6F7A;
    --border: rgba(13,15,20,0.1);
    --card-bg: #FFFFFF;
    --hero-bg: #0D0F14;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 5%;
    background: rgba(13,15,20,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800; font-size: 1.4rem; color: #fff;
    letter-spacing: -0.02em;
    display: flex; align-items: center; gap: 0.5rem;
    text-decoration: none;
  }

  .logo-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent);
    display: inline-block;
  }

  .nav-links {
    display: flex; gap: 2rem; list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none; font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: #fff; }

  .nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 0.55rem 1.3rem;
    border-radius: 6px;
    font-weight: 500 !important;
    transition: opacity 0.2s !important;
  }

  .nav-cta:hover { opacity: 0.88; color: #fff !important; }

  /* ── HERO ── */
  .hero {
    background: var(--hero-bg);
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    padding: 8rem 5% 5rem;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 10%, rgba(255,92,26,0.18) 0%, transparent 70%),
                radial-gradient(ellipse 60% 50% at 80% 80%, rgba(26,122,255,0.12) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  .badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,92,26,0.12);
    border: 1px solid rgba(255,92,26,0.3);
    color: var(--accent);
    font-size: 0.78rem; font-weight: 500;
    padding: 0.35rem 0.9rem; border-radius: 100px;
    margin-bottom: 1.8rem;
    letter-spacing: 0.04em; text-transform: uppercase;
    animation: fadeUp 0.6s ease both;
  }

  .badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 1.5s infinite; }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.6rem);
    font-weight: 700; color: #fff;
    line-height: 1.1; letter-spacing: -0.025em;
    max-width: 900px;
    animation: fadeUp 0.7s 0.1s ease both;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--accent);
  }

  .hero-sub {
    color: rgba(255,255,255,0.55);
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 580px; line-height: 1.7;
    margin: 1.5rem auto 2.5rem;
    font-weight: 300;
    animation: fadeUp 0.7s 0.2s ease both;
  }

  .hero-actions {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    animation: fadeUp 0.7s 0.3s ease both;
  }

  .btn-primary {
    background: var(--accent);
    color: #fff; border: none;
    padding: 0.9rem 2rem;
    border-radius: 8px; font-size: 1rem; font-weight: 500;
    cursor: pointer; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(255,92,26,0.35);
    font-family: inherit;
  }

  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,92,26,0.45); }

  .btn-ghost {
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.9rem 2rem;
    border-radius: 8px; font-size: 1rem; font-weight: 400;
    cursor: pointer; text-decoration: none;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
  }

  .btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }

  .hero-stats {
    display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap;
    margin-top: 4.5rem; padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    width: 100%; max-width: 700px;
    animation: fadeUp 0.7s 0.4s ease both;
  }

  .hero-stat {}

  .hero-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.9rem; font-weight: 700; color: #fff;
    letter-spacing: -0.02em;
  }

  .hero-stat-num span { color: var(--accent); }

  .hero-stat-label {
    font-size: 0.82rem; color: rgba(255,255,255,0.4);
    margin-top: 0.15rem;
    letter-spacing: 0.02em;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── LOGOS ── */
  .logos-section {
    background: #fff;
    padding: 2.5rem 5%;
    border-bottom: 1px solid var(--border);
  }

  .logos-label {
    text-align: center;
    font-size: 0.8rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--muted);
    margin-bottom: 1.5rem;
  }

  .logos-row {
    display: flex; gap: 3rem; justify-content: center;
    flex-wrap: wrap; align-items: center;
  }

  .logo-pill {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; font-size: 1.1rem;
    color: #aaa; letter-spacing: -0.02em;
    opacity: 0.7;
    transition: opacity 0.2s;
  }

  .logo-pill:hover { opacity: 1; color: var(--ink); }

  /* ── SECTIONS ── */
  section { padding: 6rem 5%; }

  .section-label {
    display: inline-block;
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    font-weight: 700; letter-spacing: -0.025em;
    line-height: 1.1; color: var(--ink);
    max-width: 620px;
  }

  .section-sub {
    color: var(--muted);
    font-size: 1.05rem; line-height: 1.7;
    max-width: 540px; margin-top: 1rem;
    font-weight: 300;
  }

  /* ── PROBLEM ── */
  .problem-section {
    background: var(--ink);
    color: #fff;
  }

  .problem-section .section-title { color: #fff; }
  .problem-section .section-sub { color: rgba(255,255,255,0.5); }

  .pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5px;
    margin-top: 3.5rem;
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
  }

  .pain-card {
    background: var(--ink);
    padding: 2rem;
    position: relative;
  }

  .pain-icon {
    font-size: 1.6rem; margin-bottom: 1rem;
  }

  .pain-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem; font-weight: 700; color: #fff;
    margin-bottom: 0.5rem; letter-spacing: -0.02em;
  }

  .pain-card p {
    color: rgba(255,255,255,0.45);
    font-size: 0.9rem; line-height: 1.6;
    font-weight: 300;
  }

  /* ── HOW IT WORKS ── */
  .how-section { background: var(--paper); }

  .steps-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 4rem;
  }

  .steps-list { display: flex; flex-direction: column; gap: 0; }

  .step {
    display: flex; gap: 1.5rem;
    padding: 1.8rem 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
  }

  .step:last-child { border-bottom: none; }

  .step-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem; font-weight: 700;
    color: var(--accent); letter-spacing: 0.08em;
    min-width: 28px; padding-top: 0.2rem;
  }

  .step-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem; font-weight: 700;
    letter-spacing: -0.02em; margin-bottom: 0.4rem;
  }

  .step-content p {
    color: var(--muted); font-size: 0.92rem;
    line-height: 1.65; font-weight: 300;
  }

  .step.active .step-num { color: var(--accent); }
  .step.active { background: transparent; }

  .steps-visual {
    position: sticky; top: 7rem;
    background: var(--ink);
    border-radius: 16px;
    padding: 2.5rem;
    min-height: 420px;
    display: flex; flex-direction: column; justify-content: space-between;
    overflow: hidden;
  }

  .steps-visual::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 50% at 30% 30%, rgba(255,92,26,0.15) 0%, transparent 60%);
    pointer-events: none;
  }

  .visual-tag {
    background: rgba(255,255,255,0.07);
    border-radius: 8px; padding: 1.2rem 1.4rem;
    margin-bottom: 1rem;
    position: relative;
  }

  .visual-tag-label {
    font-size: 0.7rem; color: rgba(255,255,255,0.35);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
  }

  .visual-tag-val {
    color: #fff; font-size: 0.95rem; font-weight: 500;
  }

  .visual-badge {
    display: inline-block;
    background: rgba(26,255,120,0.15);
    border: 1px solid rgba(26,255,120,0.3);
    color: #1AFF78;
    font-size: 0.72rem; font-weight: 500;
    padding: 0.2rem 0.6rem; border-radius: 4px;
    letter-spacing: 0.04em;
  }

  .visual-badge.blue {
    background: rgba(26,122,255,0.15);
    border-color: rgba(26,122,255,0.3);
    color: #5AA8FF;
  }

  .visual-badge.orange {
    background: rgba(255,92,26,0.15);
    border-color: rgba(255,92,26,0.3);
    color: var(--accent);
  }

  .step-time {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.6rem; font-weight: 700; color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .step-time small {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem; font-weight: 300;
    color: rgba(255,255,255,0.4); letter-spacing: 0;
  }

  /* ── FEATURES ── */
  .features-section {
    background: #fff;
  }

  .features-header {
    display: flex; justify-content: space-between;
    align-items: flex-end; flex-wrap: wrap; gap: 2rem;
    margin-bottom: 3.5rem;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .feature-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    background: var(--card-bg);
    transition: box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
  }

  .feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .feature-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border-color: rgba(255,92,26,0.2);
  }

  .feature-card:hover::after { transform: scaleX(1); }

  .feat-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(255,92,26,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }

  .feature-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem; font-weight: 700;
    letter-spacing: -0.02em; margin-bottom: 0.5rem;
  }

  .feature-card p {
    color: var(--muted); font-size: 0.9rem;
    line-height: 1.65; font-weight: 300;
  }

  .feat-pill {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.75rem; font-weight: 500;
    color: var(--accent);
    background: rgba(255,92,26,0.07);
    padding: 0.2rem 0.7rem; border-radius: 100px;
  }

  /* ── METRICS ── */
  .metrics-section {
    background: var(--paper);
  }

  .metrics-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .metric-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .metric-block {
    background: #fff;
    border-radius: 12px; padding: 1.8rem;
    border: 1px solid var(--border);
  }

  .metric-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem; font-weight: 700;
    letter-spacing: -0.02em; color: var(--ink);
    line-height: 1;
  }

  .metric-num span { color: var(--accent); }

  .metric-desc {
    color: var(--muted); font-size: 0.85rem;
    margin-top: 0.4rem; font-weight: 300;
  }

  .metric-block.accent-block {
    background: var(--accent);
    border-color: var(--accent);
  }

  .metric-block.accent-block .metric-num { color: #fff; }
  .metric-block.accent-block .metric-num span { color: rgba(255,255,255,0.7); }
  .metric-block.accent-block .metric-desc { color: rgba(255,255,255,0.7); }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    background: var(--ink);
  }

  .testimonials-section .section-title { color: #fff; }
  .testimonials-section .section-label { color: var(--accent); }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .testi-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 2rem;
  }

  .testi-quote {
    font-size: 0.95rem; line-height: 1.75;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    margin-bottom: 1.5rem;
  }

  .testi-quote::before { content: '"'; color: var(--accent); font-size: 1.5rem; line-height: 0; vertical-align: -0.3rem; margin-right: 0.2rem; }

  .testi-author {
    display: flex; align-items: center; gap: 0.8rem;
  }

  .testi-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.9rem; font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    flex-shrink: 0;
  }

  .testi-name {
    color: #fff; font-size: 0.9rem; font-weight: 500;
  }

  .testi-role {
    color: rgba(255,255,255,0.35); font-size: 0.8rem;
  }

  .testi-highlight {
    color: var(--accent); font-weight: 500;
    font-size: 0.82rem; margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.07);
  }

  /* ── USE CASES ── */
  .usecases-section { background: var(--paper); }

  .use-tabs {
    display: flex; gap: 0.5rem; flex-wrap: wrap;
    margin-top: 2.5rem; margin-bottom: 2.5rem;
  }

  .use-tab {
    padding: 0.5rem 1.1rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: #fff;
    font-size: 0.875rem; font-weight: 500;
    color: var(--muted);
    cursor: pointer; transition: all 0.2s;
    font-family: inherit;
  }

  .use-tab.active, .use-tab:hover {
    background: var(--ink);
    color: #fff; border-color: var(--ink);
  }

  .use-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
  }

  .use-visual {
    background: var(--ink);
    border-radius: 16px; padding: 2.5rem;
    min-height: 320px;
    display: flex; flex-direction: column; justify-content: flex-end;
    position: relative; overflow: hidden;
    background-image: url(../images/industries-img.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100% 100%;
  }

  .use-visual::before {
    content: attr(data-emoji);
    font-size: 6rem;
    position: absolute; top: 1.5rem; right: 1.5rem;
    opacity: 0.15;
  }

  .use-visual-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem; font-weight: 800;
    color: #fff; letter-spacing: -0.02em;
    line-height: 1.2; margin-bottom: 0.5rem;
  }

  .use-visual-sub {
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem; font-weight: 300;
  }

  .use-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }

  .use-list li {
    display: flex; align-items: flex-start; gap: 0.8rem;
    font-size: 0.95rem; line-height: 1.6; color: var(--ink);
  }

  .use-check {
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(255,92,26,0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 0.1rem;
    font-size: 0.7rem; color: var(--accent);
  }

  /* ── CTA ── */
  .cta-section {
    background: var(--accent);
    padding: 6rem 5%;
    text-align: center;
    position: relative; overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }

  .cta-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700; color: #fff;
    letter-spacing: -0.025em; line-height: 1.1;
    max-width: 720px; margin: 0 auto 1.5rem;
    position: relative;
  }

  .cta-section p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem; max-width: 480px;
    margin: 0 auto 2.5rem; font-weight: 300;
    position: relative;
  }

  .cta-buttons {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    position: relative;
  }

  .btn-white {
    background: #fff; color: var(--accent);
    padding: 0.9rem 2.2rem;
    border-radius: 8px; font-size: 1rem; font-weight: 600;
    cursor: pointer; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    font-family: inherit; border: none;
  }

  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

  .btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 0.9rem 2.2rem;
    border-radius: 8px; font-size: 1rem;
    cursor: pointer; text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    font-family: inherit;
  }

  .btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

  /* ── FOOTER ── */
  footer {
    background: var(--ink); color: rgba(255,255,255,0.45);
    padding: 3rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1.5rem;
    font-size: 0.85rem;
  }

  .footer-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800; font-size: 1.2rem; color: #fff;
    letter-spacing: -0.02em;
  }

  .footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
  .footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: #fff; }


  .policy-inner h2 {
        text-align: center;
        font-size: 31px;
        margin-bottom: 30px;
  }
    .policy-inner h2 span {
        color: var(--accent);
    }

    .policy-box p {
        font-size: 16px;
        margin-bottom: 13px;
    }

    .policy-box {
        margin-bottom: 20px;
    }

    .policy-box h3 {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .policy-box ul li {
        margin-left: 24px;
        font-size: 15px;
        margin-bottom: 14px;
    }

    .about-img-cont-sec {
      width: 100%;
      display: flex;
      align-items: center;
      margin: 0 -10px;
    }

    .about-box {
      width: 50%;
      padding: 0 5px;
    }

    .about-box-cont h2 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 50px;
      font-weight: 700;
      color: var(--hero-bg);
      line-height: 1.1;
      letter-spacing: -0.025em;
      max-width: 900px;
      animation: fadeUp 0.7s 0.1s ease both;
      margin-bottom: 20px;
    }

    .about-box-cont p {
      color: #0D0F14;
      font-size: clamp(1rem, 2vw, 1.2rem);
      max-width: 580px;
      line-height: 1.7;
      font-weight: 300;
      animation: fadeUp 0.7s 0.2s ease both;
    }

    .about-img img {
      width: 100%;
      border-radius: 20px;
    }

    .about-job-sec {
      background: var(--hero-bg);
      position: relative;
    }

    .about-job-sec::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 10%, rgba(255, 92, 26, 0.18) 0%, transparent 70%), radial-gradient(ellipse 60% 50% at 80% 80%, rgba(26, 122, 255, 0.12) 0%, transparent 60%);
      pointer-events: none;
    }

    .about-job-inner {
      text-align: center;
    }

    .about-job-inner h2 {
      font-size: 40px;
      color: #fff;
    }

    .about-job-inner p {
      color: #fff;
      margin: 20px 0;
    }

    .work-btn {
      display: inline-block;
      background: var(--accent);
      color: #fff !important;
      padding: 14px 24px;
      border-radius: 6px;
      font-weight: 500 !important;
      transition: opacity 0.2s !important;
      text-decoration: none;
      margin-top: 22px;
    }

    .opportunities-list-sec h2 {
      font-size: 35px;
      text-align: center;
      margin-bottom: 40px;
    }

    .opportunities-box h3 {
      font-size: 22px;
      margin-bottom: 22px;
    }

    .opportunities-box ul {
      list-style: none;
    }

    .opportunities-box ul li:last-child a {
      border: 0;
    }

    .opportunities-box ul li a {
      width: 100%;
      display: inline-block;
      border-bottom: 1px solid rgb(13 15 20 / 10%);
      padding: 20px 0;
      text-decoration: none;
    }

    .opportunities-box ul li a h4 {
      font-size: 18px;
      color: #000;
      margin-bottom: 8px;
    }

    .opportunities-box ul li a p {
      font-size: 16px;
      color: #6B6F7A;
    }

    .time-badge {
      display: inline-block;
      border: 1px solid #6B6F7A;
      font-size: 14px;
      font-weight: 500;
      padding: 4px 6px;
      border-radius: 5px;
      margin-left: 5px;
    }

    .opportunities-list-wrapper {
      background: #fff;
      padding: 30px;
      border-radius: 20px;
    }

    .career-details-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid rgb(13 15 20 / 10%);
      padding-bottom: 18px;
    }

    .career-details-top .left-part h3 {
      font-size: 20px;
      margin-bottom: 6px;
    }

    .career-details-top .left-part p {
      font-size: 16px;
      color: #6B6F7A;
    }

    .career-details-top .right-part .apply-btn {
      display: inline-block;
      background: var(--accent);
      color: #fff !important;
      padding: 0.55rem 1.3rem;
      border-radius: 6px;
      font-weight: 500 !important;
      transition: opacity 0.2s !important;
      text-decoration: none;
    }

    .career-details-bottom {
      padding: 20px 0;
    }

    .career-details-bottom h3 {
      font-size: 18px;
      margin-bottom: 15px;
    }

    .career-details-bottom p {
      font-size: 15px;
      margin-bottom: 15px;
    }

    .career-details-bottom ul {
      margin-bottom: 15px;
    }

    .career-details-bottom ul li {
      font-size: 15px;
      margin-bottom: 10px;
      margin-left: 20px;
    }

    .contact-inner h2 {
      text-align: center;
      font-size: 31px;
      margin-bottom: 30px;
    }

    .contact-wrapper {
      display: flex;
      margin: 0 -12px;
    }

    .contact-box {
      width: 50%;
      padding: 0 12px;
    }

    .contact-left {
      width: 100%;
    }

    .contact-left ul {
      list-style: none;
    }

    .contact-left ul li {
      width: 100%;
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 20px;
      display: flex;
    }

    .contact-box-left .icon {
      width: 35px;
      height: 35px;
      background: #FF5C1A;
      color: #fff;
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-box-right {
      padding-left: 15px;
    }

    .contact-box-right h3 {
      font-size: 18px;
    }

    .contact-box-right p,
    .contact-box-right p a {
      font-size: 15px;
      color: #0D0F14;
      text-decoration: none;
    }

    .contact-form-box {
      width: 100%;
      background: #fff;
      border-radius: 10px;
      padding: 45px;
    }

    .contact-form-box h3 {
      font-size: 25px;
      margin-bottom: 25px;
    }

    .contact-input-box label {
      display: inline-block;
      font-size: 16px;
      font-weight: 400;
      margin-bottom: 5px;
    }

    .contact-input-box input {
      width: 100%;
      border: 1px solid #6B6F7A;
      outline: none;
      height: 45px;
      font-size: 15px;
      padding: 6px 10px;
      border-radius: 5px;
    }

    .contact-input-box {
      margin-bottom: 25px;
    }

    .contact-input-box textarea {
      width: 100%;
      border: 1px solid #6B6F7A;
      outline: none;
      height: 80px;
      font-size: 15px;
      padding: 6px 10px;
      border-radius: 5px;
      resize: none;
    }

    .submit-btn {
      width: 100%;
      background: #FF5C1A;
      border: 0;
      color: #fff;
      font-size: 18px;
      padding: 12px 4px;
      border-radius: 5px;
    }


  /* ── MOBILE ── */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .steps-layout { grid-template-columns: 1fr; }
    .steps-visual { position: static; }
    .metrics-inner { grid-template-columns: 1fr; }
    .use-content { grid-template-columns: 1fr; }
    .hero-stats { gap: 2rem; }
    .metric-blocks { grid-template-columns: 1fr 1fr; }
    footer { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
    .contact-wrapper {flex-wrap: wrap;}
    .contact-box {width: 100%;padding: 0 12px;}
    .about-img-cont-sec {flex-wrap: wrap;}
    .about-box {width: 100%;}
    .about-box-cont {margin-bottom: 20px;}
  }

  @media (max-width: 480px) {
    nav { padding: 1rem 4%; }
    .hero h1 { font-size: 2.1rem; }
    .metric-blocks { grid-template-columns: 1fr; }
    .hero-stats { gap: 1.5rem; }
    .hero-stat-num { font-size: 1.8rem; }
    .contact-inner h2 {font-size: 25px;}
    .contact-form-box {padding: 22px;}
    .opportunities-list-sec h2 {font-size: 22px;}
    .career-details-top {flex-wrap: wrap;}
    .opportunities-list-wrapper {padding: 18px;}
    .opportunities-box h3 {margin-bottom: 3px;}
    .about-box-cont h2 {font-size: 28px;}
    .about-job-inner h2 {font-size: 26px;}

  }