/* ── CSS Variables ─────────────────────────────────────────────────────────── */
:root {
  --orange: #F26522;
  --black:  #0A0A0A;
  --white:  #FFFFFF;
  --surface:    #111111;
  --surface-2:  #181818;
  --border:     rgba(255,255,255,0.07);
  --text-muted: rgba(255,255,255,0.55);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --ai-purple: #7C3AED;
  --ai-purple-light: #9F67FF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── WA FLOAT ─────────────────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex; align-items: center; gap: 10px;
}
.wa-float a {
  width: 54px; height: 54px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float a:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }
.wa-tooltip {
  background: rgba(0,0,0,0.85); color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 6px;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transform: translateX(6px);
  transition: opacity .2s ease, transform .2s ease;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ── NAVBAR ───────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.navbardark { background: rgba(10,10,10,0.92); }
.nav-container {
  width: 100%; max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-menu { display: flex; align-items: center; gap: 28px; flex: 1; justify-content: center; }
.nav-menu a {
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.72);
  transition: color .2s ease; letter-spacing: .01em;
}
.nav-menu a:hover, .nav-menu a.active { color: #fff; }
.logo img { display: block; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; font-weight: 700; font-size: 14px;
  cursor: pointer; transition: opacity .2s ease, transform .15s ease;
  letter-spacing: .01em; border: none;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: #fff; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .2s ease; }
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-menu {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: #0a0a0a; flex-direction: column; gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08); padding: 8px 0;
  }
  .nav-menu.active { display: flex; }
  .nav-menu a { padding: 14px 32px; width: 100%; }
  .nav-cta {  }
}

/* ── PAGE BANNER ──────────────────────────────────────────────────────────── */
.page-banner {
  position: relative; padding: 140px 0 80px;
  text-align: left; overflow: hidden; background: var(--black);
}
.page-banner-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.page-banner-glow {
  position: absolute; top: -80px; left: 30%;
  width: 700px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.page-banner-inner {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
}
.banner-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 20px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%; background: var(--orange);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}
.page-banner h1 {
  font-size: clamp(36px, 6vw, 64px); font-weight: 900;
  line-height: 1.08; color: #fff; letter-spacing: -.02em; margin-bottom: 18px;
  max-width: 700px;
}
.page-banner h1 em { font-style: italic; color: var(--orange); }
.page-banner-sub {
  font-size: 17px; line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 520px; margin: 0 0 40px;
}
.banner-stats { display: flex; justify-content: flex-start; gap: 0; flex-wrap: wrap; }
.banner-stat {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 16px 36px 16px 0; margin-right: 36px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.banner-stat:last-child { border-right: none; margin-right: 0; }
.banner-stat strong { font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -.02em; line-height: 1; margin-bottom: 4px; }
.banner-stat span { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,0.4); }

/* ── ORANGE STRIP ─────────────────────────────────────────────────────────── */
.orange-strip { background: var(--orange); padding: 20px 24px; }
.orange-strip-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.orange-strip-inner p { font-size: 15px; font-weight: 600; color: #fff; line-height: 1.6; }

/* ── SKILLS SECTION ───────────────────────────────────────────────────────── */
.skills-section { padding: 80px 0 80px; background: #ffffff; }
.skills-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.section-title { font-size: clamp(26px, 4vw, 38px); font-weight: 900; color: #0a0a0a; letter-spacing: -.02em; margin-bottom: 10px; }
.section-sub { font-size: 15px; line-height: 1.65; color: rgba(0,0,0,0.5); max-width: 580px; margin-bottom: 56px; }

/* ── SKILLS GRID ──────────────────────────────────────────────────────────── */
.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
@media (max-width: 1024px) { .skills-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .skills-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ── SINGLE SKILL CARD ────────────────────────────────────────────────────── */
.skill-card {
  background: #141414; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px; overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.skill-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124,58,237,0.35);
  box-shadow: 0 20px 56px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.08);
}

/* accent strip */
.skill-card-accent { height: 3px; flex-shrink: 0; }
.skill-card-accent.seo { background: linear-gradient(90deg, #7C3AED, #F26522); }

/* top block */
.skill-card-top { padding: 24px 24px 0; }
.skill-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.skill-icon-name { display: flex; align-items: center; gap: 14px; }
.skill-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.skill-icon.seo { background: rgba(124,58,237,0.12); }
.skill-icon svg { width: 24px; height: 24px; }
.skill-name { font-size: 19px; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 3px; }
.skill-platform { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.38); letter-spacing: .03em; }
.skill-badges { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; flex-shrink: 0; }
.badge-ai {
  background: rgba(124,58,237,0.14); color: var(--ai-purple-light);
  border: 1px solid rgba(124,58,237,0.28);
  font-size: 9px; font-weight: 800; padding: 3px 8px; border-radius: 4px;
  letter-spacing: .07em; text-transform: uppercase; white-space: nowrap;
}
.badge-install {
  background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.09);
  font-size: 9px; font-weight: 800; padding: 3px 8px; border-radius: 4px;
  letter-spacing: .07em; text-transform: uppercase; white-space: nowrap;
}
.skill-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 16px 0; }
.skill-desc { font-size: 13.5px; line-height: 1.68; color: rgba(255,255,255,0.62); margin-bottom: 20px; }

/* body / tag blocks */
.skill-card-body { padding: 0 24px 18px; flex: 1; display: flex; flex-direction: column; gap: 16px; }
.skill-tag-block { display: flex; flex-direction: column; gap: 8px; }
.skill-tag-label { font-size: 9.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.skill-tag-list { display: flex; flex-wrap: wrap; gap: 6px; }
.feat-tag { background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.78); font-size: 11.5px; font-weight: 500; padding: 4px 10px; border-radius: 6px; }
.ind-tag { background: transparent; border: 1px solid rgba(124,58,237,0.25); color: var(--ai-purple-light); font-size: 11.5px; font-weight: 500; padding: 4px 10px; border-radius: 6px; }

/* includes row */
.skill-includes { display: flex; align-items: flex-start; gap: 9px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; padding: 11px 13px; }
.skill-includes svg { flex-shrink: 0; margin-top: 1px; }
.skill-includes-text { font-size: 12px; line-height: 1.55; color: rgba(255,255,255,0.5); }
.skill-includes-text strong { color: rgba(255,255,255,0.72); font-weight: 700; }

/* price row */
.skill-price-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(124,58,237,0.07); border: 1px solid rgba(124,58,237,0.14);
  border-radius: 8px; padding: 11px 14px;
}
.skill-price-label { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.skill-price-amount { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: -.01em; }
.skill-price-amount span { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.4); margin-left: 4px; }

/* card CTA button */
.skill-card-footer { padding: 0 24px 24px; }
.skill-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 7px; width: 100%; padding: 13px 20px;
  background: var(--orange); color: #fff;
  font-weight: 700; font-size: 13px; font-family: inherit;
  border: none; border-radius: 9px; cursor: pointer;
  transition: opacity .2s ease, transform .15s ease;
  letter-spacing: .02em; text-decoration: none;
}
.skill-btn:hover { opacity: .9; transform: translateY(-1px); }

/* ── HOW IT WORKS STRIP ───────────────────────────────────────────────────── */
.how-strip {
  background: #f6f6f6;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 60px 24px;
}
.how-strip-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.how-strip h3 { font-size: 22px; font-weight: 800; color: #0a0a0a; margin-bottom: 8px; }
.how-strip p { font-size: 14px; color: rgba(0,0,0,0.45); margin-bottom: 48px; line-height: 1.6; }
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 768px) { .how-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 460px) { .how-steps { grid-template-columns: 1fr; } }
.how-step { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.how-step-num {
  width: 40px; height: 40px;
  background: rgba(242,101,34,0.10); border: 1px solid rgba(242,101,34,0.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: var(--orange);
}
.how-step-title { font-size: 13px; font-weight: 700; color: #0a0a0a; }
.how-step-desc { font-size: 12px; color: rgba(0,0,0,0.45); line-height: 1.55; text-align: center; }

/* ── DISCLAIMER ───────────────────────────────────────────────────────────── */
.disclaimer { background: #f6f6f6; border-top: 1px solid rgba(0,0,0,0.07); padding: 28px 24px; }
.disclaimer-inner { max-width: 1000px; margin: 0 auto; display: flex; align-items: flex-start; gap: 16px; }
.disclaimer-icon-wrap { font-size: 18px; line-height: 1; flex-shrink: 0; margin-top: 2px; opacity: .55; }
.disclaimer-text { flex: 1; }
.disclaimer-label { display: block; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(0,0,0,0.4); margin-bottom: 8px; }
.disclaimer-text p { font-size: 12.5px; line-height: 1.65; color: rgba(0,0,0,0.4); }
.disclaimer-text p strong { color: rgba(0,0,0,0.6); }

/* ── CTA SECTION ──────────────────────────────────────────────────────────── */
.cta-section { position: relative; padding: 100px 24px; text-align: center; overflow: hidden; background: var(--black); }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 60%, rgba(242,101,34,0.16) 0%, transparent 65%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(28px, 5vw, 46px); font-weight: 900; color: #fff; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 16px; }
.cta-inner h2 em { font-style: italic; color: var(--orange); }
.cta-inner p { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.5); margin-bottom: 36px; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
footer { background: #000; border-top: 1px solid rgba(255,255,255,0.07); padding: 40px 24px; text-align: center; }
.footer-logo { margin-bottom: 12px; }
footer p { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer-social { display: flex; justify-content: center; gap: 12px; }
.social-icon {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.5);
  transition: border-color .2s ease, color .2s ease;
}
.social-icon:hover { border-color: var(--orange); color: var(--orange); }

/* ── COMING SOON PLACEHOLDER CARD ─────────────────────────────────────────── */
.skill-card.coming-soon {
  opacity: 0.45;
  pointer-events: none;
}
.skill-card.coming-soon .skill-card-accent.placeholder {
  background: rgba(255,255,255,0.08);
}
.coming-soon-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 24px; gap: 14px; text-align: center;
}
.coming-soon-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.coming-soon-title { font-size: 15px; font-weight: 800; color: rgba(255,255,255,0.5); }
.coming-soon-sub { font-size: 12px; color: rgba(255,255,255,0.25); line-height: 1.5; }