:root {
    --black: #080808;
    --dark: #111111;
    --dark2: #1a1a1a;
    --steel: #2c2c2c;
    --red: #d92b2b;
    --red2: #ff3c3c;
    --text: #e0e0e0;
    --muted: #888;
    --white: #f5f5f5;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
  }

  /* NOISE TEXTURE OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    background: linear-gradient(to bottom, rgba(8,8,8,0.95), transparent);
    transition: padding 0.4s, background 0.4s;
  }

  nav.scrolled {
    padding: 10px 48px;
  }

  .nav-logo img {
    transition: height 0.4s;
  }

  nav.scrolled .nav-logo img {
    height: 30px !important;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    transition: opacity 0.3s, transform 0.3s;
  }

  nav.scrolled .nav-links {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--white);
  }

  .nav-logo span { color: var(--red); }

  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--red2); }

  .nav-cta {
    background: var(--red);
    color: white !important;
    padding: 10px 22px;
    font-size: 12px !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--red2) !important; color: white !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 48px 80px;
    position: relative;
    z-index: 2;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }

  .hero-tag::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--red);
  }

  .hero-tag span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
  }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 8vw, 110px);
    line-height: 0.92;
    letter-spacing: 2px;
    color: var(--white);
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
  }

  .hero h1 .outline {
    -webkit-text-stroke: 2px var(--steel);
    color: transparent;
  }

  .hero h1 .red { color: var(--red); }

  .hero-sub {
    margin-top: 28px;
    font-size: 17px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 400px;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
  }

  .btn-primary {
    background: var(--red);
    color: white;
    padding: 16px 32px;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--red2); transform: translateY(-2px); }

  .btn-outline {
    background: transparent;
    color: var(--muted);
    padding: 16px 32px;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--steel);
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
  }

  .btn-outline:hover { border-color: var(--muted); color: var(--white); }

  .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--steel);
    opacity: 0;
    animation: fadeUp 0.8s 1s forwards;
  }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--white);
    line-height: 1;
  }

  .stat-num span { color: var(--red); }

  .stat-label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
  }

  .hero-right {
    position: relative;
    overflow: hidden;
  }

  .hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(0.3);
  }

  .hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--black) 0%, transparent 40%),
                linear-gradient(to top, var(--black) 0%, transparent 30%);
  }

  /* diagonal red stripe */
  .hero-stripe {
    position: absolute;
    top: 0; bottom: 0;
    left: -20px;
    width: 4px;
    background: var(--red);
    z-index: 3;
    transform: skewX(-2deg);
  }

  /* SERVICES */
  .services {
    padding: 100px 48px;
    background: var(--dark);
    position: relative;
  }

  .services::before {
    content: 'PAKALPOJUMI';
    position: absolute;
    top: 60px; right: 48px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    color: rgba(255,255,255,0.02);
    letter-spacing: 8px;
    pointer-events: none;
  }

  .section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--red);
  }

  .section-label span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 64px);
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 56px;
    line-height: 1;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .service-card {
    background: var(--dark2);
    padding: 40px 36px;
    border-top: 3px solid transparent;
    transition: border-color 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 0;
    background: rgba(217,43,43,0.05);
    transition: height 0.4s;
  }

  .service-card:hover { border-top-color: var(--red); }
  .service-card:hover::before { height: 100%; }

  .service-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
  }

  .service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: rgba(255,255,255,0.04);
    position: absolute;
    top: 20px; right: 24px;
    line-height: 1;
    letter-spacing: 2px;
  }

  .service-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .service-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
  }

  .service-list {
    margin-top: 16px;
    list-style: none;
  }

  .service-list li {
    font-size: 13px;
    color: var(--muted);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .service-list li::before {
    content: '—';
    color: var(--red);
    font-size: 12px;
  }

  /* WHY US */
  .why {
    padding: 100px 48px;
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .why-image {
    position: relative;
    height: 500px;
  }

  .why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) saturate(0.2);
  }

  .why-image::before {
    content: '';
    position: absolute;
    top: -12px; left: -12px;
    right: 12px; bottom: 12px;
    border: 2px solid var(--steel);
    z-index: -1;
  }

  .why-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--red);
  }

  .why-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
  }

  .why-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .why-point-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--red);
    line-height: 1;
    flex-shrink: 0;
    width: 36px;
  }

  .why-point-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
  }

  .why-point-text p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
  }

  /* CONTACT */
  .contact {
    padding: 100px 48px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }

  .contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--red), transparent);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
  }

  .contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(217,43,43,0.1);
    border: 1px solid rgba(217,43,43,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .contact-item-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 4px;
  }

  .contact-item-value {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .form-input {
    background: var(--dark2);
    border: 1px solid var(--steel);
    color: var(--text);
    padding: 14px 18px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }

  .form-input:focus { border-color: var(--red); }
  .form-input::placeholder { color: var(--muted); }

  textarea.form-input { resize: vertical; min-height: 120px; }

  /* FOOTER */
  footer {
    background: var(--black);
    border-top: 1px solid var(--steel);
    padding: 32px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--muted);
  }

  .footer-logo span { color: var(--red); }

  .footer-copy {
    font-size: 12px;
    color: var(--muted);
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* MOBILE */
  @media (max-width: 768px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 100px 24px 60px; }
    .hero-stats { gap: 24px; }
    .services { padding: 60px 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .why { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
    .why-image { height: 280px; }
    .contact { padding: 60px 24px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px; }
  }
