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

:root {
  --primary: #0A66FF;
  --primary-dark: #0050CC;
  --whatsapp: #00C853;
  --call: #FF3B30;
  --dark: #ffffff;
  --dark2: #f4f6fb;
  --dark3: #eaf0fb;
  --text: #1a1a2e;
  --text-muted: #5a6a85;
  --border: rgba(10,102,255,0.13);
  --card-bg: #ffffff;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(10,102,255,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  background: var(--dark);
  color: var(--text);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

/* TOPBAR */
.topbar {
  background: var(--primary);
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-right {
  display: flex;
  align-items: center;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-icon {
  background: rgba(255,255,255,0.2);
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.topbar-icon:hover {
  background: rgba(255,255,255,0.4);
  transform: scale(1.05);
}

/* HEADER */
header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(10,102,255,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--primary); }
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all .2s;
}
nav a:hover, nav a.active {
  background: rgba(10,102,255,0.08);
  color: var(--primary);
}
.btn-call-nav {
  background: var(--call);
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-call-nav:hover { background: #e0322a !important; }

/* احجز الآن - highlighted nav link */
nav a.nav-highlight {
  background: #FFB400;
  color: #000 !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  border-radius: 8px;
  animation: pulse-gold 2s infinite;
}
nav a.nav-highlight:hover {
  background: #e6a200;
  color: #000 !important;
}
@keyframes pulse-gold {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,180,0,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(255,180,0,0); }
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .25s;
  font-family: inherit;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(10,102,255,0.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,200,83,0.35);
}
.btn-whatsapp:hover { background: #00a844; transform: translateY(-2px); }
.btn-call {
  background: var(--call);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,59,48,0.35);
}
.btn-call:hover { background: #e0322a; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* HERO */
.hero {
  background: linear-gradient(135deg, #3730c4 0%, #4B3FE4 40%, #5b4fd4 70%, #3a6ed4 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  top: -150px; left: -100px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,200,0,0.08) 0%, transparent 70%);
  bottom: -60px; right: 10%;
  pointer-events: none;
}

/* TWO COLUMN LAYOUT */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* RIGHT: TEXT */
.hero-text { text-align: right; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 14px;
}
.hero-sub {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd54f;
  margin-bottom: 14px !important;
}
.hero-divider {
  width: 60px;
  height: 3px;
  background: #ffd54f;
  border-radius: 2px;
  margin: 0 0 18px auto;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px !important;
  line-height: 1.8;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; margin-bottom: 28px; }
.hero-trust-row {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 10px 16px;
}
.hero-trust-icon { font-size: 1.5rem; }
.hero-trust-item div { display: flex; flex-direction: column; }
.hero-trust-item strong { color: #fff; font-size: 0.9rem; font-weight: 600; }
.hero-trust-item span { color: rgba(255,255,255,0.7); font-size: 0.78rem; }

/* LEFT: CARDS */
.hero-cards { display: flex; flex-direction: column; gap: 14px; }
.hero-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hero-card {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 18px 12px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  color: #fff;
}
.hero-card:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.4);
}
.hero-card-icon { font-size: 2rem; line-height: 1; }
.hero-card strong { font-size: 0.9rem; font-weight: 700; color: #fff; }
.hero-card span { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.hero-cards-cta {
  display: block;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  color: #1a1a2e;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(245,158,11,0.3);
}
.hero-cards-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(245,158,11,0.45); }

/* HERO STATS BAR */
.hero-stats-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 16px 24px;
  margin-top: 20px;
}
.hs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hs-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd54f;
  line-height: 1;
}
.hs-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* HERO RESPONSIVE */
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; gap: 36px; }
  .hero-text { text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-trust-row { justify-content: center; }
  .hero-divider { margin: 0 auto 18px; }
}
@media (max-width: 500px) {
  .hero-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats-bar { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .hs-item { width: 40%; }
}



/* SECTIONS */
section { padding: 70px 0; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  background: rgba(10,102,255,0.12);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* PROBLEM SECTION */
.problem-section { background: var(--dark2); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.problem-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform .3s;
}
.problem-card:hover { transform: translateY(-4px); border-color: rgba(10,102,255,0.3); }
.problem-card:hover::before { transform: scaleX(1); }
.problem-icon { font-size: 2.5rem; margin-bottom: 12px; }
.problem-card h3 { font-size: 1rem; font-weight: 600; color: var(--text); }

/* SERVICES PRO */
.services-pro-section { background: #f8faff; padding: 80px 0; }
.services-pro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(10,102,255,0.07);
  border: 1px solid rgba(10,102,255,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s;
}
.svc-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 48px rgba(10,102,255,0.14);
  border-color: rgba(10,102,255,0.18);
}
.svc-emergency-card { border-color: rgba(220,38,38,0.12); }
.svc-emergency-card:hover { box-shadow: 0 16px 48px rgba(220,38,38,0.12); border-color: rgba(220,38,38,0.25); }

/* CARD HEADER */
.svc-card-header {
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.svc-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  margin-bottom: 12px;
}
.svc-badge {
  position: absolute;
  top: 16px;
  left: 16px; /* Far left in RTL */
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.08);
  color: #374151;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.svc-badge-red {
  background: rgba(220,38,38,0.08);
  color: #dc2626;
  border-color: rgba(220,38,38,0.2);
}

/* CARD BODY */
.svc-card-body {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
  text-align: center;
}
.svc-card-body > p {
  color: #5a6a85;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: center;
}

/* FEATURES LIST */
.svc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.svc-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #374151;
}
.svc-features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.svc-emergency-card .svc-features li::before {
  background: #fee2e2;
  color: #dc2626;
}

/* ACTION BUTTONS */
.svc-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.svc-btn-primary {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 11px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: all .2s;
  text-align: center;
}
.svc-btn-primary:hover { background: #0050CC; transform: translateY(-1px); }
.svc-btn-red { background: #dc2626; }
.svc-btn-red:hover { background: #b91c1c; }
.svc-btn-call {
  display: flex; align-items: center; justify-content: center;
  background: #f4f6fb;
  border: 1.5px solid var(--border);
  color: #1a1a2e;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.svc-btn-call:hover { background: #e8f0fe; border-color: var(--primary); color: var(--primary); }
.svc-call-red:hover { background: #fee2e2; border-color: #dc2626; color: #dc2626; }

@media (max-width: 1000px) { .services-pro-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px)  { .services-pro-grid { grid-template-columns: 1fr; } }



/* SERVICES HERO STYLE */
.services-section-hero {
  background: linear-gradient(135deg, #3730c4 0%, #4B3FE4 40%, #5b4fd4 70%, #3a6ed4 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.services-section-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.section-label-hero {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.services-grid-hero {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card-hero {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 24px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  transition: all .28s;
  position: relative;
  overflow: hidden;
}
.service-card-hero:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.sc-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.sc-hero-icon {
  font-size: 2rem;
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.sc-hero-tag {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.service-card-hero h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.service-card-hero p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.sc-hero-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.sc-hero-features {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}
.sc-hero-arrow {
  font-size: 1rem;
  color: #ffd54f;
  font-weight: 700;
  transition: transform .2s;
}
.service-card-hero:hover .sc-hero-arrow { transform: translateX(-4px); }
.sc-emergency { border-color: rgba(252,100,100,0.3); }
.sc-emergency:hover { border-color: rgba(252,100,100,0.5); }

@media (max-width: 900px) { .services-grid-hero { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .services-grid-hero { grid-template-columns: 1fr; } }



/* BRANDS PRO */
.brands-section { background: var(--dark3); padding: 80px 0; }
.brands-grid-pro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.brand-pro-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.brand-pro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(10,102,255,0.1);
  border-color: rgba(10,102,255,0.25);
}
.bpc-logo {
  height: 100px;
  background: #f8faff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 900;
  border-bottom: 1px solid #f1f5f9;
  letter-spacing: -0.5px;
}
.bpc-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bpc-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  text-align: center;
}
.bpc-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
  text-align: center;
}
.bpc-btn {
  display: inline-block;
  text-align: center;
  background: rgba(10,102,255,0.06);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s;
}
.bpc-btn:hover {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 900px) { .brands-grid-pro { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .brands-grid-pro { grid-template-columns: 1fr; } }

/* PROBLEM PRO */
.problem-pro-section { background: #f8faff; padding: 80px 0; }
.problem-pro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.problem-pro-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 24px;
  border: 1px solid rgba(10,102,255,0.06);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: all .3s;
}
.problem-pro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(10,102,255,0.08);
  border-color: rgba(10,102,255,0.2);
}
.ppc-icon {
  font-size: 2.2rem;
  width: 54px; height: 54px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.problem-pro-card:hover .ppc-icon { background: rgba(10,102,255,0.08); }
.ppc-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.ppc-content ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.ppc-content ul li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: var(--text-muted);
}
.ppc-content ul li::before {
  content: '⚠️';
  font-size: 0.8rem;
}

/* WHY US PRO */
.why-pro-section { background: var(--dark2); padding: 80px 0; }
.why-pro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.why-pro-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.why-pro-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary);
  opacity: 0;
  transition: opacity .3s;
}
.why-pro-card:hover {
  transform: translateY(-8px);
  border-color: rgba(10,102,255,0.3);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.why-pro-card:hover::before { opacity: 1; }
.wpc-icon-wrap {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  background: rgba(10,102,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.why-pro-card:hover .wpc-icon-wrap {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}
.wpc-icon { font-size: 2.2rem; line-height: 1; }
.why-pro-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.why-pro-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* REVIEWS PRO */
.reviews-pro-section { background: var(--dark2); padding: 80px 0; }
.reviews-grid-pro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.review-pro-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid rgba(10,102,255,0.06);
  transition: all .3s;
}
.review-pro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(10,102,255,0.12);
  border-color: rgba(10,102,255,0.15);
}
.rpc-quote-icon {
  position: absolute;
  top: 15px;
  left: 20px; /* far left in RTL */
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(10,102,255,0.08);
  line-height: 1;
}
.rpc-rating {
  color: #FFB400;
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.rpc-text {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.rpc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}
.rpc-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rpc-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.rpc-user-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.rpc-verified {
  font-size: 0.75rem;
  color: var(--whatsapp);
  font-weight: 600;
}
.rpc-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* SEO CONTENT PRO */
.seo-pro-section { background: var(--dark3); padding: 80px 0; }
.seo-pro-header { max-width: 800px; margin: 0 auto 50px; text-align: center; }
.seo-pro-header h2 { font-size: 2.2rem; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.seo-pro-header p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; }
.seo-pro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.seo-pro-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  gap: 20px;
  transition: all .3s;
}
.seo-pro-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10,102,255,0.3);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.seo-icon {
  font-size: 2.5rem;
  width: 60px; height: 60px;
  border-radius: 12px;
  background: rgba(10,102,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.seo-text h3 { font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.seo-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

@media (max-width: 900px) { .seo-pro-grid { grid-template-columns: 1fr; } }

/* FAQ PRO */
.faq-section { background: #f8faff; padding: 80px 0; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(10,102,255,0.03);
  transition: all .3s;
}
.faq-item:hover { border-color: rgba(10,102,255,0.2); }
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 24px;
  text-align: right;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s;
}
.faq-question.open { color: var(--primary); }
.faq-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
  transition: all .3s;
  flex-shrink: 0;
}
.faq-question.open .faq-arrow {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  background: transparent;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq-answer.open { max-height: 300px; padding: 0 24px 24px; }

/* CONTACT PRO */
.contact-section { background: #fff; padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.contact-info h2 { font-size: 2.2rem; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #f8faff;
  border: 1px solid rgba(10,102,255,0.06);
  border-radius: 16px;
  padding: 20px 24px;
  transition: all .3s;
}
.contact-item:hover { border-color: rgba(10,102,255,0.2); transform: translateX(-5px); box-shadow: 0 8px 24px rgba(10,102,255,0.06); }
.contact-item-icon { 
  font-size: 1.6rem; 
  width: 50px; height: 50px; 
  background: #fff; 
  border-radius: 12px; 
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.contact-item-text { display: flex; flex-direction: column; }
.contact-item-label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2px; }
.contact-item-value { font-weight: 700; color: var(--text); font-size: 1.05rem; }

.contact-form { 
  background: #fff; 
  border: 1px solid rgba(10,102,255,0.1); 
  border-radius: 20px; 
  padding: 40px; 
  box-shadow: 0 20px 40px rgba(10,102,255,0.08);
}
.contact-form h3 { font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: #f8faff;
  border: 1px solid rgba(10,102,255,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: all .3s;
  outline: none;
  direction: rtl;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { 
  border-color: var(--primary); 
  background: #fff; 
  box-shadow: 0 0 0 4px rgba(10,102,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* CTA PRO BANNER */
.cta-pro-banner {
  background: var(--dark3);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-pro-banner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(10,102,255,0.05) 0%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-pro-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.cta-pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 200, 83, 0.1);
  color: var(--whatsapp);
  border: 1px solid rgba(0, 200, 83, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.pulse-dot {
  width: 10px; height: 10px;
  background: var(--whatsapp);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7);
  animation: pulse-green 1.5s infinite;
}
@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 200, 83, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 200, 83, 0); }
}
.cta-pro-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--text); margin-bottom: 16px; }
.cta-pro-banner p { color: var(--text-muted); font-size: 1.15rem; line-height: 1.8; margin-bottom: 35px; }
.cta-pro-banner p strong { color: var(--primary); }

.cta-pro-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cta-btn-call, .cta-btn-wa {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all .3s;
  min-width: 260px;
  text-align: right;
}
.cta-btn-call {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 25px rgba(10,102,255,0.3);
}
.cta-btn-call:hover { background: #0050CC; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(10,102,255,0.4); }
.cta-btn-wa {
  background: var(--dark2);
  color: var(--text);
  border: 1px solid var(--border);
}
.cta-btn-wa:hover { border-color: var(--whatsapp); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0, 200, 83, 0.1); }

.cta-icon { font-size: 2rem; line-height: 1; }
.cta-text { display: flex; flex-direction: column; }
.cta-btn-call .cta-text span { font-size: 0.85rem; opacity: 0.9; }
.cta-btn-call .cta-text strong { font-size: 1.3rem; font-weight: 700; letter-spacing: 1px; }
.cta-btn-wa .cta-text span { font-size: 0.85rem; color: var(--text-muted); }
.cta-btn-wa .cta-text strong { font-size: 1.1rem; font-weight: 700; color: var(--whatsapp); }

/* STATS */
.stats-section { background: var(--dark2); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--primary); line-height: 1; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; margin-top: 6px; }

/* FOOTER PRO */
.site-footer {
  background: #0D1117;
  border-top: 4px solid var(--primary);
  padding: 70px 0 20px;
  color: #8B949E;
}
.footer-grid-pro {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}
.logo-pro {
  font-size: 1.4rem; font-weight: 700; color: #fff; display: inline-block; margin-bottom: 16px;
}
.logo-pro span { color: var(--primary); }
.footer-desc { line-height: 1.8; margin-bottom: 24px; font-size: 0.95rem; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: all .3s;
  font-size: 1.1rem;
}
.footer-socials a:hover { background: var(--primary); transform: translateY(-3px); }

.footer-links-pro h4, .footer-contact-pro h4 {
  color: #E6EDF3; font-size: 1.1rem; font-weight: 700; margin-bottom: 20px;
}
.footer-links-pro ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links-pro a { color: #8B949E; transition: color .2s; font-size: 0.95rem; }
.footer-links-pro a:hover { color: var(--primary); }

.contact-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; line-height: 1.5; }
.c-icon { font-size: 1.1rem; }
.contact-list a { color: #8B949E; transition: color .2s; }
.contact-list a:hover { color: var(--primary); }

.footer-bottom-pro {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}
.fb-right a { color: #8B949E; transition: color .2s; margin: 0 5px; }
.fb-right a:hover { color: var(--primary); }

/* STICKY BUTTONS */
.sticky-btns {
  position: fixed;
  bottom: 24px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.sticky-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform .25s;
  animation: pulse-ring 2s infinite;
}
.sticky-btn:hover { transform: scale(1.1); }
.sticky-call { background: var(--call); }
.sticky-wa { background: var(--whatsapp); }
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 4px 30px rgba(255,59,48,0.5); }
}
.sticky-wa { animation-name: pulse-wa; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 4px 30px rgba(0,200,83,0.5); }
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #0A66FF 0%, #0050CC 100%);
  padding: 70px 0 50px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 600px; margin: 0 auto 24px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}
.breadcrumb a { color: #ffd54f; }
.breadcrumb span { color: rgba(255,255,255,0.6); }

/* MOBILE */
@media (max-width: 900px) {
  .footer-grid-pro { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .logo { position: relative; z-index: 1001; font-size: 1.15rem; }
  .hamburger { display: flex; position: relative; z-index: 1001; }
  .hamburger.open span { background: var(--primary); }

  /* Dropdown Menu */
  nav { 
    display: flex; 
    position: absolute; 
    top: 100%; /* Just below the header */
    left: 0; right: 0;
    background: #fff; 
    flex-direction: column; 
    justify-content: flex-start; 
    align-items: stretch; 
    padding: 0; 
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: max-height 0.35s ease;
    border-top: 1px solid transparent;
  }
  nav.open { 
    max-height: 500px; /* Big enough to fit items */
    border-top: 1px solid var(--border);
  }
  
  nav a { 
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem; 
    padding: 14px 20px; 
    color: var(--text); 
    width: 100%; 
    border-bottom: 1px solid #f1f5f9;
  }
  nav a:hover, nav a.active {
    background: rgba(10,102,255,0.04);
    color: var(--primary);
  }
  .nav-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
  }

  /* Bottom CTA in Nav */
  .nav-bottom-cta {
    padding: 16px 20px;
    background: #f8faff;
  }
  .btn-call-nav { 
    width: 100%; 
    justify-content: center; 
    padding: 14px !important;
    font-size: 1.05rem;
  }
  
  .hero { padding: 50px 0 40px; }
  .footer-grid-pro { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-pro { flex-direction: column; text-align: center; gap: 12px; }
  section { padding: 50px 0; }
}
@media (max-width: 480px) {
  .topbar-inner { 
    flex-direction: row; 
    justify-content: space-between; 
    align-items: center;
  }
  .topbar-right span {
    font-size: 0.75rem; /* Make text smaller so it fits on one line */
  }
  .topbar-left {
    gap: 8px; /* Slightly reduce gap between icons */
  }
  .hero-cta { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* CONVERSION KILLER STYLES */

/* Premium Pain Section */
.pain-section { padding: 80px 0; background: #f8faff; }
.pain-box {
  background: #fff;
  border-top: 6px solid #ef4444;
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(239,68,68,0.08);
  position: relative;
}
.pain-box h2 { color: #1e293b; margin-bottom: 30px; font-size: 2rem; font-weight: 800; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.pain-item {
  background: #fef2f2;
  padding: 20px;
  border-radius: 16px;
  font-weight: 700;
  color: #991b1b;
  border: 1px solid #fee2e2;
  transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 1.15rem;
}
.pain-item:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(239,68,68,0.15); background: #fee2e2; border-color: #fca5a5; }
.pain-msg { font-size: 1.4rem; font-weight: 800; color: #0A66FF; padding: 20px 30px; background: rgba(10,102,255,0.05); border-radius: 16px; display: inline-block; border: 1px dashed rgba(10,102,255,0.2); }

/* Premium SEO Pro Cards Enhancement */
.seo-pro-card {
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
}
.seo-pro-card:hover {
  transform: translateY(-10px);
  border-color: #0A66FF;
  box-shadow: 0 20px 40px rgba(10,102,255,0.1);
}

/* Review Cards Premium */
.review-card-pro {
  background: #fff; border: 1px solid #f1f5f9; border-radius: 20px; padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  position: relative;
  transition: transform .3s;
}
.review-card-pro:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.06); }
.review-card-pro::before { content: '"'; position: absolute; top: 10px; right: 30px; font-size: 6rem; color: rgba(10,102,255,0.05); font-family: serif; line-height: 1; pointer-events: none; }

/* Urgency Section Premium */
.urgency-section {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  position: relative; overflow: hidden; padding: 70px 0;
}
.urgency-section::after {
  content: ''; position: absolute; top:0; left:0; right:0; bottom:0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0,0,0,0.05) 20px, rgba(0,0,0,0.05) 40px);
}
.urgency-content { position: relative; z-index: 1; text-align: center; color: white; }


/* Solution Section */
.solution-section { padding: 80px 0; background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); color: #fff; position: relative; overflow: hidden; }
.solution-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(10,102,255,0.1) 0%, transparent 60%); pointer-events: none; }
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: center;
  position: relative; z-index: 1;
}
.sol-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 20px;
  border-radius: 16px;
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
}
.sol-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.08); border-color: rgba(10,102,255,0.5); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.sol-icon-wrapper { width: 80px; height: 80px; background: rgba(10,102,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: all .3s; border: 1px solid rgba(10,102,255,0.3); }
.sol-card:hover .sol-icon-wrapper { background: #0A66FF; transform: scale(1.1); border-color: transparent; }
.sol-icon { font-size: 2.2rem; }
.sol-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; color: #f8fafc; }
.sol-desc { font-size: 1rem; color: #94a3b8; line-height: 1.6; }

@keyframes pulse-btn-anim {
  0% { box-shadow: 0 0 0 0 rgba(10,102,255,0.7); }
  70% { box-shadow: 0 0 0 15px rgba(10,102,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(10,102,255,0); }
}
.pulse-btn { animation: pulse-btn-anim 2s infinite; transition: transform .2s; }
.pulse-btn:hover { transform: scale(1.05); }

/* Process Section */
.process-section { padding: 60px 0; background: #f8faff; }
.process-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}
.process-steps .step {
  background: #fff;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  color: #1f2937;
  border: 2px solid transparent;
  transition: all .3s;
  font-size: 1.1rem;
}
.process-steps .step:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }

/* Types Section */
.types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.type-card { background: #fff; padding: 30px 20px; border-radius: 12px; border: 1px solid #e2e8f0; text-align: center; box-shadow: 0 4px 10px rgba(0,0,0,0.03); transition: transform .3s; }
.type-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.type-icon { font-size: 3rem; margin-bottom: 16px; color: var(--primary); }
.type-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }

/* Comparison Section */
.compare-container { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.compare-card { flex: 1; min-width: 280px; padding: 40px; border-radius: 16px; position: relative; overflow: hidden; }
.compare-bad { background: #fef2f2; border: 1px solid #fecaca; }
.compare-bad h3 { color: #dc2626; font-size: 1.5rem; margin-bottom: 20px; font-weight: 800; border-bottom: 2px dashed #fecaca; padding-bottom: 10px; }
.compare-bad ul li::before { content: '❌'; margin-left: 8px; }
.compare-good { background: #f0fdf4; border: 1px solid #bbf7d0; box-shadow: 0 10px 30px rgba(0,200,83,0.1); }
.compare-good h3 { color: #16a34a; font-size: 1.5rem; margin-bottom: 20px; font-weight: 800; border-bottom: 2px dashed #bbf7d0; padding-bottom: 10px; }
.compare-good ul li::before { content: '✅'; margin-left: 8px; }
.compare-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.compare-card ul li { font-size: 1.1rem; font-weight: 600; color: #374151; display: flex; align-items: center; }

/* Pricing Transparency */
.pricing-box { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); color: #fff; padding: 40px; border-radius: 16px; text-align: center; max-width: 800px; margin: 0 auto; box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.pricing-box h2 { font-size: 2rem; color: #FFB400; margin-bottom: 20px; font-weight: 800; }
.pricing-box p { font-size: 1.2rem; margin-bottom: 24px; line-height: 1.8; color: #cbd5e1; }
.pricing-tags { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.p-tag { background: rgba(255,255,255,0.1); padding: 10px 20px; border-radius: 8px; font-weight: 700; font-size: 1.1rem; border: 1px solid rgba(255,255,255,0.2); }

/* Gallery Section Premium */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.gallery-item {
  position: relative; border-radius: 20px; overflow: hidden; height: 240px; background: #1e293b;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.gallery-item:hover {
  transform: translateY(-10px);
  border-color: rgba(10,102,255,0.4);
  box-shadow: 0 20px 40px rgba(10,102,255,0.15);
}
.gallery-item::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.95), transparent); z-index: 1; opacity: 0.8; transition: opacity .4s; }
.gallery-item:hover::before { opacity: 1; background: linear-gradient(to top, rgba(10,102,255,0.8), transparent); }
.gallery-caption { position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2; color: #fff; font-weight: 800; font-size: 1.2rem; text-align: center; transform: translateY(0); transition: transform .4s; }
.gallery-item:hover .gallery-caption { transform: translateY(-5px); color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.gallery-icon { font-size: 5rem; color: rgba(255,255,255,0.05); transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275); z-index: 0; }
.gallery-item:hover .gallery-icon { transform: scale(1.3); color: rgba(255,255,255,0.15); }
