/* =============================================
   LANCE UK — MAIN STYLESHEET
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700;800&family=Barlow:wght@300;400;500&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }

:root {
  --bg-main: #F5F7F5;
  --bg-panel: #FFFFFF;
  --bg-alt: #ECEEF0;
  --text-dark: #0D0D0D;
  --text-gray: #424B42;
  --text-light: #7A8A7A;
  --green: #2D7A2D;
  --green-dim: #1E5C1E;
  --green-bright: #3DAF3D;
  --green-light: rgba(45,122,45,0.12);
  --border: #D4DED4;
  --display: 'Barlow Condensed', sans-serif;
  --body: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--bg-main); color: var(--text-dark); overflow-x: hidden; }

/* CURSOR */
* { cursor: none !important; }
#cur { position: fixed; width: 8px; height: 8px; background: var(--orange); border-radius: 50%; pointer-events: none; z-index: 99999; transform: translate(-50%, -50%); transition: width .2s, height .2s; }
#cur-ring { position: fixed; width: 32px; height: 32px; border: 1px solid rgba(232, 82, 10, 0.5); border-radius: 50%; pointer-events: none; z-index: 99998; transform: translate(-50%, -50%); transition: left .06s linear, top .06s linear, width .3s, height .3s; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; height: 68px; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; border-bottom: 1px solid transparent; transition: all .4s; }
nav.scrolled { background: rgba(255,255,255,.95); backdrop-filter: blur(20px); border-bottom-color: var(--border); box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-image-wrap { display: flex; align-items: center; }
.logo-image-wrap img { height: 64px; width: auto; object-fit: contain; }
.logo-icon { width: 36px; height: 36px; background: var(--orange); display: flex; align-items: center; justify-content: center; clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%); }
.logo-icon svg { width: 18px; height: 18px; fill: white; }
.logo-text { font-family: var(--display); font-size: 22px; font-weight: 700; letter-spacing: 4px; color: var(--text-dark); }
.logo-sub { font-size: 9px; letter-spacing: 3px; color: var(--orange); font-weight: 600; display: block; margin-top: -2px; text-transform: uppercase; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-family: var(--display); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: #2f750d; text-decoration: none; font-weight: 600; transition: color .25s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--orange); transition: width .25s; }
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-family: var(--display); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; padding: 10px 24px; background: var(--orange); color: white; text-decoration: none; clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%); padding-right: 32px; transition: background .25s; }
.nav-cta:hover { background: var(--orange-dim); color: white; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); transition: all .3s; border-radius: 2px; }
.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); z-index: 499; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid var(--border); }
.mobile-menu ul li a { display: block; padding: 16px 0; font-family: var(--display); font-size: 16px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-gray); text-decoration: none; font-weight: 600; }
.mobile-menu .mob-cta { display: block; margin-top: 16px; text-align: center; padding: 14px; background: var(--orange); color: white; font-family: var(--display); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; text-decoration: none; }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; display: flex; align-items: center; background: var(--bg-main); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0.15; filter: grayscale(100%); }
.hero-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px); background-size: 60px 60px; }
.hero-content { position: relative; z-index: 2; padding: 0 48px; max-width: 850px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(232,82,10,.1); border: 1px solid rgba(232,82,10,.2); padding: 8px 16px; margin-bottom: 28px; border-radius: 4px; opacity: 0; animation: fadeUp .8s .3s forwards; }
.hero-badge-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
.hero-badge span { font-family: var(--display); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); font-weight: 700; }
.hero-title { font-family: var(--display); font-size: clamp(56px, 9vw, 110px); font-weight: 800; line-height: .9; letter-spacing: -1px; text-transform: uppercase; opacity: 0; animation: fadeUp 1s .5s forwards; color: var(--text-dark); }
.hero-title .line2 { color: #2f750d; display: block; }
.hero-title .line3 { color: transparent; -webkit-text-stroke: 1px var(--text-gray); display: block; font-weight: 800; opacity: 0.3; }
.hero-desc { font-size: 17px; color: var(--text-gray); line-height: 1.8; max-width: 540px; margin: 28px 0 40px; opacity: 0; animation: fadeUp .8s .8s forwards; font-weight: 500; }
.hero-actions { display: flex; gap: 16px; opacity: 0; animation: fadeUp .8s 1s forwards; }
.btn-primary { font-family: var(--display); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; padding: 14px 36px; background: var(--orange); color: white; text-decoration: none; clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%); padding-right: 44px; transition: background .25s, transform .25s; box-shadow: 0 10px 20px rgba(232,82,10,0.2); display: inline-flex; align-items: center; }
.btn-primary:hover { background: var(--orange-dim); transform: translateX(4px); }
.btn-ghost { font-family: var(--display); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; padding: 13px 32px; border: 2px solid var(--text-dark); color: var(--text-dark); text-decoration: none; transition: all .25s; }
.btn-ghost:hover { background: var(--text-dark); color: white; }
.hero-stats-bar { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; background: rgba(255,255,255,.95); backdrop-filter: blur(12px); border-top: 1px solid var(--border); display: flex; }
.hstat { flex: 1; padding: 20px 32px; border-right: 1px solid var(--border); opacity: 0; animation: fadeUp .6s forwards; }
.hstat:nth-child(1) { animation-delay: .9s; }
.hstat:nth-child(2) { animation-delay: 1.0s; }
.hstat:nth-child(3) { animation-delay: 1.1s; }
.hstat:nth-child(4) { animation-delay: 1.2s; border-right: none; }
.hstat-num { font-family: var(--display); font-size: 36px; font-weight: 800; color: #2f750d; line-height: 1; }
.hstat-label { font-size: 12px; color: var(--text-gray); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* TICKER */
.ticker { background: var(--text-dark); padding: 12px 0; overflow: hidden; }
.ticker-track { display: flex; animation: tick 30s linear infinite; white-space: nowrap; }
.tick-item { display: flex; align-items: center; gap: 24px; padding: 0 32px; font-family: var(--display); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; color: white; }
.tick-sep { width: 6px; height: 6px; background: var(--orange); transform: rotate(45deg); flex-shrink: 0; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTION */
section { padding: 100px 48px; }
.s-label { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.s-label-line { width: 40px; height: 3px; background: var(--orange); flex-shrink: 0; }
.s-label span { font-family: var(--display); font-size: 13px; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); font-weight: 700; }
.s-title { font-family: var(--display); font-size: clamp(36px, 5vw, 64px); font-weight: 800; text-transform: uppercase; line-height: .95; letter-spacing: -0.5px; color: #2f750d; }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: none; }

/* INTRO SPLIT */
.intro-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--bg-panel); border: 1px solid var(--border); box-shadow: 0 10px 40px rgba(0,0,0,0.03); margin: 0 48px; transform: translateY(-40px); position: relative; z-index: 10; }
.intro-left { padding: 72px 56px; border-right: 1px solid var(--border); }
.intro-left .s-title { margin-bottom: 24px; }
.intro-body { font-size: 16px; color: var(--text-gray); line-height: 1.8; margin-bottom: 32px; font-weight: 400; }
.intro-right { display: grid; grid-template-columns: 1fr 1fr; border-left: none; background: var(--bg-alt); }
.istat { padding: 40px 36px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); position: relative; overflow: hidden; background: var(--bg-panel); transition: transform 0.3s; }
.istat:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); z-index: 2; }
.istat:nth-child(2n) { border-right: none; }
.istat:nth-child(3), .istat:nth-child(4) { border-bottom: none; }
.istat-num { font-family: var(--display); font-size: 56px; font-weight: 800; color: #2f750d; line-height: 1; margin-bottom: 8px; }
.istat-desc { font-size: 13px; color: var(--text-gray); line-height: 1.6; font-weight: 500; letter-spacing: .5px; }
.istat-bg { position: absolute; bottom: -15px; right: -15px; font-family: var(--display); font-size: 90px; font-weight: 800; color: rgba(0,0,0,0.03); line-height: 1; pointer-events: none; }

/* PRODUCTS */
.products { background: var(--bg-main); padding-top: 60px; }
.prod-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }
.prod-tabs { display: flex; gap: 0; background: var(--bg-panel); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.prod-tab { font-family: var(--display); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; padding: 12px 28px; color: var(--text-gray); background: transparent; border: none; border-right: 1px solid var(--border); transition: all .25s; }
.prod-tab:last-child { border-right: none; }
.prod-tab.active, .prod-tab:hover { color: white; background: var(--text-dark); }
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prod-card { background: var(--bg-panel); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; position: relative; display: flex; flex-direction: column; transition: box-shadow 0.3s, transform 0.3s; }
.prod-card:hover { box-shadow: 0 15px 30px rgba(0,0,0,0.08); transform: translateY(-5px); }
.prod-card.hidden { display: none; }
.prod-img { aspect-ratio: 4/3; overflow: hidden; position: relative; background: #E9ECEF; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.prod-card:hover .prod-img img { transform: scale(1.08); }
.prod-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.4), transparent); }
.prod-power { position: absolute; top: 16px; right: 16px; background: var(--orange); font-family: var(--display); font-size: 13px; font-weight: 800; letter-spacing: 2px; padding: 8px 16px; color: white; clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%); padding-right: 22px; box-shadow: 0 4px 10px rgba(232,82,10,0.3); }
.prod-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.prod-series { font-family: var(--display); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; font-weight: 700; }
.prod-name { font-family: var(--display); font-size: 24px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; color: #2f750d; }
.prod-desc { font-size: 14px; color: var(--text-gray); line-height: 1.7; margin-bottom: 24px; font-weight: 400; }
.prod-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
.spec-val { font-family: var(--display); font-size: 18px; font-weight: 800; color: var(--text-dark); }
.spec-key { font-size: 11px; color: var(--text-light); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; font-weight: 600; }
.prod-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.prod-price { font-family: var(--display); font-size: 14px; color: var(--text-light); font-style: italic; font-weight: 500; }
.prod-btn { font-family: var(--display); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; padding: 12px 24px; background: var(--text-dark); color: white; border: none; clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%); padding-right: 30px; text-decoration: none; transition: background .25s; }
.prod-btn:hover { background: var(--orange); }

/* WHY LANCE */
.why { background: var(--bg-panel); position: relative; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-bg-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--display); font-size: 24vw; font-weight: 800; color: rgba(0,0,0,0.02); letter-spacing: -10px; white-space: nowrap; pointer-events: none; text-transform: uppercase; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; position: relative; z-index: 2; }
.why-card { background: var(--bg-main); border: 1px solid var(--border); padding: 48px 40px; position: relative; overflow: hidden; transition: all .3s; border-radius: 8px; }
.why-card:hover { background: white; box-shadow: 0 15px 35px rgba(0,0,0,0.05); transform: translateY(-5px); border-color: var(--orange); }
.why-card-num { font-family: var(--display); font-size: 72px; font-weight: 800; color: rgba(0,0,0,0.04); line-height: 1; position: absolute; top: 20px; right: 24px; transition: color .3s; }
.why-card:hover .why-card-num { color: rgba(232,82,10,.1); }
.why-icon { width: 56px; height: 56px; background: rgba(232,82,10,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: background .3s, transform 0.3s; }
.why-card:hover .why-icon { background: var(--orange); transform: scale(1.1); }
.why-icon svg { width: 26px; height: 26px; fill: var(--orange); transition: fill 0.3s; }
.why-card:hover .why-icon svg { fill: white; }
.why-title { font-family: var(--display); font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; color: var(--text-dark); }
.why-body { font-size: 15px; color: var(--text-gray); line-height: 1.8; font-weight: 400; }

/* ENGINE BANNER */
.engine-banner { position: relative; height: 540px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.engine-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 6s linear; }
.engine-banner:hover .engine-bg { transform: scale(1.05); }
.engine-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(255,255,255,.95) 30%, rgba(255,255,255,.4) 100%); }
.engine-content { position: relative; z-index: 2; padding: 0 48px; max-width: 700px; width: 100%; align-self: center; margin-right: auto; }
.engine-label { font-family: var(--display); font-size: 13px; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: 16px; display: block; }
.engine-title { font-family: var(--display); font-size: clamp(40px, 6vw, 72px); font-weight: 800; text-transform: uppercase; line-height: .95; margin-bottom: 24px; color: var(--text-dark); }
.engine-title span { color: var(--orange); }
.engine-features { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.eng-feat { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dark); font-weight: 700; background: white; padding: 8px 16px; border-radius: 4px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.eng-feat-dot { width: 6px; height: 6px; background: var(--orange); flex-shrink: 0; border-radius: 50%; }

/* TESTIMONIALS */
.testimonials { background: var(--bg-alt); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.test-card { background: var(--bg-panel); padding: 48px 40px; position: relative; border-radius: 8px; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.test-card::before { content: '"'; font-family: var(--display); font-size: 100px; font-weight: 800; color: rgba(232,82,10,.1); line-height: .7; position: absolute; top: 24px; right: 24px; }
.test-stars { color: var(--orange); font-size: 16px; letter-spacing: 4px; margin-bottom: 20px; }
.test-quote { font-size: 16px; color: var(--text-gray); line-height: 1.85; margin-bottom: 32px; font-style: italic; font-weight: 500; }
.test-divider { width: 40px; height: 2px; background: var(--orange); margin-bottom: 20px; }
.test-name { font-family: var(--display); font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dark); }
.test-info { font-size: 13px; color: var(--text-light); margin-top: 4px; letter-spacing: .5px; font-weight: 600; }

/* CONTACT */
.contact-section { background: var(--bg-panel); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 0; border: 1px solid var(--border); margin-top: 56px; border-radius: 8px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.04); }
.contact-form-side { padding: 64px; background: var(--bg-panel); }
.contact-info-side { padding: 64px; background: var(--text-dark); color: white; display: flex; flex-direction: column; justify-content: space-between; }
.form-group { margin-bottom: 24px; }
.form-label { font-family: var(--display); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-gray); font-weight: 700; display: block; margin-bottom: 10px; }
.form-input { width: 100%; background: var(--bg-main); border: 1px solid var(--border); color: var(--text-dark); padding: 16px 20px; font-family: var(--body); font-size: 15px; transition: border-color .25s, box-shadow .25s; outline: none; border-radius: 4px; font-weight: 500; }
.form-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,82,10,0.1); background: white; }
.form-input::placeholder { color: var(--text-light); font-weight: 400; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23495057' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
textarea.form-input { resize: none; height: 120px; }
.btn-submit { font-family: var(--display); font-size: 15px; letter-spacing: 2px; text-transform: uppercase; font-weight: 800; padding: 18px 44px; background: var(--orange); color: white; border: none; clip-path: polygon(0 0, 96% 0, 100% 50%, 96% 100%, 0 100%); padding-right: 50px; transition: background .25s, transform .25s; width: 100%; }
.btn-submit:hover { background: var(--orange-dim); transform: translateY(-2px); }
.cinfo-item { margin-bottom: 36px; }
.cinfo-label { font-family: var(--display); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; font-weight: 700; }
.cinfo-val { font-size: 16px; color: rgba(255,255,255,.9); line-height: 1.6; font-weight: 500; }
.cinfo-val a { color: white; text-decoration: none; transition: color .25s; }
.cinfo-val a:hover { color: var(--orange); }
.cert-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
.cert-badge { font-family: var(--display); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; padding: 8px 16px; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.7); border-radius: 4px; }

/* FOOTER */
footer { background: var(--bg-main); padding: 80px 48px 40px; border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 64px; padding-bottom: 56px; border-bottom: 1px solid var(--border); }
.f-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.f-logo-icon { width: 40px; height: 40px; background: var(--orange); display: flex; align-items: center; justify-content: center; clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%); }
.f-logo-icon svg { width: 20px; height: 20px; fill: white; }
.f-logo-text { font-family: var(--display); font-size: 26px; font-weight: 800; letter-spacing: 4px; color: var(--text-dark); }
.f-tagline { font-size: 15px; color: var(--text-gray); line-height: 1.8; max-width: 320px; margin-bottom: 32px; font-weight: 500; }
.f-social { display: flex; gap: 12px; }
.f-soc-btn { width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .25s; background: white; text-decoration: none; }
.f-soc-btn svg { width: 16px; height: 16px; fill: var(--text-gray); transition: fill .25s; }
.f-soc-btn:hover { border-color: var(--orange); background: var(--orange); }
.f-soc-btn:hover svg { fill: white; }
.footer-col h5 { font-family: var(--display); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dark); font-weight: 800; margin-bottom: 24px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-gray); text-decoration: none; margin-bottom: 14px; transition: color .25s; font-weight: 500; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; }
.f-copy { font-size: 13px; color: var(--text-light); letter-spacing: 1px; font-weight: 600; text-transform: uppercase; }
.f-links { display: flex; gap: 32px; }
.f-links a { font-size: 13px; color: var(--text-light); text-decoration: none; letter-spacing: 1px; transition: color .25s; font-weight: 600; text-transform: uppercase; }
.f-links a:hover { color: var(--orange); }

/* TOAST NOTIFICATION */
.toast { position: fixed; bottom: 32px; right: 32px; background: var(--text-dark); color: white; padding: 16px 24px; border-radius: 8px; font-family: var(--display); font-size: 14px; letter-spacing: 1px; z-index: 99990; transform: translateY(100px); opacity: 0; transition: all .3s; display: flex; align-items: center; gap: 12px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { width: 24px; height: 24px; background: #2ECC71; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* RESPONSIVE */
@media(max-width: 1024px) {
  .prod-grid, .why-grid, .test-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 80px 24px; }
  .hero-content, .engine-content { padding: 0 24px; }
  .hero-stats-bar { display: grid; grid-template-columns: 1fr 1fr; }
  .hstat:nth-child(2) { border-right: none; }
  .hstat { border-bottom: 1px solid var(--border); }
  .intro-split, .contact-grid { grid-template-columns: 1fr; margin: 0 24px; transform: translateY(-20px); }
  .intro-left, .contact-form-side { border-right: none; border-bottom: 1px solid var(--border); padding: 40px 24px; }
  .intro-right { grid-template-columns: 1fr; }
  .istat:nth-child(even) { border-right: 1px solid var(--border); }
  .istat:nth-child(3) { border-bottom: 1px solid var(--border); }
  .prod-grid, .why-grid, .test-grid { grid-template-columns: 1fr; }
  .prod-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .contact-info-side { padding: 40px 24px; }
}
