:root {
  --bg: #0a0a0f;
  --surface: #111118;
  --card: #16161f;
  --border: #1e1e2e;
  --accent: #00e5a0;
  --accent2: #0088ff;
  --accent3: #ff6b35;
  --text: #e8e8f0;
  --muted: #6b6b8a;
  --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}
a { color: var(--accent); text-decoration: none; }
img { max-width: 100%; height: auto; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 6vw;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items:center; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nav-cta {
  background: var(--accent);
  color: var(--bg) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
  text-decoration: none;
  font-size: 0.875rem;
}
.nav-cta:hover { opacity: 0.85; }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 6vw 4rem;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,160,0.12) 0%, transparent 70%);
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,136,255,0.08) 0%, transparent 70%);
  top: 20%; right: 5%;
  pointer-events: none;
}
.hero-content {
  max-width: 850px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease both;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,229,160,0.08);
  border: 1px solid rgba(0,229,160,0.2);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
h1, h2, h3 {
  font-family: 'Syne', sans-serif;
  color: var(--white);
}
h1 {
  font-size: clamp(1.9rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
h1 .highlight, .highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  text-align: center;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 30px rgba(0,229,160,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 45px rgba(0,229,160,0.45); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.stat-val {
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-val span { color: var(--accent); }
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}
section { padding: 6rem 6vw; position: relative; z-index: 1; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--accent);
}
h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 3.5rem;
  font-size: 1.05rem;
}
.services-section { background: var(--surface); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: var(--card);
  padding: 2rem;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(0,229,160,0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { background: #1a1a26; }
.service-card:hover::after { opacity: 1; }
.service-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  position:relative;
  z-index:1;
}
.service-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; position:relative; z-index:1; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; position:relative; z-index:1; }
.tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  background: rgba(0,229,160,0.06);
  border: 1px solid rgba(0,229,160,0.15);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.about-section { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.skill-bar-wrap { margin-bottom: 1.25rem; }
.skill-bar-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
}
.skill-bar-name { color: var(--text); font-weight: 500; }
.skill-bar-pct { color: var(--accent); font-weight: 700; font-family: 'Syne', sans-serif; }
.skill-bar-track {
  height: 4px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.skill-bar-fill {
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 100px;
}
.seo-section { background: var(--surface); border-top: 1px solid var(--border); }
.seo-grid, .why-grid, .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.seo-card, .why-card, .post-card, .faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
}
.seo-card { text-align: center; transition: transform 0.25s, border-color 0.25s; }
.seo-card:hover { transform: translateY(-4px); border-color: rgba(0,229,160,0.3); }
.seo-score {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.seo-score.green { color: var(--accent); }
.seo-score.blue { color: var(--accent2); }
.seo-score.orange { color: var(--accent3); }
.seo-label, .post-meta { font-size: 0.85rem; color: var(--muted); }

.invoicy-section {
  background: linear-gradient(135deg, #0d0d18 0%, #0a1220 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.invoicy-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.invoicy-mock {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.mock-bar {
  background: var(--surface);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-body { padding: 1.5rem; }
.mock-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.mock-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
}
.mock-invoice-no { font-size: 0.75rem; color: var(--muted); text-align: right; }
.mock-invoice-no strong { display: block; font-size: 1rem; color: var(--white); }
.mock-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; margin-bottom: 1rem; }
.mock-table th {
  text-align: left;
  color: var(--muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.mock-table td { padding: 0.5rem 0; color: var(--text); border-bottom: 1px solid rgba(255,255,255,0.03); }
.mock-table td:last-child { text-align: right; color: var(--accent); font-weight: 600; }
.mock-total { display: flex; justify-content: flex-end; gap: 1rem; font-size: 0.85rem; padding-top: 0.5rem; }
.mock-total-label { color: var(--muted); }
.mock-total-val { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--accent); }
.invoicy-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0,136,255,0.1);
  border: 1px solid rgba(0,136,255,0.25);
  color: var(--accent2);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-section { background: var(--surface); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 1rem; }
.contact-info p { color: var(--muted); margin-bottom: 2rem; line-height: 1.75; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.contact-method:hover { border-color: var(--accent); background: rgba(0,229,160,0.04); }
.contact-method-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-method-info small {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.1rem;
}
.contact-method-info strong { font-size: 0.95rem; font-weight: 500; }
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
}
.form-title { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.form-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
label { font-size: 0.78rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
input, select, textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,229,160,0.1); }
select option { background: var(--surface); }
textarea { resize: vertical; min-height: 120px; }
.form-submit {
  margin-top: 1.5rem;
  width: 100%;
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 0 30px rgba(0,229,160,0.25);
  letter-spacing: 0.02em;
}
.form-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.form-note { text-align: center; font-size: 0.75rem; color: var(--muted); margin-top: 1rem; }
.site-footer {
  padding: 2rem 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.site-footer .logo { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--white); }
.site-footer .logo span { color: var(--accent); }
.site-footer p { font-size: 0.8rem; color: var(--muted); }
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  text-decoration: none;
  z-index: 200;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: popIn 0.5s 1s ease both;
  color:#fff;
  font-size:30px;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.55); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.page-wrap, .blog-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 130px 20px 70px;
}
.page-content, .single-content {
  background: transparent;
}
.page-content p, .single-content p, .page-content li, .single-content li {
  color: #c7c7d6;
  font-size: 17px;
}
.single-content h1, .page-content h1 { margin-bottom: 20px; }
.single-content h2, .page-content h2 { margin-top: 45px; }
.breadcrumb { font-size: 14px; color: var(--muted); margin-bottom: 30px; }
.post-card h3 { margin-bottom: 0.6rem; }
.post-card p { color: var(--muted); font-size: 0.95rem; }
.post-card .read-more { display:inline-block; margin-top:1rem; font-weight:700; }
.wp-block-button__link { background: var(--accent); color: var(--bg); border-radius: 100px; font-weight:700; }

@media (max-width: 768px) {
  .about-section { grid-template-columns: 1fr; gap: 3rem; }
  .why-grid, .faq-grid, .posts-grid, .seo-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .invoicy-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; letter-spacing: 0; line-height: 1.2; }
  h2 { font-size: 1.35rem; letter-spacing: 0; line-height: 1.3; }
  .hero { padding: 6rem 5vw 3rem; }
  .hero-stats { gap: 1.5rem; margin-top: 2.5rem; }
  .stat-val { font-size: 1.6rem; }
  section { padding: 4rem 5vw; }
  .contact-form { padding: 1.75rem; }
  .nav-cta { padding: 0.4rem 0.9rem; font-size: 0.75rem !important; }
}


.nav-links li { position: relative; }
.nav-links .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 0.75rem;
  list-style: none;
  background: rgba(10,10,15,0.96);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.nav-links li:hover > .sub-menu { display: block; }
.nav-links .sub-menu li { margin: 0; }
.nav-links .sub-menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  white-space: nowrap;
}
.nav-links .sub-menu a:hover {
  background: rgba(0,229,160,0.08);
  color: var(--accent);
}

