/* =============================================
   WhatsApp Hack Service - Dark Theme
   Matching hirephonehackers.com design
   ============================================= */

/* === CSS Variables === */
:root {
  --primary: #00ff88;
  --primary-dark: #00cc6e;
  --accent: #58a6ff;
  --accent-dark: #388bfd;
  --bg-body: #0a0e17;
  --bg-card: #161b22;
  --bg-card-hover: #1c2129;
  --bg-elevated: #1a1f28;
  --bg-input: #0d1117;
  --border: #30363d;
  --border-light: rgba(48, 54, 61, 0.6);
  --text-primary: #e6edf3;
  --text-secondary: #8b949e;
  --text-muted: #6e7681;
  --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: 0 0 40px rgba(0, 255, 136, 0.08);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* === 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%;
}

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.3;
  font-weight: 700;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.highlight {
  color: var(--primary);
  text-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}

.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: var(--radius-lg);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: #0a0e17;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #0a0e17;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

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

.btn-secondary:hover {
  border-color: rgba(0, 255, 136, 0.3);
  background: rgba(0, 255, 136, 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(10, 14, 23, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  display: flex;
  align-items: center;
}

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

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-logo .logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  display: none;
}

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

/* Show text fallback only if image fails */
.nav-logo img.logo-hidden {
  display: none;
}

.nav-logo img.logo-hidden + .logo-text {
  display: inline;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.nav-cta {
  padding: 8px 20px !important;
  font-size: 0.82rem !important;
  color: #000000 !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(0, 255, 136, 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(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  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(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 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: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.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: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  max-width: 100%;
  padding: 10px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  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(0, 255, 136, 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(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 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: 1px solid var(--border);
  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: var(--bg-input);
  cursor: pointer;
  transition: all 0.2s ease;
  border-right: 1px solid var(--border);
  text-align: center;
  white-space: nowrap;
}

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

.comm-option:hover {
  background: rgba(0, 255, 136, 0.04);
  color: var(--text-primary);
}

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

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

/* Fallback for browsers without :has() */
.comm-option.active {
  background: rgba(0, 255, 136, 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: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-body) 100%);
}

/* === 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(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateX(4px);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.05);
}

.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 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: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.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(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  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, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 24px rgba(0, 255, 136, 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(0, 255, 136, 0.12), rgba(88, 166, 255, 0.08));
  border: 1px solid rgba(0, 255, 136, 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(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: rgba(0, 255, 136, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  color: #f0883e;
  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(0, 255, 136, 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(0, 255, 136, 0.2);
}

.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);
}

/* === CTA Form Section === */
.cta-section {
  background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-elevated) 50%, var(--bg-body) 100%);
}

.cta-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

/* === Footer === */
.footer {
  border-top: 1px solid var(--border);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
}

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

.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(0, 255, 136, 0.06);
  border: 1px solid rgba(0, 255, 136, 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: 600;
  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: var(--text-muted);
}

.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: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 16px 0;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}

.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: var(--bg-card);
  border: 1px solid var(--border);
  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(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  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(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 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(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  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: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

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

  .hamburger {
    display: flex;
  }

  .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: 1fr;
    gap: 32px;
  }

  .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: #00ff88;
    border: none;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 255, 136, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.lc-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 255, 136, 0.4);
}
.lc-bubble svg {
    width: 28px;
    height: 28px;
    fill: #0a0e17;
}
.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: #0a0e17;
    border: 1px solid #30363d;
    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: #161b22;
    border-bottom: 1px solid #30363d;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
    flex-shrink: 0;
}
.lc-header-icon { width: 24px; height: 24px; fill: #00ff88; flex-shrink: 0; }
.lc-header-info { flex: 1; min-width: 0; }
.lc-header-title { font-size: 14px; font-weight: 600; color: #e6edf3; }
.lc-header-name {
    font-size: 12px;
    color: #8b949e;
    display: flex;
    align-items: center;
    gap: 4px;
}
.lc-header-name input {
    background: #0a0e17;
    border: 1px solid #30363d;
    color: #e6edf3;
    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: #8b949e; }
.lc-minimize-btn svg, .lc-close-btn svg { width: 20px; height: 20px; fill: #8b949e; }
.lc-edit-btn:hover svg, .lc-mute-btn:hover svg, .lc-minimize-btn:hover svg, .lc-close-btn:hover svg { fill: #e6edf3; }
.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: #30363d; 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: #00ff88;
    color: #0a0e17;
    border-bottom-right-radius: 4px;
}
.lc-msg-owner {
    align-self: flex-start;
    background: #161b22;
    color: #e6edf3;
    border: 1px solid #30363d;
    border-bottom-left-radius: 4px;
}
.lc-msg-system {
    align-self: center;
    background: none;
    color: #8b949e;
    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: #161b22;
    border-top: 1px solid #30363d;
    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: #8b949e; }
.lc-attach-btn:hover svg { fill: #00ff88; }
.lc-textarea {
    flex: 1;
    background: #0a0e17;
    border: 1px solid #30363d;
    color: #e6edf3;
    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: #00ff88; }
.lc-textarea::placeholder { color: #484f58; }
.lc-send-btn {
    background: #00ff88;
    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: #00e67a; }
.lc-send-btn:disabled { background: #30363d; cursor: not-allowed; }
.lc-send-btn svg { width: 18px; height: 18px; fill: #0a0e17; }

/* --- File Preview (above input) --- */
.lc-file-preview {
    background: #161b22;
    border-top: 1px solid #30363d;
    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: #8b949e;
    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: #30363d;
    border-radius: 2px;
    overflow: hidden;
    display: none;
}
.lc-upload-progress.show { display: block; }
.lc-upload-progress-bar {
    height: 100%;
    background: #00ff88;
    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; }
}
