:root {
    --orange: #FF6B00;
    --orange-dark: #CC5500;
    --black: #0A0A0A;
    --dark: #111111;
    --dark2: #1A1A1A;
    --dark3: #2A2A2A;
    --white: #FFFFFF;
    --grey: #666666;
    --light-grey: #F4F4F4;
    --mid-grey: #E2E2E2;
    --text-dark: #1A1A1A;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,107,0,0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 70px;
  }

  .nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .nav-logo .logo-qnl {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: -1px;
    color: var(--white);
    position: relative;
    display: inline-block;
  }

  .nav-logo .logo-qnl span {
    color: var(--orange);
  }

  .nav-logo .logo-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.55rem;
    letter-spacing: 4px;
    color: var(--orange);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .nav-logo .logo-sub::before,
  .nav-logo .logo-sub::after {
    content: '';
    display: block;
    width: 14px;
    height: 1px;
    background: var(--orange);
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
  }

  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.2s;
  }

  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--white);
    color: var(--black) !important;
    padding: 8px 20px;
    font-weight: 700 !important;
  }

  .nav-cta::after { display: none !important; }

  .nav-cta:hover { background: #e0e0e0; color: var(--black) !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 5% 5rem;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(0,0,0,0.025) 40px,
        rgba(0,0,0,0.025) 41px
      );
  }

  .hero-diagonal {
    position: absolute;
    right: -7%;
    top: 0;
    bottom: 0;
    width: 50%;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
    overflow: hidden;
  }

  .hero-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: none;
    transition: transform 0.4s;
  }

  .hero-diagonal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.18) 0%, transparent 40%);
    pointer-events: none;
  }

  .hero-diagonal-accent {
    position: absolute;
    right: -5%;
    top: 0;
    bottom: 0;
    width: 50%;
    clip-path: polygon(15% 0%, 16.5% 0%, 1.5% 100%, 0% 100%);
    background: var(--black);
    opacity: 0.12;
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
  }

  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.45);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 2px;
    background: rgba(0,0,0,0.2);
  }

  .hero-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 0.3rem;
  }

  .hero-headline .accent {
    color: var(--black);
    display: block;
    font-style: italic;
  }

  .hero-sub {
    font-size: 1.05rem;
    color: #555555;
    max-width: 480px;
    line-height: 1.7;
    margin: 1.5rem 0 2.5rem;
  }

  .hero-sub strong {
    color: var(--black);
  }

  .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--black);
    color: var(--white);
    padding: 14px 32px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }

  .btn-primary:hover {
    background: #333333;
    transform: translateY(-2px);
  }

  .btn-secondary {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid rgba(0,0,0,0.25);
    color: var(--black);
    padding: 12px 32px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
  }

  .btn-secondary:hover {
    border-color: var(--black);
    color: var(--black);
    background: rgba(0,0,0,0.05);
  }

  .hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3.5rem;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
  }

  .hero-stat {
    display: flex;
    flex-direction: column;
  }

  .hero-stat .num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--black);
    line-height: 1;
  }

  .hero-stat .label {
    font-size: 0.75rem;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
  }

  /* TRUST BAR */
  .trust-bar {
    background: var(--black);
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 14px 5%;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
  }

  .trust-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .trust-item svg { width: 16px; height: 16px; }

  /* SECTIONS */
  section { padding: 6rem 5%; }

  .section-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-eyebrow::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--orange);
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.2rem);
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
  }

  .section-title .accent { color: var(--orange); }

  /* WHY CHOOSE */
  .why-section {
    background: var(--light-grey);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .why-left .section-title { max-width: 500px; color: var(--text-dark); }
  .why-left p { color: var(--grey); line-height: 1.8; margin-bottom: 2rem; font-size: 1.05rem; }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .why-card {
    background: var(--white);
    border: 1px solid var(--mid-grey);
    padding: 1.5rem;
    border-top: 3px solid var(--orange);
    transition: all 0.3s;
  }

  .why-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .why-card .icon {
    width: 40px;
    height: 40px;
    background: rgba(255,107,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .why-card .icon svg { width: 20px; height: 20px; color: var(--orange); }

  .why-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
  }

  .why-card p { font-size: 0.85rem; color: var(--grey); line-height: 1.6; }

  /* PRODUCTS */
  .products-section { background: var(--white); }
  .products-section .section-title { text-align: center; color: var(--text-dark); }
  .products-section .section-eyebrow { justify-content: center; }
  .products-section .section-eyebrow::before { display: none; }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 3rem;
    border: 1px solid var(--mid-grey);
  }

  .product-card {
    background: var(--white);
    border-right: 1px solid var(--mid-grey);
    border-bottom: 1px solid var(--mid-grey);
    text-align: left;
    transition: all 0.3s;
    position: relative;
    overflow: visible;
    cursor: default;
    display: flex;
    flex-direction: column;
  }

  .product-card:nth-child(3n) { border-right: none; }
  .product-card:nth-child(n+4) { border-bottom: none; }

  .product-card-img {
    width: 100%;
    
    overflow: hidden;
    background: var(--light-grey);
    position: relative;
    flex-shrink: 0;
  }

  .tall-card .product-card-img {
    height: 440px;
}

  .product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: none;
    transition: transform 0.4s;
  }

  .product-card-img .img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--dark3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.25);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .product-card-img .img-placeholder svg {
    width: 36px;
    height: 36px;
    stroke: rgba(255,255,255,0.2);
  }

  .product-card:hover .product-card-img img {
    transform: scale(1.04);
  }

  .product-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--black);
    transition: border-color 0.3s;
  }

  .product-card:hover .product-card-body {
    border-top-color: var(--orange);
  }

  .product-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
  }

  .product-card p {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.6;
    flex: 1;
  }

  .product-card-tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--black);
    color: var(--white);
    padding: 3px 8px;
    margin-bottom: 0.75rem;
    align-self: flex-start;
  }

  @media (max-width: 768px) {
    .products-grid { grid-template-columns: 1fr 1fr; }
    .product-card:nth-child(3n) { border-right: 1px solid var(--mid-grey); }
    .product-card:nth-child(2n) { border-right: none; }
  }

  @media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .product-card { border-right: none !important; }
  }

  /* HOW IT WORKS */
  .process-section {
    background: var(--light-grey);
    position: relative;
    overflow: hidden;
  }

  .process-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
  }

  .process-header { max-width: 600px; margin-bottom: 4rem; }
  .process-header p { color: var(--grey); }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(16.66% + 32px);
    right: calc(16.66% + 32px);
    height: 2px;
    background: linear-gradient(90deg, var(--orange), rgba(255,107,0,0.2));
    z-index: 0;
  }

  .step {
    position: relative;
    z-index: 1;
  }

  .step-num {
    width: 64px;
    height: 64px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }

  .step h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
  }

  .step p { font-size: 0.95rem; color: var(--grey); line-height: 1.7; }

  /* SERVICES */
  .services-section { background: var(--white); }

  .services-section .section-title { color: var(--text-dark); }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
  }

  .service-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-left: 3px solid transparent;
    transition: all 0.3s;
  }

  .service-item:hover {
    border-left-color: var(--orange);
    background: rgba(255,107,0,0.04);
  }

  .service-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: rgba(255,107,0,0.2);
    line-height: 1;
    min-width: 50px;
  }

  .service-text h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
  }

  .service-text p { font-size: 0.9rem; color: var(--grey); line-height: 1.6; }

  /* ABOUT */
  .about-section {
    background: var(--light-grey);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-left p {
    color: var(--grey);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }

  .about-left .quote {
    border-left: 4px solid var(--orange);
    padding-left: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 2rem 0;
  }

  .about-right {
    display: grid;
    gap: 1.5rem;
  }

  .value-card {
    background: var(--white);
    padding: 1.5rem;
    border-left: 4px solid var(--orange);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }

  .value-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .value-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--white);
  }

  .value-text h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
  }

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

  .mission-section {
    background: var(--white);
    text-align: center;
  }

  .mission-section .section-title { color: var(--text-dark); }

  .mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .mv-card {
    background: var(--light-grey);
    padding: 3rem 2rem;
    border: 1px solid var(--mid-grey);
    position: relative;
    overflow: hidden;
  }

  .mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--orange);
  }

  .mv-card .big-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 5rem;
    color: rgba(255,107,0,0.07);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
  }

  .mv-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 1rem;
  }

  .mv-card p { font-size: 0.95rem; color: var(--grey); line-height: 1.8; }

  /* CONTACT CTA */
  .cta-section {
    background: var(--light-grey);
    border-top: 2px solid var(--black);
    padding: 5rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(0,0,0,0.04) 20px,
      rgba(0,0,0,0.04) 21px
    );
  }

  .cta-section .section-title {
    color: var(--black);
    position: relative;
    z-index: 1;
  }

  .cta-section p {
    color: var(--grey);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 1rem auto 2.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.7;
  }

  .cta-btns { display: flex; gap: 1rem; justify-content: center; position: relative; z-index: 1; }

  .btn-dark {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--black);
    color: var(--white);
    padding: 14px 32px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }

  .btn-dark:hover {
    background: var(--dark3);
    transform: translateY(-2px);
  }

  .btn-outline-white {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--black);
    color: var(--black);
    padding: 12px 32px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
  }

  .btn-outline-white:hover {
    background: var(--black);
    color: var(--white);
  }

  /* FOOTER */
  footer {
    background: var(--white);
    border-top: 2px solid var(--black);
    padding: 3rem 5% 2rem;
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }

  .footer-brand p {
    font-size: 0.85rem;
    color: #666666;
    max-width: 260px;
    margin-top: 0.75rem;
    line-height: 1.6;
  }

  .footer-links h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 1rem;
  }

  .footer-links ul { list-style: none; }

  .footer-links li { margin-bottom: 0.5rem; }

  .footer-links a {
    font-size: 0.85rem;
    color: #888888;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--black); }

  .footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-bottom p { font-size: 0.78rem; color: rgba(0,0,0,0.4); }

  .footer-bottom span { color: var(--black); font-weight: 700; }

  footer .logo-qnl { color: var(--black); }
  footer .logo-sub { color: #666666; }
  footer .logo-sub::before, footer .logo-sub::after { background: #666666; }

  /* CONTACT SECTION */
  .contact-section {
    background: var(--light-grey);
  }

  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .contact-info p {
    color: var(--grey);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }

  .contact-details { display: flex; flex-direction: column; gap: 1rem; }

  .contact-detail {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-left: 3px solid var(--orange);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  .contact-detail .d-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 2px;
  }

  .contact-detail .d-val { font-size: 0.9rem; color: var(--text-dark); }

  .contact-form-area {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--mid-grey);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  }

  .contact-form-area h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
  }

  .form-group { margin-bottom: 1.2rem; }

  .form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 0.4rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: var(--light-grey);
    border: 1px solid var(--mid-grey);
    color: var(--text-dark);
    padding: 12px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--orange);
  }

  .form-group textarea { height: 120px; resize: vertical; }

  .form-group select option { background: var(--white); color: var(--text-dark); }

  .form-submit {
    width: 100%;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 15px;
    cursor: pointer;
    transition: background 0.2s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }

  .form-submit:hover { background: var(--orange-dark); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-content > *:not(.hero-stats) {
    animation: fadeUp 0.7s ease forwards;
    opacity: 0;
  }

  .hero-stats {
    animation: fadeUp 0.7s ease 0.5s forwards;
    opacity: 0;
  }

  .hero-content .hero-eyebrow { animation-delay: 0.1s; }
  .hero-content .hero-headline { animation-delay: 0.2s; }
  .hero-content .hero-sub { animation-delay: 0.3s; }
  .hero-content .hero-btns { animation-delay: 0.4s; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .why-section,
    .about-section,
    .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
    .process-steps { grid-template-columns: 1fr; }
    .process-steps::before { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 1.5rem; }
    .hero-diagonal, .hero-diagonal-accent { display: none; }
  }