/* ============================================
   Replace Documents Online — Light Premium CSS
   ============================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --primary-light: #6366f1;
  --primary-lighter: #818cf8;
  --accent: #0d9488;
  --accent-light: #14b8a6;
  --accent-dark: #0f766e;
  --success: #059669;
  --warning: #d97706;
  --danger: #dc2626;

  --bg-body: #f8fafc;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --bg-surface: #f1f5f9;
  --bg-muted: #e2e8f0;
  --bg-glass: rgba(255, 255, 255, 0.75);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-white: #ffffff;

  --border-color: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.12);
  --border-glow: rgba(79, 70, 229, 0.3);

  --gradient-primary: linear-gradient(135deg, #4f46e5, #0d9488);
  --gradient-hero: linear-gradient(135deg, #eef2ff 0%, #f0fdfa 50%, #f8fafc 100%);
  --gradient-card: linear-gradient(145deg, #ffffff, #f8fafc);
  --gradient-text: linear-gradient(135deg, #4f46e5, #0d9488);

  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 6px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 40px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 30px rgba(79, 70, 229, 0.1);
  --shadow-card: 0 1px 3px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(15, 23, 42, 0.04);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --font-primary: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

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

/* ---------- Utility Classes ---------- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary);
  margin-bottom: 14px;
  background: rgba(79, 70, 229, 0.06);
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid rgba(79, 70, 229, 0.12);
}

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

.section-title {
  font-family: var(--font-primary);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.8;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition-base);
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79, 70, 229, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid rgba(79, 70, 229, 0.3);
}

.btn-outline:hover {
  background: rgba(79, 70, 229, 0.06);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--bg-white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--primary);
  padding: 9px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar a:hover {
  color: #fff;
}

.top-bar-links {
  display: flex;
  gap: 24px;
}

.top-bar-links i {
  font-size: 0.9rem;
}

/* ---------- Header / Navbar ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-base);
}

.header.scrolled {
  box-shadow: 0 2px 24px rgba(15, 23, 42, 0.06);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  height: 72px;
  max-width: 1240px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(79, 70, 229, 0.05);
}

.nav-link i.fa-chevron-down {
  font-size: 0.6rem;
  transition: var(--transition-fast);
}

.nav-item:hover .nav-link i.fa-chevron-down {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-base);
  box-shadow: var(--shadow-xl);
  z-index: 100;
}

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

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: rgba(79, 70, 229, 0.06);
  color: var(--primary);
}

.dropdown-item i {
  font-size: 0.75rem;
  width: 20px;
  text-align: center;
  color: var(--text-muted);
}

.dropdown-item:hover i {
  color: var(--primary);
}

/* Sub-dropdown */
.dropdown-parent {
  position: relative;
}

.dropdown-parent > .sub-dropdown {
  position: absolute;
  top: -8px;
  left: calc(100% + 4px);
  min-width: 280px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition-base);
  box-shadow: var(--shadow-xl);
}

.dropdown-parent:hover > .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Nav CTA */
.nav-cta {
  margin-left: 12px;
}

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

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

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #eef2ff 0%, #f0fdfa 35%, #faf5ff 65%, #f8fafc 100%);
  overflow: hidden;
  padding: 80px 0 40px;
}

/* Animated gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  top: -120px;
  right: -80px;
  background: rgba(99, 102, 241, 0.12);
  animation: orbFloat1 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -80px;
  background: rgba(13, 148, 136, 0.1);
  animation: orbFloat2 10s ease-in-out infinite;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 45%;
  background: rgba(217, 70, 239, 0.06);
  animation: orbFloat3 12s ease-in-out infinite;
}

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

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -20px) scale(1.08); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(15px, 25px); }
  66% { transform: translate(-20px, -10px); }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 70, 229, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 70, 229, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}

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

/* Two-column grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 8px 14px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  animation: fadeInUp 0.5s ease-out;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.08); }
}

/* Title */
.hero-title {
  font-family: var(--font-primary);
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 22px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  animation: fadeInUp 0.5s ease-out 0.08s both;
}

.hero-title .highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeInUp 0.5s ease-out 0.16s both;
}

/* Actions */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.5s ease-out 0.24s both;
}

.btn-hero {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: 14px;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% { left: -100%; }
  50%, 100% { left: 120%; }
}

/* Trust section */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  animation: fadeInUp 0.5s ease-out 0.32s both;
}

.hero-trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  border: 2.5px solid var(--bg-white);
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.trust-avatar:first-child {
  margin-left: 0;
}

.trust-avatar-count {
  background: var(--bg-white) !important;
  color: var(--primary) !important;
  font-size: 0.65rem;
  font-weight: 800;
  border: 2.5px solid var(--primary-lighter);
}

.trust-avatar-count span {
  font-size: 0.62rem;
}

.hero-trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-trust-stars {
  display: flex;
  gap: 2px;
}

.hero-trust-stars i {
  font-size: 0.65rem;
  color: #f59e0b;
}

.hero-trust-text > span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---- Hero Visual (Right Column) ---- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
}

/* Hero Image */
.hero-image-container {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-main-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.12));
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-image-container:hover .hero-main-image {
  transform: scale(1.02);
}

/* Main floating document card (legacy) */
.hero-card-main {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
  transform-origin: center;
}

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

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
}

.hero-card-dots {
  display: flex;
  gap: 5px;
}

.hero-card-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

.hero-card-dots span:first-child { background: #fca5a5; }
.hero-card-dots span:nth-child(2) { background: #fde68a; }
.hero-card-dots span:nth-child(3) { background: #86efac; }

.hero-card-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.hero-card-text-line {
  height: 10px;
  border-radius: 5px;
  background: #e2e8f0;
  animation: shimmer 2.5s ease-in-out infinite;
  background-size: 200% 100%;
  background-image: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.hero-card-text-accent {
  background-image: linear-gradient(90deg, #c7d2fe 25%, #e0e7ff 50%, #c7d2fe 75%) !important;
}

.hero-card-text-green {
  background-image: linear-gradient(90deg, #a7f3d0 25%, #d1fae5 50%, #a7f3d0 75%) !important;
}

.hero-card-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 4px 0;
}

.hero-card-row-total .hero-card-text-line {
  height: 13px;
}

/* Floating badges */
.hero-floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
  z-index: 5;
}

.hero-floating-badge strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-floating-badge span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-floating-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}

.hero-floating-badge-1 {
  top: 10%;
  right: -20px;
  animation: floatBadge1 5s ease-in-out infinite;
}

.hero-floating-badge-2 {
  bottom: 25%;
  left: -30px;
  animation: floatBadge2 6s ease-in-out infinite;
}

.hero-floating-badge-3 {
  bottom: 2%;
  right: 10%;
  animation: floatBadge3 7s ease-in-out infinite;
}

@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(-1deg); }
}

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

/* ---- Stats Bar ---- */
.hero-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
  padding: 28px 40px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
  animation: fadeInUp 0.5s ease-out 0.45s both;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
}

.hero-stat-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(79, 70, 229, 0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
}

.hero-stat h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.hero-stat p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-strong);
  margin: 0 8px;
}

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

/* ---------- What We Provide ---------- */
.about-section {
  background: var(--bg-white);
  position: relative;
}

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

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

.about-text h2 {
  font-family: var(--font-primary);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
  color: var(--text-primary);
}

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

.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(79, 70, 229, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-base);
}

.about-feature:hover {
  border-color: var(--border-glow);
  background: rgba(79, 70, 229, 0.06);
  transform: translateX(4px);
}

.about-feature i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 3px;
}

.about-feature span {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.about-visual {
  position: relative;
}

.about-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(79, 70, 229, 0.03), transparent, rgba(13, 148, 136, 0.03), transparent);
  animation: rotate 12s linear infinite;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.about-card-content {
  position: relative;
  z-index: 1;
}

.about-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.25);
}

.about-card h3 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

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

/* About Image (What We Provide) */
.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12), 0 1px 3px rgba(15, 23, 42, 0.06);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 1;
}

.about-image-wrapper:hover .about-image {
  transform: translateY(-6px) scale(1.01);
}

/* Decorative accent blobs */
.about-image-accent {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.about-image-accent-1 {
  width: 180px;
  height: 180px;
  top: -30px;
  right: -30px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(99, 102, 241, 0.08));
  filter: blur(2px);
  animation: aboutAccent1 6s ease-in-out infinite;
}

.about-image-accent-2 {
  width: 140px;
  height: 140px;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.15), rgba(20, 184, 166, 0.08));
  filter: blur(2px);
  animation: aboutAccent2 8s ease-in-out infinite;
}

@keyframes aboutAccent1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-8px, 8px) scale(1.08); }
}

@keyframes aboutAccent2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8px, -8px) scale(1.06); }
}

/* Floating badge */
.about-image-badge {
  position: absolute;
  bottom: 20px;
  left: -16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  z-index: 2;
  animation: badgeFloat 4s ease-in-out infinite;
}

.about-image-badge i {
  color: #f59e0b;
  font-size: 0.9rem;
}

.about-image-badge span {
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
}

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

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: var(--gradient-primary);
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent);
  border-radius: 50%;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.cta-banner h2 {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-top: 8px;
}

.cta-banner .btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
}

.cta-banner .btn-white:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ---------- Our Expertise / Services ---------- */
.services-section {
  background: var(--bg-surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.service-card {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition-base);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.service-card:hover {
  border-color: rgba(79, 70, 229, 0.15);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(79, 70, 229, 0.05);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(79, 70, 229, 0.07);
  border: 1px solid rgba(79, 70, 229, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 22px;
  transition: var(--transition-base);
}

.service-card:hover .service-icon {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.25);
}

.service-card h3 {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.service-card h3 a {
  color: var(--text-primary);
}

.service-card h3 a:hover {
  color: var(--primary);
}

.service-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.country-tag {
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.service-card:hover .country-tag {
  border-color: rgba(79, 70, 229, 0.15);
  background: rgba(79, 70, 229, 0.04);
  color: var(--primary);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition-fast);
}

.service-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* ---------- Why Choose Us ---------- */
.why-section {
  background: var(--bg-white);
  position: relative;
}

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

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

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

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.why-item:hover {
  border-color: rgba(79, 70, 229, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.why-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.why-item h4 {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

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

/* ---------- Contact Channels ---------- */
.contact-channels {
  background: var(--bg-surface);
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.channel-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-base);
  box-shadow: var(--shadow-card);
}

.channel-card:hover {
  border-color: rgba(79, 70, 229, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.channel-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.channel-icon.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
.channel-icon.telegram { background: linear-gradient(135deg, #0088cc, #229ed9); }
.channel-icon.phone { background: var(--gradient-primary); }

.channel-card h3 {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.channel-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ---------- Other Services ---------- */
.other-services {
  background: var(--bg-white);
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.other-service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.other-service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.other-service-card:hover {
  border-color: rgba(13, 148, 136, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.other-service-card:hover::after {
  transform: scaleX(1);
}

.other-service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: rgba(13, 148, 136, 0.07);
  border: 1px solid rgba(13, 148, 136, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  transition: var(--transition-base);
}

.other-service-card:hover .other-service-icon {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(13, 148, 136, 0.25);
}

.other-service-card h3 {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ---------- Blog Section ---------- */
.blog-section {
  background: var(--bg-surface);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

/* Blog Carousel */
.blog-carousel {
  position: relative;
  margin-top: 56px;
  overflow: hidden;
  padding: 0 0 60px;
}

.blog-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 28px;
  will-change: transform;
}

.blog-carousel .blog-card {
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: 0;
}

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

.blog-card:hover {
  border-color: rgba(79, 70, 229, 0.15);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, #eef2ff, #f0fdfa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(79, 70, 229, 0.15);
  position: relative;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.blog-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(79, 70, 229, 0.03) 0%,
    rgba(13, 148, 136, 0.05) 50%,
    rgba(79, 70, 229, 0.03) 100%);
  z-index: 1;
  pointer-events: none;
}

.blog-body {
  padding: 28px;
}

.blog-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.blog-card h3 a:hover {
  color: var(--primary);
}

.blog-card .blog-excerpt {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition-fast);
}

.read-more:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* Blog Carousel Navigation */
.blog-carousel-btn {
  position: absolute;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  color: var(--text-primary);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

.blog-carousel-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.25);
  transform: translateY(-50%) scale(1.08);
}

.blog-carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.blog-carousel-prev { left: -4px; }
.blog-carousel-next { right: -4px; }

/* Blog Carousel Dots */
.blog-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.blog-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.blog-carousel-dot:hover {
  background: rgba(79, 70, 229, 0.4);
}

.blog-carousel-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 10px;
}

/* Blog Carousel Responsive */
@media (max-width: 900px) {
  .blog-carousel .blog-card {
    flex: 0 0 calc((100% - 28px) / 2);
  }
}

@media (max-width: 600px) {
  .blog-carousel .blog-card {
    flex: 0 0 100%;
  }
  .blog-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }
  .blog-carousel-prev { left: 0; }
  .blog-carousel-next { right: 0; }
}

/* ---------- Services In (Countries) ---------- */
.countries-section {
  background: var(--bg-white);
  position: relative;
}

.countries-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
  opacity: 0.3;
}

.countries-grid {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.country-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: var(--bg-white);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-base);
  box-shadow: var(--shadow-xs);
}

.country-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(79, 70, 229, 0.04);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(79, 70, 229, 0.06);
}

.country-btn i {
  font-size: 1.1rem;
}

/* ---------- Goals Section ---------- */
.goals-section {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.goals-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.04), transparent 60%);
  border-radius: 50%;
}

.goals-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.goals-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.85;
}

/* ---------- Footer ---------- */
.footer {
  background: #0f172a;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0 0;
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer .logo span {
  background: linear-gradient(135deg, #818cf8, #5eead4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 0.9rem;
  transition: var(--transition-base);
}

.social-icon:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #f1f5f9;
}

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

.footer-col ul li a {
  color: #64748b;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: #818cf8;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: #818cf8;
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
}

.footer-contact-item a {
  color: #64748b;
  font-size: 0.88rem;
}

.footer-contact-item a:hover {
  color: #818cf8;
}

.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  color: #475569;
  font-size: 0.82rem;
}

/* ---------- Floating Action Buttons ---------- */
/* ---------- Sticky Side Buttons (Left Center) ---------- */
.floating-actions {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 999;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 0;
  width: 48px;
  height: 48px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.3s ease;
  white-space: nowrap;
  border-radius: 0 8px 8px 0;
  margin-bottom: 3px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
  position: relative;
}

.float-btn:hover {
  width: 170px;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
}

.float-btn i {
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.float-btn .sb-label {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease 0.1s, transform 0.25s ease 0.1s;
  padding-right: 14px;
  font-family: inherit;
  letter-spacing: 0.02em;
}

.float-btn:hover .sb-label {
  opacity: 1;
  transform: translateX(0);
}

.float-btn-whatsapp { background: #25d366; }
.float-btn-telegram { background: #0088cc; }
.float-btn-chat { background: #d4a338; }
.float-btn-call { background: #e04545; }

/* Mobile: smaller buttons */
@media (max-width: 768px) {
  .float-btn {
    width: 42px;
    height: 42px;
  }
  .float-btn i {
    min-width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
  .float-btn:hover {
    width: 155px;
  }
}

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 9999;
  width: 0%;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(79, 70, 229, 0.4);
}

/* ---------- 3D Perspective System ---------- */
.perspective-container {
  perspective: 1200px;
  perspective-origin: center;
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99), box-shadow 0.4s ease;
  will-change: transform;
}

.tilt-card:hover {
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(79, 70, 229, 0.06);
}

.tilt-card .tilt-inner {
  transform: translateZ(30px);
  transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

/* 3D depth layers inside cards */
.depth-1 { transform: translateZ(10px); }
.depth-2 { transform: translateZ(20px); }
.depth-3 { transform: translateZ(40px); }

/* ---------- Enhanced Service Card 3D ---------- */
.service-card,
.blog-card,
.channel-card,
.other-service-card,
.why-item {
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.03, 0.98, 0.52, 0.99),
              box-shadow 0.5s ease,
              border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-1deg) scale(1.02);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(79, 70, 229, 0.08);
}

.blog-card:hover {
  transform: translateY(-8px) rotateX(1deg) scale(1.01);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
}

.channel-card:hover {
  transform: translateY(-8px) rotateY(-2deg) scale(1.03);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
}

.other-service-card:hover {
  transform: translateY(-6px) rotateX(2deg) scale(1.02);
}

.why-item:hover {
  transform: translateY(-4px) rotateX(1deg) scale(1.01);
}

/* 3D Hero Visual */
.hero-visual-wrapper {
  transform-style: preserve-3d;
  transition: transform 0.3s ease-out;
}

.hero-card-main {
  transform-style: preserve-3d;
  transition: box-shadow 0.4s ease;
}

.hero-visual-wrapper:hover .hero-card-main {
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

.hero-visual-wrapper:hover .hero-floating-badge {
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
}

/* ---------- Parallax Layers ---------- */
.parallax-layer {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ---------- Scroll Animations ---------- */
/* Base reveal */
.reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none !important;
}

/* Directional reveals */
.reveal-up {
  transform: translateY(50px);
}

.reveal-down {
  transform: translateY(-50px);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-scale {
  transform: scale(0.85);
}

.reveal-rotate {
  transform: perspective(800px) rotateY(8deg) translateY(30px);
}

.reveal-rotate-left {
  transform: perspective(800px) rotateY(-8deg) translateY(30px);
}

.reveal-flip {
  transform: perspective(600px) rotateX(15deg) translateY(40px);
}

/* Default: up */
.reveal:not([class*="reveal-"]) {
  transform: translateY(50px);
}

/* Staggered children delay */
.stagger-children > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children > .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ---------- Counter Glow ---------- */
.counter-animate {
  display: inline-block;
  transition: color 0.3s ease;
}

.counter-animate.counted {
  animation: counterPop 0.5s ease-out;
}

@keyframes counterPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* ---------- Smooth Section Transitions ---------- */
.section {
  position: relative;
  overflow: hidden;
}

/* Decorative floating shapes in sections */
.section-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
  filter: blur(60px);
}

/* ---------- Interactive Glow on Buttons ---------- */
.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}

/* ---------- 3D About Card ---------- */
.about-card {
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

.about-card:hover {
  transform: rotateY(-4deg) rotateX(2deg) scale(1.02);
  box-shadow: 20px 20px 60px rgba(15, 23, 42, 0.1), -5px -5px 20px rgba(255, 255, 255, 0.6);
}

.about-card-icon {
  transition: transform 0.5s ease;
}

.about-card:hover .about-card-icon {
  transform: translateZ(20px) rotateY(10deg) scale(1.1);
}

/* ---------- Country Button 3D ---------- */
.country-btn {
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.country-btn:hover {
  transform: translateY(-4px) rotateX(3deg) scale(1.02);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.8rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-floating-badge-1 { right: -10px; }
  .hero-floating-badge-2 { left: -10px; }
  .services-grid, .channels-grid, .blog-grid, .other-services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats-bar { padding: 24px 28px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .top-bar { display: none; }

  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    padding: 80px 24px 24px;
    border-left: 1px solid var(--border-color);
    transition: var(--transition-slow);
    overflow-y: auto;
    align-items: stretch;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
  }

  .dropdown-menu,
  .sub-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--bg-surface);
    display: none;
    border: none;
  }

  .nav-item.open > .dropdown-menu {
    display: block;
  }

  .dropdown-parent.open > .sub-dropdown {
    display: block;
    position: static;
    transform: none;
  }

  .nav-cta { margin-left: 0; margin-top: 16px; }

  .hero { min-height: auto; padding: 60px 0 30px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: 2.6rem; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .hero-stats-bar {
    flex-wrap: wrap;
    gap: 0;
    padding: 20px 24px;
  }
  .hero-stat {
    flex: 0 0 50%;
    justify-content: flex-start;
    padding: 12px 8px;
  }
  .hero-stat-divider { display: none; }
  .section-title { font-size: 2rem; }

  .services-grid,
  .channels-grid,
  .blog-grid,
  .other-services-grid { grid-template-columns: 1fr; }

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

  .cta-banner .container { flex-direction: column; text-align: center; }
  .cta-banner .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem; }
  .hero-description { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-stats-bar { margin-top: 36px; }
  .hero-stat { flex: 0 0 50%; }
  .countries-grid { flex-direction: column; }
  .country-btn { width: 100%; justify-content: center; }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-surface); }
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* ---------- Selection ---------- */
::selection {
  background: rgba(79, 70, 229, 0.15);
  color: var(--text-primary);
}

/* ===================================================================
   SERVICE PAGES — Inner Page Styles
   =================================================================== */

/* ---------- Page Banner / Hero ---------- */
.page-banner {
  position: relative;
  padding: 140px 0 80px;
  background: var(--gradient-hero);
  overflow: hidden;
  text-align: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(79, 70, 229, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(13, 148, 136, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.page-banner-badge i {
  font-size: 0.75rem;
}

.page-banner h1 {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-banner h1 .highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-banner-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.page-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

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

/* ---------- Service Content Section ---------- */
.service-content {
  padding: 80px 0;
}

.service-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-text h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.service-text h3 {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 12px;
}

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

.service-text ul,
.service-text ol {
  padding-left: 0;
  list-style: none;
  margin-bottom: 24px;
}

.service-text ul li,
.service-text ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.service-text ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent);
  font-size: 0.85rem;
}

.service-text ol {
  counter-reset: service-counter;
}

.service-text ol li::before {
  counter-increment: service-counter;
  content: counter(service-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--gradient-primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Service Image */
.service-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  pointer-events: none;
}

/* ---------- Service Features Grid ---------- */
.service-features {
  padding: 80px 0;
  background: var(--bg-surface);
}

.service-features .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.service-features .section-header h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-features .section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

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

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

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}

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

.feature-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(79, 70, 229, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

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

/* ---------- Service Blockquote ---------- */
.service-blockquote {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.04), rgba(13, 148, 136, 0.04));
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 32px;
  margin: 32px 0;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

/* ---------- Service List Highlights ---------- */
.service-highlight-list {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 32px 0;
}

.service-highlight-list h3 {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.service-highlight-list ul {
  list-style: none;
  padding: 0;
}

.service-highlight-list ul li {
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.service-highlight-list ul li:last-child {
  border-bottom: none;
}

.service-highlight-list ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--accent);
  font-size: 0.85rem;
}

/* ---------- Service CTA Section ---------- */
.service-cta {
  padding: 80px 0;
  background: var(--gradient-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.service-cta .container {
  position: relative;
  z-index: 2;
}

.service-cta h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.service-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.service-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: white;
  color: var(--primary);
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: all var(--transition-base);
}

.service-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ---------- Services Overview Grid ---------- */
.services-overview {
  padding: 80px 0;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.service-overview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.service-overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.service-overview-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: transparent;
  transform: translateY(-6px);
}

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

.service-overview-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 20px;
}

.service-overview-card h3 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

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

.service-overview-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: gap var(--transition-fast);
}

.service-overview-card:hover .card-link {
  gap: 10px;
}

/* ---------- Service Two Column ---------- */
.service-two-col {
  padding: 80px 0;
}

.service-two-col:nth-child(even) {
  background: var(--bg-surface);
}

.service-two-col .service-content-grid {
  align-items: center;
}

.service-two-col:nth-child(even) .service-content-grid {
  direction: rtl;
}

.service-two-col:nth-child(even) .service-content-grid > * {
  direction: ltr;
}

/* ---------- Service Responsive ---------- */
@media (max-width: 768px) {
  .page-banner {
    padding: 120px 0 60px;
  }

  .page-banner h1 {
    font-size: 1.8rem;
  }

  .service-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-two-col:nth-child(even) .service-content-grid {
    direction: ltr;
  }

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

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

  .service-cta h2 {
    font-size: 1.6rem;
  }
}

/* ============================================
   PREMIUM CTA SECTION
   ============================================ */
.cta-premium {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 25%, #1e1b4b 50%, #0f172a 100%);
  overflow: hidden;
  isolation: isolate;
}

/* Animated mesh gradient overlay */
.cta-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 60%, rgba(79, 70, 229, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(13, 148, 136, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle grid pattern */
.cta-premium::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Floating orbs */
.cta-premium-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.cta-premium-orb-1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent 70%);
  animation: ctaOrb1 8s ease-in-out infinite;
}

.cta-premium-orb-2 {
  width: 250px;
  height: 250px;
  bottom: -60px;
  left: -40px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.2), transparent 70%);
  animation: ctaOrb2 10s ease-in-out infinite;
}

.cta-premium-orb-3 {
  width: 180px;
  height: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(217, 70, 239, 0.12), transparent 70%);
  animation: ctaOrb3 12s ease-in-out infinite;
}

@keyframes ctaOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-25px, 15px) scale(1.1); }
}
@keyframes ctaOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}
@keyframes ctaOrb3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  33% { transform: translate(calc(-50% + 15px), calc(-50% + 10px)) scale(1.1); }
  66% { transform: translate(calc(-50% - 10px), calc(-50% - 15px)) scale(0.95); }
}

.cta-premium .container {
  position: relative;
  z-index: 2;
}

/* Top label */
.cta-premium-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.cta-premium-label i {
  font-size: 0.75rem;
  color: #34d399;
}

/* Heading */
.cta-premium h2 {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-premium h2 .cta-highlight {
  background: linear-gradient(135deg, #818cf8, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-premium-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.cta-premium.text-center .cta-premium-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Channel action cards grid */
.cta-channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 0;
}

.cta-channel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 20px 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.cta-channel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cta-channel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* WhatsApp */
.cta-channel-card.cta-whatsapp:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.3);
}
.cta-channel-card.cta-whatsapp:hover::before {
  opacity: 1;
  background: radial-gradient(circle at 50% 30%, rgba(37, 211, 102, 0.15), transparent 70%);
}

/* Telegram */
.cta-channel-card.cta-telegram:hover {
  background: rgba(0, 136, 204, 0.12);
  border-color: rgba(0, 136, 204, 0.3);
}
.cta-channel-card.cta-telegram:hover::before {
  opacity: 1;
  background: radial-gradient(circle at 50% 30%, rgba(0, 136, 204, 0.15), transparent 70%);
}

/* Email */
.cta-channel-card.cta-email:hover {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
}
.cta-channel-card.cta-email:hover::before {
  opacity: 1;
  background: radial-gradient(circle at 50% 30%, rgba(239, 68, 68, 0.15), transparent 70%);
}

/* Place Order */
.cta-channel-card.cta-order:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
}
.cta-channel-card.cta-order:hover::before {
  opacity: 1;
  background: radial-gradient(circle at 50% 30%, rgba(99, 102, 241, 0.15), transparent 70%);
}

/* Icon circles */
.cta-channel-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.cta-channel-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cta-channel-card:hover .cta-channel-icon {
  transform: scale(1.1);
}

.cta-channel-card:hover .cta-channel-icon::after {
  opacity: 1;
}

.cta-channel-icon.icon-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}
.cta-channel-icon.icon-whatsapp::after {
  border: 2px solid rgba(37, 211, 102, 0.3);
}

.cta-channel-icon.icon-telegram {
  background: linear-gradient(135deg, #0088cc, #229ed9);
  box-shadow: 0 4px 16px rgba(0, 136, 204, 0.3);
}
.cta-channel-icon.icon-telegram::after {
  border: 2px solid rgba(0, 136, 204, 0.3);
}

.cta-channel-icon.icon-email {
  background: linear-gradient(135deg, #ef4444, #f97316);
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}
.cta-channel-icon.icon-email::after {
  border: 2px solid rgba(239, 68, 68, 0.3);
}

.cta-channel-icon.icon-order {
  background: linear-gradient(135deg, #6366f1, #0d9488);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}
.cta-channel-icon.icon-order::after {
  border: 2px solid rgba(99, 102, 241, 0.3);
}

/* Card text */
.cta-channel-name {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.cta-channel-detail {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: -6px;
}

.cta-channel-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  transition: all 0.3s ease;
}

.cta-channel-arrow i {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.cta-channel-card:hover .cta-channel-arrow {
  color: rgba(255, 255, 255, 0.8);
}

.cta-channel-card:hover .cta-channel-arrow i {
  transform: translateX(4px);
}

/* Bottom trust bar */
.cta-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.cta-trust-item i {
  font-size: 1rem;
  color: #34d399;
}

/* ---- CTA Premium Responsive ---- */
@media (max-width: 900px) {
  .cta-channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-premium {
    padding: 72px 0;
  }
}

@media (max-width: 600px) {
  .cta-channels-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cta-channel-card {
    flex-direction: row;
    padding: 20px 24px;
    gap: 16px;
  }
  .cta-channel-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    flex-shrink: 0;
  }
  .cta-channel-card-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-channel-arrow {
    margin-top: 2px;
  }
  .cta-trust-bar {
    flex-direction: column;
    gap: 16px;
  }
  .cta-premium {
    padding: 56px 0;
  }
  .cta-premium-subtitle {
    margin-bottom: 32px;
  }
}
