/* ==========================================
   SurakshaCloud — Design System & Styles
   Security-First WordPress & Cloud Specialists
   ========================================== */

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Backgrounds */
  --bg-primary: #0a0e1a;
  --bg-secondary: #0f1425;
  --bg-card: #141a2e;
  --bg-card-hover: #1a2240;
  --surface: #1e2642;

  /* Accent Colors */
  --accent-blue: #3b82f6;
  --accent-cyan: #06b6d4;
  --accent-purple: #8b5cf6;
  --accent-green: #10b981;
  --accent-red: #ef4444;
  --accent-amber: #f59e0b;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  --gradient-brand-hover: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
  --gradient-security: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  --gradient-danger: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  --hero-overlay: linear-gradient(180deg, rgba(10, 14, 26, 0.82) 0%, rgba(10, 14, 26, 0.94) 100%);
  --hero-bg-img: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1600&q=80');
  --vapt-bg-img: url('https://images.unsplash.com/photo-1526374965328-7f61d4dc18c5?auto=format&fit=crop&w=1200&q=80');
  --cloud-bg-img: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1200&q=80');
  --code-bg-img: url('https://images.unsplash.com/photo-1542831371-29b0f74f9713?auto=format&fit=crop&w=1200&q=80');

  /* Text */
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Borders */
  --border-subtle: rgba(148, 163, 184, 0.08);
  --border-accent: rgba(59, 130, 246, 0.3);
  --border-green: rgba(16, 185, 129, 0.3);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.15);
  --shadow-green-glow: 0 0 40px rgba(16, 185, 129, 0.15);

  /* Spacing */
  --section-padding: 55px 0;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 100px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
}

.nav-logo .logo-text {
  display: inline-block;
}

.logo-icon { font-size: 1.5rem; }

.logo-accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  padding: 8px 0;
  display: inline-block;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--text-primary);
}

/* Dropdown */
.nav-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition-base);
  box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.dropdown-menu a:hover {
  background: rgba(59, 130, 246, 0.08);
  color: var(--text-primary);
}

.nav-cta-btn {
  background: var(--gradient-security) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: var(--transition-base) !important;
  white-space: nowrap;
}

.nav-cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: var(--shadow-green-glow);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-base);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: var(--gradient-brand-hover);
  box-shadow: 0 6px 28px rgba(59, 130, 246, 0.45);
  transform: translateY(-2px);
}

.btn-security {
  background: var(--gradient-security);
  color: #fff;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-security:hover {
  box-shadow: 0 6px 28px rgba(16, 185, 129, 0.45);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.btn-ghost:hover {
  background: rgba(148, 163, 184, 0.08);
  color: var(--text-primary);
  border-color: rgba(148, 163, 184, 0.35);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.btn-lg { padding: 11px 22px; font-size: 0.95rem; }
.btn-md { padding: 8px 16px; font-size: 0.88rem; }
.btn-sm { padding: 5px 10px; font-size: 0.8rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-arrow { transition: var(--transition-fast); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* === SECTION COMMON === */
.section { padding: var(--section-padding); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-tag.tag-green {
  color: var(--accent-green);
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === HERO (HOMEPAGE) === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
  background: var(--hero-overlay), var(--hero-bg-img) no-repeat center center;
  background-size: cover;
}

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

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}

.orb-1 {
  width: 600px; height: 600px;
  background: var(--accent-blue);
  top: -200px; right: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-2 {
  width: 500px; height: 500px;
  background: var(--accent-green);
  bottom: -150px; left: -150px;
  animation: orbFloat 15s ease-in-out infinite reverse;
}

.orb-3 {
  width: 350px; height: 350px;
  background: var(--accent-cyan);
  top: 40%; left: 50%;
  animation: orbFloat 10s ease-in-out infinite 2s;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}

.headline-accent {
  display: block;
  background: var(--gradient-security);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 660px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-divider {
  color: var(--text-muted);
  opacity: 0.3;
}

/* === THREAT STATS SECTION === */
.threat-stats {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 80px 0;
}

.threat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.threat-stat-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.threat-stat-card:hover {
  border-color: rgba(239, 68, 68, 0.3);
  transform: translateY(-2px);
}

.threat-stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-red);
  display: block;
  margin-bottom: 4px;
}

.threat-stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.vapt-scope-card {
  text-align: left;
  padding: 32px 24px;
}

.vapt-card-title {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

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

/* === WHAT WE FIX === */
.fix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fix-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.fix-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: var(--transition-base);
}

.fix-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

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

.fix-icon {
  width: 56px; height: 56px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.fix-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.fix-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.fix-card .tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tool-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-cyan);
}

/* === TEAM SECTION === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid rgba(59, 130, 246, 0.2);
  overflow: hidden;
  transition: var(--transition-base);
}

.team-card:hover .team-avatar {
  border-color: var(--accent-blue);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.team-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: auto;
  padding-top: 12px;
}

/* === PROCESS SECTION === */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--gradient-brand);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.process-number {
  width: 40px; height: 40px;
  background: var(--gradient-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === TRUST SIGNALS === */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-signal {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.trust-signal:hover {
  border-color: var(--border-green);
  background: rgba(16, 185, 129, 0.03);
}

.trust-check {
  color: var(--accent-green);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-signal p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.trust-signal strong {
  color: var(--text-primary);
}

/* === AUDIT CTA BANNER === */
.audit-banner {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border-top: 1px solid rgba(16, 185, 129, 0.15);
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
  padding: 48px 0;
}

.audit-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.audit-banner h3 {
  font-size: 1.4rem;
  font-weight: 800;
}

.audit-banner p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.audit-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-green);
  white-space: nowrap;
}

.audit-price-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  font-weight: 500;
}

/* === ACTIVITY FEED === */
.activity-feed {
  background: var(--bg-secondary);
}

.feed-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  animation: feedSlideIn 0.5s ease-out;
}

.feed-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.feed-icon.success { background: rgba(16, 185, 129, 0.12); color: var(--accent-green); }
.feed-icon.blocked { background: rgba(239, 68, 68, 0.12); color: var(--accent-red); }
.feed-icon.fixed { background: rgba(245, 158, 11, 0.12); color: var(--accent-amber); }

.feed-message {
  flex: 1;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.feed-time {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}

@keyframes feedSlideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === BLOG CARDS === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.blog-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  align-self: flex-start;
}

.blog-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* === CONTACT / CTA SECTION === */
.cta-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.cta-headline {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-base);
  background: var(--bg-card);
}

.contact-method:hover {
  border-color: var(--border-accent);
  transform: translateX(4px);
}

.contact-method.whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.04);
}

.contact-icon { font-size: 1.5rem; }

.contact-method strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-method span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}

.form-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* === AVAILABILITY STATUS === */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-green);
}

.availability-dot {
  width: 8px; height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* === FLOATING WHATSAPP === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.whatsapp-float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-base);
  font-size: 1.6rem;
  color: #fff;
}

.whatsapp-float:hover .whatsapp-float-btn {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-label {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
  opacity: 0;
  transform: translateX(12px);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-label {
  opacity: 1;
  transform: translateX(0);
  background-color: var(--bg-secondary);
}

/* === FOOTER === */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: block;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-tagline-main {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.footer-tagline-sub {
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--border-accent);
  color: var(--text-primary);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 5px 0;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--text-primary);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover { color: var(--text-primary); }

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-base);
  z-index: 997;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-glow);
}

/* === ANIMATIONS === */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .threat-grid { grid-template-columns: repeat(2, 1fr); }
  .fix-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-layout { grid-template-columns: 1fr; gap: 48px; }
  .cta-content { text-align: center; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-timeline::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .audit-banner-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  :root { --section-padding: 16px 0; }
  .section-header { margin-bottom: 16px !important; }
  .audit-banner { padding: 16px 0 !important; }
  .audit-banner-inner {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
  }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 290px; height: 100vh;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    padding: 96px 28px 40px;
    transition: var(--transition-base);
    border-left: 1px solid var(--border-subtle);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active { right: 0; }

  .nav-links > li {
    width: 100%;
  }

  .nav-links > li > a {
    width: 100%;
    padding: 10px 0;
    font-size: 1.05rem;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }

  .mobile-menu-btn { display: flex; }

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

  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    box-shadow: none;
    padding: 8px 0 8px 16px;
    margin-top: 4px;
    border-radius: var(--radius-sm);
    width: 100%;
  }

  .nav-dropdown .dropdown-menu a {
    font-size: 0.92rem;
    padding: 8px 0;
    color: var(--text-secondary);
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.01);
  }

  .hero { padding-top: 110px !important; min-height: auto; padding-bottom: 24px !important; }
  .threat-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .team-grid { grid-template-columns: 1fr !important; gap: 16px !important; max-width: 400px !important; margin: 0 auto !important; }
  .trust-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .blog-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .process-timeline { grid-template-columns: 1fr !important; }
  .nav-logo .logo-text { display: none !important; }
  .footer {
    padding: 32px 0 16px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px !important;
    text-align: left;
    margin-bottom: 20px !important;
  }
  .footer-brand {
    grid-column: 1 / -1;
    text-align: left;
  }
  .footer-tagline {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .footer-social { justify-content: flex-start; }
  .footer-col { text-align: left; }
  .footer-col h4 {
    margin-bottom: 10px !important;
  }
  .footer-col:nth-child(4) {
    grid-column: 1 / -1;
  }
  .footer-col a {
    display: flex !important;
    align-items: center !important;
    margin-top: 8px !important;
  }
  .footer-col a:first-of-type {
    margin-top: 0 !important;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: left;
    align-items: flex-start;
  }

  .hero-trust-bar {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px 16px !important;
    justify-items: start !important;
    max-width: 280px !important;
    margin: 0 auto !important;
    padding-top: 8px !important;
  }
  .trust-divider { display: none !important; }

  .threat-stats {
    padding: var(--section-padding) !important;
  }

  .contact-form { padding: 28px 20px; }

  .whatsapp-float { bottom: 20px; right: 20px; }
  .whatsapp-label { display: none; }
  .back-to-top { bottom: 96px !important; right: 32px !important; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.75rem; }
  .hero-sub { font-size: 1rem; }
  .section-title { font-size: 1.5rem; }
  .btn-lg { padding: 9px 18px; font-size: 0.9rem; }
  .threat-grid { grid-template-columns: 1fr; }
}

/* === LIGHT & DARK THEME TOGGLER === */
.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  vertical-align: middle;
}

.theme-toggle-btn:hover {
  background: rgba(148, 163, 184, 0.1);
  border-color: var(--accent-blue);
  transform: rotate(15deg);
}

body.light-theme {
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-card: #f1f5f9;
  --bg-card-hover: #e2e8f0;
  --bg-input: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-accent: rgba(59, 130, 246, 0.2);
  --hero-overlay: linear-gradient(180deg, rgba(248, 250, 252, 0.86) 0%, rgba(248, 250, 252, 0.94) 100%);
  --hero-bg-img: url('https://images.unsplash.com/photo-1557683316-973673baf926?auto=format&fit=crop&w=1600&q=80');
  --vapt-bg-img: url('https://images.unsplash.com/photo-1563986768609-322da13575f3?auto=format&fit=crop&w=1200&q=80');
  --cloud-bg-img: url('https://images.unsplash.com/photo-1581092921461-eab62e97a780?auto=format&fit=crop&w=1200&q=80');
  --code-bg-img: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1200&q=80');
}

body.light-theme .hero-bg-effects {
  opacity: 0.12;
}

body.light-theme .navbar {
  background: rgba(248, 250, 252, 0.85);
  border-bottom-color: rgba(15, 23, 42, 0.06);
}

body.light-theme .footer {
  background: #f1f5f9;
  border-top-color: rgba(15, 23, 42, 0.06);
}

body.light-theme .case-study-phase,
body.light-theme .audit-include-item,
body.light-theme .contact-info-card,
body.light-theme .faq-item {
  background: #ffffff;
}

body.light-theme .post-content pre {
  background: #f8fafc;
  border-color: var(--border-subtle);
}

body.light-theme .post-content pre code {
  color: #0f172a;
}

body.light-theme .post-content code {
  background: rgba(15, 23, 42, 0.06);
  color: #0284c7;
}

body.light-theme .sample-notice {
  background: rgba(245, 158, 11, 0.04);
  border-color: rgba(245, 158, 11, 0.12);
}

body.light-theme .logo-text,
body.light-theme .nav-links a {
  color: #0f172a;
}

body.light-theme .dropdown-menu {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
}

body.light-theme .dropdown-menu a {
  color: #475569;
}

body.light-theme .dropdown-menu a:hover {
  background: #f1f5f9;
  color: #0f172a;
}

body.light-theme .btn-secondary {
  background: #ffffff;
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.12);
}

body.light-theme .btn-secondary:hover {
  background: #f1f5f9;
}

/* Premium Consultation Slot Booker Widget Styles */
.day-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  border-radius: 6px;
  padding: 10px 8px;
  font-size: 0.82rem;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.2s ease;
}
.day-tab-btn:hover {
  border-color: var(--accent-cyan);
  background: var(--bg-card-hover);
}
.day-tab-btn.active {
  background: rgba(6, 182, 212, 0.12) !important;
  border-color: var(--accent-cyan) !important;
  color: var(--accent-cyan) !important;
}
.day-name-lbl {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: normal;
}
.day-date-lbl {
  font-weight: bold;
}

.time-slot-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  border-radius: 6px;
  padding: 8px 6px;
  font-size: 0.8rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}
.time-slot-btn:hover {
  border-color: var(--accent-green);
  background: var(--bg-card-hover);
}
.time-slot-btn.active {
  background: rgba(16, 185, 129, 0.12) !important;
  border-color: var(--accent-green) !important;
  color: var(--accent-green) !important;
  font-weight: bold;
}

/* Light Theme overrides for explicit button borders contrast visibility */
body.light-theme .day-tab-btn,
body.light-theme .time-slot-btn {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.16);
  color: #475569;
}
body.light-theme .day-tab-btn:hover,
body.light-theme .time-slot-btn:hover {
  background: #f8fafc;
  border-color: #0f172a;
}
body.light-theme .day-tab-btn.active {
  background: rgba(6, 182, 212, 0.08) !important;
  border-color: var(--accent-cyan) !important;
  color: var(--accent-cyan) !important;
}
body.light-theme .time-slot-btn.active {
}

@media (max-width: 480px) {
  .hero { padding-top: 110px !important; padding-bottom: 24px !important; }
  .hero-headline { font-size: 1.75rem !important; line-height: 1.2 !important; letter-spacing: -0.025em !important; }
  .hero-slogan { font-size: 1.1rem !important; margin-top: 8px !important; margin-bottom: 16px !important; }
  .hero-sub { font-size: 0.92rem !important; margin-bottom: 24px !important; line-height: 1.6 !important; }
  
  .hero-cta-group {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 380px !important;
    margin: 0 auto 28px !important;
  }
  .hero-cta-group .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
  
  .section-title { font-size: 1.65rem !important; line-height: 1.2 !important; letter-spacing: -0.02em !important; }
  .page-hero { padding: 80px 0 32px !important; }
  .page-hero h1 { font-size: 1.55rem !important; line-height: 1.25 !important; }
  .btn-lg { padding: 9px 18px; font-size: 0.9rem; }
  .threat-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .threat-stat-card {
    text-align: center !important;
    padding: 16px 10px !important;
  }
  .threat-stat-number {
    font-size: 1.6rem !important;
  }
  .threat-stat-label {
    font-size: 0.76rem !important;
  }
  .vapt-scope-card {
    text-align: left !important;
    padding: 16px 12px !important;
  }
  .vapt-card-title {
    font-size: 0.88rem !important;
    gap: 4px !important;
    margin-bottom: 6px !important;
  }
  .vapt-scope-card p {
    font-size: 0.76rem !important;
    line-height: 1.45 !important;
  }
  .team-card { padding: 32px 20px !important; }
}

/* === LIGHT & DARK THEME TOGGLER === */
.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  vertical-align: middle;
}

.theme-toggle-btn:hover {
  background: rgba(148, 163, 184, 0.1);
  border-color: var(--accent-blue);
  transform: rotate(15deg);
}

body.light-theme {
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-card: #f1f5f9;
  --bg-card-hover: #e2e8f0;
  --bg-input: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-accent: rgba(59, 130, 246, 0.2);
  --hero-overlay: linear-gradient(180deg, rgba(248, 250, 252, 0.86) 0%, rgba(248, 250, 252, 0.94) 100%);
  --hero-bg-img: url('https://images.unsplash.com/photo-1557683316-973673baf926?auto=format&fit=crop&w=1600&q=80');
  --vapt-bg-img: url('https://images.unsplash.com/photo-1563986768609-322da13575f3?auto=format&fit=crop&w=1200&q=80');
  --cloud-bg-img: url('https://images.unsplash.com/photo-1581092921461-eab62e97a780?auto=format&fit=crop&w=1200&q=80');
  --code-bg-img: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1200&q=80');
}

body.light-theme .hero-bg-effects {
  opacity: 0.12;
}

body.light-theme .navbar {
  background: rgba(248, 250, 252, 0.85);
  border-bottom-color: rgba(15, 23, 42, 0.06);
}

body.light-theme .footer {
  background: #f1f5f9;
  border-top-color: rgba(15, 23, 42, 0.06);
}

body.light-theme .case-study-phase,
body.light-theme .audit-include-item,
body.light-theme .contact-info-card,
body.light-theme .faq-item {
  background: #ffffff;
}

body.light-theme .post-content pre {
  background: #f8fafc;
  border-color: var(--border-subtle);
}

body.light-theme .post-content pre code {
  color: #0f172a;
}

body.light-theme .post-content code {
  background: rgba(15, 23, 42, 0.06);
  color: #0284c7;
}

body.light-theme .sample-notice {
  background: rgba(245, 158, 11, 0.04);
  border-color: rgba(245, 158, 11, 0.12);
}

body.light-theme .logo-text,
body.light-theme .nav-links a {
  color: #0f172a;
}

body.light-theme .dropdown-menu {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
}

body.light-theme .dropdown-menu a {
  color: #475569;
}

body.light-theme .dropdown-menu a:hover {
  background: #f1f5f9;
  color: #0f172a;
}

body.light-theme .btn-secondary {
  background: #ffffff;
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.12);
}

body.light-theme .btn-secondary:hover {
  background: #f1f5f9;
}

/* Premium Consultation Slot Booker Widget Styles */
.day-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  border-radius: 6px;
  padding: 10px 8px;
  font-size: 0.82rem;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.2s ease;
}
.day-tab-btn:hover {
  border-color: var(--accent-cyan);
  background: var(--bg-card-hover);
}
.day-tab-btn.active {
  background: rgba(6, 182, 212, 0.12) !important;
  border-color: var(--accent-cyan) !important;
  color: var(--accent-cyan) !important;
}
.day-name-lbl {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: normal;
}
.day-date-lbl {
  font-weight: bold;
}

.time-slot-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  border-radius: 6px;
  padding: 8px 6px;
  font-size: 0.8rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}
.time-slot-btn:hover {
  border-color: var(--accent-green);
  background: var(--bg-card-hover);
}
.time-slot-btn.active {
  background: rgba(16, 185, 129, 0.12) !important;
  border-color: var(--accent-green) !important;
  color: var(--accent-green) !important;
  font-weight: bold;
}

/* Light Theme overrides for explicit button borders contrast visibility */
body.light-theme .day-tab-btn,
body.light-theme .time-slot-btn {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.16);
  color: #475569;
}
body.light-theme .day-tab-btn:hover,
body.light-theme .time-slot-btn:hover {
  background: #f8fafc;
  border-color: #0f172a;
}
body.light-theme .day-tab-btn.active {
  background: rgba(6, 182, 212, 0.08) !important;
  border-color: var(--accent-cyan) !important;
  color: var(--accent-cyan) !important;
}
body.light-theme .time-slot-btn.active {
  background: rgba(16, 185, 129, 0.08) !important;
  border-color: var(--accent-green) !important;
  color: var(--accent-green) !important;
}

/* Logo Size overrides: renders the square logo icon with smooth transitions */
img[src*="logo.webp"] {
  height: 42px !important;
  width: 42px !important;
  object-fit: contain;
  transition: transform 0.2s ease;
}

/* Light Theme overrides for mobile navigation menus */
@media (max-width: 768px) {
  body.light-theme .nav-links {
    background: rgba(248, 250, 252, 0.98) !important;
    border-left: 1px solid rgba(15, 23, 42, 0.08) !important;
    box-shadow: -10px 0 30px rgba(15, 23, 42, 0.06) !important;
  }
  body.light-theme .nav-links > li > a {
    border-bottom: 1px solid rgba(15, 23, 42, 0.05) !important;
    color: #0f172a !important;
  }
  body.light-theme .nav-links > li > a:hover,
  body.light-theme .nav-links > li > a.active {
    color: #0284c7 !important;
  }
  body.light-theme .nav-dropdown .dropdown-menu {
    background: rgba(15, 23, 42, 0.02) !important;
  }
  body.light-theme .nav-dropdown .dropdown-menu a {
    color: #475569 !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.02) !important;
  }
  body.light-theme .nav-dropdown .dropdown-menu a:hover {
    color: #0284c7 !important;
  }
}

/* Light Theme override for translucent back-to-top button */
body.light-theme .back-to-top {
  background: rgba(255, 255, 255, 0.7) !important;
  color: #0f172a !important;
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08) !important;
}

/* Premium Card Ambient Glow effect for mobile viewports */
@media (max-width: 768px) {
  .threat-stat-card,
  .fix-card,
  .team-card,
  .blog-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(6, 182, 212, 0.05) !important;
    border-color: rgba(6, 182, 212, 0.15) !important;
  }
  
  body.light-theme .threat-stat-card,
  body.light-theme .fix-card,
  body.light-theme .team-card,
  body.light-theme .blog-card {
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04), 0 0 12px rgba(2, 132, 199, 0.04) !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
  }
}

/* Premium Mobile UI Grid Profiles & Timelines Layouts */
@media (max-width: 768px) {
  /* Side-by-side Grid Profiles on Mobile */
  .team-card {
    display: grid !important;
    grid-template-columns: 80px 1fr !important;
    gap: 12px 16px !important;
    text-align: left !important;
    align-items: start !important;
    padding: 24px 16px !important;
  }
  .team-avatar {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    margin: 0 !important;
    width: 80px !important;
    height: 80px !important;
  }
  .team-name {
    grid-column: 2 !important;
    grid-row: 1 !important;
    margin-bottom: 2px !important;
    font-size: 1.1rem !important;
  }
  .team-role {
    grid-column: 2 !important;
    grid-row: 2 !important;
    margin-bottom: 0 !important;
    font-size: 0.8rem !important;
  }
  .team-desc {
    grid-column: 1 / span 2 !important;
    grid-row: 3 !important;
    margin-bottom: 12px !important;
    font-size: 0.88rem !important;
  }
  .team-tools {
    grid-column: 1 / span 2 !important;
    grid-row: 4 !important;
    justify-content: flex-start !important;
    padding-top: 8px !important;
  }

  /* Left-aligned Side-by-side TIMELINE on Mobile */
  .process-timeline {
    grid-template-columns: 1fr !important;
    position: relative !important;
  }
  .process-timeline::before {
    display: block !important;
    content: '' !important;
    position: absolute !important;
    left: 20px !important;
    top: 20px !important;
    bottom: 12px !important;
    width: 2px !important;
    background: var(--border-subtle) !important;
    z-index: 1 !important;
  }
  body.light-theme .process-timeline::before {
    background: rgba(15, 23, 42, 0.08) !important;
  }
  .process-step {
    text-align: left !important;
    padding: 0 0 0 60px !important;
    position: relative !important;
    margin-bottom: 6px !important;
    margin-top: 0 !important;
  }
  .process-step:last-child {
    margin-bottom: 0 !important;
  }
  .process-number {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    margin: 0 !important;
  }

  /* Left-aligned STATS cards on Mobile */
  .threat-stat-card {
    text-align: left !important;
    padding: 24px 20px !important;
  }

  /* Side-by-side Grid Fix-Cards (Services Summary) on Mobile */
  .fix-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .fix-card {
    display: grid !important;
    grid-template-columns: 48px 1fr !important;
    gap: 8px 16px !important;
    text-align: left !important;
    align-items: start !important;
    padding: 24px 16px !important;
  }
  .fix-icon {
    grid-column: 1 !important;
    grid-row: 1 / span 3 !important;
    margin: 0 !important;
    width: 48px !important;
    height: 48px !important;
    font-size: 1.3rem !important;
  }
  .fix-card h3 {
    grid-column: 2 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    font-size: 1.1rem !important;
  }
  .fix-card p {
    grid-column: 2 !important;
    grid-row: 2 !important;
    margin: 0 !important;
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
  }
  .fix-card > a,
  .fix-card > div[style*="display:flex"] {
    grid-column: 2 !important;
    grid-row: 3 !important;
    margin-top: 4px !important;
  }

  /* Scale down What We Do Best cards text for mobile symmetry */
  .fix-card h3 {
    font-size: 1rem !important;
  }
  .fix-card p {
    font-size: 0.8rem !important;
  }
  .fix-card a {
    font-size: 0.8rem !important;
  }

  /* Scale down Team Profile cards text for mobile symmetry */
  .team-name {
    font-size: 1rem !important;
  }
  .team-desc {
    font-size: 0.82rem !important;
    line-height: 1.55 !important;
  }

  /* Scale down Process Timeline steps text for mobile symmetry */
  .process-step h3 {
    font-size: 0.92rem !important;
    margin-bottom: 4px !important;
    margin-top: 0 !important;
  }
  .process-step p {
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }

  /* Scale down Trust Signals text for mobile symmetry */
  .trust-signal {
    padding: 16px 14px !important;
  }
  .trust-signal p {
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
  }
  .trust-check {
    font-size: 1rem !important;
  }

  /* Scale down Blog Cards text for mobile symmetry */
  .blog-card {
    padding: 18px 16px !important;
  }
  .blog-card h3 {
    font-size: 0.9rem !important;
    margin-bottom: 6px !important;
    line-height: 1.35 !important;
  }
  .blog-card p {
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
  }
  .blog-category {
    font-size: 0.68rem !important;
    padding: 3px 10px !important;
    margin-bottom: 10px !important;
  }
  .blog-meta {
    font-size: 0.72rem !important;
    margin-top: 10px !important;
    padding-top: 10px !important;
  }

  /* Scale down and left-align Inquiry section content for mobile symmetry */
  .cta-desc {
    font-size: 0.82rem !important;
    line-height: 1.55 !important;
    margin-bottom: 20px !important;
  }
  .cta-contact-methods {
    gap: 12px !important;
  }
  .contact-method {
    padding: 12px 16px !important;
    text-align: left !important;
    justify-content: flex-start !important;
  }
  .contact-method strong {
    font-size: 0.85rem !important;
  }
  .contact-method span {
    font-size: 0.78rem !important;
  }
  .contact-icon {
    font-size: 1.3rem !important;
  }
  .contact-form {
    padding: 24px 20px !important;
  }
}

