/* ═══════════════════════════════════════════
   easy-wa – Premium Landing Page
   ═══════════════════════════════════════════ */

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

:root {
  --brand: #25D366;
  --brand-dark: #128C7E;
  --brand-glow: rgba(37, 211, 102, 0.35);
  --bg-start: #06080f;
  --bg-mid: #0c1025;
  --bg-end: #080b18;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-bg-hover: rgba(255, 255, 255, 0.07);
  --text-primary: #f0f2f5;
  --text-secondary: rgba(255, 255, 255, 0.55);
  --text-muted: rgba(255, 255, 255, 0.35);
  --gold: #f5c842;
  --gold-bg: rgba(245, 200, 66, 0.08);
  --gold-border: rgba(245, 200, 66, 0.2);
  --accent: #6366f1;
}

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

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--bg-start);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Animated mesh background ── */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-mesh .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.bg-mesh .orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--brand) 0%, transparent 70%);
  top: -180px;
  right: -120px;
  opacity: 0.12;
  animation: orbit1 20s ease-in-out infinite;
}

.bg-mesh .orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  bottom: -160px;
  left: -100px;
  opacity: 0.1;
  animation: orbit2 25s ease-in-out infinite;
}

.bg-mesh .orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #0ea5e9 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.06;
  animation: orbit3 18s ease-in-out infinite;
}

/* Grid pattern overlay */
.bg-mesh::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

@keyframes orbit1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(-40px, 50px) scale(1.15);
  }

  50% {
    transform: translate(20px, -30px) scale(0.9);
  }

  75% {
    transform: translate(-10px, 20px) scale(1.05);
  }
}

@keyframes orbit2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(50px, -40px) scale(1.1);
  }

  66% {
    transform: translate(-30px, 30px) scale(0.95);
  }
}

@keyframes orbit3 {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
  }
}

/* ── Top bar ── */
.top-bar {
  position: relative;
  z-index: 10;
  padding: 20px 0;
  text-align: center;
}

.top-bar .brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: opacity 0.3s;
}

.top-bar .brand:hover {
  opacity: 0.85;
}

/* ── Main content ── */
.main-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.landing-card {
  background: var(--glass-bg);
  backdrop-filter: blur(40px) saturate(150%);
  -webkit-backdrop-filter: blur(40px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 56px 48px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  animation: card-in 1s cubic-bezier(0.16, 1, 0.3, 1) both;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 40px 100px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(37, 211, 102, 0.06);
  position: relative;
  overflow: hidden;
}

/* Shimmer edge highlight */
.landing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    left: -100%;
  }

  50% {
    left: 100%;
  }
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Logo area */
.logo-area {
  margin-bottom: 28px;
}

.logo-area .logo-wrapper {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--glass-border);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.15);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-area .logo-wrapper:hover {
  transform: scale(1.05) rotate(-2deg);
}

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

.logo-area h1 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

/* Headline & subtitle */
.card-headline {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 30%, rgba(255, 255, 255, 0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-subtitle {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Service description */
.service-desc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.service-tag:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.service-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px var(--brand-glow);
}

/* Divider */
.divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  margin: 0 auto 28px;
  opacity: 0.6;
}

/* Price block */
.price-block {
  margin-bottom: 32px;
}

.price-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.price-main {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  position: relative;
  display: inline-block;
}

.price-main .amount {
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-main .currency {
  font-size: 1.1rem;
  font-weight: 500;
  -webkit-text-fill-color: var(--text-secondary);
  vertical-align: middle;
  margin: 0 4px;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 400;
}

.price-equivalent {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 24px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* WhatsApp button */
.wa-btn-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  font-family: 'Cairo', 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 8px 30px var(--brand-glow),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
  overflow: hidden;
}

.wa-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s;
}

.wa-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 50px var(--brand-glow),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  color: #fff;
}

.wa-btn:hover::before {
  left: 100%;
}

.wa-btn:active {
  transform: translateY(0) scale(0.98);
}

.wa-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Pulse ring animation */
.wa-btn-wrapper::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 20px;
  border: 2px solid var(--brand);
  opacity: 0;
  animation: pulse-ring 3s ease-out infinite;
  pointer-events: none;
}

@keyframes pulse-ring {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.06);
  }
}

/* Phone number display */
.phone-display {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  direction: ltr;
  letter-spacing: 1px;
}

/* ── Footer ── */
.site-footer {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 24px 20px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

/* ── Responsive ── */
@media (max-width: 576px) {
  .landing-card {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .card-headline {
    font-size: 1.35rem;
  }

  .card-subtitle {
    font-size: 0.82rem;
  }

  .price-main {
    font-size: 2.6rem;
  }

  .wa-btn {
    font-size: 1.05rem;
    padding: 16px 24px;
    border-radius: 14px;
  }

  .logo-area .logo-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 20px;
  }

  .logo-area h1 {
    font-size: 1.5rem;
  }

  .service-tag {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
}