:root {
      --bg: #050509;
      --bg-elevated: #0c0c12;
      --accent: #0d84ff;
      --accent-soft: rgba(13,132,255,0.12);
      --accent-gradient: linear-gradient(135deg, #0d84ff, #7f5dff);
      --text: #f8f8fc;
      --muted: #a0a3b8;
      --border-subtle: rgba(255,255,255,0.06);
      --radius-xl: 24px;
      --shadow-soft: 0 18px 45px rgba(0,0,0,0.6);
      --max-width: 1100px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
      background: radial-gradient(circle at top, #151521 0, #050509 45%, #000 100%);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* NAVBAR */

    .navbar {
      position: sticky;
      top: 0;
      z-index: 30;
      backdrop-filter: blur(12px);
      background: radial-gradient(circle at top left, rgba(79,79,255,0.15), transparent 60%),
                  linear-gradient(to bottom, rgba(5,5,9,0.95), rgba(5,5,9,0.75));
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.9rem 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .brand-logo {
      width: 30px;
      height: 30px;
      border-radius: 9px;
      background: var(--accent-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 25px rgba(13,132,255,0.6);
      font-size: 0.85rem;
      font-weight: 700;
    }

    .brand-text-title {
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-size: 0.78rem;
    }

    .brand-text-sub {
      font-size: 0.7rem;
      color: var(--muted);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.8rem;
      font-size: 0.85rem;
    }

    .nav-link {
      position: relative;
      color: var(--muted);
      transition: color 0.2s ease;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.3rem;
      width: 0;
      height: 1px;
      background: var(--accent-gradient);
      transition: width 0.2s ease;
    }

    .nav-link:hover {
      color: var(--text);
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .nav-cta {
      padding: 0.45rem 0.9rem;
      border-radius: 999px;
      background: var(--accent-gradient);
      font-size: 0.8rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      border: none;
      cursor: pointer;
      box-shadow: 0 10px 28px rgba(13,132,255,0.5);
    }

    .nav-cta span:last-child {
      font-size: 1rem;
      margin-top: -1px;
    }

    .nav-burger {
      display: none;
      border: none;
      background: transparent;
      cursor: pointer;
      padding: 0.3rem;
    }

    .nav-burger-line {
      width: 20px;
      height: 2px;
      background: var(--text);
      border-radius: 999px;
      margin: 3px 0;
    }

    /* HERO */

    .hero {
      padding: 3.5rem 0 3rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 3rem;
      align-items: center;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.2rem 0.8rem 0.2rem 0.2rem;
      border-radius: 999px;
      background: rgba(10,10,20,0.9);
      border: 1px solid var(--border-subtle);
      margin-bottom: 1.2rem;
    }

    .hero-dot {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: #15d365;
      box-shadow: 0 0 0 5px rgba(21,211,101,0.35);
    }

    .hero-kicker span {
      font-size: 0.78rem;
      color: var(--muted);
    }

    .hero-title {
      font-size: clamp(2.3rem, 4vw, 3rem);
      line-height: 1.1;
      font-weight: 650;
      margin-bottom: 0.9rem;
      letter-spacing: -0.04em;
    }

    .hero-title span {
      background: var(--accent-gradient);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 0.98rem;
      color: var(--muted);
      max-width: 30rem;
      line-height: 1.6;
      margin-bottom: 1.8rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      align-items: center;
      margin-bottom: 1.8rem;
    }

    .btn-primary {
      padding: 0.8rem 1.3rem;
      border-radius: 999px;
      background: var(--accent-gradient);
      border: none;
      color: white;
      font-weight: 500;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      cursor: pointer;
      box-shadow: var(--shadow-soft);
    }

    .btn-primary span:last-child {
      font-size: 1.1rem;
      margin-top: -2px;
    }

    .btn-ghost {
      padding: 0.7rem 1.1rem;
      border-radius: 999px;
      border: 1px solid var(--border-subtle);
      background: rgba(12,12,18,0.8);
      font-size: 0.85rem;
      color: var(--muted);
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      cursor: pointer;
    }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      font-size: 0.78rem;
    }

    .tag-pill {
      padding: 0.3rem 0.75rem;
      border-radius: 999px;
      border: 1px solid var(--border-subtle);
      background: rgba(12,12,18,0.8);
      color: var(--muted);
    }

    .hero-card {
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-subtle);
      padding: 1.4rem 1.5rem;
      background:
        radial-gradient(circle at top left, rgba(125, 100, 255,0.25), transparent 55%),
        radial-gradient(circle at bottom right, rgba(13,132,255,0.25), transparent 55%),
        linear-gradient(145deg, rgba(5,5,9,0.96), rgba(10,10,18,0.96));
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .hero-card-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.3rem 0.75rem;
      border-radius: 999px;
      background: rgba(0,0,0,0.55);
      border: 1px solid rgba(255,255,255,0.08);
      font-size: 0.72rem;
      color: var(--muted);
      margin-bottom: 1rem;
    }

    .hero-card-badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #15d365;
    }

    .hero-card-title {
      font-size: 0.95rem;
      margin-bottom: 0.6rem;
      font-weight: 500;
    }

    .hero-card-line {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.75rem;
      color: var(--muted);
      margin-bottom: 0.35rem;
    }

    .hero-card-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
      background: rgba(8,8,14,0.8);
      border: 1px solid rgba(255,255,255,0.06);
      font-size: 0.72rem;
      margin-top: 0.7rem;
    }

    .hero-card-pill-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #0d84ff;
    }

    .hero-card-blur {
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 60%);
      opacity: 0.4;
      right: -80px;
      bottom: -120px;
      pointer-events: none;
    }

    /* SECTIONS */

    section {
      padding: 3rem 0;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 1.5rem;
      margin-bottom: 1.8rem;
    }

    .section-label {
      font-size: 0.75rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .section-title {
      font-size: 1.3rem;
      font-weight: 550;
    }

    .section-subtitle {
      font-size: 0.9rem;
      color: var(--muted);
      max-width: 24rem;
    }

    /* SERVICES */

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.2rem;
    }

    .service-card {
      border-radius: 18px;
      border: 1px solid var(--border-subtle);
      background: rgba(10,10,16,0.92);
      padding: 1.2rem 1.2rem 1.3rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
      cursor: default;
    }

    .service-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 32px rgba(0,0,0,0.7);
      border-color: rgba(13,132,255,0.6);
      background: rgba(13,13,22,0.95);
    }

    .service-label {
      font-size: 0.78rem;
      color: var(--muted);
    }

    .service-title {
      font-size: 0.95rem;
      font-weight: 520;
    }

    .service-desc {
      font-size: 0.85rem;
      color: var(--muted);
      flex: 1;
    }

    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      margin-top: 0.3rem;
    }

    .service-tag {
      font-size: 0.7rem;
      padding: 0.18rem 0.55rem;
      border-radius: 999px;
      background: rgba(15,15,24,0.9);
      border: 1px solid rgba(255,255,255,0.05);
      color: var(--muted);
    }

    /* APPROCHE */

    .approach-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
      gap: 1.8rem;
      align-items: flex-start;
    }

    .approach-steps {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .step {
      display: flex;
      gap: 0.8rem;
      padding: 0.7rem 0.8rem;
      border-radius: 14px;
      border: 1px solid var(--border-subtle);
      background: rgba(8,8,15,0.95);
    }

    .step-badge {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      background: rgba(255,255,255,0.02);
    }

    .step-text-title {
      font-size: 0.85rem;
      margin-bottom: 0.15rem;
    }

    .step-text-sub {
      font-size: 0.78rem;
      color: var(--muted);
    }

    .approach-note {
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 0.7rem;
    }

    .highlight-card {
      border-radius: 18px;
      border: 1px solid var(--border-subtle);
      background: radial-gradient(circle at top, rgba(13,132,255,0.3), transparent 55%),
                  linear-gradient(145deg, rgba(6,6,12,0.98), rgba(7,7,15,0.98));
      padding: 1.3rem 1.4rem;
    }

    .highlight-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.18rem 0.7rem;
      border-radius: 999px;
      background: rgba(6,6,12,0.9);
      border: 1px solid rgba(255,255,255,0.12);
      font-size: 0.72rem;
      color: var(--muted);
      margin-bottom: 0.7rem;
    }

    .highlight-title {
      font-size: 0.95rem;
      margin-bottom: 0.4rem;
    }

    .highlight-list {
      list-style: none;
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 0.4rem;
    }

    .highlight-list li {
      margin-bottom: 0.2rem;
    }

    /* ABOUT */

    .about-card {
      border-radius: 18px;
      border: 1px solid var(--border-subtle);
      background: rgba(10,10,16,0.95);
      padding: 1.5rem 1.4rem;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 1.6rem;
    }

    .about-text-main {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .about-pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 1rem;
    }

    .about-pill {
      font-size: 0.72rem;
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
      background: rgba(15,15,24,0.95);
      border: 1px solid rgba(255,255,255,0.06);
      color: var(--muted);
    }

    .about-meta {
      font-size: 0.8rem;
      color: var(--muted);
      display: grid;
      gap: 0.6rem;
    }

    .about-meta-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
    }

    .about-meta-value {
      font-size: 0.85rem;
      color: var(--text);
    }

    /* CONTACT */

    .contact-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
      gap: 1.8rem;
    }

    .contact-note {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 1rem;
    }

    .contact-meta {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      font-size: 0.82rem;
      color: var(--muted);
    }

    .contact-meta-line span:first-child {
      color: var(--text);
      font-weight: 500;
      margin-right: 0.35rem;
    }

    .contact-card {
      border-radius: 18px;
      border: 1px solid var(--border-subtle);
      background: rgba(10,10,16,0.98);
      padding: 1.4rem 1.4rem;
    }

    form {
      display: grid;
      gap: 0.9rem;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.8rem;
    }

    label {
      font-size: 0.78rem;
      color: var(--muted);
    }

    input,
    textarea {
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(6,6,12,0.95);
      padding: 0.6rem 0.7rem;
      font-size: 0.86rem;
      color: var(--text);
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(160,163,184,0.7);
    }

    input:focus,
    textarea:focus {
      border-color: rgba(13,132,255,0.8);
      box-shadow: 0 0 0 1px rgba(13,132,255,0.3);
      background: rgba(4,4,10,0.98);
    }

    textarea {
      min-height: 140px;
      resize: vertical;
    }

    .form-footnote {
      font-size: 0.75rem;
      color: var(--muted);
      margin-top: 0.4rem;
    }

    .contact-submit {
      margin-top: 0.6rem;
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }

    .contact-submit button[type="submit"] {
      border: none;
    }

    .contact-status {
      font-size: 0.78rem;
      color: var(--muted);
    }

    /* FOOTER */

    footer {
      border-top: 1px solid rgba(255,255,255,0.08);
      margin-top: 1.5rem;
    }

    .footer-inner {
      padding: 1.4rem 0 1.6rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      font-size: 0.75rem;
      color: var(--muted);
    }

    .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    /* RESPONSIVE */

    @media (max-width: 960px) {
      .hero-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero {
        padding-top: 2.5rem;
      }

      .about-card {
        grid-template-columns: minmax(0, 1fr);
      }

      .contact-layout {
        grid-template-columns: minmax(0, 1fr);
      }

      .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 720px) {
      .nav-links {
        display: none;
      }

      .nav-burger {
        display: block;
      }

      .hero-grid {
        gap: 2.3rem;
      }

      .services-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .section-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .field-row {
        grid-template-columns: minmax(0, 1fr);
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }