  :root {
    --navy: #0a0f1e;
    --navy-mid: #111827;
    --steel: #1e3a5f;
    --blue: #1d6fa4;
    --accent: #e8932a;
    --accent-light: #f4a84a;
    --white: #ffffff;
    --off-white: #f4f6f9;
    --light-gray: #e8ecf2;
    --mid-gray: #8a9ab5;
    --text-dark: #0d1520;
    --text-body: #3a4a62;
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.25);
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Barlow', sans-serif; color: var(--text-body); background: var(--white); overflow-x: hidden; }

  /* NAVBAR */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 72px;
    background: rgba(10,15,30,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
  }
  nav.scrolled { background: rgba(10,15,30,0.98); }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo-icon {
    width: 38px; height: 38px; background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  }
  .nav-logo-icon svg { width: 20px; height: 20px; }
  .nav-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 3px; color: white; }
  .nav-logo-text span { color: var(--accent); }
  .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
  .nav-links a {
    color: rgba(255,255,255,0.75); text-decoration: none;
    font-size: 13px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
    transition: var(--transition); position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
    background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
  }
  .nav-links a:hover { color: white; }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-cta {
    background: var(--accent) !important; color: white !important; padding: 10px 24px;
    font-size: 12px !important; font-weight: 700 !important; letter-spacing: 2px !important;
    clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--accent-light) !important; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: white; transition: var(--transition); }

  /* HERO */
  .hero { position: relative; height: 100vh; min-height: 700px; overflow: hidden; display: flex; align-items: center; }
  .hero-slides { position: absolute; inset: 0; z-index: 0; }
  .hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; background-size: cover; background-position: center; }
  .hero-slide.active { opacity: 1; }
  .hero-slide:nth-child(1) { background: url('../img/slide-1.jpg'); }
  .hero-slide:nth-child(1)::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(90deg, transparent 0px, transparent 118px, rgba(255,255,255,0.06) 118px, rgba(255,255,255,0.06) 120px),
    repeating-linear-gradient(0deg, transparent 0px, transparent 58px, rgba(255,255,255,0.06) 58px, rgba(255,255,255,0.015) 60px);
  }
  .hero-slide:nth-child(2) { background: url('../img/slide.jpg'); }
  .hero-slide:nth-child(3) { background: url('../img/slide-2.jpg'); }

  .slide-art { position: absolute; inset: 0; overflow: hidden; }
  .container-block {
    position: absolute;
    background: linear-gradient(135deg, rgba(29,111,164,0.4), rgba(10,55,100,0.6));
    border: 1px solid rgba(232,147,42,0.25); border-radius: 2px;
    animation: slideFloat 12s ease-in-out infinite;
  }
  .container-block::after {
    content: ''; position: absolute; top: 4px; left: 4px; right: 4px; bottom: 4px;
    background: repeating-linear-gradient(90deg, transparent 0, transparent 30px, rgba(255,255,255,0.03) 30px, rgba(255,255,255,0.03) 32px);
  }
  @keyframes slideFloat {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-8px) translateX(4px); }
    66% { transform: translateY(4px) translateX(-3px); }
  }

  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(5,10,20,0.3) 0%, rgba(5,10,20,0.3) 45%, rgba(5,10,20,0.3) 100%);
    z-index: 1;
  }
  .hero-inner {
    position: relative; z-index: 2; width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 48px;
    display: grid; grid-template-columns: 1fr 440px; gap: 60px; align-items: center;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(232,147,42,0.12); border: 1px solid rgba(232,147,42,0.4);
    padding: 8px 18px; margin-bottom: 28px;
    clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
  }
  .hero-badge span { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent-light); }
  .hero-badge-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

  .hero-headline { font-family: 'Bebas Neue', sans-serif; font-size: clamp(30px, 7vw, 65px); line-height: 0.92; color: white; letter-spacing: 2px; margin-bottom: 24px; }
  .hero-headline em { font-style: normal; color: var(--accent); display: block; }
  .hero-sub { font-size: 17px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.65); max-width: 520px; margin-bottom: 40px; }
  .hero-btns { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent); color: white; padding: 16px 36px;
    font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    text-decoration: none; clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    transition: var(--transition); position: relative; overflow: hidden;
  }
  .btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.15); transform: translateX(-100%) skewX(-15deg); transition: transform 0.4s ease;
  }
  .btn-primary:hover::before { transform: translateX(100%) skewX(-15deg); }
  .btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,147,42,0.4); }
  .btn-primary svg { width: 16px; height: 16px; }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: rgba(255,255,255,0.8); padding: 14px 32px;
    font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    text-decoration: none; border: 1.5px solid rgba(255,255,255,0.3); transition: var(--transition);
  }
  .btn-ghost:hover { border-color: white; color: white; background: rgba(255,255,255,0.06); }

  .hero-stats { display: flex; gap: 36px; margin-top: 52px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1); }
  .stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 700; color: white; line-height: 1; margin-bottom: 4px; }
  .stat-num span { color: var(--accent); font-size: 24px; }
  .stat-label { font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); }

  .slide-indicators { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
  .slide-dot { width: 28px; height: 3px; background: rgba(255,255,255,0.3); cursor: pointer; transition: var(--transition); border: none; }
  .slide-dot.active { background: var(--accent); width: 48px; }

  /* QUOTE FORM */
  .quote-form-card {
    background: white; padding: 36px 32px; box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    position: relative; animation: formSlide 0.8s ease 0.4s both;
  }
  @keyframes formSlide { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
  .quote-form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-light)); }
  .form-title { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 2px; color: var(--navy); margin-bottom: 4px; }
  .form-subtitle { font-size: 13px; color: var(--mid-gray); margin-bottom: 24px; }
  .form-group { margin-bottom: 8px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
  .form-group input, .form-group select {
    width: 100%; padding: 9px 8px; border: 1.5px solid var(--light-gray); border-radius: 2px;
    font-family: 'Barlow', sans-serif; font-size: 14px; color: var(--text-dark);
    background: var(--off-white); transition: var(--transition); outline: none; -webkit-appearance: none;
  }
  .form-group input:focus, .form-group select:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(29,111,164,0.1); }
  .form-group input::placeholder { color: #b0bdd0; }
  .select-wrap { position: relative; }
  .select-wrap::after { content: '▾'; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--mid-gray); pointer-events: none; font-size: 14px; }
  .form-submit {
    width: 100%; padding: 15px; background: var(--accent); color: white; border: none;
    font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; cursor: pointer; clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
    transition: var(--transition); margin-top: 6px;
  }
  .form-submit:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,147,42,0.4); }
  .form-note { text-align: center; font-size: 11px; color: var(--mid-gray); margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; }

  /* TRUST BAR */
  .trust-bar {
    background: var(--navy-mid); padding: 20px 48px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px; overflow: hidden;
  }
  .trust-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); white-space: nowrap; flex-shrink: 0; }
  .trust-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
  .trust-logos { display: flex; align-items: center; gap: 40px; flex: 1; justify-content: space-around; flex-wrap: wrap; }
  .trust-logo { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 3px; color: rgba(255,255,255,0.25); transition: var(--transition); }
  .trust-logo:hover { color: rgba(255,255,255,0.55); }

  /* SECTIONS */
  .section-inner { max-width: 1400px; margin: 0 auto; padding: 0 48px; }
  .section-header { text-align: center; margin-bottom: 64px; }
  .section-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
  .section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 4vw, 58px); letter-spacing: 1.5px; color: var(--navy); line-height: 1; margin-bottom: 16px; }
  .section-desc { font-size: 17px; font-weight: 300; line-height: 1.7; color: var(--text-body); max-width: 600px; margin: 0 auto; }

  /* PRODUCTS */
  .products { padding: 100px 0; background: var(--off-white); position: relative; }
  .products::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--accent) 30%, var(--blue) 70%, transparent); }
  .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
  .product-card { background: white; overflow: hidden; position: relative; cursor: pointer; transition: transform 0.4s ease; }
  .product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); z-index: 2; }
  .product-visual { height: 220px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
  .product-card:nth-child(1) .product-visual { background: linear-gradient(135deg, #0d2545, #1a4a7a); }
  .product-card:nth-child(2) .product-visual { background: linear-gradient(135deg, #0a1f3a, #163d64); }
  .product-card:nth-child(3) .product-visual { background: linear-gradient(135deg, #061428, #0f2d50); }
  .product-card:nth-child(4) .product-visual { background: linear-gradient(135deg, #10253f, #1e4870); }
  .product-image { width: 100%; height: auto; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
  @keyframes iconFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
  .product-icon-wrap svg { width: 80px; height: 80px; fill: none; stroke: rgba(255,255,255,0.7); stroke-width: 1.5; filter: drop-shadow(0 4px 20px rgba(232,147,42,0.3)); }
  .product-card:hover .product-icon-wrap svg { stroke: rgba(232,147,42,0.9); }
  .product-badge { position: absolute; top: 16px; right: 16px; background: var(--accent); color: white; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%); }
  .product-dim { position: absolute; bottom: 16px; left: 16px; display: flex; gap: 8px; }
  .dim-tag { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); font-size: 10px; font-weight: 600; letter-spacing: 1px; padding: 3px 8px; }
  .product-info { padding: 24px; }
  .product-name { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: 1px; color: var(--navy); margin-bottom: 8px; }
  .product-desc-text { font-size: 14px; line-height: 1.6; color: var(--text-body); margin-bottom: 16px; }
  .product-specs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
  .spec-item { font-size: 11px; font-weight: 600; letter-spacing: 0.5px; color: var(--blue); background: rgba(29,111,164,0.08); padding: 4px 10px; border-radius: 2px; }
  .product-link { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); text-decoration: none; transition: var(--transition); }
  .product-link svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; transition: transform 0.3s ease; }
  .product-link:hover { color: var(--navy); }
  .product-link:hover svg { transform: translateX(4px); }

  /* FEATURES */
  .features { padding: 100px 0; background: white; }
  .features-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .features-visual { position: relative; height: 560px; }
  .feat-big-box { position: absolute; background: var(--navy); display: flex; align-items: center; justify-content: center; overflow: hidden; }
  .feat-big-box::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(90deg, transparent 0, transparent 38px, rgba(255,255,255,0.03) 38px, rgba(255,255,255,0.03) 40px),
    repeating-linear-gradient(0deg, transparent 0, transparent 38px, rgba(255,255,255,0.03) 38px, rgba(255,255,255,0.03) 40px);
  }
  .feat-box-1 { inset: 0 80px 80px 0; }
  .feat-box-2 { position: absolute; bottom: 0; right: 0; width: 180px; height: 160px; background: var(--accent); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
  .feat-box-2-num { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: white; line-height: 1; }
  .feat-box-2-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.8); }
  .feat-box-3 { position: absolute; bottom: 80px; left: 0; width: 140px; height: 120px; background: var(--blue); display: flex; align-items: center; justify-content: center; }
  .feat-center-icon { position: relative; z-index: 1; }
  .feat-center-icon svg { width: 120px; height: 120px; fill: none; stroke: rgba(255,255,255,0.15); stroke-width: 1; }
  .feat-accent-line { position: absolute; top: 0; left: -2px; bottom: 0; width: 4px; background: linear-gradient(180deg, var(--accent) 0%, transparent 100%); }
  .features-list { display: flex; flex-direction: column; gap: 28px; }
  .feature-item { display: flex; gap: 20px; align-items: flex-start; padding: 20px; border-left: 3px solid transparent; transition: var(--transition); cursor: default; }
  .feature-item:hover { background: var(--off-white); border-left-color: var(--accent); }
  .feature-icon-bg { width: 44px; height: 44px; flex-shrink: 0; background: var(--navy); display: flex; align-items: center; justify-content: center; clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%); transition: var(--transition); }
  .feature-item:hover .feature-icon-bg { background: var(--accent); }
  .feature-icon-bg svg { width: 20px; height: 20px; fill: none; stroke: white; stroke-width: 2; }
  .feature-item-title { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: 0.5px; color: var(--navy); margin-bottom: 6px; }
  .feature-item-desc { font-size: 14px; line-height: 1.65; color: var(--text-body); }

  /* PROCESS */
  .process { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
  .process::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(29,111,164,0.15) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 10% 80%, rgba(232,147,42,0.08) 0%, transparent 60%); }
  .process .section-title { color: white; }
  .process .section-desc { color: rgba(255,255,255,0.5); }
  .process .section-tag { color: var(--accent-light); }
  .process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; margin-top: 64px; }
  .process-steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0.15) 80%, transparent); }
  .process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; position: relative; }
  .step-num { width: 64px; height: 64px; background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; position: relative; z-index: 1; transition: var(--transition); clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%); }
  .process-step:hover .step-num { background: var(--accent); border-color: var(--accent); }
  .step-num-text { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: rgba(255,255,255,0.5); transition: var(--transition); }
  .process-step:hover .step-num-text { color: white; }
  .step-icon { margin-bottom: 16px; }
  .step-icon svg { width: 32px; height: 32px; fill: none; stroke: var(--accent); stroke-width: 1.5; }
  .step-title { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: white; margin-bottom: 10px; }
  .step-desc { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.45); }

  /* TESTIMONIALS */
  .testimonials { padding: 100px 0; background: var(--off-white); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testimonial-card { background: white; padding: 36px 32px; position: relative; border-top: 3px solid transparent; transition: var(--transition); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
  .testimonial-card:hover { border-top-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .quote-mark { font-family: 'Bebas Neue', sans-serif; font-size: 80px; line-height: 0.7; color: var(--light-gray); margin-bottom: 16px; display: block; }
  .testimonial-text { font-size: 15px; line-height: 1.75; color: var(--text-body); margin-bottom: 24px; font-style: italic; }
  .stars { display: flex; gap: 3px; margin-bottom: 20px; }
  .stars svg { width: 14px; height: 14px; fill: var(--accent); }
  .testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--light-gray); }
  .author-avatar { width: 44px; height: 44px; background: var(--steel); display: flex; align-items: center; justify-content: center; clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%); flex-shrink: 0; }
  .author-avatar-initials { font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 1px; color: white; }
  .author-name { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
  .author-role { font-size: 12px; color: var(--mid-gray); }

  /* CTA BAND */
  .cta-band { padding: 80px 0; background: var(--steel); position: relative; overflow: hidden; }
  .cta-band::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, transparent 0px, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 42px); }
  .cta-band-inner { max-width: 1400px; margin: 0 auto; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; }
  .cta-band-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 3.5vw, 52px); letter-spacing: 2px; color: white; line-height: 1.05; margin-bottom: 10px; }
  .cta-band-sub { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.6); }
  .cta-band-btns { display: flex; gap: 14px; flex-shrink: 0; }
  .btn-white { display: inline-flex; align-items: center; gap: 10px; background: white; color: var(--navy); padding: 16px 36px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%); transition: var(--transition); }
  .btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

  /* FOOTER */
  footer { background: var(--navy); padding: 72px 0 0; }
  .footer-inner { max-width: 1400px; margin: 0 auto; padding: 0 48px 56px; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
  .footer-brand-desc { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
  .footer-socials { display: flex; gap: 10px; }
  .social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: var(--transition); clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%); }
  .social-btn:hover { background: var(--accent); border-color: var(--accent); }
  .social-btn svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }
  .footer-col-title { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: white; margin-bottom: 20px; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
  .footer-links a:hover { color: rgba(255,255,255,0.9); padding-left: 4px; }
  .footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
  .footer-contact-item svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
  .footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
  .footer-bottom { max-width: 1400px; margin: 0 auto; padding: 20px 48px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.25); text-decoration: none; transition: var(--transition); }
  .footer-legal a:hover { color: rgba(255,255,255,0.6); }

  /* ANIMATIONS */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* RESPONSIVE */
  @media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .features-layout { grid-template-columns: 1fr; gap: 48px; }
    .features-visual { height: 320px; }
    .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .process-steps::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  }
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-inner { grid-template-columns: 1fr; padding: 0 24px; }
    .quote-form-card { display: none; }
    .trust-bar { padding: 16px 24px; }
    .section-inner { padding: 0 24px; }
    .cta-band-inner { flex-direction: column; text-align: center; padding: 0 24px; }
    .cta-band-btns { justify-content: center; }
    .footer-inner { grid-template-columns: 1fr; padding: 0 24px 40px; }
    .footer-bottom { padding: 20px 24px; flex-direction: column; text-align: center; }
  }
  @media (max-width: 640px) {
    .products-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 24px; }
  }

  /* MOBILE MENU */
  .mobile-menu { position: fixed; inset: 0; z-index: 999; background: var(--navy); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; transform: translateY(-100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 4px; color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); }
  .mobile-menu a:hover { color: var(--accent); }
  .mobile-close { position: absolute; top: 20px; right: 24px; background: none; border: none; cursor: pointer; color: white; font-size: 28px; }

  .page-header { position: relative; padding: 120px 0 80px; background: var(--navy); color: white; text-align: center; overflow: hidden; }
  .page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(29,111,164,0.15) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 10% 80%, rgba(232,147,42,0.08) 0%, transparent 60%); }
  .page-header-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; padding: 0 24px; }
  .page-header-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 72px); letter-spacing: 2px; line-height: 1.05; margin-bottom: 16px; }
  .page-header-sub { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.6); }

 .contact-form { max-width: 600px; margin: 0 auto; padding: 0 24px; }
 .contact-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
 .contact-input, .contact-textarea {
   width: 100%; padding: 11px 14px; border: 1.5px solid var(--light-gray); border-radius: 2px;
   font-family: 'Barlow', sans-serif; font-size: 14px; color: var(--text-dark);
   background: var(--off-white); transition: var(--transition); outline: none; -webkit-appearance: none; margin-bottom: 14px;
 } .contact-input:focus, .contact-textarea:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(29,111,164,0.1); }
 .contact-input::placeholder, .contact-textarea::placeholder { color: #b0bdd0; }
 .contact-submit {
   width: 100%; padding: 15px; background: var(--accent); color: white; border: none;
   font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer; clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
   transition: var(--transition); margin-top: 6px;
 } .contact-submit:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,147,42,0.4); }