/* =============================================
   GO DIGITAL SOLUTION — Premium Agency CSS
   godigitalsolution.com
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ---- RESET & BASE ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0A0A0F;
  --bg2: #111118;
  --bg3: #16161F;
  --card: #13131C;
  --accent: #00E5A0;
  --accent2: #7C5CFC;
  --accent2-light: rgba(124,92,252,0.15);
  --white: #F8F8FC;
  --muted: #8888A4;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.14);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 18px;
  --transition: all 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-body); }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; }
h1 { font-size: clamp(40px, 5.5vw, 70px); }
h2 { font-size: clamp(30px, 4vw, 50px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); letter-spacing: -0.5px; }
h4 { font-size: 18px; letter-spacing: -0.3px; }
p { color: var(--muted); line-height: 1.75; }

.accent-text { color: var(--accent); }
.accent2-text { background: linear-gradient(135deg, var(--accent2), #A78BFA); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }

/* ---- SECTION LABELS ---- */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 16px auto 0; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 520px; line-height: 1.75; margin-top: 14px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  padding: 13px 26px; border-radius: 8px; cursor: pointer;
  transition: var(--transition); letter-spacing: 0.3px;
}
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-secondary { border: 1px solid rgba(255,255,255,0.15); color: var(--white); background: transparent; }
.btn-secondary:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); }
.btn-large { padding: 15px 32px; font-size: 15px; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1ebe5c; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 70px; display: flex; align-items: center;
  padding: 0 5%;
  background: rgba(10,10,15,0.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.35s ease;
}
.navbar.scrolled {
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1200px; margin: 0 auto;
}
.logo {
  font-family: var(--font-head); font-size: 20px; font-weight: 800;
  letter-spacing: -0.5px; color: var(--white);
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex; align-items: center; gap: 34px; font-size: 14px; color: var(--muted);
}
.nav-links a { transition: color 0.2s; position: relative; }
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav-cta {
  background: var(--accent); color: #000;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  padding: 9px 20px; border-radius: 7px; letter-spacing: 0.3px;
  transition: var(--transition);
}
.nav-cta:hover { opacity: 0.88; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; cursor: pointer; z-index: 1001;
}
.hamburger span {
  height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition);
}
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--bg2); padding: 100px 5% 40px;
  flex-direction: column; gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 22px; font-family: var(--font-head); font-weight: 700; color: var(--white); padding: 10px 0; border-bottom: 1px solid var(--border); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-blob-1 {
  top: -150px; right: -150px; width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(124,92,252,0.18) 0%, transparent 70%);
}
.hero-blob-2 {
  bottom: -100px; left: -100px; width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(0,229,160,0.12) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; }
.hero-inner { max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,229,160,0.08); border: 1px solid rgba(0,229,160,0.2);
  color: var(--accent); font-size: 12px; font-weight: 500;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 30px; letter-spacing: 0.5px;
}
.hero-badge-dot {
  width: 7px; height: 7px; background: var(--accent); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 500px; margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
.stat-num { font-family: var(--font-head); font-size: 34px; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 5px; letter-spacing: 0.5px; }

/* ---- CARDS ---- */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: var(--transition);
}
.card:hover { border-color: var(--border-hover); transform: translateY(-3px); }

/* ---- SERVICES ---- */
.services-bg { background: var(--bg2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 26px;
  position: relative; overflow: hidden; transition: var(--transition); cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,229,160,0.05), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { border-color: rgba(0,229,160,0.2); transform: translateY(-4px); }
.service-icon {
  width: 48px; height: 48px; background: rgba(0,229,160,0.1);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 20px;
}
.service-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; letter-spacing: -0.3px; }
.service-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }
.service-arrow { position: absolute; top: 26px; right: 26px; color: var(--muted); font-size: 18px; transition: var(--transition); }
.service-card:hover .service-arrow { color: var(--accent); transform: translate(3px, -3px); }

/* ---- WHY CHOOSE US ---- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 40px; }
.why-stat {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 20px;
}
.why-stat-num { font-family: var(--font-head); font-size: 38px; font-weight: 800; color: var(--accent); line-height: 1; }
.why-stat-label { font-size: 12px; color: var(--muted); margin-top: 6px; }
.why-features { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; display: flex; flex-direction: column; gap: 24px; }
.why-feature { display: flex; gap: 18px; align-items: flex-start; }
.why-feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.why-feature-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; letter-spacing: -0.2px; }
.why-feature-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ---- PROCESS ---- */
.process-bg { background: var(--bg2); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-step {
  padding: 36px 28px; border-right: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step-num {
  font-family: var(--font-head); font-size: 48px; font-weight: 800;
  color: rgba(0,229,160,0.12); line-height: 1; margin-bottom: 20px;
}
.process-step-icon { font-size: 28px; margin-bottom: 16px; }
.process-step-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.process-step-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ---- PORTFOLIO ---- */
.portfolio-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn {
  background: transparent; border: 1px solid var(--border); color: var(--muted);
  font-size: 12px; font-weight: 500; padding: 8px 18px; border-radius: 100px;
  cursor: pointer; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--accent); border-color: var(--accent); color: #000; font-weight: 600; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.portfolio-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.portfolio-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.12); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.portfolio-img {
  width: 100%; height: 150px; object-fit: cover;
  background: var(--bg3); display: flex; align-items: center;
  justify-content: center; color: var(--muted); font-size: 12px;
  letter-spacing: 1px; border-bottom: 1px solid var(--border);
}
.portfolio-info { padding: 18px; }
.portfolio-cat { font-size: 10px; color: var(--accent); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 7px; }
.portfolio-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 7px; letter-spacing: -0.2px; }
.portfolio-desc { font-size: 12px; color: var(--muted); margin-bottom: 12px; line-height: 1.6; }
.portfolio-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.tag {
  font-size: 10px; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--muted); padding: 3px 9px; border-radius: 4px;
}
.portfolio-actions { display: flex; gap: 8px; }
.port-btn { font-size: 11px; font-weight: 600; padding: 7px 14px; border-radius: 6px; cursor: pointer; transition: var(--transition); font-family: var(--font-head); }
.port-btn.live { background: var(--accent); color: #000; }
.port-btn.live:hover { opacity: 0.85; }
.port-btn.case { background: transparent; border: 1px solid var(--border); color: var(--muted); }
.port-btn.case:hover { border-color: rgba(255,255,255,0.2); color: var(--white); }

/* ---- TESTIMONIALS ---- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.testi-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--accent); font-size: 15px; }
.testi-text { font-size: 15px; color: #ccc; line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent2), #A78BFA);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 14px; font-weight: 700; color: #fff;
}
.testi-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--white); }
.testi-role { font-size: 12px; color: var(--muted); }

/* ---- FAQ ---- */
.faq-bg { background: var(--bg2); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border); padding: 24px 0;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: var(--font-head); font-size: 16px;
  font-weight: 700; color: var(--white); gap: 20px;
}
.faq-icon { color: var(--accent); font-size: 22px; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding-top: 14px; font-size: 14px; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, rgba(124,92,252,0.15), rgba(0,229,160,0.1));
  border: 1px solid rgba(255,255,255,0.07); border-radius: 24px;
  padding: 80px 60px; text-align: center; position: relative; overflow: hidden;
  margin: 0 auto;
}
.cta-banner h2 { margin-bottom: 18px; }
.cta-banner p { font-size: 18px; color: var(--muted); margin-bottom: 40px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- CONTACT FORM ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: start; }
.contact-info h3 { font-size: 24px; color: var(--white); margin-bottom: 14px; }
.contact-info > p { font-size: 15px; margin-bottom: 36px; }
.contact-detail { display: flex; gap: 16px; align-items: center; margin-bottom: 18px; }
.contact-icon {
  width: 44px; height: 44px; background: rgba(0,229,160,0.1);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 20px; color: var(--accent); flex-shrink: 0;
}
.contact-detail-label { font-size: 11px; color: var(--muted); letter-spacing: 0.5px; }
.contact-detail-val { font-size: 14px; color: var(--white); font-weight: 500; }
.form-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.8px;
  color: var(--muted); text-transform: uppercase; margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--bg3); border: 1px solid var(--border);
  color: var(--white); font-family: var(--font-body); font-size: 14px;
  padding: 12px 16px; border-radius: 8px; outline: none; transition: border-color 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(136,136,164,0.5); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(0,229,160,0.4);
}
.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238888A4' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-group select option { background: var(--bg3); }
.form-group textarea { resize: none; height: 100px; }
.submit-btn {
  width: 100%; background: var(--accent); color: #000;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 15px; border-radius: 8px; letter-spacing: 0.3px; transition: var(--transition);
}
.submit-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.form-privacy { font-size: 11px; color: var(--muted); text-align: center; margin-top: 14px; }

/* ---- NEWSLETTER ---- */
.newsletter-bg { background: var(--bg2); }
.newsletter-box {
  max-width: 560px; margin: 0 auto; text-align: center;
}
.newsletter-form { display: flex; gap: 10px; margin-top: 28px; }
.newsletter-form input {
  flex: 1; background: var(--card); border: 1px solid var(--border);
  color: var(--white); font-family: var(--font-body); font-size: 14px;
  padding: 13px 18px; border-radius: 8px; outline: none; transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: rgba(0,229,160,0.4); }
.newsletter-form button {
  background: var(--accent); color: #000; font-family: var(--font-head);
  font-weight: 700; font-size: 13px; padding: 13px 22px; border-radius: 8px;
  white-space: nowrap; transition: var(--transition);
}
.newsletter-form button:hover { opacity: 0.88; }

/* ---- BLOG ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--border-hover); }
.blog-img {
  width: 100%; height: 160px; background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 12px; border-bottom: 1px solid var(--border);
}
.blog-info { padding: 20px; }
.blog-cat { font-size: 10px; color: var(--accent); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.blog-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; letter-spacing: -0.3px; line-height: 1.3; }
.blog-excerpt { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted); }
.blog-date { color: var(--muted); }
.blog-read { color: var(--accent); font-weight: 600; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 160px 0 80px; background: var(--bg2); position: relative; overflow: hidden;
}
.page-hero-blob {
  position: absolute; top: -100px; right: -100px; width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,252,0.12) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--muted); }

/* ---- ABOUT PAGE ---- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { text-align: center; }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--accent2), #A78BFA);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 22px; font-weight: 700; color: #fff;
  border: 2px solid rgba(255,255,255,0.08);
}
.team-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--white); }
.team-role { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ---- FOOTER ---- */
.footer { padding: 70px 0 30px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 56px; }
.footer-brand .logo { font-size: 22px; margin-bottom: 16px; display: block; }
.footer-desc { font-size: 13px; color: var(--muted); line-height: 1.75; max-width: 240px; }
.footer-col h4 {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase; margin-bottom: 20px;
}
.footer-col a { display: block; font-size: 13px; color: var(--muted); margin-bottom: 11px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--muted);
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px; border: 1px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; cursor: pointer; transition: var(--transition); color: var(--muted);
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ---- WA FLOAT ---- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 54px; height: 54px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35); cursor: pointer; transition: var(--transition);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.08); }

/* ---- STICKY CTA BAR ---- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: rgba(10,10,15,0.95); backdrop-filter: blur(16px);
  border-top: 1px solid var(--border); padding: 12px 5%;
  display: flex; align-items: center; justify-content: space-between;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text { font-family: var(--font-head); font-size: 15px; font-weight: 700; }
.sticky-cta-text span { color: var(--accent); }

/* ---- UTILITY ---- */
.bg2 { background: var(--bg2); }
.text-center { text-align: center; }
.mt-4 { margin-top: 40px; }
.mt-6 { margin-top: 60px; }
.hidden { display: none; }
.portfolio-card[data-cat] { transition: all 0.3s ease; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-bottom: 1px solid var(--border); border-right: none; }
  .process-step:nth-child(odd) { border-right: 1px solid var(--border); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  h1 { font-size: 38px; letter-spacing: -1px; }
  h2 { font-size: 28px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .cta-banner { padding: 50px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .sticky-cta { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
}
