  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --purple: #6C5CE7;
    --purple-light: #A29BFE;
    --purple-pale: #EEECff;
    --purple-dark: #4834D4;
    --text-dark: #1A1A2E;
    --text-mid: #4A4A6A;
    --text-light: #8888AA;
    --bg-page: #F7F7FC;
    --bg-white: #FFFFFF;
    --bg-dark: #0F0E2A;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(108,92,231,0.10);
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── HERO ── */
  .hero-section {
    background: linear-gradient(135deg, #0D0B1A 0%, #1B1040 50%, #0F0A25 100%); 
  }
  .hero {
    padding: 120px 5% 90px;;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
  }

  .hero-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800; line-height: 1.1;
    color: var(--white); margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
  }

  .hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 440px;
  }

  .hero-cta {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
  }

  .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-blob {
    position: absolute;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(162,155,254,0.25) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }

  .hero-device-wrap {
    position: relative;
    z-index: 2;
  }


  .device-header {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
  }

  .dot { width: 8px; height: 8px; border-radius: 50%; }
  .dot-r { background: #FF5F57; }
  .dot-y { background: #FFBD2E; }
  .dot-g { background: #28CA41; }

  .device-content {
    background: linear-gradient(135deg, #1a1a3e 0%, #2d2b6e 100%);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 12px;
  }

  .device-content p {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .device-content small {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
  }

  .device-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .device-card {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 10px;
  }

  .device-card img-placeholder {
    display: block;
    width: 100%;
    height: 40px;
    background: rgba(108,92,231,0.3);
    border-radius: 6px;
    margin-bottom: 6px;
  }

  .device-card p {
    color: rgba(255,255,255,0.6);
    font-size: 10px;
  }

  .stat-badge {
    position: absolute;
    bottom: -16px;
    left: -30px;
    background: white;
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    white-space: nowrap;
  }

  .stat-badge .icon-wrap {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #A29BFE, #6C5CE7);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .stat-badge .icon-wrap svg { width: 18px; height: 18px; fill: white; }

  .stat-badge strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
  }

  .stat-badge small {
    font-size: 11px;
    color: var(--text-light);
  }

  .phone-mockup {
    position: absolute;
    right: -40px;
    top: 30px;
    width: 100px;
    background: #1A1A2E;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    z-index: 3;
  }

  .phone-screen {
    background: linear-gradient(135deg, #2d2b6e, #1a1a3e);
    border-radius: 10px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }

  .phone-screen span {
    color: rgba(255,255,255,0.8);
    font-size: 9px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
  }

  /* ── SERVICES SECTION ── */
  .services-section {
    background: var(--bg-page);
    padding: 80px 5%;
  }

  .section-header {
    text-align: center;
    margin-bottom: 56px;
  }

  .section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

  .section-header h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1px;
    margin-bottom: 12px;
  }

  .section-header h2 span {
    color: var(--purple);
  }

  .section-header p {
    max-width: 1000px;
    margin: auto;
  }

  .underline-deco {
    width: 48px;
    height: 4px;
    background: var(--purple);
    border-radius: 2px;
    margin: 12px auto 20px;
  }

  .services-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
  }
@media (max-width: 1000px){
  .services-list{
    flex-direction: column;
    gap:16px;
  }
}
  .service-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    box-shadow: 0 2px 16px rgba(108,92,231,0.06);
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .service-card:hover {
    box-shadow: 0 8px 32px rgba(108,92,231,0.14);
    transform: translateY(-2px);
  }

  .service-icon {
    width: 60px;
    height: 60px;
    background: var(--purple-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--purple);
    fill: none;
    stroke-width: 1.8;
  }

  .service-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
  }

  .service-info p {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 16px;
    line-height: 1.6;
  }

  .service-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 500;
  }

  .check-icon {
    width: 18px;
    height: 18px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .check-icon svg {
    width: 10px;
    height: 10px;
    stroke: white;
    stroke-width: 2.5;
    fill: none;
  }

  .service-visual {
    width: 180px;
    flex-shrink: 0;
  }

  .responsive-badge {
    background: #4CAF50;
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
    text-align: center;
    margin-top: 8px;
  }

  .mockup-perf {
    background: white;
    border: 1.5px solid #eee;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
  }

  .score-circle {
    width: 64px;
    height: 64px;
    margin: 0 auto 8px;
    position: relative;
  }

  .score-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
  }

  .score-circle .score-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 18px;
    font-weight: 800;
    color: #4CAF50;
    line-height: 1;
  }

  .perf-rows {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 8px;
  }

  .perf-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--text-mid);
  }

  .perf-bar-wrap {
    flex: 1;
    height: 4px;
    background: #eee;
    border-radius: 2px;
  }

  .perf-bar {
    height: 100%;
    background: #4CAF50;
    border-radius: 2px;
  }

  /* ── PROCESS SECTION ── */
  .process-section {
    padding: 80px 5%;
    max-width: 1100px;
    margin: 0 auto;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
  }

  .process-connector {
    position: absolute;
    top: 36px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--purple-light) 0, var(--purple-light) 8px, transparent 8px, transparent 16px);
    z-index: 0;
  }

  .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .step-number-wrap {
    width: 72px;
    height: 72px;
    background: white;
    border: 2px solid var(--purple-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(108,92,231,0.12);
    flex-direction: column;
    gap: 2px;
  }

  .step-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: 0.5px;
  }

  .step-icon-inner svg {
    width: 22px;
    height: 22px;
    stroke: var(--purple);
    fill: none;
    stroke-width: 1.7;
  }

  .process-step h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
  }

  .process-step p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.5;
    max-width: 180px;
  }

  /* ── CTA SECTION ── */
  .cta-section {
    background: var(--bg-dark);
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    max-width: 100%;
  }

  .cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }

  .cta-text h2 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 12px;
  }

  .cta-text p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
  }

  .btn-cta {
    background: var(--purple);
    color: white;
    border: none;
    padding: 15px 32px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .btn-cta:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108,92,231,0.4);
  }

  .arrow-icon { font-size: 18px; }

  /* ── RESPONSIVE ── */
  @media (max-width: 760px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    
    .service-card { grid-template-columns: auto 1fr; }
    .service-visual { display: none; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-connector { display: none; }
    .hero-label { padding:8px 14px;border:1px solid rgba(255,255,255,.15);border-radius:30px;letter-spacing:2px;margin-bottom:24px; }
  }

  @media (max-width: 600px) {
    .process-steps { grid-template-columns: 1fr; }
  }