@charset "utf-8";
/* CSS Document */


 :root {
    --bg:        #0b110e;
    --bg2:       #0f1712;
    --bg3:       #141f18;
    --bg4:       #1a2820;
	--accent:     #00D4AA;
    --green:     #3ee08a;
    --green-dim: #1d9e5a;
    --green-bg:  rgba(62,224,138,0.08);
    --green-bdr: rgba(62,224,138,0.2);
    --white:     #f0f5f2;
	--text-secondary:#94A3B8;
    --muted:     #7a9e8a;
    --muted2:    #4a6658;
    --border:    rgba(255,255,255,0.07);
    --border2:   rgba(255,255,255,0.12);
    --amber:     #f4a623;
    --amber-bg:  rgba(244,166,35,0.1);
    --radius:    12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
}						
/* ── Layout ── */
  .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
  .section { padding: 96px 0; }
  .section-sm { padding: 64px 0; }

  /* ── Typography ── */
  h1,h2,h3,h4 { font-family: 'Syne', sans-serif; line-height: 1.1; letter-spacing: -0.02em; }
  h1 { font-size: clamp(42px, 6vw, 72px); font-weight: 800; }
  h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 700; }
  h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 600; }
  h4 { font-size: 16px; font-weight: 600; }
  p { color: var(--text-secondary); line-height: 1.75; }

  .accent { color: var(--accent); }
  .label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--muted2);
  }

  /* ── Badge ── */
  .badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--green-bg); border: 1px solid var(--green-bdr);
    border-radius: 100px; padding: 6px 16px 6px 12px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--accent);
  }
  .badge svg { width: 13px; height: 13px; flex-shrink: 0; }

  /* ── Buttons ── */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
    cursor: pointer; transition: all 0.2s; text-decoration: none; border: none;
  }
  .btn-primary {
    background: var(--accent); color: #0b110e;
  }
  .btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
  .btn-outline {
    background: transparent; color: var(--white);
    border: 1px solid var(--border2);
  }
  .btn-outline:hover { background: var(--bg4); border-color: var(--green-bdr); }

/* ── HERO ─────────────────────────────────────────────── */
  .hero {
    padding: 100px 0 80px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; top: -200px; right: -100px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(62,224,138,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-badge { margin-bottom: 28px; }
  .hero-headline { margin-bottom: 24px; }
  .hero-headline .line2 { display: block; color: var(--green); }
  .hero-sub {
    font-size: 18px; color: var(--muted); line-height: 1.7;
    max-width: 580px; margin-bottom: 40px;
  }
  .hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
  .hero-note {
    margin-top: 16px; font-size: 13px; color: var(--muted2);
    display: flex; align-items: center; gap: 6px;
  }
  .hero-note svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }


.stats-bar {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
  }

  .stat-item {
    padding: 0 32px; text-align: center;
    border-right: 1px solid var(--border);
  }
  .stat-item:first-child { padding-left: 0; }
  .stat-item:last-child { border-right: none; padding-right: 0; }
  .stat-num {
    font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 800;
    color: var(--green); line-height: 1; margin-bottom: 6px;
  }
  .stat-label { font-size: 13px; color: var(--muted); }

  /* ── SECTION HEADER ─────────────────────────────────────── */
  .section-header { margin-bottom: 56px; }
  .section-header .label { margin-bottom: 12px; }
  .section-header h2 { margin-bottom: 16px; }
  .section-header p { max-width: 560px; font-size: 17px; }
  .section-header.center { text-align: center; }
  .section-header.center p { margin: 0 auto; }

  /* ── WHY OUTSOURCE ───────────────────────────────────────── */
  .why-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; margin-bottom: 40px;
  }
  .why-card {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px;
    transition: border-color 0.2s;
  }
  .why-card:hover { border-color: var(--green-bdr); }
  .why-icon {
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    background: var(--green-bg); border: 1px solid var(--green-bdr);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .why-icon svg { width: 22px; height: 22px; color: var(--green); }
  .why-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--white); }
  .why-card p { font-size: 14px; }

  /* ── SERVICES GRID ───────────────────────────────────────── */
/*
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  }
*/
  .service-card2 {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px 28px 24px;
    transition: all 0.2s; position: relative; overflow: hidden;
  }
  .service-card2::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: var(--green); transform: scaleX(0);
    transition: transform 0.2s; transform-origin: left;
  }
  .service-card2:hover { border-color: var(--border2); transform: translateY(-2px); }
  .service-card2:hover::after { transform: scaleX(1); }
  .service-num {
    font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700;
    color: var(--green-dim); margin-bottom: 14px;
  }
  .service-card2 h3 { font-size: 16px; margin-bottom: 10px; color: var(--white); }
  .service-card2 p { font-size: 13px; line-height: 1.65; }

  /* ── HOW IT WORKS ────────────────────────────────────────── */
  .hiw-bg { background: var(--bg2); }
  .steps-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  }
  .step2 {
    background: var(--bg3); padding: 36px 32px;
    position: relative;
  }
  .step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
  .step:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
  .step-num2 {
    font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800;
    color: var(--bg4); line-height: 1; margin-bottom: 20px;
    user-select: none;
  }
  .step2 h3 { font-size: 17px; color: var(--white); margin-bottom: 10px; }
  .step2 p { font-size: 14px; }

  /* ── CLIENTS ─────────────────────────────────────────────── */
  .clients-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  }
  .client-card {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px;
    display: flex; gap: 18px; align-items: flex-start;
    transition: border-color 0.2s;
  }
  .client-card:hover { border-color: var(--green-bdr); }
  .client-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--green-bg); border: 1px solid var(--green-bdr);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 2px;
  }
  .client-icon svg { width: 18px; height: 18px; color: var(--green); }
  .client-card h3 { font-size: 15px; margin-bottom: 6px; color: var(--white); }
  .client-card p { font-size: 13px; }

  /* ── PRICING ─────────────────────────────────────────────── */
  .pricing-table {
    width: 100%; border-collapse: collapse;
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border);
  }
  .pricing-table thead tr {
    background: var(--bg3);
  }
  .pricing-table th {
    padding: 16px 24px; text-align: left;
    font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600;
    color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase;
  }
  .pricing-table td {
    padding: 16px 24px; font-size: 14px; color: var(--muted);
    border-top: 1px solid var(--border);
  }
  .pricing-table tr:nth-child(even) td { background: var(--bg2); }
  .pricing-table tr:nth-child(odd) td { background: var(--bg3); }
  .pricing-table .price {
    color: var(--accent); font-family: 'Syne', sans-serif;
    font-weight: 700; font-size: 15px; white-space: nowrap;
  }
  .pricing-table .service-name { color: var(--white); font-weight: 500; }

  .pricing-note {
    margin-top: 20px; background: var(--amber-bg);
    border: 1px solid rgba(244,166,35,0.2); border-radius: var(--radius-sm);
    padding: 16px 24px; font-size: 14px; color: var(--muted);
    display: flex; gap: 12px; align-items: flex-start;
  }
  .pricing-note svg { width: 18px; height: 18px; color: var(--amber); flex-shrink: 0; margin-top: 1px; }

  /* ── FAQ ─────────────────────────────────────────────────── */

  .faq-list { display: flex; flex-direction: column; gap: 2px; }
  .faq-item {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: var(--radius-sm); overflow: hidden;
    transition: border-color 0.2s;
  }
  .faq-item.open { border-color: var(--green-bdr); }
  .faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 28px; cursor: pointer; user-select: none;
    font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 600;
    color: var(--white); gap: 16px;
  }
.faq-list .open .faq-q {color:var(--accent)}
  .faq-q:hover { color: var(--accent); }
  .faq-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--bg4); border: 1px solid var(--border2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: all 0.2s;
  }
  .faq-item.open .faq-icon { background: var(--green-bg); border-color: var(--green-bdr); transform: rotate(45deg); }
  .faq-icon svg { width: 14px; height: 14px; color: var(--muted); }
  .faq-item.open .faq-icon svg { color: var(--green); }
  .faq-a {
    padding: 0 28px; max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 15px; color: var(--muted); line-height: 1.7;
  }
  .faq-item.open .faq-a { max-height: 200px; padding: 0 28px 24px; }


  /* ── WORKFLOW ─────────────────────────────────────────────── */
  .workflow-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  }
  .workflow-item {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px 28px;
    display: flex; gap: 18px; align-items: flex-start;
  }
  .workflow-bullet {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0; margin-top: 8px;
  }
  .workflow-item h4 { font-size: 14px; color: var(--white); margin-bottom: 6px; }
  .workflow-item p { font-size: 13px; }

  /* ── HIGHLIGHT BOX ────────────────────────────────────────── */
  .highlight-box {
    background: var(--green-bg); border: 1px solid var(--green-bdr);
    border-radius: var(--radius); padding: 28px 36px;
    display: flex; gap: 20px; align-items: center;
  }
  .highlight-box svg { width: 28px; height: 28px; color: var(--green); flex-shrink: 0; }
  .highlight-box p { font-size: 16px; color: var(--muted); line-height: 1.6; margin: 0; }

  /* ── FREE TRIAL BANNER ───────────────────────────────────── */
  .trial-banner {
    background: var(--accent); padding: 12px 0; text-align: center; position:relative;z-index:999;margin-bottom:20px;
  }
  .trial-banner p {
    font-size: 13px; font-weight: 500; color: #0b110e; margin: 0;
    display: flex; align-items: center; justify-content: center; gap: 10px;
  }
  .trial-banner a { color: #0b110e; font-weight: 700; text-decoration: underline; }