:root {
    --black: #0F1826;
    --orange: #FF5C28;
    --orange-dim: #CC4A1F;
    --grey: #6B7785;
    --light: #F4F5F7;
    --white: #FFFFFF;
    --border: #E0E3E8;
    box-sizing: border-box;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  *, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; }
  body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--black); -webkit-font-smoothing: antialiased; }

  /* NAV */
  nav {
    position: sticky; top: env(safe-area-inset-top, 0px); z-index: 100;
    background: var(--black);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 64px;
  }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-logo-mark {
    width: 32px; height: 32px; background: var(--orange);
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
  }
  .nav-logo-mark svg { width: 18px; height: 18px; }
  .nav-logo-name { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); letter-spacing: 0.03em; text-transform: uppercase; }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .15s; }
  .nav-links a:hover { color: var(--white); }
  .nav-cta { background: var(--orange); color: var(--white); font-size: 14px; font-weight: 600; padding: 9px 20px; border-radius: 6px; text-decoration: none; transition: background .15s; }
  .nav-cta:hover { background: var(--orange-dim); }

  /* HERO */
  .hero {
    position: relative; min-height: 580px;
    display: flex; align-items: center;
    overflow: hidden; background: var(--black);
  }
  .hero-illustration {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center right;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(10,14,25,0.97) 0%, rgba(10,14,25,0.88) 45%, rgba(10,14,25,0.3) 75%, rgba(10,14,25,0.1) 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 80px 48px; max-width: 620px;
  }
  .hero-label {
    display: inline-block; font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; color: var(--orange); text-transform: uppercase;
    border: 1px solid rgba(255,92,40,0.4); padding: 4px 10px; border-radius: 3px; margin-bottom: 24px;
  }
  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(52px, 7.5vw, 96px);
    font-weight: 800; color: var(--white);
    line-height: 0.92; text-transform: uppercase; letter-spacing: -0.01em;
  }
  .hero h1 em { display: block; color: var(--orange); font-style: normal; }
  .hero-sub {
    margin-top: 24px; color: rgba(255,255,255,0.55);
    font-size: 17px; line-height: 1.65; max-width: 420px;
  }
  .hero-actions { margin-top: 36px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--orange); color: var(--white);
    font-size: 15px; font-weight: 600; padding: 14px 28px;
    border-radius: 8px; text-decoration: none; transition: background .15s, transform .1s;
  }
  .btn-primary:hover { background: var(--orange-dim); transform: translateY(-1px); }
  .btn-ghost {
    color: rgba(255,255,255,0.65); font-size: 15px; font-weight: 500;
    text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color .15s;
  }
  .btn-ghost:hover { color: var(--white); }
  .btn-ghost svg { width: 18px; height: 18px; }
  .hero-stats {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    display: flex; border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(10,14,25,0.75); backdrop-filter: blur(12px);
  }
  .stat-box { flex: 1; padding: 20px 28px; border-right: 1px solid rgba(255,255,255,0.07); }
  .stat-box:last-child { border-right: none; }
  .stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800; color: var(--white); line-height: 1; }
  .stat-num span { color: var(--orange); }
  .stat-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 3px; }

  /* TICKER */
  .ticker-wrap { background: var(--orange); overflow: hidden; white-space: nowrap; padding: 10px 0; }
  .ticker { display: inline-block; animation: ticker 28s linear infinite; }
  .ticker span { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--white); padding: 0 28px; }
  .ticker span::before { content: '◆'; margin-right: 28px; opacity: 0.5; }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* SECTIONS */
  .section { padding: 80px 48px; }
  .section-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; color: var(--orange); text-transform: uppercase; margin-bottom: 12px; }
  .section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(36px, 5vw, 56px); font-weight: 800; text-transform: uppercase; line-height: 1; color: var(--black); }
  .section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }
  .section-desc { font-size: 15px; color: var(--grey); max-width: 340px; line-height: 1.6; }

  /* SERVICES */
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border-radius: 12px; overflow: hidden; }
  .service-card { background: var(--white); padding: 32px 28px; transition: background .2s; }
  .service-card:hover { background: var(--light); }
  .service-icon { width: 44px; height: 44px; background: var(--light); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 22px; }
  .service-name { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 10px; }
  .service-desc { font-size: 14px; color: var(--grey); line-height: 1.6; }
  .service-price { margin-top: 20px; font-size: 13px; font-weight: 600; color: var(--orange); display: flex; align-items: center; gap: 6px; }
  .service-price::before { content: ''; display: block; width: 16px; height: 1px; background: var(--orange); }

  /* WHY */
  .why-section { background: var(--black); padding: 80px 48px; color: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .why-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
  .why-item { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.08); align-items: flex-start; }
  .why-item:last-child { border-bottom: none; }
  .why-num { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: var(--orange); min-width: 40px; opacity: 0.5; line-height: 1; }
  .why-item-title { font-weight: 600; font-size: 16px; color: var(--white); margin-bottom: 6px; }
  .why-item-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; }
  .why-right-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(42px, 5vw, 64px); font-weight: 800; text-transform: uppercase; line-height: 1; color: var(--white); margin-bottom: 24px; }
  .why-right-title em { display: block; color: var(--orange); font-style: normal; }
  .why-right-text { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 380px; margin-bottom: 36px; }
  .why-certs { display: flex; gap: 12px; flex-wrap: wrap; }
  .cert-badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 8px 14px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.55); }

  /* PROCESS */
  .process-section { padding: 80px 48px; background: var(--light); }
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 48px; background: var(--border); border-radius: 12px; overflow: hidden; }
  .step { background: var(--light); padding: 32px 24px; position: relative; }
  .step-arrow { position: absolute; right: -14px; top: 50%; transform: translateY(-50%); z-index: 2; width: 28px; height: 28px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; font-weight: bold; }
  .step:last-child .step-arrow { display: none; }
  .step-n { font-family: 'Barlow Condensed', sans-serif; font-size: 56px; font-weight: 800; color: var(--border); line-height: 1; margin-bottom: 12px; }
  .step-title { font-weight: 600; font-size: 15px; color: var(--black); margin-bottom: 8px; }
  .step-desc { font-size: 13px; color: var(--grey); line-height: 1.6; }

  /* CONTACT */
  .contact-section { padding: 80px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .contact-form { display: flex; flex-direction: column; gap: 16px; }
  label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 500; color: var(--black); }
  input, select, textarea { font-family: 'Inter', sans-serif; font-size: 15px; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; background: var(--white); color: var(--black); outline: none; transition: border-color .15s; width: 100%; }
  input:focus, select:focus, textarea:focus { border-color: var(--orange); }
  textarea { resize: vertical; min-height: 100px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .btn-submit { background: var(--orange); color: var(--white); font-size: 15px; font-weight: 600; padding: 15px 32px; border-radius: 8px; border: none; cursor: pointer; transition: background .15s, transform .1s; margin-top: 4px; }
  .btn-submit:hover { background: var(--orange-dim); transform: translateY(-1px); }
  .contact-info-title { font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 800; text-transform: uppercase; line-height: 1; color: var(--black); margin-bottom: 24px; }
  .contact-info-title em { color: var(--orange); font-style: normal; }
  .contact-info-text { font-size: 15px; color: var(--grey); line-height: 1.7; margin-bottom: 36px; max-width: 360px; }
  .contact-details { display: flex; flex-direction: column; gap: 16px; }
  .contact-row { display: flex; gap: 14px; align-items: flex-start; }
  .contact-icon { width: 40px; height: 40px; background: var(--light); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
  .contact-row-label { font-size: 11px; color: var(--grey); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.06em; }
  .contact-row-value { font-size: 15px; font-weight: 600; color: var(--black); }
  .contact-row-value a { color: var(--black); text-decoration: none; }
  .contact-row-value a:hover { color: var(--orange); }
  /* LEGAL OVERLAY */
  .legal-overlay {
    display: none; position: fixed; inset: 0; z-index: 998;
    background: rgba(10,14,24,0.7); backdrop-filter: blur(6px);
    align-items: flex-start; justify-content: center;
    padding: 40px 20px; overflow-y: auto;
  }
  .legal-overlay.active { display: flex; }
  .legal-panel {
    background: var(--white); border-radius: 16px;
    max-width: 780px; width: 100%; padding: 52px 56px;
    position: relative; margin: auto;
  }
  .legal-close {
    position: absolute; top: 20px; right: 20px;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--light); border: none; cursor: pointer;
    font-size: 18px; display: flex; align-items: center; justify-content: center;
    color: var(--grey); transition: background .15s;
  }
  .legal-close:hover { background: var(--border); }
  .legal-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; color: var(--orange); text-transform: uppercase; margin-bottom: 10px; }
  .legal-title { font-family: 'Barlow Condensed', sans-serif; font-size: 42px; font-weight: 800; text-transform: uppercase; color: var(--black); line-height: 1; margin-bottom: 8px; }
  .legal-date { font-size: 13px; color: var(--grey); margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1.5px solid var(--border); }
  .legal-body h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; color: var(--black); margin: 28px 0 10px; }
  .legal-body h2:first-child { margin-top: 0; }
  .legal-body p { font-size: 14px; color: #444; line-height: 1.75; margin-bottom: 12px; }
  .legal-body ul { font-size: 14px; color: #444; line-height: 1.75; margin: 0 0 12px 20px; }
  .legal-body ul li { margin-bottom: 6px; }
  .legal-body strong { color: var(--black); font-weight: 600; }
  .legal-body a { color: var(--orange); text-decoration: none; }
  .legal-body .highlight-box {
    background: var(--light); border-left: 3px solid var(--orange);
    border-radius: 0 8px 8px 0; padding: 16px 18px; margin: 16px 0;
    font-size: 13px; color: var(--grey); line-height: 1.65;
  }

  /* FOOTER */
  footer { background: var(--black); padding: 40px 48px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
  .footer-brand { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; }
  .footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
  .footer-links { display: flex; gap: 24px; list-style: none; }
  .footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color .15s; }
  .footer-links a:hover { color: var(--white); }

  /* MODAL */
  .modal-overlay { display: none; position: fixed; inset: 0; background: rgba(15,24,38,0.85); z-index: 999; align-items: center; justify-content: center; }
  .modal-overlay.active { display: flex; }
  .modal { background: var(--white); border-radius: 16px; padding: 40px; max-width: 440px; width: 90%; text-align: center; }
  .modal-icon { font-size: 48px; margin-bottom: 16px; }
  .modal-title { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 800; text-transform: uppercase; color: var(--black); margin-bottom: 10px; }
  .modal-text { font-size: 15px; color: var(--grey); line-height: 1.6; margin-bottom: 28px; }
  .modal-close { background: var(--orange); color: white; border: none; padding: 13px 32px; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; }

  /* RESPONSIVE */
  @media (max-width: 860px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .hero-content { padding: 48px 20px 100px; }
    .hero-stats { position: static; }
    .section, .why-section, .process-section, .contact-section { padding: 60px 20px; }
    .services-grid, .why-section, .contact-section { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .step-arrow { display: none; }
    footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; }
    .stat-box { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  }
  @media (max-width: 540px) {
    .steps { grid-template-columns: 1fr; }
    .hero h1 { font-size: 52px; }
  }