<?php
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --fire-red: #C0392B;
    --fire-orange: #E8590C;
    --fire-amber: #F5A623;
    --steel: #1A1D23;
    --steel-mid: #252830;
    --steel-light: #333844;
    --ash: #8B9099;
    --white: #F4F1EE;
    --stripe: rgba(200,60,30,0.07);
  }

  html { scroll-behavior: smooth; }

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

  /* ─── DIAGONAL STRIPE TEXTURE ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      var(--stripe) 40px,
      var(--stripe) 42px
    );
    pointer-events: none;
    z-index: 0;
  }

    /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    height: 70px;
    background: rgba(20,21,26,0.97);
    border-bottom: 2px solid var(--fire-red);
    backdrop-filter: blur(8px);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    z-index: 110;
  }

  .nav-logo img {
    height: 42px;
    width: 42px;
    object-fit: contain;
  }

  .nav-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: var(--white);
    line-height: 1;
  }

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

  /* Desktop links */
  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ash);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--fire-orange); }

  .nav-cta {
    background: var(--fire-red);
    color: var(--white) !important;
    padding: 0.5rem 1.4rem;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--fire-orange) !important; color: var(--white) !important; }

  /* ─── HAMBURGER BUTTON ─── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid rgba(139,144,153,0.25);
    cursor: pointer;
    position: relative;
    z-index: 110;
    clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
    transition: border-color 0.2s;
  }

  .nav-hamburger:hover { border-color: var(--fire-red); }

  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
  }

  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ─── MOBILE DRAWER ─── */
  .nav-drawer {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(14,15,18,0.98);
    border-bottom: 2px solid var(--fire-red);
    backdrop-filter: blur(12px);
    z-index: 99;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 1.5rem 1.5rem 2rem;
  }

  .nav-drawer.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-drawer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
  }

  .nav-drawer ul li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-drawer ul li:first-child {
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .nav-drawer ul a {
    display: block;
    padding: 1rem 0.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ash);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
  }

  .nav-drawer ul a:hover { color: var(--white); padding-left: 1rem; }

  .nav-drawer .drawer-cta {
    display: block;
    margin-top: 1.5rem;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    background: var(--fire-red);
    padding: 0.9rem 2rem;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: background 0.2s;
  }

  .nav-drawer .drawer-cta:hover { background: var(--fire-orange); }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 3rem;
    padding-top: 70px;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,60,30,0.18) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 70% 60%, rgba(232,89,12,0.12) 0%, transparent 60%),
      linear-gradient(170deg, #14151A 0%, #1A1D23 60%, #1C1715 100%);
    z-index: 0;
  }

  /* fire glow lines */
  .hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--fire-red), var(--fire-orange), var(--fire-red), transparent);
    animation: scanline 3s ease-in-out infinite;
  }

  @keyframes scanline {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fire-orange);
    border: 1px solid rgba(232,89,12,0.4);
    padding: 0.35rem 1rem;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    margin-bottom: 1.5rem;
    background: rgba(232,89,12,0.08);
  }

  .badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--fire-orange);
    animation: pulse 1.5s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 1.5rem;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--fire-orange);
  }

  .hero-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--ash);
    max-width: 520px;
    margin-bottom: 2.5rem;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
  }

  .btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    background: var(--fire-red);
    padding: 0.85rem 2.2rem;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--fire-orange); transform: translateY(-2px); }

  .btn-secondary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ash);
    border: 1px solid rgba(139,144,153,0.3);
    padding: 0.85rem 2rem;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: color 0.2s, border-color 0.2s;
  }

  .btn-secondary:hover { color: var(--white); border-color: var(--white); }

  .hero-visual {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.12;
  }

  .hero-visual svg {
    width: 600px;
    height: 600px;
  }

  /* ─── STAT STRIP ─── */
  .stat-strip {
    position: relative;
    z-index: 1;
    background: var(--fire-red);
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .stat-item strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.03em;
    color: var(--white);
    line-height: 1;
  }

  .stat-item span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(244,241,238,0.7);
    max-width: 100px;
    line-height: 1.3;
  }

  .stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.25);
  }

  /* ─── SECTION COMMONS ─── */
  section {
    position: relative;
    z-index: 1;
    padding: 6rem 3rem;
  }

  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--fire-orange);
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.03em;
    line-height: 1;
    color: var(--white);
    margin-bottom: 1rem;
  }

  .section-sub {
    font-size: 1.05rem;
    color: var(--ash);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 3rem;
  }

  /* ─── FEATURES ─── */
  .features { background: var(--steel-mid); }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5px;
    background: rgba(232,89,12,0.15);
    border: 1.5px solid rgba(232,89,12,0.15);
  }

  .feature-card {
    background: var(--steel-mid);
    padding: 2.5rem 2rem;
    position: relative;
    transition: background 0.25s;
    overflow: hidden;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: var(--fire-red);
    transform: scaleY(0);
    transition: transform 0.3s;
    transform-origin: bottom;
  }

  .feature-card:hover { background: var(--steel-light); }
  .feature-card:hover::before { transform: scaleY(1); }

  .feature-icon {
    width: 52px; height: 52px;
    background: rgba(192,57,43,0.15);
    border: 1px solid rgba(192,57,43,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  }

  .feature-icon svg {
    width: 26px; height: 26px;
    stroke: var(--fire-orange);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .feature-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.6rem;
  }

  .feature-card p {
    font-size: 0.93rem;
    color: var(--ash);
    line-height: 1.65;
  }

  /* ─── PRODUCTS ─── */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }

  .product-card {
    background: var(--steel-mid);
    border: 1px solid rgba(255,255,255,0.07);
    border-top: 3px solid var(--fire-red);
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.25s, border-top-color 0.25s;
  }

  .product-card:hover { transform: translateY(-4px); border-top-color: var(--fire-orange); }

  .product-card.featured {
    border-top-color: var(--fire-orange);
    background: linear-gradient(160deg, rgba(232,89,12,0.08) 0%, var(--steel-mid) 50%);
  }

  .product-tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1.25rem;
    background: rgba(232,89,12,0.15);
    color: var(--fire-orange);
    border: 1px solid rgba(232,89,12,0.3);
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  }

  .product-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 0.75rem;
  }

  .product-card p {
    font-size: 0.93rem;
    color: var(--ash);
    line-height: 1.65;
    margin-bottom: 1.75rem;
  }

  .product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .product-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(244,241,238,0.75);
  }

  .product-features li::before {
    content: '▸';
    color: var(--fire-red);
    flex-shrink: 0;
    font-size: 0.85rem;
    margin-top: 1px;
  }

  /* ─── ABOUT / MISSION ─── */
  .mission {
    background: var(--steel-mid);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  @media (max-width: 860px) {
    .mission { grid-template-columns: 1fr; gap: 3rem; }
  }

  .mission-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .mission-logo-wrap {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mission-logo-wrap::before,
  .mission-logo-wrap::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(192,57,43,0.25);
    animation: ring-pulse 3s ease-in-out infinite;
  }

  .mission-logo-wrap::before {
    width: 220px; height: 220px;
    animation-delay: 0s;
  }

  .mission-logo-wrap::after {
    width: 270px; height: 270px;
    animation-delay: 1s;
  }

  @keyframes ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.15; }
  }

  .mission-logo-wrap img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 30px rgba(192,57,43,0.35));
  }

  .mission-text blockquote {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: var(--fire-orange);
    border-left: 3px solid var(--fire-red);
    padding-left: 1.25rem;
    margin: 1.5rem 0 2rem;
    line-height: 1.3;
  }

  .mission-text p {
    font-size: 1rem;
    color: var(--ash);
    line-height: 1.75;
    margin-bottom: 1rem;
  }

  /* ─── TESTIMONIALS ─── */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .testimonial {
    background: var(--steel-mid);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 2rem;
    position: relative;
  }

  .testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem; right: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: rgba(192,57,43,0.15);
    line-height: 1;
  }

  .testimonial p {
    font-size: 0.97rem;
    color: rgba(244,241,238,0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .author-badge {
    width: 40px; height: 40px;
    background: var(--fire-red);
    clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--white);
  }

  .author-info strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white);
  }

  .author-info span {
    font-size: 0.8rem;
    color: var(--ash);
  }

  /* ─── CTA ─── */
  .cta-section {
    text-align: center;
    background: linear-gradient(160deg, #1A1D23 0%, #1C1612 100%);
    border-top: 1px solid rgba(192,57,43,0.2);
    border-bottom: 1px solid rgba(192,57,43,0.2);
    padding: 6rem 3rem;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    bottom: -80px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 200px;
    background: radial-gradient(ellipse, rgba(200,60,30,0.2) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-section .section-title { margin-bottom: 0.5rem; }

  .cta-section .section-sub {
    margin: 0 auto 2.5rem;
    text-align: center;
    max-width: 480px;
  }

  .cta-section .hero-actions {
    justify-content: center;
  }

  /* ─── FOOTER ─── */
  footer {
    position: relative;
    z-index: 1;
    background: #0E0F12;
    border-top: 2px solid var(--fire-red);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .footer-brand img { height: 36px; }

  .footer-brand-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    color: var(--white);
  }

  .footer-brand-text span { color: var(--fire-orange); }

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

  .footer-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ash);
    text-decoration: none;
    transition: color 0.2s;
  }

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

  .footer-copy {
    font-size: 0.8rem;
    color: rgba(139,144,153,0.5);
    text-align: right;
  }

  /* ─── SCROLL ANIMATIONS ─── */
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 900px) {
    nav { padding: 0 1.5rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-drawer { display: block; }
    section, .hero, .mission { padding-left: 1.5rem; padding-right: 1.5rem; }
    .stat-strip { padding: 1.2rem 1.5rem; }
    footer { padding: 2rem 1.5rem; flex-direction: column; }
    .footer-copy { text-align: left; }
  }