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

:root {
  --bg: #111111;
  --bg2: #1a1a1a;
  --bg3: #222222;
  --surface: #2a2a2a;
  --border: #333333;
  --orange: #FF6B2B;
  --orange-light: #FFB088;
  --orange-dim: rgba(255,107,43,0.12);
  --text: #F0EDE8;
  --text-muted: #999999;
  --text-dim: #666666;
  --white: #ffffff;
  --font: 'Plus Jakarta Sans', sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.6);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--orange); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.navbar.scrolled { background: rgba(17,17,17,0.98); box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { display: flex; flex-shrink: 0; }
.logo-text {
  font-size: 1.15rem; font-weight: 800; color: var(--text); letter-spacing: -0.3px;
}
.logo-text span { color: var(--orange); }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  display: flex; align-items: center; gap: 7px;
  background: var(--orange); color: white; text-decoration: none;
  padding: 9px 18px; border-radius: 50px; font-size: 0.88rem; font-weight: 700;
  transition: all 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: #e55a1f; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  border-top: 1px solid var(--border); padding: 8px 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-muted); text-decoration: none; padding: 14px 24px;
  font-size: 0.95rem; font-weight: 500; transition: all 0.2s;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--orange); background: var(--orange-dim); }
.mobile-cta { color: var(--orange) !important; font-weight: 700 !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 24px 60px; position: relative; overflow: hidden;
  max-width: 1200px; margin: 0 auto; gap: 60px;
}
.hero-bg-pattern {
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(255,107,43,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(255,107,43,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { flex: 1; max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-dim); border: 1px solid rgba(255,107,43,0.3);
  color: var(--orange-light); padding: 7px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.3px;
  margin-bottom: 24px; animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 7px; height: 7px; background: var(--orange);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero-title {
  font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 800; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 20px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-sub {
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 32px; animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.btn-primary {
  background: var(--orange); color: white; text-decoration: none;
  padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: #e55a1f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,43,0.35); }
.btn-secondary {
  background: var(--surface); color: var(--text); text-decoration: none;
  padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  border: 1px solid var(--border); transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.hero-stats {
  display: flex; align-items: center; gap: 28px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.6rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 3px; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* Hero Visual */
.hero-visual { flex: 0 0 auto; animation: fadeUp 0.6s 0.3s ease both; }
.tool-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.tool-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; transition: all 0.3s; cursor: default;
  animation: fadeUp 0.5s ease both;
}
.tool-card:nth-child(1){animation-delay:0.1s}
.tool-card:nth-child(2){animation-delay:0.2s}
.tool-card:nth-child(3){animation-delay:0.3s}
.tool-card:nth-child(4){animation-delay:0.4s}
.tool-card:nth-child(5){animation-delay:0.5s}
.tool-card:nth-child(6){animation-delay:0.6s}
.tool-card:hover { border-color: var(--orange); background: var(--orange-dim); transform: translateY(-4px); }
.tool-emoji { font-size: 2rem; }
.tool-card span { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); }

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--orange); overflow: hidden; padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.88rem; font-weight: 700; color: white;
  white-space: nowrap; letter-spacing: 0.3px;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTIONS ── */
.products { padding: 100px 0; background: var(--bg); }
.services { padding: 100px 0; background: var(--bg2); }
.why-us { padding: 100px 0; background: var(--bg); }
.contact { padding: 100px 0; background: var(--bg2); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header.light h2 { color: var(--text); }
.section-tag {
  display: inline-block; background: var(--orange-dim);
  color: var(--orange); border: 1px solid rgba(255,107,43,0.3);
  padding: 5px 14px; border-radius: 50px; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800;
  letter-spacing: -0.8px; line-height: 1.2; margin-bottom: 14px;
}
.section-header p { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.product-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; transition: all 0.3s;
}
.product-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow); }
.product-icon-wrap {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 16px;
}
.product-icon-wrap.orange { background: rgba(255,107,43,0.15); }
.product-icon-wrap.amber  { background: rgba(255,176,136,0.15); }
.product-icon-wrap.yellow { background: rgba(255,215,0,0.12); }
.product-icon-wrap.blue   { background: rgba(79,195,247,0.12); }
.product-icon-wrap.green  { background: rgba(165,214,167,0.12); }
.product-icon-wrap.purple { background: rgba(206,147,216,0.12); }
.product-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.product-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 14px; }
.product-card ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.product-card ul li {
  font-size: 0.82rem; color: var(--text-dim); padding-left: 14px; position: relative;
}
.product-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-size: 0.75rem; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-item {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; position: relative;
  transition: all 0.3s; overflow: hidden;
}
.service-item:hover { border-color: var(--orange); transform: translateY(-4px); }
.service-num {
  font-size: 3rem; font-weight: 800; color: rgba(255,107,43,0.1);
  position: absolute; top: 16px; right: 20px; line-height: 1;
}
.service-icon { font-size: 2rem; margin-bottom: 14px; }
.service-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.service-item p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }

/* ── WHY US ── */
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text .section-tag { margin-bottom: 14px; }
.why-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.8px; margin-bottom: 16px; }
.why-text > p { color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.why-points { display: flex; flex-direction: column; gap: 20px; }
.why-point { display: flex; gap: 14px; align-items: flex-start; }
.why-check {
  width: 28px; height: 28px; background: var(--orange); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.why-point strong { font-size: 0.95rem; font-weight: 700; display: block; margin-bottom: 3px; }
.why-point p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }

/* Testimonials */
.testimonial-stack { position: relative; height: 320px; }
.testimonial-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; position: absolute;
  width: 300px; box-shadow: var(--shadow);
}
.testimonial-card:nth-child(1) { top: 0; left: 0; z-index: 3; }
.tc2 { top: 40px; left: 40px; z-index: 2; opacity: 0.85; }
.tc3 { top: 80px; left: 80px; z-index: 1; opacity: 0.65; }
.stars { color: var(--orange); font-size: 0.9rem; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; font-style: italic; }
.t-author { font-size: 0.8rem; font-weight: 600; color: var(--orange-light); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px; text-align: center;
  transition: all 0.3s;
}
.contact-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.highlight-card {
  background: var(--orange-dim); border-color: rgba(255,107,43,0.4);
}
.contact-icon { font-size: 2.4rem; margin-bottom: 16px; }
.contact-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.contact-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.phone-link {
  display: block; font-size: 1.6rem; font-weight: 800; color: var(--orange);
  text-decoration: none; margin-bottom: 6px; letter-spacing: -0.5px;
  transition: color 0.2s;
}
.phone-link:hover { color: var(--orange-light); }
.cta-btn { margin-top: 16px !important; }
.contact-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: white; text-decoration: none;
  padding: 13px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; background: #25D366; color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5); text-decoration: none;
  transition: all 0.3s; animation: floatIn 0.5s 1s ease both;
}
.whatsapp-float:hover { background: #1ebe5d; transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
@keyframes floatIn { from{opacity:0;transform:scale(0.5)} to{opacity:1;transform:scale(1)} }
.hours-list { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.88rem; padding: 8px 0; border-bottom: 1px solid var(--border);
}
.hours-row span:first-child { color: var(--text-muted); }
.hours-row span:last-child { font-weight: 600; color: var(--orange-light); }

/* ── FOOTER ── */
.footer { background: #0a0a0a; border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-contact h4 { font-size: 0.85rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 6px; }
.footer-links a, .footer-contact a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--orange); }
.footer-contact p { color: var(--text-muted); font-size: 0.88rem; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; text-align: center; }
.footer-bottom p { color: var(--text-dim); font-size: 0.82rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .testimonial-stack { height: 260px; }
}
@media (max-width: 768px) {
  .hero { flex-direction: column; padding-top: 90px; gap: 40px; }
  .hero-visual { width: 100%; }
  .tool-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.3rem; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
}
