/* =============================================
   Ethical-Wise - Cybersecurity Services
   Dark Theme
   ============================================= */

/* === CSS Variables === */
:root {
  --primary: #14c7ff;
  --primary-dark: #10e0e8;
  --accent: #0c63ff;
  --accent-dark: #0d7ffa;
  --gradient: linear-gradient(120deg, #020a2e 0%, #0c3a7a 50%, #0a5299 100%);
  --gradient-reverse: linear-gradient(120deg, #0a5299 0%, #0c3a7a 50%, #020a2e 100%);
  --gradient-accent: linear-gradient(120deg, #0c63ff 0%, #10e0e8 100%);
  --bg-body: #000025;
  --bg-card: transparent;
  --bg-card-hover: rgba(12, 99, 255, 0.08);
  --bg-elevated: #000020;
  --bg-input: rgba(0, 0, 32, 0.8);
  --border: rgba(19, 129, 255, 0.29);
  --border-light: rgba(20, 199, 255, 0.15);
  --text-primary: #ffffff;
  --text-secondary: #9299a4;
  --text-muted: #667794;
  --text-highlight: #14c7ff;
  --danger: #f85149;
  --warning: #f0883e;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0px 0px 27px 0px rgba(12, 99, 255, 0.1);
  --radius: 10px;
  --radius-lg: 10px;
  --radius-xl: 16px;
  --card-bg: radial-gradient(ellipse at center, rgba(51, 136, 255, 0.05) 0%, rgba(19, 129, 255, 0.1) 100%);
  --card-border: 1px solid rgba(19, 129, 255, 0.29);
  --font: 'Rubik', system-ui, -apple-system, sans-serif;
  --radius-pill: 50px;
}

/* === Content Protection === */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input, textarea, select {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 0.95rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

ul, ol {
  list-style: none;
}

/* === Container === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 300;
  font-family: var(--font);
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 48px); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3.5vw, 36px); line-height: 1.33; }
h3 { font-size: clamp(1.2rem, 2.5vw, 30px); line-height: 1.4; }
h4 { font-size: 24px; line-height: 1.5; }
h5 { font-size: 18px; font-weight: 500; line-height: 1.44; }
h6 { font-size: 14px; font-weight: 500; text-transform: uppercase; line-height: 1.7; }

.highlight {
  color: var(--text-highlight);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  backdrop-filter: none;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-header p {
  color: var(--text-secondary);
  margin-top: 12px;
  font-size: 1rem;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 300;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #ffffff;
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: var(--gradient-reverse);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(12, 99, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: rgba(37, 99, 235, 0.3);
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

/* === Navigation === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(7, 11, 25, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(19, 129, 255, 0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  overflow: visible;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.nav-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 4px;
}

.nav-logo img {
  display: none;
}

.logo-sphere {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  margin-right: 0;
  background: none !important;
}

.logo-sphere canvas {
  display: block;
  width: 30px;
  height: 30px;
}

.nav-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.5px;
  display: inline;
}

.nav-logo .logo-text span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  gap: 32px;
  z-index: 1;
}

.nav-links a {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

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

.nav-cta {
  padding: 8px 20px !important;
  font-size: 0.82rem !important;
  background: transparent !important;
  border: 2px solid var(--primary) !important;
  color: var(--primary) !important;
  border-radius: 50px !important;
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  display: block;
}

.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 Section === */
.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(88, 166, 255, 0.04) 0%, transparent 50%);
  animation: hero-pulse 8s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes hero-pulse {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Mobile-only hero header (hidden on desktop) */
.hero-mobile-header {
  display: none;
  text-align: center;
  margin-bottom: 24px;
}

.hero-mobile-header h1 {
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  margin-top: 12px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 40% 58%;
  gap: 2%;
  align-items: center;
}

.hero-form-side {
  background: var(--card-bg);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: 10px;
  padding: 2rem;
}

.hero-form-side h2 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.hero-form-side .form-subtitle {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.hero-image-side {
  position: relative;
}

.hero-image-side .hero-content {
  margin-bottom: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero-image-side h1 {
  margin-bottom: 16px;
}

.hero-image-side p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 24px;
}

.hero-img-wrapper {
  border-radius: 10px;
  overflow: hidden;
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  background: transparent;
}

.hero-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* === Lead Form === */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  max-width: 100%;
  padding: 10px 14px;
  background: rgba(7, 11, 25, 0.9);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.88rem;
  transition: border-color 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b949e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.form-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--primary);
}

.form-consent a {
  color: var(--primary);
}

/* === Form Consent Warning Box === */
.form-consent-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #000000;
  border: 1px solid rgba(248, 81, 73, 0.25);
  border-left: 3px solid var(--danger);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.75rem;
  color: var(--danger);
  line-height: 1.5;
}

.form-consent-warning input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--danger);
  flex-shrink: 0;
}

.form-consent-warning label {
  cursor: pointer;
}

.form-consent-warning a {
  color: var(--primary);
}

.form-submit {
  width: 100%;
  padding: 12px;
}

.form-alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  display: none;
}

.form-alert.success {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--primary);
  display: block;
}

.form-alert.error {
  background: rgba(248, 81, 73, 0.1);
  border: 1px solid rgba(248, 81, 73, 0.2);
  color: var(--danger);
  display: block;
}

/* === Form Notice (Warning) === */
.form-notice {
  background: #000000;
  border: 1px solid rgba(248, 81, 73, 0.25);
  border-left: 3px solid var(--danger);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.78rem;
  color: var(--danger);
  line-height: 1.5;
  margin-bottom: 16px;
}

.form-notice::before {
  content: '\26A0';
  margin-right: 6px;
  font-size: 0.9rem;
}

/* === Communication Mode Toggle === */
.comm-mode-options {
  display: flex;
  gap: 0;
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: var(--radius);
  overflow: hidden;
}

.comm-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(7, 11, 25, 0.9);
  cursor: pointer;
  transition: all 0.2s ease;
  border-right: 0.675676px solid rgba(19, 129, 255, 0.29);
  text-align: center;
  white-space: nowrap;
}

.comm-option:last-child {
  border-right: none;
}

.comm-option:hover {
  background: rgba(37, 99, 235, 0.04);
  color: var(--text-primary);
}

.comm-option input[type="radio"] {
  display: none;
}

.comm-option:has(input:checked) {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-weight: 600;
  border-color: rgba(37, 99, 235, 0.3);
}

/* Fallback for browsers without :has() */
.comm-option.active {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-weight: 600;
}

/* === Character Counter === */
.char-counter {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: right;
}

.char-counter.valid {
  color: var(--primary);
}

.required-star {
  color: var(--danger);
  font-weight: 700;
}

.required-hint {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* === Form Trust Footer === */
.form-trust-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.form-trust-footer .trust-item {
  font-size: 0.68rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

/* === Sections === */
section {
  padding: 80px 0;
}

.section-alt {
  background: transparent;
}

.testimonials-wrapper {
  background: var(--card-bg);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: 10px;
  padding: 60px;
}

/* === Features Section === */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px 48px;
  align-items: start;
}

.features-header {
  grid-column: 1;
  grid-row: 1;
}

.features-list {
  grid-column: 1;
  grid-row: 2;
}

.features-image {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}

.features-header .section-label {
  margin-bottom: 16px;
}

.features-header h2 {
  margin-bottom: 16px;
}

.features-header .features-desc,
.features-desc {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--card-bg);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(19, 129, 255, 0.5);
  transform: translateX(4px);
  box-shadow: 0 0 20px rgba(19, 129, 255, 0.08);
}

.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--radius);
  font-size: 1.1rem;
}

.feature-item h4 {
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.feature-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.features-image {
  border-radius: 10px;
  overflow: hidden;
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  background: transparent;
}

.features-image img {
  width: 100%;
  height: auto;
}

/* === Benefits Section === */
.benefits-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--card-bg);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 24px rgba(37, 99, 235, 0.06);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(88, 166, 255, 0.08));
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-lg);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

/* === Reviews Section === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--card-bg);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: rgba(19, 129, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(19, 129, 255, 0.08);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  color: #f59e0b;
  font-size: 0.9rem;
}

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

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(88, 166, 255, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  border: 1px solid rgba(19, 129, 255, 0.29);
  overflow: hidden;
}

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

.review-info h4 {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  background: rgba(0, 186, 124, 0.12);
  border: 1px solid rgba(0, 186, 124, 0.25);
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 600;
  color: #00ba7c;
  letter-spacing: 0.3px;
}

.verified-badge .vb-icon {
  width: 14px;
  height: 14px;
  background: #00ba7c;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  color: #fff;
  flex-shrink: 0;
  line-height: 1;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  flex-wrap: wrap;
}

.review-info .review-location {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.review-date {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}

.review-source .src-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
}

/* === Testimonials 2-Column (Zyber Style) === */
.testimonials-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.testimonials-left .section-label {
  margin-bottom: 16px;
}

.testimonials-left h2 {
  margin-bottom: 16px;
}

.testimonials-left > p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.testimonials-avatars {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack .review-avatar {
  width: 44px;
  height: 44px;
  margin-right: -12px;
  border: 2px solid var(--bg-body);
  font-size: 0.75rem;
}

.avatar-stack .review-avatar:last-child {
  margin-right: 0;
}

.avatar-stack-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.avatar-stack-info .review-stars {
  margin-bottom: 0;
}

.avatar-stack-info span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.testimonials-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card-featured {
  background: var(--card-bg);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: 10px;
  padding: 30px;
}

@media (max-width: 1024px) {
  .testimonials-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-wrapper {
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {
  .testimonials-wrapper {
    padding: 24px 16px;
  }
}

/* === CTA Form Section === */
.cta-section {
  background: linear-gradient(180deg, var(--bg-body) 0%, rgba(7, 11, 25, 0.95) 50%, var(--bg-body) 100%);
  position: relative;
}

.cta-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: 10px;
  padding: 2.5rem;
}

/* === Footer === */
.footer {
  border-top: 0.675676px solid rgba(19, 129, 255, 0.29);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(19, 129, 255, 0.5), rgba(96, 165, 250, 0.5), transparent);
}

.footer-cta {
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid rgba(19, 129, 255, 0.29);
  position: relative;
  overflow: hidden;
  background: var(--gradient);
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.footer-cta .container {
  position: relative;
  z-index: 1;
}

.footer-cta h2 {
  margin-bottom: 12px;
}

.footer-cta p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.footer-main {
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 12px;
  margin-bottom: 16px;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 50px;
  font-size: 0.68rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 300;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: var(--text-secondary);
  font-size: 0.82rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #667794;
  background: #001a3d;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}

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

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

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

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(7, 11, 25, 0.95);
  border-top: 0.675676px solid rgba(19, 129, 255, 0.29);
  padding: 16px 0;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.cookie-text a {
  color: var(--primary);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-actions .btn {
  padding: 8px 20px;
  font-size: 0.8rem;
}

/* === Floating Chat Buttons === */
.floating-chat-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 998;
}

.fcb-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.fcb-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

.fcb-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.fcb-whatsapp {
  background: #25d366;
}

.fcb-whatsapp:hover {
  background: #1ebe5d;
}

.fcb-telegram {
  background: #2aabee;
}

.fcb-telegram:hover {
  background: #229ed9;
}

.fcb-btn .fcb-tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(7, 11, 25, 0.95);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  color: var(--text-primary);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  font-family: var(--font);
}

.fcb-btn:hover .fcb-tooltip {
  opacity: 1;
}

@media (max-width: 768px) {
  .floating-chat-buttons {
    bottom: 16px;
    right: 16px;
  }

  .fcb-btn {
    width: 48px;
    height: 48px;
  }

  .fcb-btn svg {
    width: 24px;
    height: 24px;
  }

  .fcb-btn .fcb-tooltip {
    display: none;
  }
}

/* === Legal Pages === */
.legal-page {
  padding: 120px 0 80px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 8px;
}

.legal-content .last-updated {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.legal-content ul li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 6px;
  list-style: disc;
}

/* === Contact Page === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--card-bg);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 20px;
}

.contact-info-card h3 {
  margin-bottom: 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item .ci-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.contact-info-item h4 {
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.contact-info-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.contact-form-wrapper {
  background: var(--card-bg);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: 10px;
  padding: 2rem;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .hero-mobile-header {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-image-side {
    order: 1;
  }

  .hero-image-side .hero-badge,
  .hero-image-side h1 {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px;
  }

  .features-header {
    grid-column: 1;
    grid-row: 1;
    order: 1;
  }

  .features-image {
    grid-column: 1;
    grid-row: 2;
    order: 2;
  }

  .features-list {
    grid-column: 1;
    grid-row: 3;
    order: 3;
  }

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

@media (max-width: 991px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(7, 11, 25, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 12px 20px;
    gap: 0;
    border-top: 1px solid rgba(19, 129, 255, 0.15);
    border-bottom: 1px solid rgba(19, 129, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transform: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.05rem;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: block;
    width: 100%;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none !important;
  }

  /* Mobile dropdown styles */
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    width: 100%;
    padding: 14px 8px !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    background: rgba(19, 129, 255, 0.05) !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 8px !important;
    padding: 4px 0 4px 12px !important;
    margin: 4px 0 8px !important;
    min-width: auto !important;
    display: none !important;
  }

  .nav-dropdown.active .nav-dropdown-menu {
    display: block !important;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none !important;
  }

  .nav-dropdown.active:hover .nav-dropdown-menu {
    display: block !important;
  }

  .nav-dropdown-menu a {
    padding: 10px 14px !important;
    font-size: 0.92rem !important;
    border-bottom: none !important;
    border-radius: 6px;
  }

  .nav-dropdown-menu a:hover {
    background: rgba(19, 129, 255, 0.1);
    padding-left: 18px !important;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-main {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
  }
  .footer-main .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-form-side,
  .cta-wrapper,
  .contact-form-wrapper,
  .contact-info-card {
    padding: 1.5rem;
  }
}

/* =============================================
   Live Chat Widget (.lc- prefix)
   ============================================= */

/* --- Chat Bubble (minimized) --- */
.lc-bubble {
    position: fixed;
    bottom: 150px;
    right: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #2563eb;
    border: none;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.lc-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
}
.lc-bubble svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}
.lc-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    background: #ff4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    font-family: 'Inter', sans-serif;
}
.lc-badge.show { display: flex; }

/* --- Chat Window --- */
.lc-window {
    position: fixed;
    bottom: 150px;
    right: 24px;
    width: 380px;
    height: 520px;
    background: #070b19;
    border: 1px solid #1a3a5c;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: none;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}
.lc-window.open { display: flex; }

/* --- Header --- */
.lc-header {
    height: 56px;
    background: #0d1628;
    border-bottom: 1px solid #1a3a5c;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
    flex-shrink: 0;
}
.lc-header-icon { width: 24px; height: 24px; fill: #2563eb; flex-shrink: 0; }
.lc-header-info { flex: 1; min-width: 0; }
.lc-header-title { font-size: 14px; font-weight: 600; color: #ffffff; }
.lc-header-name {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}
.lc-header-name input {
    background: #070b19;
    border: 1px solid #1a3a5c;
    color: #ffffff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    width: 120px;
    font-family: inherit;
}
.lc-edit-btn, .lc-mute-btn, .lc-minimize-btn, .lc-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lc-edit-btn svg, .lc-mute-btn svg { width: 16px; height: 16px; fill: #94a3b8; }
.lc-minimize-btn svg, .lc-close-btn svg { width: 20px; height: 20px; fill: #94a3b8; }
.lc-edit-btn:hover svg, .lc-mute-btn:hover svg, .lc-minimize-btn:hover svg, .lc-close-btn:hover svg { fill: #ffffff; }
.lc-mute-btn.muted svg { fill: #ff4444; }

/* --- Messages Area --- */
.lc-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lc-messages::-webkit-scrollbar { width: 6px; }
.lc-messages::-webkit-scrollbar-track { background: transparent; }
.lc-messages::-webkit-scrollbar-thumb { background: #1a3a5c; border-radius: 3px; }
.lc-msg {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
    position: relative;
}
.lc-msg-visitor {
    align-self: flex-end;
    background: #2563eb;
    color: #ffffff;
    border-bottom-right-radius: 4px;
}
.lc-msg-owner {
    align-self: flex-start;
    background: #0d1628;
    color: #ffffff;
    border: 1px solid #1a3a5c;
    border-bottom-left-radius: 4px;
}
.lc-msg-system {
    align-self: center;
    background: none;
    color: #94a3b8;
    font-size: 13px;
    text-align: center;
    padding: 4px 0;
}
.lc-msg-time {
    font-size: 10px;
    opacity: 0.6;
    margin-top: 4px;
    display: block;
}
.lc-msg-visitor .lc-msg-time { text-align: right; }
.lc-msg-owner .lc-msg-time { text-align: left; }

/* --- File Messages --- */
.lc-msg-image {
    max-width: 200px;
    border-radius: 8px;
    cursor: pointer;
    display: block;
    margin-bottom: 4px;
}
.lc-msg-video {
    max-width: 240px;
    border-radius: 8px;
    display: block;
    margin-bottom: 4px;
}

/* --- Input Area --- */
.lc-input-area {
    background: #0d1628;
    border-top: 1px solid #1a3a5c;
    padding: 8px 12px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}
.lc-attach-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.lc-attach-btn svg { width: 22px; height: 22px; fill: #94a3b8; }
.lc-attach-btn:hover svg { fill: #2563eb; }
.lc-textarea {
    flex: 1;
    background: #070b19;
    border: 1px solid #1a3a5c;
    color: #ffffff;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 8px;
    resize: none;
    min-height: 38px;
    max-height: 100px;
    overflow-y: auto;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}
.lc-textarea:focus { outline: none; border-color: #2563eb; }
.lc-textarea::placeholder { color: #484f58; }
.lc-send-btn {
    background: #2563eb;
    border: none;
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}
.lc-send-btn:hover { background: #3b82f6; }
.lc-send-btn:disabled { background: #1a3a5c; cursor: not-allowed; }
.lc-send-btn svg { width: 18px; height: 18px; fill: #ffffff; }

/* --- File Preview (above input) --- */
.lc-file-preview {
    background: #0d1628;
    border-top: 1px solid #1a3a5c;
    padding: 8px 12px;
    display: none;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.lc-file-preview.show { display: flex; }
.lc-file-preview img, .lc-file-preview video {
    max-width: 60px;
    max-height: 60px;
    border-radius: 6px;
    object-fit: cover;
}
.lc-file-preview-name {
    flex: 1;
    font-size: 12px;
    color: #94a3b8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.lc-file-preview-cancel {
    background: none;
    border: none;
    cursor: pointer;
    color: #ff4444;
    font-size: 18px;
    padding: 4px;
}
.lc-upload-progress {
    width: 100%;
    height: 3px;
    background: #1a3a5c;
    border-radius: 2px;
    overflow: hidden;
    display: none;
}
.lc-upload-progress.show { display: block; }
.lc-upload-progress-bar {
    height: 100%;
    background: #2563eb;
    width: 0;
    transition: width 0.3s;
}

/* --- Lightbox --- */
.lc-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10002;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.lc-lightbox.show { display: flex; }
.lc-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
}
.lc-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Mobile Responsive --- */
@media (max-width: 480px) {
    .lc-window {
        width: 100vw;
        height: 100vh;
        bottom: 0;
        right: 0;
        border-radius: 0;
        border: none;
    }
    .lc-bubble {
        bottom: 100px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
    .lc-bubble svg { width: 24px; height: 24px; }
}

@media (max-width: 768px) {
    .lc-bubble {
        bottom: 120px;
        right: 16px;
    }
    .lc-window {
        width: calc(100vw - 16px);
        right: 8px;
        bottom: 120px;
        height: 440px;
    }
}

/* --- RTL Support --- */
[dir="rtl"] .lc-bubble { right: auto; left: 24px; }
[dir="rtl"] .lc-window { right: auto; left: 24px; }
[dir="rtl"] .lc-msg-visitor { border-bottom-right-radius: 12px; border-bottom-left-radius: 4px; }
[dir="rtl"] .lc-msg-owner { border-bottom-left-radius: 12px; border-bottom-right-radius: 4px; }
[dir="rtl"] .lc-msg-visitor .lc-msg-time { text-align: left; }
[dir="rtl"] .lc-msg-owner .lc-msg-time { text-align: right; }

@media (max-width: 480px) {
    [dir="rtl"] .lc-bubble { left: 16px; }
    [dir="rtl"] .lc-window { left: 0; right: auto; }
}
@media (max-width: 768px) {
    [dir="rtl"] .lc-bubble { left: 16px; }
    [dir="rtl"] .lc-window { left: 8px; right: auto; }
}

/* =============================================
   Navigation Dropdown
   ============================================= */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(7, 11, 25, 0.95);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: var(--radius-lg);
  min-width: 240px;
  padding: 8px 0;
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  margin-top: 0;
  backdrop-filter: blur(12px);
}

/* Invisible bridge to keep hover active between trigger and menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #ffffff !important;
  font-size: 0.85rem;
  font-weight: 300;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(19, 129, 255, 0.1);
  color: var(--primary) !important;
  padding-left: 24px;
}

/* =============================================
   Service Hero Banner (services.php + sub-pages)
   ============================================= */
.service-hero {
  padding: 120px 0 60px;
  background: var(--gradient);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.service-hero > .container {
  position: relative;
  z-index: 2;
}
.service-hero .particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.service-hero .section-label {
  display: inline-block;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.service-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.15;
}

.service-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Service Hero Split Layout (text left, form right) */
.service-hero-split {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  text-align: left;
}
.service-hero-split .hero-text {
  flex: 1;
  min-width: 0;
}
.service-hero-split .hero-text p {
  margin: 0;
  max-width: none;
}
/* Hero Stats Row */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.hero-stat-item {
  text-align: center;
  padding: 14px 8px;
  background: rgba(2, 10, 46, 0.5);
  border: 1px solid rgba(19, 129, 255, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-stat-item .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #14c7ff;
  line-height: 1.2;
}
.hero-stat-item .stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  line-height: 1.3;
}
/* Hero Cert Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(20, 199, 255, 0.08);
  border: 1px solid rgba(20, 199, 255, 0.25);
  border-radius: 20px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.hero-badge .badge-icon {
  font-size: 0.9rem;
}
/* Hero CTA Buttons */
.hero-cta-row {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}
.hero-cta-row .btn {
  font-size: 0.9rem;
  padding: 12px 24px;
}
.service-hero-split .hero-form-wrapper {
  flex: 0 0 400px;
  max-width: 400px;
}
.service-hero-split .hero-form-wrapper .lead-form {
  background: rgba(2, 10, 46, 0.7);
  border: 1px solid rgba(19, 129, 255, 0.25);
  border-radius: 16px;
  padding: 22px 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  gap: 6px;
}
.service-hero-split .hero-form-wrapper .lead-form label {
  font-size: 0.82rem;
  margin-bottom: 0;
}
.service-hero-split .hero-form-wrapper .lead-form input,
.service-hero-split .hero-form-wrapper .lead-form textarea {
  font-size: 0.85rem;
  padding: 8px 12px;
}
.service-hero-split .hero-form-wrapper .lead-form textarea {
  rows: 3;
}
.service-hero-split .hero-form-wrapper .form-group {
  margin-bottom: 4px;
  gap: 2px;
}
.service-hero-split .hero-form-wrapper .comm-mode-options {
  gap: 6px;
}
.service-hero-split .hero-form-wrapper .comm-option {
  font-size: 0.8rem;
  padding: 5px 10px;
}
.service-hero-split .hero-form-wrapper .form-consent-warning {
  font-size: 0.7rem;
  margin-bottom: 4px;
  margin-top: 2px;
}
.service-hero-split .hero-form-wrapper .form-consent-warning label {
  font-size: 0.7rem;
}
.service-hero-split .hero-form-wrapper .form-submit {
  width: 100%;
  padding: 10px;
  font-size: 0.92rem;
}
.service-hero-split .hero-form-wrapper .form-trust-footer {
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}
.service-hero-split .hero-form-wrapper .form-trust-footer .trust-item {
  font-size: 0.7rem;
}
.service-hero-split .hero-form-wrapper .char-counter {
  font-size: 0.72rem;
  margin-top: 0;
}
.service-hero-split .hero-form-wrapper h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: center;
  color: var(--text-primary);
}

.service-hero-image {
  max-width: 600px;
  width: 100%;
  margin: 40px auto 0;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

/* =============================================
   Services Grid (services.php overview)
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.services-grid > .service-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 14px);
  justify-self: center;
}

.service-card {
  background: var(--card-bg);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: rgba(19, 129, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(19, 129, 255, 0.1);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card ul li {
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  position: relative;
  padding-left: 20px;
}

.service-card ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
}

.service-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* =============================================
   Methodology Steps (service sub-pages)
   ============================================= */
.methodology-steps {
  counter-reset: step;
  display: grid;
  gap: 20px;
  max-width: 800px;
  margin: 48px auto 0;
}

.methodology-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--card-bg);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: 10px;
  transition: border-color 0.3s ease;
}

.methodology-step:hover {
  border-color: rgba(19, 129, 255, 0.5);
}

.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 4px;
  color: var(--text-primary);
}

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

/* =============================================
   Breadcrumb Navigation
   ============================================= */
.breadcrumb {
  padding: 90px 0 0;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb-inner a {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.breadcrumb-inner a:hover {
  color: var(--primary);
}

.breadcrumb-sep {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* =============================================
   Industries Grid (service sub-pages)
   ============================================= */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.industry-card {
  background: var(--card-bg);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.industry-card:hover {
  border-color: rgba(19, 129, 255, 0.5);
  transform: translateY(-2px);
}

.industry-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.industry-card h4 {
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.industry-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* =============================================
   Responsive: New Components
   ============================================= */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-grid > .service-card:last-child:nth-child(odd) {
    max-width: 100%;
    grid-column: auto;
  }

  .service-hero {
    padding: 100px 0 40px;
  }

  .service-hero-split {
    flex-direction: column;
    text-align: center;
  }
  .service-hero-split .hero-text p {
    margin: 0 auto;
  }
  .service-hero-split .hero-form-wrapper {
    flex: none;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .hero-badges {
    justify-content: center;
  }
  .hero-cta-row {
    justify-content: center;
  }

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

  .methodology-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

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

/* =============================================
   FAQ Section
   ============================================= */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
  background: var(--card-bg);
}

.faq-item:hover {
  border-color: rgba(19, 129, 255, 0.5);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  gap: 16px;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: rgba(19, 129, 255, 0.05);
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: none;
  font-size: 0;
}

.faq-item.active .faq-toggle::after {
  content: '\2014';
  font-size: 1.1rem;
}

.faq-item.active .faq-question {
  background: transparent;
  border: none;
  border-radius: 0;
}

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

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

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* =============================================
   Stats Counter Section
   ============================================= */
.stats-section {
  padding: 60px 0;
}

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

.stat-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--card-bg);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: 10px;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* =============================================
   Process / How It Works Section
   ============================================= */
.section-process {
  position: relative;
  overflow: hidden;
}

.section-process::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(19, 129, 255, 0.06) 1px, transparent 1px);
  background-size: 12px 12px;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 0;
}

.section-process .container {
  position: relative;
  z-index: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-grid.process-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}

.process-card {
  background: var(--card-bg);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.process-card:hover {
  border-color: rgba(19, 129, 255, 0.5);
  transform: translateY(-3px);
}

.process-number {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
  margin: 0;
  position: absolute;
  bottom: 24px;
  right: 24px;
}

.process-card h4 {
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 8px;
  color: var(--text-primary);
}

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

.process-label {
  position: absolute;
  bottom: 32px;
  left: 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================
   Certifications / Badges Row
   ============================================= */
.certs-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(19, 129, 255, 0.05);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: border-color 0.3s ease;
}

.cert-badge:hover {
  border-color: rgba(19, 129, 255, 0.5);
}

.cert-icon {
  font-size: 1.1rem;
}

/* =============================================
   Cryptronick-Style Hero (Gradient + Sphere + Particles)
   ============================================= */
.hero-centered {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient);
}

.hero-centered::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-centered .container {
  position: relative;
  z-index: 2;
}

.hero-centered .hero-badge {
  margin: 0 auto 24px;
}

.hero-centered h1 {
  font-size: clamp(2.5rem, 5.5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-centered p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Sphere container */
.sphere-container {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.blockchain-earth {
  background: radial-gradient(ellipse at center, rgba(14,143,211,0.85) 0%, rgba(14,143,211,0) 70%);
  background-position: 0 -50%;
}

/* Particles overlay */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

.particles-container canvas {
  display: block;
}

/* Section particles (for non-hero sections) */
.section-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   Feature Cards (3-col below hero)
   ============================================= */
.feature-cards-section {
  padding: 80px 0;
  position: relative;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card-item {
  background: var(--card-bg);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.feature-card-item:hover {
  border-color: rgba(19, 129, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 24px rgba(37,99,235,0.1);
}

.feature-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(19, 129, 255, 0.08);
  border: 1px solid rgba(19, 129, 255, 0.29);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-top: auto;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 0;
  overflow: hidden;
}

.feature-card-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.feature-card-item h3 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 10px;
}

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

/* =============================================
   Trusted Brands Bar
   ============================================= */
.trusted-brands {
  padding: 48px 0;
  border-top: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-bottom: 0.675676px solid rgba(19, 129, 255, 0.29);
}

.trusted-brands-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trusted-brands-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.trusted-brands-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.trusted-brands-logos img {
  height: 32px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(1) brightness(2);
  transition: all 0.3s ease;
}

.trusted-brands-logos img:hover {
  opacity: 1;
  filter: none;
}

/* =============================================
   About Section (2-column)
   ============================================= */
.about-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(at 0% 50%, rgba(12,99,255,0.15) 0%, var(--bg-body) 60%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content .section-label {
  margin-bottom: 16px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-stats-row {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.about-stat {
  text-align: center;
}

.about-stat .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.about-stat .stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.about-stat .stat-suffix {
  color: var(--primary);
  font-weight: 800;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(19, 129, 255, 0.4);
  background: transparent;
  box-shadow:
    0 0 15px rgba(19, 129, 255, 0.3),
    0 0 40px rgba(19, 129, 255, 0.15),
    0 0 80px rgba(19, 129, 255, 0.08);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* =============================================
   Services 2-Col Grid (homepage)
   ============================================= */
.services-home-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(at 50% 0%, rgba(12,99,255,0.15) 0%, transparent 60%);
}

.services-home-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.services-home-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-home-card {
  background: var(--card-bg);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.service-home-card:hover {
  border-color: rgba(19, 129, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(19, 129, 255, 0.1);
}

.service-home-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(19, 129, 255, 0.08);
  border: 1px solid rgba(19, 129, 255, 0.29);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0;
  position: absolute;
  bottom: 30px;
  right: 30px;
  overflow: hidden;
}

.service-home-card-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.service-home-card h3 {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 12px;
}

.service-home-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-home-card .btn {
  align-self: flex-start;
}

/* =============================================
   Why Choose Us (image + checklist)
   ============================================= */
.why-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(at 100% 50%, rgba(12,99,255,0.1) 0%, transparent 60%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(19, 129, 255, 0.4);
  background: transparent;
  position: relative;
  box-shadow:
    0 0 15px rgba(19, 129, 255, 0.3),
    0 0 40px rgba(19, 129, 255, 0.15),
    0 0 80px rgba(19, 129, 255, 0.08);
}

.why-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating stats overlay on why-choose-us image */
.why-image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(7, 11, 25, 0.8);
  backdrop-filter: blur(16px);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: 10px;
  padding: 20px 24px;
  min-width: 220px;
}

.why-image-overlay h4 {
  font-size: 0.85rem;
  font-weight: 300;
  margin-bottom: 14px;
  color: #fff;
}

.why-overlay-stat {
  margin-bottom: 10px;
}

.why-overlay-stat:last-child {
  margin-bottom: 0;
}

.why-overlay-stat-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.why-overlay-bar {
  width: 100%;
  height: 4px;
  background: rgba(19, 129, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.why-overlay-bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: width 1s ease;
}

.why-content .section-label {
  margin-bottom: 16px;
}

.why-content h2 {
  margin-bottom: 16px;
}

.why-content > p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.why-checklist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.why-check-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 2px;
}

/* =============================================
   FAQ 2-Column Layout
   ============================================= */
.faq-two-col {
  padding: 100px 0;
}

.faq-two-col-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.faq-two-col-header .section-label {
  margin-bottom: 16px;
}

.faq-two-col-header h2 {
  margin-bottom: 16px;
}

.faq-two-col-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-two-col-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =============================================
   CTA Banner (full-width background)
   ============================================= */
.cta-banner {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-banner-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   Footer Newsletter
   ============================================= */
.footer-newsletter h4 {
  font-size: 0.85rem;
  font-weight: 300;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.footer-newsletter p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(7, 11, 25, 0.9);
  border: 0.675676px solid rgba(19, 129, 255, 0.29);
  border-radius: 50px;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  border-color: var(--primary);
}

.newsletter-form button {
  padding: 10px 20px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--primary-dark);
}

/* =============================================
   Responsive: Zyber Layout Components
   ============================================= */
@media (max-width: 1024px) {
  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-image {
    order: -1;
  }

  .faq-two-col-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 992px) {
  .sphere-container {
    display: none;
  }
  .hero-centered .blockchain-earth,
  .service-hero .blockchain-earth {
    background-size: 0;
  }
  /* Keep logo sphere visible */
  .logo-sphere {
    display: inline-block !important;
  }

  .hero-centered h1 {
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  }

  .hero-centered p {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .service-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }
}

@media (max-width: 768px) {
  .hero-centered {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-centered h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

  .feature-cards-grid {
    grid-template-columns: 1fr;
  }

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

  .about-stats-row {
    justify-content: center;
  }

  .trusted-brands-inner {
    gap: 24px;
  }

  .trusted-brands-logos {
    gap: 24px;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-stats-row {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* =============================================
   Responsive: FAQ, Stats, Process
   ============================================= */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid.process-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-grid > .service-card:last-child:nth-child(odd) {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .process-grid.process-grid-3 {
    grid-template-columns: 1fr;
  }
  .process-grid.process-grid-3 > .process-card:last-child:nth-child(odd) {
    max-width: 100%;
  }
  .process-card {
    min-height: auto;
    padding: 20px;
  }
}

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

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

  .faq-question {
    padding: 16px 20px;
    font-size: 0.92rem;
  }

  .faq-answer-inner {
    padding: 0 20px 16px;
  }
}

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

  .stat-card {
    padding: 20px 12px;
  }
}
