/* ============================================================
   DMM Agency — Core Styles
   ============================================================ */

:root {
  --bg: #0A0A0A;
  --bg-2: #0F0F0F;
  --card: #141414;
  --card-2: #1A1A1A;
  --accent: #FF6A00;
  --accent-2: #FF8C1A;
  --text: #FFFFFF;
  --text-2: #BDBDBD;
  --border: rgba(255, 106, 0, 0.25);
  --border-soft: rgba(255, 255, 255, 0.08);
  --glow: 0 0 30px rgba(255, 106, 0, 0.35);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1200px;
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { color: var(--text-2); }

a { color: var(--accent-2); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--accent); }

img { max-width: 100%; display: block; }

ul { list-style: none; }

section { padding: 100px 0; position: relative; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(255, 106, 0, 0.06);
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.35);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255, 106, 0, 0.5);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(255, 106, 0, 0.08);
  transform: translateY(-3px);
}
.btn-block { width: 100%; justify-content: center; }

/* ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-anim 0.6s linear;
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
@keyframes ripple-anim { to { transform: scale(2.5); opacity: 0; } }

/* ---------- Page Loader ---------- */
#pageLoader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#pageLoader.hidden { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 54px;
  height: 54px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Scroll Progress ---------- */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 18px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(18px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border-soft);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
}
.nav-logo img { height: 38px; width: auto; border-radius: 8px; }
.nav-logo span { background: linear-gradient(135deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links > li > a {
  color: var(--text-2);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s, background 0.25s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--text); background: rgba(255, 106, 0, 0.08); }
.nav-links .caret { font-size: 0.7rem; opacity: 0.7; }

/* dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: rgba(20, 20, 20, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text-2);
}
.dropdown a:hover { background: rgba(255, 106, 0, 0.08); color: var(--text); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 10px 20px; font-size: 0.88rem; }
.wa-icon-link {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
  transition: transform 0.3s, background 0.3s;
}
.wa-icon-link:hover { transform: scale(1.1); background: rgba(37, 211, 102, 0.2); color: #25D366; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 950;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255, 106, 0, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(255, 140, 26, 0.12), transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 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;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .grad {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { font-size: 1.15rem; max-width: 640px; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* typing cursor */
.typing-cursor::after {
  content: '|';
  color: var(--accent);
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: var(--glow);
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { color: var(--text-2); margin-top: 6px; font-size: 0.95rem; }

/* ---------- Service Cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border);
  box-shadow: var(--glow);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(255, 106, 0, 0.1);
  color: var(--accent);
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-6deg); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; margin-bottom: 18px; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 0.88rem;
  color: var(--accent-2);
}
.service-card .card-link:hover { gap: 10px; color: var(--accent); }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-step {
  text-align: center;
  padding: 28px 18px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  position: relative;
}
.process-step .step-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.process-step h4 { font-size: 1.05rem; margin: 8px 0 6px; }
.process-step p { font-size: 0.85rem; }

/* ---------- Portfolio ---------- */
.portfolio-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--font-head);
  font-weight: 500; font-size: 0.88rem;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { color: var(--text); border-color: var(--border); }
.filter-btn.active { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; border-color: transparent; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.portfolio-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92), transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { font-size: 1.1rem; }
.portfolio-overlay span { color: var(--accent-2); font-size: 0.82rem; font-family: var(--font-head); font-weight: 500; }

/* ---------- Testimonials ---------- */
.testi-slider { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.6s var(--ease); }
.testi-card {
  min-width: 100%;
  padding: 40px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  text-align: center;
}
.testi-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 3px; }
.testi-card blockquote { font-size: 1.1rem; color: var(--text); line-height: 1.7; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; color: #fff;
}
.testi-name { font-family: var(--font-head); font-weight: 600; }
.testi-role { color: var(--text-2); font-size: 0.85rem; }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.testi-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: none; background: var(--border-soft); cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.testi-dots button.active { background: var(--accent); width: 28px; border-radius: 999px; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  position: relative;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--border); }
.price-card.featured {
  border-color: var(--accent);
  box-shadow: var(--glow);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 0.75rem;
  padding: 5px 16px; border-radius: 999px; letter-spacing: 0.05em;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.price-card .price-desc { font-size: 0.9rem; margin-bottom: 20px; }
.price-amount { font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; color: var(--text); }
.price-amount small { font-size: 0.9rem; color: var(--text-2); font-weight: 400; }
.price-features { margin: 24px 0; flex: 1; }
.price-features li {
  padding: 10px 0;
  color: var(--text-2);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: center; gap: 10px;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--border); box-shadow: var(--glow); }
.blog-thumb { overflow: hidden; aspect-ratio: 16 / 10; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-thumb img { transform: scale(1.08); }
.blog-body { padding: 24px; }
.blog-meta { font-size: 0.8rem; color: var(--text-2); margin-bottom: 10px; display: flex; gap: 12px; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-card p { font-size: 0.9rem; margin-bottom: 16px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .faq-icon { color: var(--accent); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a-inner { padding: 0 24px 20px; color: var(--text-2); font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s;
}
.contact-item:hover { border-color: var(--border); }
.contact-item .ci-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; background: rgba(255,106,0,0.1); color: var(--accent);
}
.contact-item h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-item p { font-size: 0.92rem; }
.contact-form {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-head); font-weight: 500; font-size: 0.88rem; margin-bottom: 8px; }
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border-soft);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 { font-size: 1rem; margin-bottom: 18px; }
.footer-col p { font-size: 0.92rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-2); font-size: 0.92rem; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 40px; border-radius: 8px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  color: var(--text-2);
  transition: all 0.3s var(--ease);
}
.footer-social a:hover { color: #fff; border-color: var(--accent); background: rgba(255,106,0,0.1); transform: translateY(-3px); }
.newsletter-form { display: flex; gap: 10px; margin-top: 14px; }
.newsletter-form input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  color: var(--text);
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.newsletter-form input:focus { outline: none; border-color: var(--accent); }
.newsletter-form button {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none; border-radius: 50%; width: 46px; height: 46px;
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.88rem; color: var(--text-2);
}
.footer-bottom a { color: var(--text-2); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  z-index: 800;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.5s infinite;
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.1); color: #fff; }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Sticky CTA Bar ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  display: none;
  align-items: center; justify-content: center; gap: 16px;
  z-index: 700;
  flex-wrap: wrap;
}
.sticky-cta.show { display: flex; }
.sticky-cta p { font-size: 0.9rem; margin: 0; }
.sticky-cta .btn { padding: 10px 22px; font-size: 0.85rem; }

/* ---------- Back to top ---------- */
.back-top {
  position: fixed;
  bottom: 96px; right: 24px;
  width: 46px; height: 46px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  cursor: pointer;
  z-index: 800;
  opacity: 0; visibility: hidden;
  transition: all 0.3s var(--ease);
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }

/* ---------- Cookie Consent ---------- */
.cookie-bar {
  position: fixed;
  bottom: 20px; left: 20px;
  max-width: 380px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 20px;
  z-index: 850;
  box-shadow: var(--shadow);
  transform: translateY(120%);
  transition: transform 0.5s var(--ease);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar p { font-size: 0.85rem; margin-bottom: 14px; }
.cookie-bar .cookie-actions { display: flex; gap: 10px; }
.cookie-bar .btn { padding: 8px 18px; font-size: 0.82rem; }

/* ---------- Page Banner (inner pages) ---------- */
.page-banner {
  padding: 160px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner .hero-bg { z-index: 0; }
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { margin-bottom: 14px; }
.page-banner p { max-width: 620px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 18px; font-size: 0.85rem; color: var(--text-2);
}
.breadcrumb a { color: var(--text-2); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* ---------- Content prose (privacy/terms/blog) ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin: 36px 0 14px; font-size: 1.5rem; }
.prose h3 { margin: 28px 0 10px; font-size: 1.2rem; }
.prose p { margin-bottom: 16px; line-height: 1.8; }
.prose ul { margin: 0 0 16px 20px; }
.prose ul li { color: var(--text-2); margin-bottom: 8px; list-style: disc; }

/* ---------- 404 ---------- */
.not-found {
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.not-found .code {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(6rem, 18vw, 12rem);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}

/* ---------- Glass card utility ---------- */
.glass {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-soft);
}

/* ---------- Animated gradient text utility ---------- */
.grad-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- Two col feature ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.feature-list li {
  padding: 12px 0;
  display: flex; gap: 12px; align-items: flex-start;
  border-bottom: 1px solid var(--border-soft);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li .fl-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.feature-list li span { color: var(--text); font-weight: 500; }
.feature-list li p { font-size: 0.9rem; margin-top: 2px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, rgba(255,106,0,0.12), rgba(255,140,26,0.06));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px 40px;
  text-align: center;
  margin-top: 40px;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { max-width: 560px; margin: 0 auto 28px; }
