:root {
  --red: #CF2A1E;
  --red2: #A61E14;
  --red-light: rgba(207, 42, 30, 0.08);
  --red-glow: rgba(207, 42, 30, 0.3);
  --bg-main: #ffffff;
  --bg-alt: #fcfcfc;
  --bg-dark: #0f172a;
  --bg-darker: #f5f7f9;
  --text-main: #0a0c10;
  --text-muted: #6b7280;
  --border: #eef1f4;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 30px 60px -12px rgba(0, 0, 0, 0.08);
  --shadow-red: 0 12px 30px -5px rgba(207, 42, 30, 0.25);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body { font-family: "DM Sans", sans-serif; background: var(--bg-main); color: var(--text-main); line-height: 1.6; overflow-x: hidden; width: 100%; max-width: 100%; }
img, svg, canvas, video { max-width: 100%; }
a { color: inherit; }

.cursor-dot, .cursor-outline { position: fixed; top: 0; left: 0; transform: translate(-50%, -50%); border-radius: 50%; z-index: 9999; pointer-events: none; }
.cursor-dot { width: 8px; height: 8px; background-color: var(--red); }
.cursor-outline { width: 40px; height: 40px; border: 1px solid rgba(207, 42, 30, 0.5); transition: width 0.2s, height 0.2s; }

.topbar { background: var(--bg-dark); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 10px 0; font-size: 0.82rem; }
.tb-in { max-width: 1500px; margin: 0 auto; padding: 0 50px; display: flex; justify-content: space-between; align-items: center; }
.topbar a, .topbar span { color: rgba(255,255,255,0.45); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.topbar a:hover { color: var(--red); }

nav { position: sticky; top: 0; z-index: 900; background: rgba(15, 23, 42, 0.88); backdrop-filter: blur(15px); border-bottom: 1px solid transparent; transition: 0.3s; }
nav.solid { background: rgba(255, 255, 255, 0.95); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.nav-in { max-width: 1500px; margin: 0 auto; padding: 0 50px; display: flex; align-items: center; justify-content: space-between; height: 90px; }
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo img { height: 48px; width: auto; }
.brand-mark { width: 46px; height: 46px; border-radius: 16px; background: linear-gradient(135deg, var(--red), #ff6d56); color: #fff; display: grid; place-items: center; font-size: 1.1rem; font-weight: 800; box-shadow: 0 18px 35px rgba(207, 42, 30, 0.28); }
.logo-txt { font-size: 1.2rem; font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -0.02em; }
.logo-txt em { font-style: normal; color: var(--red); display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
nav.solid .logo-txt { color: var(--text-main); }
.nav-links { display: flex; gap: 12px; list-style: none; align-items: center; }
.nav-links > li > a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.98rem; font-weight: 500; padding: 10px 18px; border-radius: 10px; transition: 0.2s; position: relative; }
.nav-links > li > a:hover { color: var(--red); background: rgba(207,42,30,0.1); }
nav.solid .nav-links > li > a { color: var(--text-main); }
nav.solid .nav-links > li > a:hover { color: var(--red); background: var(--red-light); }
.nav-links > li.current-menu-item > a, .nav-links > li.current_page_item > a { color: var(--red); background: rgba(207,42,30,0.15); }
nav.solid .nav-links > li.current-menu-item > a, nav.solid .nav-links > li.current_page_item > a { color: var(--red); background: var(--red-light); }
.has-dd { position: relative; }
.dd { display: none; position: absolute; top: calc(100% + 5px); left: 0; background: #fff; border: 1px solid var(--border); border-radius: 14px; min-width: 300px; padding: 12px; box-shadow: var(--shadow-lg); }
.has-dd:hover > .dd { display: block; animation: fadeUp 0.3s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.dd a { display: block; padding: 10px 18px; color: var(--text-muted); font-size: 0.92rem; border-radius: 10px; }
.dd a:hover { color: var(--red); background: var(--bg-alt); }
.nav-cta { background: var(--red) !important; color: #fff !important; padding: 14px 32px !important; border-radius: 40px !important; font-weight: 600 !important; box-shadow: var(--shadow-red); }

.has-sub { position: relative; }
.has-sub > a { display: flex !important; align-items: center; justify-content: space-between; }
.has-sub::after { content: ''; position: absolute; top: 0; right: -16px; width: 16px; height: 100%; z-index: 1; }
.dd-nested { position: absolute; left: 100%; top: -12px; background: #fff; border: 1px solid var(--border); border-radius: 14px; min-width: 270px; padding: 12px; box-shadow: var(--shadow-lg); display: none; }
.has-sub:hover > .dd-nested { display: block; animation: fadeUp 0.3s ease; }

.nav-search { width: 38px; height: 38px; border-radius: 50%; border: none; background: transparent; color: rgba(255,255,255,0.6); font-size: 1rem; cursor: pointer; transition: 0.2s; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.nav-search:hover { color: var(--red); background: rgba(207,42,30,0.1); }
nav.solid .nav-search { color: var(--text-muted); }
nav.solid .nav-search:hover { color: var(--red); background: var(--red-light); }

.hbg { display: none; flex-direction: column; gap: 7px; cursor: pointer; }
.hbg span { width: 30px; height: 2px; background: #fff; border-radius: 2px; }
nav.solid .hbg span { background: var(--text-main); }

.mob { display: none; position: fixed; inset: 0; background: #fff; z-index: 999; overflow-y: auto; overflow-x: hidden; }
.mob.open { display: flex; flex-direction: column; }
.mob-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: #fff; z-index: 2; }
.mob-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.mob-logo img { height: 40px; width: auto; }
.mob-logo-txt { font-size: 1.1rem; font-weight: 800; color: var(--text-main); line-height: 1.1; }
.mob-logo-txt em { font-style: normal; color: var(--red); display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.mob-close { font-size: 2rem; cursor: pointer; color: var(--text-muted); line-height: 1; transition: 0.2s; }
.mob-close:hover { color: var(--red); }
.mob-body { padding: 12px 24px 40px; flex: 1; }
.mob-body a { display: block; padding: 16px 0; color: var(--text-main); font-size: 1.05rem; font-weight: 500; border-bottom: 1px solid var(--border); text-decoration: none; transition: 0.2s; }
.mob-body a:hover { color: var(--red); }
.mob-body .mob-head { padding: 20px 0 8px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--red); border-bottom: 1px solid var(--border); }
.mob-body .mob-head ~ a { padding-left: 16px; font-size: 0.95rem; }
.mob-body .mob-search { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; }
.mob-body .mob-cta { background: var(--red); color: #fff !important; text-align: center; border-radius: 40px; padding: 16px !important; margin-top: 20px; border: none; font-weight: 600; font-size: 1rem; }
.mob-body .mob-cta:hover { background: var(--red2); }
.mob-contact { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.mob-contact-link { display: flex !important; align-items: center; gap: 10px; color: var(--text-muted) !important; font-size: 0.85rem !important; padding: 8px 0 !important; border-bottom: none !important; }
.mob-contact-link i { color: var(--red); width: 16px; text-align: center; }

.hero { position: relative; width: 100%; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--bg-dark); }
.hero-canvas { position: absolute; inset: 0; z-index: 1; }
.hero-bg-layer { position: absolute; inset: 0; z-index: 1; }
.hero-bg-layer img { width: 100%; height: 100%; object-fit: cover; opacity: 0.12; will-change: transform; }
.hero-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(135deg, rgba(15,23,42,0.97) 0%, rgba(15,23,42,0.5) 50%, rgba(207,42,30,0.15) 100%); }
.hero-grid { position: absolute; inset: 0; z-index: 3; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 60px 60px; }
.hero-map-layer { position: absolute; inset: 0; z-index: 2; opacity: 0.15; }
.hero-map-layer img { width: 100%; height: 100%; object-fit: cover; }
.hero-glow { position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(207,42,30,0.08), transparent 70%); top: 50%; left: 40%; transform: translate(-50%,-50%); z-index: 2; filter: blur(40px); pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 2; }
.hero-orb-1 { width: 500px; height: 500px; background: rgba(207,42,30,0.12); top: -200px; right: -100px; animation: orbFloat 20s ease-in-out infinite; }
.hero-orb-2 { width: 300px; height: 300px; background: rgba(207,42,30,0.08); bottom: -100px; left: -50px; animation: orbFloat 25s ease-in-out infinite reverse; }
@keyframes orbFloat { 0%,100%{ transform: translate(0,0) scale(1); } 33%{ transform: translate(30px,-30px) scale(1.1); } 66%{ transform: translate(-20px,20px) scale(0.9); } }
.hero-dots { position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: hidden; opacity: 0.3; }
.hero-dot { position: absolute; width: 3px; height: 3px; background: var(--red); border-radius: 50%; }
.hero-dot:nth-child(1) { top: 20%; left: 10%; animation: dotPulse 4s ease-in-out infinite; }
.hero-dot:nth-child(2) { top: 45%; left: 85%; animation: dotPulse 5s ease-in-out infinite 1s; }
.hero-dot:nth-child(3) { top: 70%; left: 15%; animation: dotPulse 3.5s ease-in-out infinite 0.5s; }
.hero-dot:nth-child(4) { top: 30%; left: 70%; animation: dotPulse 4.5s ease-in-out infinite 2s; }
.hero-dot:nth-child(5) { top: 80%; left: 80%; animation: dotPulse 6s ease-in-out infinite 1.5s; }
.hero-dot:nth-child(6) { top: 15%; left: 50%; animation: dotPulse 3s ease-in-out infinite 0.8s; }
.hero-dot:nth-child(7) { top: 60%; left: 40%; animation: dotPulse 5.5s ease-in-out infinite 2.5s; }
.hero-dot:nth-child(8) { top: 90%; left: 30%; animation: dotPulse 4s ease-in-out infinite 0.3s; }
@keyframes dotPulse { 0%,100%{ opacity: 0.2; transform: scale(1); } 50%{ opacity: 1; transform: scale(1.5); } }
.hero-floating-shapes { position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: hidden; }
.hero-shape { position: absolute; border: 1px solid rgba(255,255,255,0.06); border-radius: 50%; backdrop-filter: blur(4px); }
.hero-shape-1 { width: 120px; height: 120px; top: 12%; left: 5%; border-radius: 30px; transform: rotate(45deg); animation: shapeFloat1 18s ease-in-out infinite; }
.hero-shape-2 { width: 60px; height: 60px; top: 65%; right: 15%; border-radius: 50%; animation: shapeFloat2 22s ease-in-out infinite; border-color: rgba(207,42,30,0.12); }
.hero-shape-3 { width: 200px; height: 200px; top: 10%; right: 30%; border-radius: 50%; animation: shapeFloat1 25s ease-in-out infinite reverse; opacity: 0.3; border: none; background: radial-gradient(circle, rgba(207,42,30,0.04), transparent); }
@keyframes shapeFloat1 { 0%,100%{ transform: rotate(45deg) translate(0,0); } 50%{ transform: rotate(45deg) translate(20px,-30px); } }
@keyframes shapeFloat2 { 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(-35px,15px); } }

.hero-light-sweep { position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: hidden; }
.hero-light-sweep::before { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.03) 50%, transparent 70%); animation: lightSweep 8s ease-in-out infinite; transform: skewX(-15deg); }
.hero-light-sweep::after { content: ''; position: absolute; top: 0; left: -100%; width: 40%; height: 100%; background: linear-gradient(110deg, transparent 30%, rgba(207,42,30,0.02) 50%, transparent 70%); animation: lightSweep 12s ease-in-out infinite 2s; transform: skewX(-15deg); }
@keyframes lightSweep { 0%{ transform: skewX(-15deg) translateX(0); } 30%{ transform: skewX(-15deg) translateX(350%); } 100%{ transform: skewX(-15deg) translateX(350%); } }

.hero-sparkles { position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: hidden; }
.hero-sparkle { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: #fff; animation: sparkle 4s ease-in-out infinite; opacity: 0; }
.hero-sparkle:nth-child(1) { top: 15%; left: 20%; animation-delay: 0s; }
.hero-sparkle:nth-child(2) { top: 35%; left: 75%; animation-delay: 1.2s; width: 3px; height: 3px; }
.hero-sparkle:nth-child(3) { top: 65%; left: 10%; animation-delay: 2.5s; background: rgba(255,100,80,0.8); }
.hero-sparkle:nth-child(4) { top: 25%; left: 55%; animation-delay: 0.8s; width: 2px; height: 2px; }
.hero-sparkle:nth-child(5) { top: 75%; left: 80%; animation-delay: 3.2s; }
.hero-sparkle:nth-child(6) { top: 50%; left: 30%; animation-delay: 1.8s; width: 3px; height: 3px; background: rgba(255,100,80,0.6); }
.hero-sparkle:nth-child(7) { top: 10%; left: 90%; animation-delay: 0.5s; }
.hero-sparkle:nth-child(8) { top: 85%; left: 45%; animation-delay: 2.0s; width: 2px; height: 2px; }
@keyframes sparkle { 0%,100%{ opacity: 0; transform: scale(0) translateY(0); } 20%{ opacity: 1; transform: scale(1) translateY(-10px); } 40%{ opacity: 0; transform: scale(0) translateY(-20px); } }

.hero-glow-intense { position: absolute; width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(207,42,30,0.12) 0%, rgba(255,80,60,0.04) 40%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2; filter: blur(60px); pointer-events: none; animation: glowPulse 6s ease-in-out infinite; }
@keyframes glowPulse { 0%,100%{ opacity: 0.6; transform: translate(-50%,-50%) scale(1); } 50%{ opacity: 1; transform: translate(-50%,-50%) scale(1.15); } }

.hero-visual { position: absolute; right: 30px; top: -40px; z-index: 5; width: 620px; height: 580px; pointer-events: none; overflow: visible; }
.hero-mockup { width: 100%; height: 100%; border-radius: 30px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.08); position: relative; transform: perspective(1200px) rotateY(-6deg) rotateX(4deg); transition: 0.5s; }
.hero-mockup img { width: 100%; height: 100%; object-fit: cover; }
.hero-mockup-glow { position: absolute; inset: 0; border-radius: 30px; box-shadow: inset 0 0 60px rgba(207,42,30,0.1); pointer-events: none; }
.hero-mockup-badge { position: absolute; bottom: 30px; left: 30px; background: rgba(15,23,42,0.8); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.08); padding: 14px 20px; border-radius: 16px; display: flex; align-items: center; gap: 12px; }
.hero-mockup-badge .hdot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 12px rgba(34,197,94,0.5); animation: dotPulse 2s ease-in-out infinite; }
.hero-mockup-badge span { color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 500; }
.hero-slider-track { display: flex; width: 100%; height: 100%; transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hero-slide { min-width: 100%; height: 100%; flex-shrink: 0; position: relative; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-slider-nav { position: absolute; bottom: -46px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 14px; z-index: 20; pointer-events: auto; }
.h-slide-btn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); color: #fff; font-size: 0.7rem; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.h-slide-btn:hover { background: var(--red); border-color: var(--red); }
.h-slide-dots { display: flex; gap: 8px; }
.h-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); cursor: pointer; transition: 0.3s; }
.h-dot.active { background: var(--red); }

.hero-trusted { width: 100%; margin-top: 80px; padding: 24px 0 10px; text-align: center; position: relative; z-index: 10; animation: htIn 0.6s 0.2s both; }
.ht-divider { width: 120px; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent); margin: 0 auto 24px; animation: htGrow 0.8s 0.4s both; transform-origin: center; }
.ht-label { font-size: 1.2rem; color: rgba(255,255,255,0.3); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin-bottom: 32px; }
.ht-stage { overflow: hidden; position: relative; margin: 0 -50px; }
.ht-stage::before, .ht-stage::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.ht-stage::before { left: 0; background: linear-gradient(to right, var(--bg-dark), transparent); }
.ht-stage::after { right: 0; background: linear-gradient(to left, var(--bg-dark), transparent); }
.ht-row { display: flex; gap: 20px; width: max-content; align-items: center; }
.ht-row--top { animation: htRight 60s linear infinite; padding: 8px 0; }
.ht-row--bot { animation: htLeft 50s linear infinite; margin-top: -28px; padding: 8px 0; }
.ht-badge { display: inline-flex; align-items: center; gap: 12px; padding: 14px 34px; background: rgba(255,255,255,0.04); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.08); border-radius: 60px; color: rgba(255,255,255,0.5); font-size: 1.05rem; font-weight: 500; white-space: nowrap; transition: 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.ht-badge i { font-size: 1.2rem; color: var(--red); filter: drop-shadow(0 0 8px rgba(207,42,30,0.2)); }
.ht-badge:hover { background: rgba(255,255,255,0.08); border-color: rgba(207,42,30,0.25); color: rgba(255,255,255,0.75); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(207,42,30,0.15); }
.ht-row--bot .ht-badge { background: rgba(255,255,255,0.02); border-color: rgba(207,42,30,0.12); }
.ht-row--bot .ht-badge i { color: rgba(207,42,30,0.7); filter: drop-shadow(0 0 6px rgba(207,42,30,0.15)); }
@keyframes htIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes htGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes htRight { 0% { transform: translateX(-33.333%); } 100% { transform: translateX(0); } }
@keyframes htLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-33.333%); } }

.hero-in { position: relative; z-index: 10; max-width: 1500px; margin: 0 auto; padding: 0 50px 0; width: 100%; min-height: 100vh; display: flex; align-items: flex-start; flex-wrap: wrap; }
.hero-txt { max-width: 780px; position: relative; z-index: 11; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.08); padding: 8px 20px; border-radius: 60px; font-size: 0.78rem; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-bottom: 30px; animation: fadeSlideUp 0.8s 0.1s both; }
.hero-badge span { background: var(--red); color: #fff; padding: 3px 12px; border-radius: 40px; font-size: 0.65rem; font-weight: 700; }
.hero-txt h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 800; line-height: 1.08; color: #fff; letter-spacing: -0.04em; margin-bottom: 25px; }
.hero-line { display: block; overflow: hidden; }
.hero-line span { display: block; animation: fadeSlideUp 0.8s both; }
.hero-line:nth-child(1) span { animation-delay: 0.15s; }
.hero-line:nth-child(2) span { animation-delay: 0.3s; }
.hero-line:nth-child(3) span { animation-delay: 0.45s; }
.hero-line .text-accent { background: linear-gradient(135deg, #ff4d3d, #ff8a75); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; position: relative; display: inline-block; }
.hero-line .text-accent::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 8px; background: linear-gradient(135deg, var(--red), transparent); opacity: 0.25; border-radius: 4px; }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.45); max-width: 520px; line-height: 1.8; margin-bottom: 35px; animation: fadeSlideUp 0.8s 0.5s both; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeSlideUp 0.8s 0.6s both; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 15px 34px; background: var(--red); color: #fff; border: none; border-radius: 60px; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: 0.3s; box-shadow: 0 8px 30px rgba(207,42,30,0.4); text-decoration: none; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(207,42,30,0.55); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 15px 34px; background: rgba(255,255,255,0.05); color: #fff; border: 1px solid rgba(255,255,255,0.12); border-radius: 60px; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: 0.3s; text-decoration: none; backdrop-filter: blur(10px); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }

.hero-stats { display: flex; gap: 60px; margin-top: 55px; animation: fadeSlideUp 0.8s 0.7s both; }
.sbox { position: relative; }
.sbox::after { content: ''; position: absolute; right: -30px; top: 2px; bottom: 2px; width: 1px; background: rgba(255,255,255,0.08); }
.sbox:last-child::after { display: none; }
.sbox .snum { font-size: 3.5rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -0.04em; }
.sbox .snum span { color: var(--red); text-shadow: 0 0 20px rgba(207,42,30,0.3); }
.sbox .slbl { font-size: 1rem; color: rgba(255,255,255,0.35); font-weight: 500; margin-top: 8px; letter-spacing: 0.04em; }
.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.25); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; animation: fadeSlideUp 1s 1.2s both; }
.scroll-line { width: 1px; height: 35px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{ opacity: 1; transform: scaleY(1); } 50%{ opacity: 0.3; transform: scaleY(0.5); } }

.mband { background: var(--bg-alt); padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; position: relative; }
.mband::before, .mband::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.mband::before { left: 0; background: linear-gradient(to right, var(--bg-alt), transparent); }
.mband::after { right: 0; background: linear-gradient(to left, var(--bg-alt), transparent); }
.mtrack { display: flex; gap: 0; animation: mqleft 60s linear infinite; width: max-content; }
.mitem { display: flex; align-items: center; gap: 18px; padding: 0 60px; font-size: 1.05rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; white-space: nowrap; letter-spacing: 0.06em; }
.mitem i { color: var(--red); font-size: 1.3rem; filter: drop-shadow(0 0 8px rgba(207,42,30,0.25)); }
@keyframes mqleft { from { transform: translateX(0); } to { transform: translateX(-50%); } }

section { padding: 140px 50px; }
.container { max-width: 1500px; margin: 0 auto; }
.slabel { display: inline-flex; align-items: center; gap: 14px; color: var(--red); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 20px; }
.slabel::before { content: ''; width: 28px; height: 2px; background: linear-gradient(to right, var(--red), transparent); border-radius: 2px; }
.stitle { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; margin-bottom: 30px; letter-spacing: -0.03em; }
.ssub { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; line-height: 1.7; }

#services { background: var(--bg-darker); }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 40px; }
.scard { background: #fff; padding: 50px 40px; border-radius: 30px; border: 1px solid var(--border); transition: 0.4s; position: relative; z-index: 1; overflow: hidden; }
.scard:hover { transform: translateY(-15px); box-shadow: var(--shadow-lg); border-color: transparent; }
.scard::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--red), var(--red2)); transform: translateY(100%); transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); z-index: -1; border-radius: 30px; }
.scard:hover::before { transform: translateY(0); }
.scard-ico { width: 70px; height: 70px; background: var(--bg-alt); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--red); margin-bottom: 30px; transition: 0.4s; }
.scard:hover .scard-ico { background: rgba(255,255,255,0.2); color: #fff; }
.scard h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 15px; transition: 0.4s; }
.scard:hover h3 { color: #fff; }
.scard p { color: var(--text-muted); font-size: 1rem; transition: 0.4s; }
.scard:hover p { color: rgba(255,255,255,0.9); }
.scard-num { position: absolute; top: 20px; right: 25px; font-size: 4.5rem; font-weight: 900; color: rgba(0,0,0,0.03); line-height: 1; transition: 0.4s; z-index: 0; pointer-events: none; font-family: serif; }
.scard:hover .scard-num { color: rgba(255,255,255,0.08); }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.why-stack { position: relative; border-radius: 40px; overflow: hidden; height: 700px; box-shadow: var(--shadow-lg); }
.why-img { width: 100%; height: 120%; object-fit: cover; position: absolute; top: -10%; }
.why-badge { position: absolute; bottom: 50px; right: 50px; background: var(--red); color: #fff; padding: 35px; border-radius: 30px; text-align: center; }
.why-badge strong { display: block; font-size: 3.5rem; font-weight: 800; line-height: 1; }
.why-feats { margin-top: 40px; display: flex; flex-direction: column; gap: 25px; }
.witem { display: flex; align-items: flex-start; gap: 20px; }
.wico { width: 50px; height: 50px; min-width: 50px; background: var(--red-light); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--red); }
.witem h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 5px; }
.witem p { font-size: 0.95rem; color: var(--text-muted); }

#industries { background: var(--bg-alt); }
.ind-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 30px; }
.icard { position: relative; border-radius: 30px; overflow: hidden; height: 350px; cursor: pointer; }
.icard img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; }
.icard:hover img { transform: scale(1.1); }
.iveil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; transition: 0.4s; }
.icard:hover .iveil { background: linear-gradient(to top, rgba(207,42,30,0.85) 0%, transparent 70%); }
.iico { font-size: 2rem; color: var(--red); margin-bottom: 15px; }
.icard:hover .iico { color: #fff; }
.icard h3 { font-size: 1.6rem; color: #fff; font-weight: 700; }

.crow { display: flex; gap: 16px; animation: mqleft 40s linear infinite; width: max-content; }
.ctile { width: auto; min-width: 170px; height: 80px; background: #fff; border: 1px solid var(--border); border-radius: 14px; display: flex; align-items: center; gap: 14px; padding: 16px 26px; transition: 0.3s; cursor: pointer; }
.ctile i { font-size: 1.4rem; color: var(--red); }
.ctile span { font-weight: 600; font-size: 0.92rem; color: var(--text-main); white-space: nowrap; }
.ctile:hover { border-color: var(--red); transform: translateY(-6px); box-shadow: var(--shadow-lg); }

#process { background: #fff; }
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.proc-step { text-align: center; padding: 45px 30px; background: #fff; border-radius: 24px; border: 1px solid var(--border); position: relative; transition: 0.5s; overflow: hidden; }
.proc-step:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); border-color: transparent; }
.proc-step::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--red), var(--red2)); border-radius: 24px; opacity: 0; transition: 0.5s; z-index: 0; }
.proc-step:hover::before { opacity: 1; }
.proc-num { width: 64px; height: 64px; background: var(--red-light); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; color: var(--red); margin: 0 auto 22px; position: relative; z-index: 1; transition: 0.4s; }
.proc-step:hover .proc-num { background: rgba(255,255,255,0.2); color: #fff; transform: scale(1.1); }
.proc-step h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; transition: 0.4s; }
.proc-step:hover h3 { color: #fff; }
.proc-step p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; position: relative; z-index: 1; transition: 0.4s; }
.proc-step:hover p { color: rgba(255,255,255,0.8); }
.proc-bar { display: none; }
@media(min-width: 1200px) {
  .proc-bar { display: block; position: absolute; top: 86px; left: calc(12.5% + 40px); right: calc(12.5% + 40px); height: 2px; background: linear-gradient(to right, var(--border) 40%, transparent 60%); z-index: 0; }
  .proc-bar::after { content: ''; position: absolute; right: 0; top: -5px; width: 12px; height: 12px; border-top: 2px solid var(--border); border-right: 2px solid var(--border); transform: rotate(45deg); }
}

#cta { background: var(--bg-dark); position: relative; overflow: hidden; padding: 120px 50px; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(100px); z-index: 1; }
.cta-orb-1 { width: 500px; height: 500px; background: rgba(207,42,30,0.12); top: -200px; right: -100px; animation: orbFloat 20s ease-in-out infinite; }
.cta-orb-2 { width: 300px; height: 300px; background: rgba(207,42,30,0.08); bottom: -150px; left: -50px; animation: orbFloat 25s ease-in-out infinite reverse; }
.cta-in { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-in h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; color: #fff; margin-bottom: 18px; line-height: 1.1; }
.cta-in p { color: rgba(255,255,255,0.5); font-size: 1.1rem; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.reveal { opacity: 1; transform: none; }
.reveal-l { opacity: 1; transform: none; }
.reveal-r { opacity: 1; transform: none; }


.footer-wave { position: absolute; top: -2px; left: 0; right: 0; height: 80px; z-index: 1; }
.footer-wave svg { width: 100%; height: 100%; fill: #f0f2f5; }
.footer-top { position: relative; z-index: 2; padding: 100px 50px 0; }
.fg { max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 70px; padding-bottom: 60px; }
.fb .flogo { display: flex; align-items: center; gap: 14px; text-decoration: none; margin-bottom: 20px; }
.fb .flogo img { height: 44px; width: auto; }
.fb .flogo-txt { font-size: 1.15rem; font-weight: 800; color: var(--text-main); line-height: 1.1; letter-spacing: -0.02em; }
.fb .flogo-txt em { font-style: normal; color: var(--red); display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.fb p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; max-width: 360px; }
.footer-social { display: flex; gap: 12px; margin-top: 30px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: #fff; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 1rem; transition: 0.3s; text-decoration: none; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-4px); box-shadow: 0 8px 25px rgba(207,42,30,0.3); }
.fc h4 { color: var(--text-main); font-size: 1.05rem; font-weight: 700; margin-bottom: 25px; position: relative; padding-bottom: 12px; }
.fc h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--red); border-radius: 2px; }
.fc ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.fc ul li a { color: var(--text-muted); text-decoration: none; font-size: 0.92rem; transition: 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.fc ul li a:hover { color: var(--red); transform: translateX(4px); }
.fc ul li a i { font-size: 0.65rem; }
.fci-row { display: flex; gap: 15px; margin-bottom: 20px; }
.fci { width: 44px; height: 44px; min-width: 44px; background: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1rem; border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.fct { color: var(--text-muted); font-size: 0.92rem; line-height: 1.5; }
.fct a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.fct a:hover { color: var(--red); }
.footer-newsletter { margin-top: 20px; }
.footer-newsletter form { display: flex; gap: 0; max-width: 380px; }

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  padding: 30px 50px;
  color: var(--text-muted);
  background: var(--bg-main);
}
.fbot-in { max-width: 1500px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.fbot-in p {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.fbot-links { display: flex; gap: 30px; }
.fbot-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.3s;
}
.fbot-links a:hover {
  color: var(--red);
}

.back-to-top { position: fixed; bottom: 30px; right: 30px; z-index: 100; width: 50px; height: 50px; border-radius: 16px; background: var(--red); color: #fff; border: none; font-size: 1.2rem; cursor: pointer; box-shadow: 0 8px 25px rgba(207,42,30,0.35); transition: 0.3s; opacity: 0; transform: translateY(20px); pointer-events: none; }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(207,42,30,0.45); }

#loader { position: fixed; inset: 0; z-index: 99999; background: #fafafa; display: flex; align-items: center; justify-content: center; transition: opacity 0.55s ease, transform 0.55s ease; }
#loader.hidden { opacity: 0; transform: scale(1.07); pointer-events: none; }
.loader-ring { position: relative; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; animation: loader-pop 0.45s ease-out; }
.loader-ring::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 3px solid var(--border); border-top-color: var(--red); animation: loader-rotate 0.75s cubic-bezier(0.6, 0, 0.4, 1) infinite; }
.loader-mark { width: 50px; height: 50px; border-radius: 15px; background: linear-gradient(135deg, var(--red), #ff6d56); color: #fff; display: grid; place-items: center; font-size: 1.25rem; font-weight: 800; font-family: "DM Sans", sans-serif; box-shadow: 0 18px 38px var(--red-glow); animation: loader-breathe 1.3s ease-in-out infinite; }
@keyframes loader-rotate { to { transform: rotate(360deg); } }
@keyframes loader-breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.045); } }
@keyframes loader-pop { from { opacity: 0; transform: scale(0.82); } to { opacity: 1; transform: scale(1); } }

@media(max-width: 1400px) {
  .hero-in { flex-direction: column; text-align: center; padding-top: 20px; align-items: center; }
  .hero-txt { display: flex; flex-direction: column; align-items: center; }
  .hero-desc { text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
}
@media(max-width: 992px) {
  .fg { grid-template-columns: 1fr 1fr; gap: 50px; }
  .hero-stats { gap: 30px; }
  .hero-stats .sbox .snum { font-size: 2.8rem; }
  .scroll-indicator { display: none; }
  .proc-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media(max-width: 768px) {
  .topbar { display: none; }
  section { padding: 80px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-in { height: 56px; padding: 0 24px; }
  .hbg { display: flex; }
  .hero { min-height: 100dvh; align-items: flex-start; overflow: hidden; padding: 0 !important; }
  .hero-in { padding: 0 24px; align-items: flex-start; text-align: left; }
  .hero-txt h1 { font-size: clamp(3.4rem, 12vw, 4.2rem); margin-bottom: 14px; }
  .hero-desc { text-align: left; font-size: 0.9rem; max-width: 100%; margin-bottom: 24px; }
  .hero-btns { flex-direction: column; align-items: flex-start; width: 100%; gap: 10px; }
  .hero-btns a { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; gap: 4px 14px; margin-top: 18px; }
  .sbox .snum { font-size: 0.8rem; }
  .sbox .slbl { font-size: 0.6rem; margin-top: 1px; }
  .hero-visual { display: none; }
  .hero-trusted { margin-top: 50px; padding: 16px 0 0; }
  .hero-trusted .ht-label { font-size: 1rem; margin-bottom: 20px; }
  .ht-badge { padding: 10px 22px; font-size: 0.85rem; gap: 8px; }
  .ht-badge i { font-size: 1rem; }
  .ht-row { gap: 12px; }
  .ht-row--top { animation: htRight 40s linear infinite; }
  .ht-row--bot { animation: htLeft 35s linear infinite; }
  .ht-stage::before, .ht-stage::after { width: 40px; }
  .svc-grid { grid-template-columns: 1fr; gap: 20px; }
  .scard { padding: 36px 28px; }
  .ind-grid { grid-template-columns: 1fr; gap: 20px; }
  .why-grid { grid-template-columns: 1fr; gap: 30px; }
  .why-stack { height: 350px; }
  .proc-grid { grid-template-columns: 1fr; gap: 20px; }
  .mband { padding: 20px 0; }
  .mband::before, .mband::after { width: 30px; }
  .mitem { padding: 0 30px; font-size: 0.85rem; gap: 12px; }
  .mitem i { font-size: 1rem; }
  #cta { padding: 60px 24px; }
  .fg { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { padding: 60px 24px 0; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns a { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 15px; padding: 24px; }
  .fbot-in { flex-direction: column; gap: 15px; }
  .footer-newsletter form { max-width: 100%; }
  .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; font-size: 1rem; }
}
@media(max-width: 480px) {
  .nav-in { padding: 0 16px; }
  .hero-in { padding: 0 16px; }
  .hero-txt h1 { font-size: clamp(2.8rem, 10vw, 3.6rem); }
  .hero-stats { gap: 2px 10px; margin-top: 14px; }
  section { padding: 60px 16px; }
  .scard { padding: 28px 20px; }
  .ht-badge { padding: 8px 14px; font-size: 0.75rem; gap: 6px; }
  .ht-badge i { font-size: 0.85rem; }
  .ht-row { gap: 8px; }
  .ht-stage::before, .ht-stage::after { width: 24px; }
  .mband { padding: 16px 0; }
  .mband::before, .mband::after { width: 20px; }
  .mitem { padding: 0 20px; font-size: 0.78rem; gap: 10px; }
  .footer-top { padding: 40px 16px 0; }
  .fg { gap: 30px; }
  .footer-bottom { padding: 20px 16px; }
  .footer-newsletter input { min-width: 0; width: 100%; }
  .footer-newsletter button { padding: 14px 14px; white-space: nowrap; }
  .fb p { max-width: 100%; }
  .fci-row { word-break: break-word; }
  .fbot-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

@supports (overflow: clip) {
  html, body { overflow-x: clip; }
  .hero, .mob, .mband, #cta, footer { overflow-x: clip; }
}

.page-content { max-width: 900px; }
.page-content h2, .page-content h3, .page-content h4 { margin-top: 2em; margin-bottom: 0.8em; }
.page-content p { margin-bottom: 1.2em; color: var(--text-muted); line-height: 1.8; }
.page-content ul, .page-content ol { margin-bottom: 1.2em; padding-left: 1.5em; color: var(--text-muted); }
.page-content li { margin-bottom: 0.5em; }
