    :root {
      --red: #dc2626;
      --red-dark: #b91c1c;
      --black: #111827;
      --gray-950: #0f172a;
      --gray-900: #18181b;
      --gray-800: #27272a;
      --gray-700: #3f3f46;
      --gray-600: #52525b;
      --gray-500: #71717a;
      --gray-300: #d4d4d8;
      --gray-200: #e4e4e7;
      --gray-100: #f4f4f5;
      --white: #ffffff;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      --radius-xl: 22px;
      --radius-2xl: 30px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--black);
      background: var(--white);
      line-height: 1.55;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      width: min(var(--max), calc(100% - 32px));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--gray-200);
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 0;
    }

    .logo {
      height: 68px;
      width: auto;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 26px;
      font-weight: 600;
      color: var(--gray-700);
    }

    .nav a:hover { color: var(--red); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 18px;
      padding: 14px 20px;
      font-weight: 700;
      border: 1px solid transparent;
      transition: 0.2s ease;
      cursor: pointer;
    }

    .btn-primary {
      background: var(--red);
      color: var(--white);
      box-shadow: var(--shadow);
    }

    .btn-primary:hover { background: var(--red-dark); }

    .btn-outline {
      background: var(--white);
      border-color: var(--gray-200);
      color: var(--black);
    }

    .btn-outline:hover {
      border-color: var(--red);
      color: var(--red);
    }

    .hero {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at top right, rgba(220,38,38,0.12), transparent 28%),
        radial-gradient(circle at bottom left, rgba(24,24,27,0.08), transparent 30%);
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 46px;
      align-items: center;
      padding: 72px 0 88px;
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 18px;
    }

    .chip {
      padding: 8px 14px;
      background: var(--gray-100);
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      color: var(--gray-700);
      border: 1px solid var(--gray-200);
    }

    h1 {
      margin: 0;
      font-size: clamp(2.4rem, 6vw, 4.3rem);
      line-height: 1.02;
      letter-spacing: -0.03em;
    }

    .lead {
      margin-top: 22px;
      color: var(--gray-600);
      font-size: 1.13rem;
      max-width: 720px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .highlight-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 30px;
    }

    .highlight {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      background: rgba(255,255,255,0.84);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      font-weight: 700;
      color: var(--gray-800);
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 999px;
      background: var(--red);
      box-shadow: 0 0 0 5px rgba(220,38,38,0.12);
      flex: 0 0 auto;
    }

    .hero-card {
      border-radius: var(--radius-2xl);
      padding: 30px;
      color: var(--white);
      background: var(--gray-950);
      box-shadow: 0 18px 45px rgba(0,0,0,0.18);
      border: 1px solid rgba(255,255,255,0.06);
    }

    .hero-card-logo {
      max-width: 340px;
      filter: drop-shadow(0 12px 30px rgba(0,0,0,0.35));
    }

    .hero-tagline {
      margin-top: 16px;
      color: #a1a1aa;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 12px;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 24px;
    }

    .stat-card {
      border-radius: var(--radius-xl);
      padding: 18px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .stat-label {
      color: #a1a1aa;
      font-size: 14px;
      margin-bottom: 8px;
    }

    .stat-value {
      font-size: 1.1rem;
      font-weight: 800;
      line-height: 1.3;
    }

    .section {
      padding: 84px 0;
    }

    .section-muted {
      background: #fafafa;
      border-top: 1px solid var(--gray-200);
      border-bottom: 1px solid var(--gray-200);
    }

    .eyebrow {
      color: var(--red);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-weight: 800;
      font-size: 12px;
      margin-bottom: 12px;
    }

    h2 {
      margin: 0;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.05;
      letter-spacing: -0.02em;
    }

    .section-copy {
      margin-top: 16px;
      color: var(--gray-600);
      font-size: 1.08rem;
      max-width: 720px;
    }

    .service-grid {
      margin-top: 34px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-2xl);
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .card h3 {
      margin: 14px 0 10px;
      font-size: 1.2rem;
    }

    .card p {
      margin: 0;
      color: var(--gray-600);
    }

    .icon-box {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      background: #fef2f2;
      display: grid;
      place-items: center;
      color: var(--red);
      font-size: 22px;
      font-weight: 900;
    }

    .list {
      list-style: none;
      padding: 0;
      margin: 18px 0 0;
      display: grid;
      gap: 10px;
    }

    .list li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--gray-800);
      font-size: 0.98rem;
      font-weight: 600;
    }

    .list li::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--red);
      box-shadow: 0 0 0 4px rgba(220,38,38,0.12);
      flex: 0 0 auto;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 22px;
      align-items: start;
    }

    .about-copy p {
      color: var(--gray-600);
      font-size: 1.08rem;
      margin-top: 18px;
      max-width: 760px;
    }

    .info-stack {
      display: grid;
      gap: 14px;
    }

    .info-card {
      padding: 22px;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-2xl);
      box-shadow: var(--shadow);
      background: var(--white);
    }

    .info-title {
      font-weight: 800;
      margin-bottom: 10px;
    }

    .info-body {
      color: var(--gray-600);
    }

    .contact {
      background: var(--gray-950);
      color: var(--white);
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 24px;
      align-items: start;
    }

    .contact-copy {
      color: #d4d4d8;
      font-size: 1.08rem;
      max-width: 650px;
      margin-top: 16px;
    }

    .contact-actions {
      margin-top: 26px;
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-outline-dark {
      border: 1px solid #3f3f46;
      color: var(--white);
      background: transparent;
    }

    .btn-outline-dark:hover {
      border-color: var(--white);
      background: rgba(255,255,255,0.03);
    }

    .contact-cards {
      display: grid;
      gap: 14px;
    }

    .contact-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-2xl);
      padding: 22px;
    }

    .contact-label {
      color: #f87171;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 12px;
      margin-bottom: 10px;
    }

    .contact-value {
      color: #e4e4e7;
      font-weight: 700;
      line-height: 1.5;
    }

    footer {
      padding: 22px 0 28px;
      background: var(--gray-950);
      color: #a1a1aa;
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.06);
      font-size: 14px;
    }

    .page-header {
      padding: 56px 0 12px;
      text-align: center;
    }

    .page-header .eyebrow {
      display: block;
      text-align: center;
    }

    .page-header .section-copy {
      margin-left: auto;
      margin-right: auto;
    }

    .gallery-grid {
      margin-top: 34px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .gallery-item {
      display: block;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid var(--gray-200);
    }

    .gallery-item img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .footer-legal {
      display: grid;
      gap: 4px;
      margin-bottom: 12px;
      color: #a1a1aa;
    }

    @media (max-width: 980px) {
      .hero-inner,
      .about-grid,
      .contact-grid,
      .service-grid {
        grid-template-columns: 1fr;
      }

      .service-grid { gap: 16px; }
      .stat-grid,
      .highlight-grid { grid-template-columns: 1fr; }
      .nav { display: none; }
      .topbar-inner { flex-wrap: wrap; }
      .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 640px) {
      .logo { height: 56px; }
      .hero-inner { padding: 54px 0 68px; }
      .section { padding: 68px 0; }
      .btn { width: 100%; }
      .hero-actions,
      .contact-actions { flex-direction: column; }
      .gallery-grid { grid-template-columns: 1fr; }
    }
