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

:root {
  --primary: #0A1128;      /* Deep Navy/Obsidian */
  --secondary: #16264A;    /* Lighter Navy */
  --accent: #00E5FF;       /* Cyan glowing accent */
  --accent-dark: #0088CC;
  --dark: #030510;         /* Pure dark background */
  --text-main: #FFFFFF;
  --muted: rgba(255, 255, 255, 0.65);
  --border: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(10, 17, 40, 0.6);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(0, 229, 255, 0.08), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(0, 136, 204, 0.08), transparent 25%);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────
   UTILITIES
───────────────────────────────────────────────────────────────── */
.btn {
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #000;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 229, 255, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.section-label {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-sub {
  color: var(--muted);
  max-width: 600px;
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* ─────────────────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3, 5, 16, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo-img {
  width: 234px;
  height: 65px;
  background: url('../images/logo.jpg') center 48% / 100% auto no-repeat;
  background-color: #fff;
  border-radius: 8px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-cta {
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--muted) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: none;
}
.nav-quote {
  padding: 0.55rem 1.2rem;
  border-radius: 8px;
  color: #001019 !important;
  font-size: 0.9rem;
}
.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--text-main);
}
.mobile-menu {
  position: fixed;
  top: 89px;
  left: 5%;
  right: 5%;
  z-index: 99;
  display: none;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  padding: 1rem;
  background: rgba(10, 17, 40, 0.98);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.mobile-menu.open {
  display: grid;
}
.mobile-menu a {
  color: var(--text-main);
  text-decoration: none;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
}
.mobile-menu a:hover {
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent);
}

/* ─────────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 5% 4rem;
  position: relative;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero-tag {
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.hero-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title span {
  color: var(--accent);
}
.hero-sub {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-proof {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.hero-proof span {
  color: rgba(255,255,255,0.78);
  border: 1px solid rgba(0, 229, 255, 0.22);
  background: rgba(0, 229, 255, 0.07);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
}
.hero-image-wrapper {
  position: relative;
  height: 70vh;
  min-height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
}
.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: brightness(1.28) saturate(1.12) contrast(1.04);
}
.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

/* ─────────────────────────────────────────────────────────────────
   MARQUEE
───────────────────────────────────────────────────────────────── */
.marquee-wrap {
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--primary);
  overflow: hidden;
}
.marquee {
  display: flex;
  gap: 4rem;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee span {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}
.marquee span b { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─────────────────────────────────────────────────────────────────
   COMPACT PRODUCTS (CARDS)
───────────────────────────────────────────────────────────────── */
#products {
  padding: 6rem 5%;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}
.product-card {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
  backdrop-filter: blur(16px);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: rgba(0, 229, 255, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(0, 229, 255, 0.2);
  background: linear-gradient(180deg, rgba(16, 42, 73, 0.85), rgba(6, 17, 32, 0.96));
}
.pc-image {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  background: linear-gradient(135deg, #ffffff, #e9f7fb);
}
.pc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(1.14) saturate(1.1) contrast(1.04);
}
.product-card:hover .pc-image img {
  transform: scale(1.05);
}
.pc-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  color: var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(0,229,255,0.3);
}
.pc-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pc-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.pc-desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.pc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}
.pc-meta span {
  color: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.045);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.78rem;
  line-height: 1.2;
}
.pc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.pc-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-main);
}
.pc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.pc-footer {
  margin-top: auto;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.pc-footer .btn {
  white-space: nowrap;
}

/* ─────────────────────────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────────────────────────── */
#services {
  padding: 6rem 5%;
  background: linear-gradient(to bottom, transparent, rgba(10, 17, 40, 0.4), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.service-card:hover {
  background: rgba(0, 229, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-5px);
}
.service-icon {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.1);
  width: 68px;
  height: 68px;
  border-radius: 16px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  position: relative;
}
.service-icon i {
  font-size: 2.2rem;
  color: var(--accent);
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon i {
  transform: scale(1.15);
}
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
}
.service-link {
  display: inline-flex;
  margin-top: 1.25rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
}

/* ─────────────────────────────────────────────────────────────────
   STATS & CTA
───────────────────────────────────────────────────────────────── */
#stats {
  padding: 6rem 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  text-align: left;
}
.trust-grid {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(10, 17, 40, 0.28);
}
.stat {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  background: rgba(255,255,255,0.035);
}
.stat h2 {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.stat p {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

#cta {
  padding: 8rem 5%;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.08), transparent 60%);
}
#cta h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
}
#cta p {
  color: var(--muted);
  font-size: 1.15rem;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────────── */
footer {
  padding: 4rem 5% 2rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 4rem;
  background: #010206;
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.footer-col h4 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--text-main);
}
.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--accent);
}
.social-share {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.social-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text-main);
  font-size: 0.86rem;
  font-weight: 700;
}
.social-share a:hover {
  background: rgba(0,229,255,0.1);
  border-color: rgba(0,229,255,0.34);
}
.footer-bottom {
  padding: 1.5rem 5%;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  background: #010206;
}

/* ─────────────────────────────────────────────────────────────────
   MODAL & CHAT OVERRIDES
───────────────────────────────────────────────────────────────── */
#leadModal, #supportModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-content {
  width: 100%;
  max-width: 450px;
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.modal-content input {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.modal-content input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.06);
  outline: none;
}

/* Chat fixes */
#chat-widget {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 380px;
  background: rgba(10, 17, 40, 0.95);
  backdrop-filter: blur(25px);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  z-index: 1000;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#chat-widget.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
.chat-header {
  background: var(--secondary);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.chat-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.chat-close {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.5rem;
}
.chat-close:hover { color: #fff; }
.chat-body {
  height: 320px;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.chat-body::-webkit-scrollbar { width: 6px; }
.chat-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
.msg {
  max-width: 85%;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  font-size: 0.95rem;
}
.msg.ai {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.msg.user {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #000;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.chat-footer {
  padding: 1.2rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.8rem;
}
.chat-footer input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}
.chat-send {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.chat-send:hover { transform: scale(1.05); }
.chat-send svg { width: 18px; height: 18px; fill: #000; }
#chat-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border: none;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: transform 0.3s;
}
#chat-btn:hover { transform: scale(1.1); box-shadow: 0 15px 40px rgba(0, 229, 255, 0.5); }
.chat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: #ef4444;
  border-radius: 50%;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}
#whatsapp-btn {
  position: fixed;
  left: 30px;
  bottom: 38px;
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #04150a;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.28);
}
#whatsapp-btn:hover {
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────────── */
@media(max-width: 900px) {
  nav {
    padding: 1rem 5%;
  }
  .logo-img {
    width: 232px;
    max-width: calc(100vw - 116px);
    height: 64px;
  }
  .mobile-menu-btn {
    display: inline-flex;
  }
  .nav-links {
    display: none;
  }
  #hero { grid-template-columns: 1fr; text-align: center; padding-top: 8rem; min-height: auto; }
  .hero-content { margin: 0 auto; }
  .hero-btns { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-image-wrapper { height: 360px; min-height: 360px; }
  .products-grid { grid-template-columns: 1fr; }
  .pc-footer { flex-direction: column; align-items: stretch; }
  .pc-footer .btn { width: 100%; }
  footer { grid-template-columns: 1fr; gap: 2rem; }
  #chat-widget {
    left: 1rem;
    right: 1rem;
    bottom: 92px;
    width: auto;
  }
  #whatsapp-btn {
    right: auto;
    left: 18px;
    bottom: 36px;
    min-height: 44px;
    font-size: 0.88rem;
  }
  #chat-btn {
    right: 18px;
    bottom: 26px;
  }
}

@media(max-width: 520px) {
  .hero-title {
    font-size: clamp(2.65rem, 14vw, 3.5rem);
  }
  .hero-sub {
    font-size: 1.02rem;
  }
  .hero-btns .btn {
    width: 100%;
  }
  .products-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .product-card {
    padding: 1rem;
    border-radius: 18px;
  }
  .pc-image {
    height: 230px;
  }
  .pc-features {
    grid-template-columns: 1fr;
  }
  .modal-content {
    padding: 2rem 1.25rem;
  }
}

/* ─────────────────────────────────────────────────────────────────
   REVAMP: CUSTOMER-FIRST HOMEPAGE
───────────────────────────────────────────────────────────────── */
:root {
  --panel: rgba(8, 20, 38, 0.82);
  --panel-strong: rgba(11, 31, 55, 0.92);
  --line: rgba(139, 222, 235, 0.16);
  --green: #25d366;
  --warm: #f4c96b;
}

body {
  background:
    linear-gradient(180deg, #020713 0%, #07101d 40%, #020713 100%);
  background-color: #020713;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    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: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 72%);
}

nav {
  background: rgba(2, 7, 19, 0.82);
}

.nav-links {
  gap: 1.35rem;
}

.nav-quote {
  box-shadow: 0 12px 28px rgba(0, 229, 255, 0.22);
}

.section-shell {
  padding: 6.5rem 5%;
}

.section-kicker {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.section-kicker .section-sub {
  margin-bottom: 0;
  justify-self: end;
}

.hero-revamp {
  min-height: 100vh;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 3rem;
  padding-top: 7.5rem;
  padding-bottom: 3rem;
}

.hero-revamp::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  width: 42vw;
  height: 42vw;
  max-height: 560px;
  max-width: 560px;
  background: radial-gradient(circle, rgba(0,229,255,0.14), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-revamp .hero-content {
  max-width: 680px;
}

.hero-revamp .hero-title {
  font-size: clamp(3.1rem, 5.7vw, 6rem);
  letter-spacing: 0;
  line-height: 0.96;
  max-width: 10.5ch;
}

.hero-revamp .hero-title span {
  color: var(--text-main);
}

.hero-revamp .hero-sub {
  max-width: 590px;
  font-size: 1.18rem;
  color: rgba(255,255,255,0.72);
}

.hero-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 245px;
  gap: 1rem;
  align-items: stretch;
}

.hero-media,
.hero-side-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 28px 70px rgba(0,0,0,0.42);
}

.hero-media {
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.42) saturate(1.12) contrast(1.04);
}

.hero-media-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  color: #001019;
  background: var(--accent);
  font-weight: 800;
  font-size: 0.82rem;
  box-shadow: 0 10px 28px rgba(0,229,255,0.28);
}

.hero-side-card {
  align-self: center;
  border-radius: 22px;
  padding: 1rem;
}

.hero-side-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 0.8rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff, #eaf6f8);
  margin-bottom: 1rem;
}

.hero-side-card span,
.pc-eyebrow {
  display: inline-flex;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.55rem;
}

.hero-side-card h3 {
  font-size: 1.25rem;
  line-height: 1.15;
  margin-bottom: 0.45rem;
}

.hero-side-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.category-strip {
  margin: -1.5rem 5% 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.category-tile {
  min-height: 132px;
  padding: 1.15rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 38, 65, 0.9), rgba(6, 17, 32, 0.92));
  color: var(--text-main);
  text-decoration: none;
  display: grid;
  align-content: start;
  gap: 0.45rem;
  box-shadow: 0 18px 46px rgba(0,0,0,0.25);
}

.category-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(0,229,255,0.38);
}

.category-tile strong {
  font-size: 1.02rem;
}

.category-tile small {
  color: var(--muted);
  font-size: 0.86rem;
}

.tile-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.18);
  position: relative;
  margin-bottom: 0.25rem;
}

.tile-icon i {
  font-size: 1.4rem;
  color: var(--accent);
  filter: drop-shadow(0 0 5px rgba(0, 229, 255, 0.3));
}

.products-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: linear-gradient(180deg, rgba(11, 31, 55, 0.78), rgba(4, 13, 25, 0.96));
  border-color: var(--line);
  border-radius: 26px;
  padding: 1.2rem;
}

.product-featured {
  display: grid;
  grid-template-rows: auto 1fr;
}

.pc-image {
  height: 330px;
  border-radius: 20px;
}

.lock-image img {
  object-fit: contain;
  padding: 2rem;
}

.pc-title {
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.pc-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
}

.pc-footer .btn {
  flex: 1;
}

.services-revamp {
  background:
    linear-gradient(180deg, rgba(0,229,255,0.035), rgba(255,255,255,0.015));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-card {
  background: rgba(7, 20, 36, 0.78);
  border-color: var(--line);
  min-height: 430px;
  overflow: hidden;
  padding: 1rem 1rem 1.5rem;
}

.service-photo,
.audience-photo {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  background: linear-gradient(135deg, #ffffff, #e9f7fb);
}

.service-photo {
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
}

.service-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(1.14) saturate(1.08) contrast(1.03);
  transition: transform 0.45s ease;
}

.service-card:hover .service-photo img {
  transform: scale(1.04);
}

.service-card .service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
}

.audience-section {
  padding-top: 5.5rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.audience-grid article {
  min-height: 360px;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  overflow: hidden;
}

.audience-photo {
  height: 150px;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  filter: brightness(1.12) saturate(1.08);
}

.audience-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.audience-icon i {
  font-size: 1.5rem;
  color: var(--accent);
  filter: drop-shadow(0 0 5px rgba(0, 229, 255, 0.4));
}

.audience-grid span {
  display: inline-block;
  color: var(--warm);
  font-weight: 900;
  font-size: 0.85rem;
}

.audience-grid h3 {
  font-size: 1.35rem;
  margin: 1rem 0 0.7rem;
}

.audience-grid p {
  color: var(--muted);
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
  background: linear-gradient(90deg, rgba(37,211,102,0.06), transparent);
}

.process-grid {
  display: grid;
  gap: 1rem;
}

.process-grid div {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 1rem;
  padding: 1.2rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
}

.process-grid strong {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #001019;
  background: var(--accent);
}

.process-grid h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.process-grid p {
  color: var(--muted);
}

#cta h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.04;
}

@media(max-width: 1080px) {
  .hero-revamp {
    grid-template-columns: 1fr;
  }
  .hero-showcase {
    grid-template-columns: minmax(0, 1fr) 220px;
  }
  .hero-media {
    min-height: 430px;
  }
  .category-strip,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media(max-width: 900px) {
  .section-shell {
    padding: 4.5rem 5%;
  }
  .hero-revamp {
    padding-top: 8.25rem;
    text-align: left;
  }
  .hero-revamp .hero-content {
    margin: 0;
  }
  .hero-revamp .hero-title {
    max-width: 11ch;
  }
  .hero-btns,
  .hero-proof {
    justify-content: flex-start;
  }
  .hero-showcase {
    grid-template-columns: 1fr;
  }
  .hero-media {
    min-height: 340px;
  }
  .hero-side-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    align-items: center;
  }
  .hero-side-card img {
    margin-bottom: 0;
  }
  .section-kicker,
  .process-section {
    grid-template-columns: 1fr;
  }
  .section-kicker .section-sub {
    justify-self: start;
  }
  .products-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media(max-width: 560px) {
  .hero-revamp .hero-title {
    font-size: clamp(2.55rem, 12vw, 3.25rem);
    line-height: 1.02;
  }
  .hero-revamp .hero-sub {
    font-size: 1.04rem;
  }
  .hero-side-card {
    grid-template-columns: 1fr;
  }
  .hero-side-card img {
    aspect-ratio: 16 / 10;
  }
  .category-strip,
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .category-strip {
    margin-top: 1rem;
  }
  .pc-image {
    height: 260px;
  }
  .process-grid div {
    grid-template-columns: 1fr;
  }
  .process-grid strong {
    grid-row: auto;
    margin-bottom: 0.75rem;
  }
}
