/* ============================================
   F.AI.Z — Professional Style Sheet
   ============================================ */

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

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

:root {
  --accent: #0ea5e9;
  --accent-light: #38bdf8;
  --accent-dark: #0284c7;
  --accent-glow: rgba(14, 165, 233, 0.25);
  --accent-subtle: rgba(14, 165, 233, 0.08);

  --bg-primary: #030712;
  --bg-secondary: #0f1729;
  --bg-card: #111827;
  --bg-card-hover: #1e293b;
  --bg-elevated: #1e293b;

  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(14, 165, 233, 0.3);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 10px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px var(--accent-glow);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


/* ============================================
   HEADER
   ============================================ */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid rgba(14,165,233,0.15);
  transition: var(--transition);
}

header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(14,165,233,0.5) 30%, rgba(14,165,233,0.5) 70%, transparent 100%);
  pointer-events: none;
}

header.scrolled {
  background: rgba(3, 7, 18, 0.97);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* ---- LOGO ---- */
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-left: 0.85rem;
  border-left: 2.5px solid var(--accent);
}

.logo-body {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}

.logo-name {
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--text-primary);
  white-space: nowrap;
}

.logo-sub {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.logo .ai, .logo-name .ai, .footer-logo .ai {
  color: var(--accent);
  text-shadow: 0 0 24px var(--accent-glow);
}

.logo .ai, .logo-name .ai, .footer-logo .ai {
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  /* Positioned at body level so backdrop-filter on header does not trap it */
  position: fixed;
  top: 0;
  right: 2rem;
  height: 72px;
  z-index: 1001;
  background: transparent;
}

/* Phone link only visible in mobile nav */
.nav-phone-mobile {
  display: none;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: var(--transition-fast);
  position: relative;
}

nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  border-radius: 1px;
}

nav a:not(.nav-cta):hover::after,
nav a:not(.nav-cta).active::after {
  width: 100%;
}

nav a:hover {
  color: var(--text-primary);
}

.nav-shop-link {
  color: var(--accent) !important;
  font-weight: 600 !important;
}

.nav-shop-link i {
  font-size: 0.8rem;
}

.nav-cta {
  background: var(--accent);
  color: var(--bg-primary) !important;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: var(--transition) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.nav-cta i {
  font-size: 1.05rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================
   HERO
   ============================================ */

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1621330396173-e41b1cafd17f?w=1920&h=1080&fit=crop') center/cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
  filter: saturate(0.3);
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(14, 165, 233, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(14, 165, 233, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 60%, rgba(56, 189, 248, 0.04) 0%, transparent 60%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 50% at center, black 20%, transparent 80%);
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.3;
  filter: blur(80px);
}

.hero-content {
  position: relative;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-subtle);
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: var(--accent-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
}

.hero-badge i {
  color: #fbbf24;
}

.hero-title {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  letter-spacing: 8px;
  line-height: 1;
  margin-bottom: 1rem;
}

.hero-title .ai {
  color: var(--accent);
  text-shadow: 0 0 60px var(--accent-glow), 0 0 120px rgba(14,165,233,0.15);
  position: relative;
}

.hero-tagline {
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  color: var(--text-muted);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.925rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.12);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Call button — same as primary */
.btn-call {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-call:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Products "View All" row */
.products-view-all {
  margin-top: 2.5rem;
  text-align: center;
}

.hero-phone {
  margin-bottom: 2.5rem;
}

.hero-phone a {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-phone a:hover {
  color: var(--accent-light);
  text-shadow: 0 0 30px var(--accent-glow);
}

.hero-phone a i {
  font-size: 1.2rem;
}

.hero-phone span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  margin-top: 0.3rem;
  letter-spacing: 1px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.trust-item i {
  color: var(--accent);
  font-size: 0.85rem;
}

.trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.1);
}


/* ============================================
   SECTIONS COMMON
   ============================================ */

section {
  padding: 6rem 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-label i {
  font-size: 0.7rem;
}

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

.section-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 3.5rem;
}


/* ============================================
   SERVICES
   ============================================ */

#services {
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(14,165,233,0.05);
  background: var(--bg-card-hover);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--accent-subtle);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  color: var(--accent);
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.3);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-devices {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.service-devices i {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.service-card:hover .service-devices i {
  color: var(--accent);
  border-color: var(--border-hover);
}

.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-subtle);
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(14, 165, 233, 0.15);
}


/* ============================================
   PRODUCTS
   ============================================ */

#products {
  background: var(--bg-primary);
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-sm);
  font-size: 0.825rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.filter-btn:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  background: var(--bg-card-hover);
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.products-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 0;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.products-loading i {
  font-size: 1.5rem;
  color: var(--accent);
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
}

.product-img i {
  font-size: 2.5rem;
  color: var(--text-muted);
  opacity: 0.5;
}

.product-body {
  padding: 1.3rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.product-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: var(--accent-subtle);
  color: var(--accent);
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.product-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
}

.product-name {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.product-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.product-enquire {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  margin-top: 1rem;
  padding: 0.6rem;
  background: var(--accent-subtle);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.product-enquire:hover {
  background: rgba(14, 165, 233, 0.15);
  border-color: var(--border-hover);
}


/* ============================================
   REVIEWS
   ============================================ */

#reviews {
  background: var(--bg-secondary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: #fbbf24;
  font-size: 0.85rem;
}

.review-text {
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 1px solid rgba(14, 165, 233, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
}

.review-author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.review-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}


/* ============================================
   WHY CHOOSE US
   ============================================ */

#why {
  background: var(--bg-primary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.why-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  background: var(--accent-subtle);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  transition: var(--transition);
}

.why-item:hover .why-icon-wrap {
  background: rgba(14, 165, 233, 0.15);
  transform: scale(1.08);
}

.why-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.why-item p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}


/* ============================================
   FAQ
   ============================================ */

#faq {
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-item.active {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.faq-question span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.faq-question i {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.3rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: var(--accent-light);
}


/* ============================================
   BLOG
   ============================================ */

#blog {
  background: var(--bg-primary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(8px);
  color: var(--accent);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-sm);
}

.blog-body {
  padding: 1.3rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.blog-meta span {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-meta i {
  font-size: 0.7rem;
}

.blog-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.blog-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}

.blog-read-more:hover {
  gap: 0.65rem;
  color: var(--accent-light);
}

.blog-read-more i {
  font-size: 0.7rem;
  transition: var(--transition);
}


/* ============================================
   CONTACT
   ============================================ */

#contact {
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--border-hover);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-subtle);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-card-body strong {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-card-body span,
.contact-card-body a {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-card-body a:hover {
  color: var(--accent);
}

.hours-table {
  margin-top: 0.3rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  font-size: 0.85rem;
}

.hours-row span:first-child {
  color: var(--text-primary);
  font-weight: 500;
}

.hours-row span:last-child {
  color: var(--text-secondary);
  font-weight: 500;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  min-height: 400px;
  background: var(--bg-card);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}


/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 0.75rem;
  display: block;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  padding: 0.3rem 0;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-links a i {
  width: 16px;
  font-size: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}


/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}


/* Buttons - Large variant */
.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

.scroll-indicator span {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}


/* Brand Logos */
.brand-logos {
  margin-top: 2.5rem;
  margin-bottom: 5rem;
}

.brand-logos-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.brand-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.brand-logo:hover {
  color: var(--text-primary);
}

.brand-logo i {
  font-size: 1.6rem;
}

.brand-logo span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-text-icon {
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
}


/* Footer Logo Sub */
.footer-logo-sub {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.15rem;
  margin-bottom: 0.75rem;
}

/* Hero Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 6s ease-in-out infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.6; }
  80% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-100px) scale(1); }
}


/* ============================================
   SERVICE IMAGES
   ============================================ */

.service-img {
  width: 100%;
  height: 140px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1rem;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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


/* ============================================
   HOW IT WORKS / PROCESS
   ============================================ */

#process {
  background: var(--bg-primary);
  position: relative;
}

.process-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}

.process-step:hover {
  border-color: var(--border-hover);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.process-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 0 20px var(--accent-glow);
}

.process-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.process-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.process-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 0 auto;
  opacity: 0.4;
}

.process-cta {
  margin-top: 2.5rem;
}

.process-info-banner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: var(--accent-subtle);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-lg);
  max-width: 700px;
  margin: 0 auto;
}

.process-info-banner i {
  font-size: 1.3rem;
  color: var(--accent);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.process-info-banner p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.process-info-banner strong {
  color: var(--accent-light);
}


/* ============================================
   FOOTER SOCIAL
   ============================================ */

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}


/* ============================================
   PRODUCT IMAGE IMPROVEMENTS
   ============================================ */

.product-img img {
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}


/* ============================================
   ANIMATIONS
   ============================================ */

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.4s; }
.animate-in:nth-child(5) { animation-delay: 0.5s; }
.animate-in:nth-child(6) { animation-delay: 0.6s; }
.animate-in:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }

  nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    display: none;
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 1.5rem 6rem;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  nav.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  .nav-phone-mobile {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent) !important;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  nav a {
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  nav a::after {
    display: none !important;
  }

  .nav-cta {
    margin-top: 1rem;
    justify-content: center;
    padding: 0.9rem 1.5rem !important;
    border-bottom: none !important;
    border-radius: var(--radius-sm) !important;
  }

  .hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 300px;
  }

  section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: clamp(1.7rem, 6vw, 2.5rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .trust-divider {
    display: none;
  }

  .hero-trust-bar {
    gap: 1rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1;
  }

  .process-step {
    padding: 1.2rem;
    gap: 1rem;
  }

  .process-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
  }

  .process-info-banner {
    padding: 1.2rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .scroll-indicator {
    display: none;
  }

  .service-img {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    letter-spacing: 4px;
  }

  .header-inner {
    padding: 0 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  #hero {
    padding: 6rem 1rem 4rem;
  }
}


/* ============================================
   HERO 2-COLUMN REDESIGN
   ============================================ */

/* Override the old centred layout */
#hero {
  text-align: left;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  padding: 6rem 1.5rem 0;
  gap: 0;
}

/* Two-column row */
.hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0 3rem;
  position: relative;
  z-index: 1;
  flex: 1;
}

/* Left column */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero-text .hero-badge   { margin-bottom: 1.5rem; }
.hero-text .hero-title   { margin-bottom: 0.75rem; }
.hero-text .hero-tagline { margin-bottom: 1.25rem; }
.hero-text .hero-desc    { margin-bottom: 2rem; }
.hero-text .hero-actions { margin-bottom: 1.5rem; }

/* Align title left in new layout */
.hero-text .hero-title {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
}

/* Right column — device showcase */
.hero-device {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}

.hero-device-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.35) 0%, transparent 75%);
  filter: blur(40px);
  pointer-events: none;
  animation: devicePulse 4s ease-in-out infinite;
  transition: background 0.8s ease;
}

@keyframes devicePulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.12); opacity: 1; }
}

.hero-device-img {
  width: 280px;
  height: 380px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(14,165,233,0.3));
  animation: deviceFloat 5s ease-in-out infinite;
  transition: opacity 0.38s ease;
}

@keyframes deviceFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* Floating info pills */
.hero-device-pill {
  position: absolute;
  z-index: 3;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(14,165,233,0.25);
  border-radius: 30px;
  padding: 0.55rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.hero-device-pill i {
  color: var(--accent);
  font-size: 0.75rem;
}

.hero-device-pill--top {
  top: 18%;
  right: 2%;
  animation: pillFloat 4.5s ease-in-out infinite;
}

.hero-device-pill--bottom {
  bottom: 18%;
  left: 2%;
  animation: pillFloat 4.5s ease-in-out infinite 0.8s;
}

@keyframes pillFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}


/* ============================================
   HERO FOOTER STRIP (trust + stats + brands)
   ============================================ */

.hero-footer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Trust bar — wider in footer */
.hero-footer .hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.hero-footer .trust-item {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.hero-footer .trust-item i {
  color: var(--accent);
}


/* ============================================
   HERO STATS — horizontal card row
   ============================================ */

.hero-stats {
  display: flex;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  max-width: 640px;
}

.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s ease;
}

.hero-stat:last-child { border-right: none; }

.hero-stat:hover {
  background: rgba(14,165,233,0.05);
}

.stat-number-row {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
}

.stat-suffix {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

/* Brand logos in footer — horizontal centred */
.hero-footer .brand-logos {
  margin: 0;
  text-align: center;
}


/* ============================================
   SERVICE CARDS — book button + popular badge
   ============================================ */

.service-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  padding: 0.6rem 1.1rem;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: var(--radius-sm);
  color: #25d366;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.service-book-btn:hover {
  background: rgba(37,211,102,0.18);
  border-color: rgba(37,211,102,0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.15);
}

.service-book-btn i {
  font-size: 0.85rem;
}

.popular-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 4px 12px rgba(249,115,22,0.35);
  z-index: 2;
}


/* ============================================
   STRONGER HERO GRADIENT / VISUAL DEPTH
   ============================================ */

/* Richer top glow */
.hero-gradient {
  background:
    radial-gradient(ellipse 80% 60% at 60% 0%,   rgba(14,165,233,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 90%,   rgba(14,165,233,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 50%,   rgba(56,189,248,0.06) 0%, transparent 60%);
}

/* Section separator gradient at bottom of hero */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
  pointer-events: none;
}

/* Stronger hero title glow */
.hero-title .ai {
  text-shadow:
    0 0 40px rgba(14,165,233,0.7),
    0 0 80px rgba(14,165,233,0.3),
    0 0 160px rgba(14,165,233,0.1);
}


/* ============================================
   RESPONSIVE — hero 2-col → 1-col
   ============================================ */

@media (max-width: 900px) {
  .hero-main {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem 0 2rem;
  }

  .hero-text {
    align-items: center;
  }

  .hero-device {
    min-height: 300px;
    order: -1; /* device above text on mobile */
  }

  .hero-device-img {
    width: 200px;
  }

  .hero-device-glow {
    width: 250px;
    height: 250px;
  }

  .hero-device-pill--top  { top: 5%; right: 10%; }
  .hero-device-pill--bottom { bottom: 5%; left: 10%; }

  #hero {
    text-align: center;
    padding: 5rem 1.5rem 0;
  }
}

@media (max-width: 600px) {
  .hero-stats {
    flex-wrap: wrap;
  }

  .hero-stat {
    flex: 0 0 50%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .hero-stat:nth-child(even) { border-right: none; }
  .hero-stat:nth-child(3),
  .hero-stat:nth-child(4) { border-bottom: none; }

  .hero-device { display: none; } /* hide device on very small screens */

  .hero-footer .hero-trust-bar { gap: 1rem; }
}

