
:root {
  --orange: #E8620A;
  --orange-light: #FF7820;
  --orange-dark: #C04F00;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --gray: #2A2A2A;
  --text: #E0E0E0;
  --text-dim: #888;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--text); font-family: 'Rajdhani', sans-serif; overflow-x: hidden; }

.cursor { width: 12px; height: 12px; background: var(--orange); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; transition: transform 0.1s ease; }
.cursor-ring { width: 36px; height: 36px; border: 1.5px solid var(--orange); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; transition: transform 0.15s ease, width 0.2s, height 0.2s, opacity 0.2s; opacity: 0.6; }

nav { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 20px 60px; display: flex; align-items: center; justify-content: space-between; background: linear-gradient(to bottom, rgba(0,0,0,0.95), transparent); transition: all 0.4s; }
nav.scrolled { background: rgba(10,10,10,0.97); backdrop-filter: blur(20px); padding: 14px 60px; border-bottom: 1px solid rgba(232,98,10,0.2); }
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text .brand { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 3px; color: #fff; }
.nav-logo-text .sub { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: var(--orange); }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim); text-decoration: none; position: relative; transition: color 0.3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--orange); transition: width 0.3s; }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--orange); }
.nav-cta { background: var(--orange); color: #000; padding: 10px 24px; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; border: none; cursor: pointer; clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%); transition: background 0.3s, transform 0.2s; text-decoration: none; display: inline-block; }
.nav-cta:hover { background: var(--orange-light); transform: scale(1.03); }
.nav-sm { background: transparent; color: var(--orange); padding: 8px 20px; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; border: 1px solid var(--orange); cursor: pointer; clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%); transition: all 0.3s; text-decoration: none; display: inline-block; }
.nav-sm:hover { background: var(--orange); color: #000; }

.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.ham span { width: 24px; height: 2px; background: var(--text); transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,10,10,0.98); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 4px; color: var(--text-dim); text-decoration: none; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--orange); }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--text-dim); font-size: 28px; cursor: pointer; }

.hero { height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(232,98,10,0.08) 0%, transparent 70%), linear-gradient(135deg, #000 0%, #0d0d0d 100%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(232,98,10,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(232,98,10,0.05) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 20%, transparent 80%); }
.hero-scan { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--orange), transparent); animation: scan 4s linear infinite; opacity: 0.4; }
@keyframes scan { 0% { top: 0; } 100% { top: 100%; } }
.hero-content { position: relative; z-index: 2; padding: 0 60px; max-width: 800px; animation: fadeInUp 1s ease both; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 6px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--orange); }
.hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(64px, 9vw, 120px); line-height: 0.9; letter-spacing: 2px; color: #fff; }
.hero h1 span { color: var(--orange); }
.hero-desc { margin-top: 24px; font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 300; letter-spacing: 1px; color: var(--text-dim); max-width: 520px; line-height: 1.7; }
.hero-actions { margin-top: 40px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-badge { margin-top: 32px; display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; border: 1px solid rgba(232,98,10,0.3); font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); }
.hero-badge::before { content: '✓'; font-size: 14px; }
.hero-stats { position: absolute; bottom: 50px; right: 60px; display: flex; gap: 50px; animation: fadeInUp 1s 0.4s ease both; }
.stat { text-align: right; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: var(--orange); line-height: 1; }
.stat-label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim); }
.scroll-hint { position: absolute; bottom: 50px; left: 60px; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--text-dim); display: flex; align-items: center; gap: 12px; animation: fadeInUp 1s 0.6s ease both; writing-mode: vertical-rl; }
.scroll-hint::after { content: ''; display: block; width: 1px; height: 50px; background: var(--orange); animation: shrink 2s ease-in-out infinite; }
@keyframes shrink { 0% { height: 50px; opacity: 1; } 50% { height: 20px; opacity: 0.5; } 100% { height: 50px; opacity: 1; } }

.btn-primary { background: var(--orange); color: #000; padding: 14px 36px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; border: none; cursor: pointer; text-decoration: none; display: inline-block; clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%); transition: all 0.3s; position: relative; overflow: hidden; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.2); transform: translateX(-100%); transition: transform 0.3s; }
.btn-primary:hover::before { transform: translateX(0); }
.btn-secondary { color: var(--text-dim); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; border-bottom: 1px solid var(--gray); padding-bottom: 2px; transition: all 0.3s; }
.btn-secondary:hover { color: #fff; border-color: var(--orange); }

section { padding: 100px 60px; position: relative; }
.section-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 6px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.section-tag::before { content: ''; width: 30px; height: 1px; background: var(--orange); }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(42px, 6vw, 80px); letter-spacing: 2px; color: #fff; line-height: 1; margin-bottom: 20px; }
.section-title span { color: var(--orange); }
.section-intro { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; color: var(--text-dim); line-height: 1.8; max-width: 700px; margin-bottom: 50px; }

.services { background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 50px; }
.service-card { background: var(--dark2); padding: 40px 32px; position: relative; overflow: hidden; transition: all 0.4s; border-bottom: 3px solid transparent; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--orange), transparent); transform: scaleX(0); transition: transform 0.4s; }
.service-card:hover { background: #1f1f1f; border-bottom-color: var(--orange); }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: 'Bebas Neue', sans-serif; font-size: 60px; color: rgba(232,98,10,0.1); line-height: 1; margin-bottom: 20px; transition: color 0.4s; }
.service-card:hover .service-num { color: rgba(232,98,10,0.25); }
.service-icon { font-size: 28px; margin-bottom: 16px; }
.service-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 2px; color: #fff; margin-bottom: 12px; }
.service-card p { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; color: var(--text-dim); line-height: 1.7; }

.why { background: var(--black); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-visual { position: relative; height: 500px; display: flex; align-items: center; justify-content: center; }
.why-shield { width: 260px; height: 260px; border: 2px solid rgba(232,98,10,0.3); clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%); display: flex; align-items: center; justify-content: center; position: relative; }
.why-shield-inner { position: absolute; inset: 15px; background: rgba(232,98,10,0.05); clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%); display: flex; align-items: center; justify-content: center; }
.why-shield-text { font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 4px; color: var(--orange); position: relative; z-index: 1; }
.why-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.ring { position: absolute; border-radius: 50%; border: 1px solid rgba(232,98,10,0.1); animation: expand 4s ease-in-out infinite; }
.ring:nth-child(1) { width: 300px; height: 300px; animation-delay: 0s; }
.ring:nth-child(2) { width: 380px; height: 380px; animation-delay: 1s; }
.ring:nth-child(3) { width: 460px; height: 460px; animation-delay: 2s; }
@keyframes expand { 0% { opacity: 0.3; transform: scale(0.9); } 50% { opacity: 0.1; transform: scale(1); } 100% { opacity: 0.3; transform: scale(0.9); } }
.why-points { display: flex; flex-direction: column; gap: 28px; }
.why-point { display: flex; gap: 20px; padding: 24px; background: var(--dark2); border-left: 3px solid transparent; transition: all 0.3s; }
.why-point:hover { border-left-color: var(--orange); background: #1d1d1d; }
.why-point-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(232,98,10,0.1); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.why-point-text h4 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; color: #fff; margin-bottom: 6px; }
.why-point-text p { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; color: var(--text-dim); line-height: 1.7; }

.zones { background: var(--dark); }
.zones-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.zones-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.zone-item { padding: 16px 20px; background: var(--dark2); border: 1px solid var(--gray); font-family: 'Barlow Condensed', sans-serif; font-size: 15px; letter-spacing: 1px; display: flex; align-items: center; gap: 10px; transition: all 0.3s; text-decoration: none; color: var(--text); }
.zone-item::before { content: '▸'; color: var(--orange); font-size: 12px; }
.zone-item:hover { background: #1f1f1f; border-color: var(--orange); color: #fff; }
.zones-right p { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; color: var(--text-dim); line-height: 1.8; margin-bottom: 30px; }
.certif-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.badge { padding: 10px 20px; border: 1px solid rgba(232,98,10,0.4); font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%); background: rgba(232,98,10,0.05); }

.faq-section { background: var(--dark); }
.faq-list { display: flex; flex-direction: column; gap: 2px; margin-top: 40px; }
.faq-item { background: var(--dark2); border-left: 3px solid transparent; transition: all 0.3s; overflow: hidden; }
.faq-item.open { border-left-color: var(--orange); }
.faq-q { padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; color: #fff; transition: color 0.3s; }
.faq-q:hover { color: var(--orange); }
.faq-arrow { font-size: 18px; color: var(--orange); transition: transform 0.3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 28px 24px; }
.faq-a p { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; color: var(--text-dim); line-height: 1.8; }

.sm-banner { background: linear-gradient(135deg, rgba(232,98,10,0.08) 0%, rgba(10,10,10,0) 100%); border: 1px solid rgba(232,98,10,0.2); padding: 50px 60px; margin: 0; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.sm-banner-text .sm-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.sm-banner-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 4vw, 48px); letter-spacing: 2px; color: #fff; }
.sm-banner-text p { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; color: var(--text-dim); margin-top: 8px; }
.sm-banner-cta { flex-shrink: 0; }
.sm-coming { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim); margin-top: 10px; text-align: center; }

.contact { background: var(--black); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-line { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: var(--dark2); border-left: 3px solid transparent; transition: all 0.3s; }
.contact-line:hover { border-left-color: var(--orange); }
.contact-icon { font-size: 20px; width: 44px; height: 44px; background: rgba(232,98,10,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-line h4 { font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 2px; color: var(--orange); margin-bottom: 4px; }
.contact-line p, .contact-line a { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; color: var(--text-dim); text-decoration: none; line-height: 1.5; }
.contact-line a:hover { color: var(--orange); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim); }
.form-group input, .form-group select, .form-group textarea { background: var(--dark2); border: 1px solid var(--gray); color: var(--text); padding: 14px 18px; font-family: 'Barlow Condensed', sans-serif; font-size: 15px; outline: none; transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group select option { background: var(--dark2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

footer { background: var(--dark); border-top: 1px solid var(--gray); padding: 60px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 50px; }
.footer-brand-text { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 3px; color: #fff; }
.footer-brand-text span { color: var(--orange); display: block; font-size: 14px; letter-spacing: 5px; }
.footer-tagline { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; color: var(--text-dim); margin-top: 12px; line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.footer-col a { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 15px; color: var(--text-dim); text-decoration: none; margin-bottom: 10px; transition: color 0.3s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--gray); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; color: var(--text-dim); }
.footer-bottom a { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; color: var(--text-dim); text-decoration: none; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--orange); }

.cnaps-bar { background: var(--dark2); border-top: 1px solid rgba(232,98,10,0.15); border-bottom: 1px solid rgba(232,98,10,0.15); padding: 20px 60px; display: flex; align-items: center; justify-content: center; gap: 40px; }
.cnaps-bar-item { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); display: flex; align-items: center; gap: 8px; }
.cnaps-bar-item span { color: var(--orange); }

.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(232,98,10,0.3), transparent); }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .ham { display: flex; }
  section { padding: 70px 24px; }
  .hero-content { padding: 0 24px; }
  .hero h1 { font-size: clamp(52px, 14vw, 90px); }
  .hero-stats { right: 24px; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .zones-inner { grid-template-columns: 1fr; }
  .zones-list { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .sm-banner { flex-direction: column; text-align: center; padding: 40px 24px; }
  .cnaps-bar { flex-direction: column; gap: 16px; padding: 20px 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom div { display: flex; gap: 16px; }
}
