/* ===== CUSTOM STYLES FOR AUTOFY LANDING PAGE ===== */

/* --- Root Variables --- */
:root {
  --neon-blue: #3B82F6;
  --neon-purple: #8B5CF6;
  --neon-cyan: #06B6D4;
  --dark-bg: #020617;
  --dark-surface: #0F172A;
  --dark-card: #1E293B;
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --border-glass: rgba(148, 163, 184, 0.1);
  --glow-blue: rgba(59, 130, 246, 0.3);
  --glow-purple: rgba(139, 92, 246, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

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

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--neon-blue), var(--neon-purple));
  border-radius: 3px;
}

/* --- Background Grid Pattern --- */
.grid-bg {
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* --- Noise Texture Overlay --- */
.noise-overlay::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* --- Gradient Orbs --- */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  top: -100px;
  left: -150px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  top: 200px;
  right: -100px;
  animation-delay: -4s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  bottom: 100px;
  left: 30%;
  animation-delay: -2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* --- Glassmorphism Cards --- */
.glass-card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(59, 130, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* --- Gradient Text --- */
.gradient-text {
  background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 50%, #22D3EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-2 {
  background: linear-gradient(135deg, #F472B6 0%, #A78BFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Neon Glow Button --- */
.btn-primary {
  position: relative;
  padding: 14px 32px;
  background: linear-gradient(135deg, #3B82F6, #8B5CF6);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #60A5FA, #A78BFA);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.5), 0 0 60px rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  padding: 13px 28px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.btn-secondary:hover {
  border-color: rgba(59, 130, 246, 0.6);
  background: rgba(59, 130, 246, 0.08);
  color: #60A5FA;
}

/* --- Header / Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
  padding: 12px 0;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  transition: width 0.3s ease;
}

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

.nav-link:hover::after {
  width: 100%;
}

/* --- Logo --- */
.logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #60A5FA, #A78BFA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Hero Section --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  font-size: 13px;
  color: #60A5FA;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* --- Stats Row --- */
.stat-item {
  position: relative;
  padding-left: 16px;
}

.stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(var(--neon-blue), var(--neon-purple));
  border-radius: 2px;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #60A5FA, #A78BFA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* --- Section Headers --- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 100px;
  font-size: 12px;
  color: #A78BFA;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

/* --- Service Cards --- */
.service-card {
  padding: 36px;
  height: 100%;
  cursor: default;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  position: relative;
}

.icon-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60A5FA;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.icon-purple {
  background: rgba(139, 92, 246, 0.15);
  color: #A78BFA;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.icon-cyan {
  background: rgba(6, 182, 212, 0.15);
  color: #22D3EE;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.service-features.blue li::before { background: #60A5FA; }
.service-features.purple li::before { background: #A78BFA; }
.service-features.cyan li::before { background: #22D3EE; }

/* --- Advantages / Why Us --- */
.advantage-card {
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.advantage-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.advantage-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.advantage-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- How It Works --- */
.step-card {
  padding: 32px;
  position: relative;
}

.step-number {
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.05));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
  user-select: none;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Metrics/Counter Strip --- */
.metric-strip {
  background: rgba(15, 23, 42, 0.8);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 40px 0;
}

.metric-value {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}

.metric-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* --- Contact Form --- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.form-input {
  padding: 14px 16px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
  width: 100%;
  resize: none;
}

.form-input::placeholder {
  color: rgba(148, 163, 184, 0.4);
}

.form-input:focus {
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(30, 41, 59, 0.8);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08);
}

/* --- Telegram Contact Box --- */
.contact-channel {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-channel:hover {
  transform: translateX(6px);
}

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.channel-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.channel-sub {
  font-size: 13px;
  color: var(--text-secondary);
}

/* --- Footer --- */
.footer {
  background: rgba(2, 6, 23, 0.9);
  border-top: 1px solid var(--border-glass);
  padding: 48px 0 32px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #60A5FA, #A78BFA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 300px;
  margin-top: 12px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 10px;
}

.footer-link:hover {
  color: #60A5FA;
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--border-glass);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  color: #60A5FA;
  transform: translateY(-3px);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(2, 6, 23, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu .nav-link {
  font-size: 24px;
  font-weight: 700;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* --- Typewriter cursor --- */
.cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: #60A5FA;
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* --- Neon divider --- */
.neon-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), rgba(139, 92, 246, 0.5), transparent);
  border: none;
}

/* --- Floating particles --- */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(59, 130, 246, 0.6);
  border-radius: 50%;
  pointer-events: none;
  animation: particleDrift linear infinite;
}

@keyframes particleDrift {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) translateX(var(--drift)); opacity: 0; }
}

/* --- Hamburger Menu --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

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

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

/* --- Inactive contact channel --- */
.contact-channel-disabled {
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
}

/* --- Success Message --- */
.form-success {
  display: none;
  padding: 20px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  color: #86EFAC;
  font-size: 15px;
  text-align: center;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .desktop-nav {
    display: none;
  }

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

  .service-card {
    padding: 24px;
  }

  .step-number {
    font-size: 48px;
  }

  .metric-value {
    font-size: 36px;
  }

  .advantage-card {
    padding: 20px;
  }

  .glass-card:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 12px;
  }

  .btn-primary, .btn-secondary {
    padding: 12px 22px;
    font-size: 14px;
  }

  .section-title {
    letter-spacing: -0.5px;
  }
}

/* --- Language Switcher --- */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 10px;
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  padding: 5px 12px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1;
}

.lang-btn.active {
  background: linear-gradient(135deg, #3B82F6, #8B5CF6);
  color: white;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.35);
}

.lang-btn:not(.active):hover {
  color: var(--text-primary);
  background: rgba(148, 163, 184, 0.08);
}

/* --- Hero entrance animation --- */
@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-enter {
  opacity: 0;
  animation: heroEntrance 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.hero-enter.d1 { animation-delay: 0.1s; }
.hero-enter.d2 { animation-delay: 0.25s; }
.hero-enter.d3 { animation-delay: 0.4s; }
.hero-enter.d4 { animation-delay: 0.55s; }

/* --- CTA pulse glow --- */
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 16px rgba(59, 130, 246, 0.3), 0 0 32px rgba(139, 92, 246, 0.1); }
  50%       { box-shadow: 0 0 28px rgba(59, 130, 246, 0.55), 0 0 56px rgba(139, 92, 246, 0.25); }
}

.btn-primary-pulse {
  animation: ctaGlow 3s ease-in-out infinite;
}

/* --- Service card "more" link --- */
.service-more-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #60A5FA;
  text-decoration: none;
  transition: gap 0.2s ease, opacity 0.2s ease;
  opacity: 0.7;
}
.service-more-link:hover { opacity: 1; letter-spacing: 0.5px; }

/* --- Service page styles --- */
.sp-hero { min-height: 60vh; display:flex; align-items:center; padding: 140px 0 80px; position:relative; }
.sp-section { padding: 80px 0; position:relative; z-index:1; }
.sp-feature-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap:20px; margin-top:40px; }
.sp-feature-card { padding:28px; }
.sp-feature-icon { width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:18px; margin-bottom:16px; }
.sp-feature-title { font-size:16px; font-weight:700; color:var(--text-primary); margin-bottom:8px; }
.sp-feature-desc { font-size:14px; color:var(--text-secondary); line-height:1.7; }
.sp-faq-item { border-bottom:1px solid rgba(148,163,184,0.08); }
.sp-faq-q { width:100%; background:none; border:none; color:var(--text-primary); font-size:15px; font-weight:600; text-align:left; padding:20px 0; cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:16px; font-family:inherit; }
.sp-faq-q:hover { color:#60A5FA; }
.sp-faq-a { font-size:14px; color:var(--text-secondary); line-height:1.8; max-height:0; overflow:hidden; transition:max-height 0.4s ease, padding 0.3s ease; }
.sp-faq-a.open { max-height:300px; padding-bottom:20px; }
.sp-faq-chevron { transition:transform 0.3s ease; flex-shrink:0; }
.sp-faq-item.open .sp-faq-chevron { transform:rotate(180deg); }
.breadcrumb { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--text-secondary); margin-bottom:24px; flex-wrap:wrap; }
.breadcrumb a { color:var(--text-secondary); text-decoration:none; transition:color 0.2s; }
.breadcrumb a:hover { color:#60A5FA; }
.breadcrumb span { opacity:0.4; }

/* --- Widget chat button --- */
.widget-chat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  background: linear-gradient(135deg, #229ED9, #1A7FC1);
  color: white;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.2px;
}

.widget-chat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 158, 217, 0.4);
  background: linear-gradient(135deg, #2AABEE, #229ED9);
}

/* --- Language fade transition --- */
.lang-fade {
  transition: opacity 0.18s ease;
}

/* --- Card icon scale on hover --- */
.glass-card:hover .service-icon-wrap,
.glass-card:hover .advantage-icon {
  transform: scale(1.12);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-icon-wrap,
.advantage-icon {
  transition: transform 0.3s ease;
}

/* --- Utility --- */
.text-balance {
  text-wrap: balance;
}

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

section {
  position: relative;
  z-index: 1;
}
