/* ============================================
   DOMINIK MARKETING — Global Stylesheet
   dominikmarketing.com
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #080d1a;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: 'Inter', sans-serif; cursor: pointer; }
input, select, textarea { font-family: 'Inter', sans-serif; }

/* === CSS VARIABLES === */
:root {
  --blue: #00c6ff;
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --pink: #f472b6;
  --green: #10b981;
  --amber: #f59e0b;
  --red: #ef4444;
  --bg: #080d1a;
  --bg-2: #0d1224;
  --bg-3: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.08);
  --border-blue: rgba(0,198,255,0.25);
  --border-purple: rgba(99,102,241,0.3);
  --text-muted: rgba(255,255,255,0.55);
  --text-faint: rgba(255,255,255,0.35);
  --grad: linear-gradient(135deg, #00c6ff, #8b5cf6);
  --grad-text: linear-gradient(90deg, #00c6ff, #a855f7);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --max-width: 1200px;
}

/* === UTILITY === */
.inner { max-width: var(--max-width); margin: 0 auto; padding: 0 5%; }
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
}
.section-header { margin-bottom: 52px; }

/* === BUTTONS === */
.btn-primary {
  background: var(--grad);
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* === BADGE === */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-light);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,13,26,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(99,102,241,0.15);
  padding: 0 5%;
}
.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px;
  background: var(--grad);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px; color: #fff;
  flex-shrink: 0;
}
.logo-img { height: 36px; width: auto; }
.brand-name {
  font-size: 15px;
  font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar-links { display: flex; gap: 28px; list-style: none; }
.navbar-links a {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}
.navbar-links a:hover, .navbar-links a.active { color: var(--blue); }
.navbar-cta {
  background: var(--grad);
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.navbar-cta:hover { opacity: 0.88; }
.navbar-right { display: flex; align-items: center; gap: 12px; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 16px 5%;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-menu ul li a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  font-weight: 500;
}
.mobile-menu ul li a:hover { color: var(--blue); }
.mobile-menu .mobile-cta {
  display: block;
  margin-top: 16px;
  text-align: center;
  background: var(--grad);
  padding: 13px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

/* === HERO GLOW === */
.hero-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  top: 30%; left: 20%;
  width: 300px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,198,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* === CARDS === */
.card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-color: var(--border-purple); transform: translateY(-4px); }
.card-accent-top {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad);
}

/* === TAGS / PILLS === */
.tag {
  font-size: 11px; padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.09);
}
.tag-blue { background: rgba(0,198,255,0.1); color: var(--blue); border-color: rgba(0,198,255,0.2); }
.tag-purple { background: rgba(139,92,246,0.1); color: var(--purple-light); border-color: rgba(139,92,246,0.2); }
.tag-pink { background: rgba(244,114,182,0.1); color: var(--pink); border-color: rgba(244,114,182,0.2); }
.tag-green { background: rgba(16,185,129,0.1); color: var(--green); border-color: rgba(16,185,129,0.2); }
.tag-amber { background: rgba(245,158,11,0.1); color: var(--amber); border-color: rgba(245,158,11,0.2); }

/* === STAT STRIP === */
.stat-strip {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: fit-content;
}
.stat-item {
  padding: 20px 36px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 30px; font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* === CHECK LIST === */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.55; }
.check-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(0,198,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--blue);
  flex-shrink: 0; margin-top: 1px;
}

/* === FOOTER === */
.footer {
  position: relative;
  background: #04060f;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 52px 5% 24px;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/hero-bg.jpg') center center / cover no-repeat;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}
.footer > * {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto 40px;
}
.footer-brand p {
  font-size: 13px; color: rgba(255,255,255,0.4);
  line-height: 1.7; margin-top: 12px; max-width: 280px;
}
.footer-col-title {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,0.5);
  cursor: pointer; transition: all 0.2s;
}
.social-btn:hover { border-color: var(--blue); color: var(--blue); }

/* === CTA SECTION === */
.cta-section {
  padding: 80px 5%;
  text-align: center;
  background: linear-gradient(135deg, rgba(0,198,255,0.06), rgba(139,92,246,0.09));
  border-top: 1px solid rgba(99,102,241,0.2);
}
.cta-section .section-label { display: flex; justify-content: center; }
.cta-section .section-title { text-align: center; max-width: 560px; margin: 0 auto 16px; }
.cta-section p { text-align: center; font-size: 15px; color: var(--text-muted); max-width: 460px; margin: 0 auto 36px; line-height: 1.75; }

/* === FORM ELEMENTS === */
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-field label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.07em; }
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: rgba(0,198,255,0.4); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-field select option { background: #0d1224; color: #fff; }
.form-field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stat-strip { flex-wrap: wrap; width: 100%; }
  .stat-item { flex: 1; min-width: 120px; border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .btn-group { flex-direction: column; }
  .btn-group .btn-primary, .btn-group .btn-outline { text-align: center; }
}
