/* ============================================================
   Felnath Web — style.css  (Mobile-fixed version)
   Bugs fixed:
   1. Removed duplicate .cursor-glow rule (z-index conflict)
   2. Added hamburger menu + mobile nav overlay
   3. Merged duplicate @media (max-width: 768px) blocks
   4. Added 480px breakpoint for small phones
   5. Fixed card padding overflow on mobile
   6. Fixed hero-buttons stacking on mobile
   7. Fixed contact-buttons wrapping on mobile
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: Inter, sans-serif;
  background: rgb(7, 11, 20);
  color: white;
  overflow-x: hidden;
}

/* ── Cursor Glow (single rule — duplicate removed) ──────────── */
.cursor-glow {
  width: 300px;
  height: 300px;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(79, 124, 255, 0.18), transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 9999;
  mix-blend-mode: screen;
}

/* ── Header ─────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 24px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(7, 11, 20, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo img { width: 36px; height: 36px; border-radius: 8px; }

.navbar {
  display: flex;
  gap: 36px;
}

.navbar a {
  color: rgb(203, 210, 233);
  text-decoration: none;
  transition: 0.3s;
}

.navbar a:hover { color: white; }

.nav-btn {
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  color: white;
  background: linear-gradient(90deg, rgb(79, 124, 255), rgb(139, 92, 246));
  font-weight: 600;
  transition: 0.3s;
}

.nav-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── Hamburger Button (hidden on desktop) ───────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.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);
}

/* ── Mobile Nav Overlay (hidden on desktop) ─────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: rgba(7, 11, 20, 0.97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  color: rgb(203, 210, 233);
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  transition: color 0.2s;
}

.mobile-nav a:hover { color: white; }

.mobile-nav-btn {
  margin-top: 10px;
  padding: 16px 36px !important;
  border-radius: 14px;
  background: linear-gradient(90deg, rgb(79, 124, 255), rgb(139, 92, 246)) !important;
  color: white !important;
  font-size: 1.2rem !important;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 8%;
  position: relative;
  gap: 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left top, rgba(79, 124, 255, 0.2), transparent 30%),
    radial-gradient(circle at right bottom, rgba(139, 92, 246, 0.2), transparent 30%);
}

.hero-left { z-index: 2; }

.hero-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(79, 124, 255, 0.4);
  background: rgba(79, 124, 255, 0.1);
  color: rgb(130, 170, 255);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}

.hero-left h1 {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.02;
  margin-bottom: 28px;
}

.hero-left p {
  color: rgb(182, 189, 210);
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 38px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.primary-btn {
  padding: 18px 32px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgb(79, 124, 255), rgb(139, 92, 246));
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.primary-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(79, 124, 255, 0.35); }

.secondary-btn {
  padding: 18px 32px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.05);
}

.secondary-btn:hover { border-color: rgba(255, 255, 255, 0.4); transform: translateY(-3px); }

.stats { display: flex; gap: 20px; }

.stat-card {
  padding: 20px 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card h3 { font-size: 1.8rem; font-weight: 900; }
.stat-card span { color: rgb(182, 189, 210); font-size: 0.85rem; }

/* ── Glass Card (hero right decoration) ─────────────────────── */
.hero-right { z-index: 2; }

.glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  backdrop-filter: blur(20px);
  padding: 24px;
}

.card-header { display: flex; gap: 8px; margin-bottom: 24px; }
.card-header span { width: 14px; height: 14px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); }

.top { display: flex; gap: 20px; margin-bottom: 20px; }
.box { flex: 1; height: 120px; border-radius: 20px; background: rgba(255, 255, 255, 0.05); }
.glow { background: linear-gradient(135deg, rgb(79, 124, 255), rgb(139, 92, 246)); }
.chart { height: 180px; border-radius: 20px; margin-bottom: 20px; background: linear-gradient(135deg, rgb(79, 124, 255), rgb(139, 92, 246)); }
.bottom { display: flex; gap: 16px; }
.mini { flex: 1; height: 90px; border-radius: 18px; background: rgba(255, 255, 255, 0.05); }

/* ── Section shared ──────────────────────────────────────────── */
.section-title { margin-bottom: 70px; }
.section-title span { color: rgb(79, 124, 255); letter-spacing: 0.15em; font-size: 0.8rem; font-weight: 700; }
.section-title h2 { font-size: 4rem; font-weight: 900; margin-top: 20px; line-height: 1.05; }

.live-btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgb(79, 124, 255), rgb(139, 92, 246));
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}
.live-btn:hover { transform: scale(1.05); box-shadow: 0 15px 35px rgba(79, 124, 255, 0.4); }

/* ── Projects ────────────────────────────────────────────────── */
.projects { padding: 140px 8%; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.project-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s;
}

.project-card:hover { transform: translateY(-12px); }

.project-image { position: relative; height: 300px; overflow: hidden; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: 1s; }
.project-card:hover img { transform: scale(1.08); }

.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.4s;
}
.project-card:hover .overlay { opacity: 1; }

/* BUG FIX: was .overlay a (class="live Preview" broken) — now .live-preview */
.live-preview {
  padding: 14px 22px;
  border-radius: 12px;
  background: white;
  color: black;
  text-decoration: none;
  font-weight: 700;
}

/* ── Project Placeholder (cards without a screenshot image) ── */
.project-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1s;
}

.project-card:hover .project-placeholder { transform: scale(1.08); }

.placeholder-label {
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  pointer-events: none;
}

.placeholder-label span {
  font-size: 3rem;
  display: block;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
}

.placeholder-label p {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.clothing-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 45%, #f093fb 100%);
}

.kn-gradient {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 55%, #24243e 100%);
}

.lumiere-gradient {
  background: linear-gradient(135deg, #b8860b 0%, #d4a017 40%, #f5e6c8 75%, #c9a227 100%);
}

.project-content { padding: 30px; }
.project-type { color: rgb(79, 124, 255); font-size: 0.8rem; letter-spacing: 0.1em; font-weight: 700; }
.project-content h3 { margin: 16px 0; font-size: 1.6rem; font-weight: 800; }
.project-content p { color: rgb(182, 189, 210); line-height: 1.7; }

/* ── Services ────────────────────────────────────────────────── */
.services { padding: 140px 8%; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  padding: 44px 36px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  transition: 0.4s;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(79, 124, 255, 0.3);
  transform: translateY(-8px);
}

.service-card h3 { font-size: 1.5rem; margin-bottom: 18px; font-weight: 800; }
.service-card p { color: rgb(182, 189, 210); line-height: 1.75; }

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing { padding: 140px 8%; position: relative; overflow: hidden; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 70px;
}

.price-card {
  position: relative;
  padding: 50px 40px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: 0.4s;
}

.price-card:hover { transform: translateY(-8px); border-color: rgba(79, 124, 255, 0.35); transform: scale(1.03); }

.price-card.featured::before {
  display: none;
}

.price-card h3 { font-size: 1.5rem; margin-bottom: 24px; font-weight: 800; }
.price-card h1 {
  font-size: 4rem;
  margin-bottom: 24px;
  background: linear-gradient(90deg, rgb(79, 124, 255), rgb(139, 92, 246)) text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.price-card p { color: rgb(182, 189, 210); line-height: 1.8; margin-bottom: 35px; }

/* ── About / Why section ─────────────────────────────────────── */
.about { padding: 140px 8%; }

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.about-card,
.skills-card {
  position: relative;
  padding: 50px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.about-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(79, 124, 255, 0.25), transparent 70%);
  top: -100px;
  right: -100px;
  filter: blur(20px);
}

.about-card h3,
.skills-card h3 { font-size: 2rem; margin-bottom: 24px; font-weight: 800; }

.about-card p { color: rgb(198, 204, 224); line-height: 1.9; margin-bottom: 20px; }

.about-card:hover, .skills-card:hover {
  border-color: rgba(79, 124, 255, 0.3);
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(79, 124, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.feature-item p { color: rgb(182, 189, 210); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact { padding: 140px 8%; }

.contact-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  text-align: center;
}

.contact-box span {
  color: rgb(79, 124, 255);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-box h2 {
  font-size: 4rem;
  font-weight: 900;
  margin: 20px 0 20px;
  line-height: 1.1;
}

.contact-box > p {
  color: rgb(182, 189, 210);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 40px;
}

.contact-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.contact-btn {
  padding: 14px 26px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.contact-btn:hover { border-color: rgba(79, 124, 255, 0.5); transform: translateY(-2px); }

.primary-contact {
  background: linear-gradient(90deg, rgb(79, 124, 255), rgb(139, 92, 246));
  border: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.input-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  outline: none;
  font-size: 1rem;
  font-family: Inter, sans-serif;
  transition: 0.3s;
}

.contact-form textarea { min-height: 180px; resize: none; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgb(174, 182, 208); }

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgb(79, 124, 255);
  box-shadow: 0 0 0 4px rgba(79, 124, 255, 0.12);
}

.contact-form button {
  padding: 18px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(90deg, rgb(79, 124, 255), rgb(139, 92, 246));
  color: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  font-family: Inter, sans-serif;
}

.contact-form button:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(79, 124, 255, 0.35); }

/* ── Reveal animation ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(60px); transition: opacity 1s ease, transform 1s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ── Floating blobs ──────────────────────────────────────────── */
.floating { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.one { width: 260px; height: 260px; background: rgba(79, 124, 255, 0.18); top: -50px; left: -80px; }
.two { width: 220px; height: 220px; background: rgba(139, 92, 246, 0.18); bottom: 0; right: 10%; }
.three { width: 180px; height: 180px; background: rgba(255, 255, 255, 0.05); top: 30%; right: 40%; }

/* ═══════════════════════════════════════════════════════════════
   DIGITAL MARKETING PROMO SECTION (index.html)
═══════════════════════════════════════════════════════════════ */
.dm-promo {
  padding: 90px 8%;
  background: #070b14;
  position: relative;
  overflow: hidden;
}

/* animated background orbs */
.dm-promo::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.13), transparent 70%);
  pointer-events: none;
}
.dm-promo::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,72,153,0.1), transparent 70%);
  pointer-events: none;
}

.dm-promo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Left: text ─────────────────────────────────────────────── */
.dm-promo-left .dm-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a5b4fc;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.25);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.dm-promo-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #f1f5f9;
  margin-bottom: 18px;
}

.dm-promo-left h2 .dm-grad {
  background: linear-gradient(135deg, #a5b4fc 0%, #818cf8 40%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dm-promo-left p {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

/* service mini tags */
.dm-mini-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.dm-mini-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 7px 13px;
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.dm-mini-tag:hover {
  background: rgba(99,102,241,0.12);
  border-color: rgba(99,102,241,0.35);
  color: #a5b4fc;
}

/* CTA button */
.dm-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 36px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 10px 36px rgba(99,102,241,0.38);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.dm-promo-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.dm-promo-cta:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(99,102,241,0.5); }
.dm-promo-cta:hover::before { left: 160%; }

.dm-cta-arrow { font-size: 1.1rem; transition: transform 0.25s ease; }
.dm-promo-cta:hover .dm-cta-arrow { transform: translateX(4px); }

/* ── Right: visual cards ─────────────────────────────────────── */
.dm-promo-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.dm-promo-card {
  background: rgba(12,18,38,0.9);
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: 18px;
  padding: 22px 18px;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.dm-promo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pc-grad, linear-gradient(135deg, #6366f1, #8b5cf6));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 18px;
}
.dm-promo-card:hover { transform: translateY(-6px); border-color: var(--pc-color, #6366f1); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
.dm-promo-card:hover::before { opacity: 0.07; }

.dm-promo-card > * { position: relative; z-index: 1; }

.pc-emoji {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}
.dm-promo-card h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 5px;
  line-height: 1.3;
}
.dm-promo-card span {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.4;
  display: block;
}

/* wide card (full width) */
.dm-promo-card.wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
}
.pc-wide-left { flex: 1; }
.pc-wide-stat {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pc-wide-label { font-size: 0.72rem; color: #64748b; font-weight: 600; margin-top: 2px; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 980px) {
  .dm-promo-inner { grid-template-columns: 1fr; gap: 44px; }
  .dm-promo-right { grid-template-columns: repeat(3, 1fr); }
  .dm-promo-card.wide { grid-column: auto; flex-direction: column; text-align: center; gap: 8px; }
}
@media (max-width: 768px) {
  .dm-promo { padding: 70px 5%; }
  .dm-promo-right { grid-template-columns: 1fr 1fr; }
  .dm-promo-card.wide { grid-column: 1 / -1; flex-direction: row; text-align: left; }
}
@media (max-width: 480px) {
  .dm-promo { padding: 60px 4%; }
  .dm-promo-left h2 { font-size: 1.8rem; }
  .dm-promo-cta { padding: 15px 24px; font-size: 0.92rem; width: 100%; justify-content: center; }
  .dm-promo-right { grid-template-columns: 1fr 1fr; gap: 10px; }
  .dm-promo-card { padding: 16px 13px; }
  .dm-promo-card.wide { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 980px)
   ============================================================ */
@media screen and (max-width: 980px) {

  .hero {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 130px;
  }

  .hero-left h1 { font-size: 4rem; }

  .hero-right { display: flex; justify-content: center; }
  .glass-card { max-width: 500px; width: 100%; }

  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid,
  .pricing-grid,
  .about-container { grid-template-columns: 1fr; }

  .header { padding: 20px; }

  /* Hide desktop nav — show hamburger */
  .navbar { display: none; }
  .hamburger { display: flex; }
  .nav-btn { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media screen and (max-width: 768px) {

  .hero { padding: 110px 20px 70px; gap: 44px; }
  .hero-left h1 { font-size: 2.7rem; line-height: 1.05; }
  .hero-left p { font-size: 1rem; }

  .section-title h2 { font-size: 2.4rem; }

  .project-grid { grid-template-columns: 1fr; }

  .projects,
  .services,
  .pricing,
  .about,
  .contact { padding: 80px 20px; }

  /* Cards — reduce padding so content doesn't overflow */
  .price-card { padding: 36px 26px; }
  .price-card h1 { font-size: 3rem; }
  .about-card, .skills-card { padding: 32px 24px; }

  /* Input group stack */
  .input-group { grid-template-columns: 1fr; }
  .contact-form input,
  .contact-form textarea { padding: 16px; }

  /* Contact box */
  .contact-box { padding: 44px 24px; }
  .contact-box h2 { font-size: 2.4rem; }

  /* Contact buttons wrap nicely */
  .contact-buttons { gap: 10px; }
  .contact-btn { padding: 12px 20px; font-size: 0.9rem; }
}

/* ============================================================
   RESPONSIVE — SMALL PHONES (≤ 480px)
   ============================================================ */
@media screen and (max-width: 480px) {

  .hero-left h1 { font-size: 2rem; }
  .hero-tag { font-size: 0.65rem; }

  /* Stack hero buttons vertically */
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .primary-btn, .secondary-btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }

  .section-title h2 { font-size: 1.9rem; }

  .price-card { padding: 30px 20px; }
  .price-card h1 { font-size: 2.5rem; }
  .price-card h3 { font-size: 1.2rem; }

  .about-card h3, .skills-card h3 { font-size: 1.5rem; }

  .contact-box h2 { font-size: 2rem; }
  .contact-box { padding: 36px 18px; }

  .project-content h3 { font-size: 1.3rem; }

  .mobile-nav a { font-size: 1.5rem; }

  .feature-item { gap: 12px; }
  .feature-icon { width: 38px; height: 38px; font-size: 1.1rem; }
}
.pricing {
  padding: 80px 20px;
  background: #0a0a0a;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .badge {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 42px;
  margin: 16px 0;
  background: linear-gradient(90deg, #fff, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title .subtitle {
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.price-card {
  background: #141414;
  border: 1px solid #262626;
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  overflow: visible;
  transition: 0.3s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: #6366f1;
}

.price-card.featured {
  background: linear-gradient(145deg, #1e1b4b, #312e81);
  border: 2px solid #6366f1;
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.popular-tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4f7cff, #6366f1);
  color: #fff;
  padding: 7px 20px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(99,102,241,0.45);
}

.price-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.tagline {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 24px;
}

.price {
  margin: 20px 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price .currency { font-size: 24px; color: #9ca3af; }
.price .amount { font-size: 48px; font-weight: 800; }
.price .amount.custom { font-size: 32px; }
.price .period { color: #9ca3af; font-size: 14px; margin-left: 6px; }

.delivery {
  color: #10b981;
  font-size: 14px;
  margin-bottom: 24px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 15px;
  color: #d1d5db;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.2);
  color: #818cf8;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 20px;
}

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-primary:hover { background: #f59e0b; color: #000; }

.btn-outline {
  border: 1.5px solid #6366f1;
  color: #fff;
}

.btn-outline:hover { background: #6366f1; }

.trust-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #262626;
  color: #9ca3af;
  font-size: 14px;
}

/* ── Pricing responsive fixes (must be last to override second block) ── */
@media screen and (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .price-card.featured {
    transform: none;
    margin-top: 20px;
  }
  /* hide corner ribbon — popular-tag badge already shows it */
  .price-card.featured::before { display: none; }
  /* ensure buttons are always visible */
  .btn {
    display: block;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    margin-top: 20px;
  }
  .btn-primary { background: #fff; color: #000; }
  .btn-outline { border: 1.5px solid #6366f1; color: #fff; background: rgba(99,102,241,0.1); }
}

@media screen and (max-width: 768px) {
  .pricing { padding: 60px 16px; }
  .pricing-grid { gap: 28px; }
  .price-card { padding: 32px 20px; }
  .price .amount { font-size: 36px; }
  .section-title h2 { font-size: 26px; }
  .trust-bar { gap: 20px; }
}

@media screen and (max-width: 480px) {
  .pricing { padding: 50px 12px; }
  .pricing-grid { gap: 24px; }
  .price-card { padding: 28px 16px; }
  .price .amount { font-size: 30px; }
  .features li { font-size: 13px; }
  .trust-bar { flex-direction: column; align-items: center; gap: 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════════════════════════════ */
.testimonials {
  padding: 100px 8%;
  background: rgb(7, 11, 20);
}

.section-subtitle {
  color: #9ca3af;
  margin-top: 10px;
  font-size: 15px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 60px auto 0;
}

.testimonial-card {
  background: #0f1320;
  border: 1px solid #1e2a45;
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: #6366f1;
  box-shadow: 0 16px 48px rgba(99, 102, 241, 0.15);
}

.testimonial-card .stars {
  font-size: 18px;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author h4 {
  font-size: 15px;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 13px;
  color: #64748b;
}

/* Rating Summary */
.rating-summary {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  border: 1px solid #3730a3;
  border-radius: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.rating-big {
  font-size: 64px;
  font-weight: 900;
  background: linear-gradient(90deg, #fff, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.rating-big span {
  font-size: 28px;
  font-weight: 400;
  color: #64748b;
  -webkit-text-fill-color: #64748b;
}

.rating-stars {
  font-size: 22px;
  margin: 8px 0 12px;
}

.rating-summary > p {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 20px;
}

.rating-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.rating-badges span {
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #a5b4fc;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════════════ */
.faq-section {
  padding: 100px 8%;
  background: #060910;
}

.faq-container {
  max-width: 800px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #0f1320;
  border: 1px solid #1e2a45;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: #6366f1;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #f1f5f9;
  font-size: 16px;
  font-weight: 600;
  font-family: Inter, sans-serif;
  padding: 22px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-question:hover { color: #a5b4fc; }
.faq-item.open .faq-question { color: #a5b4fc; }

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  color: #6366f1;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.7;
}

.faq-answer strong { color: #e2e8f0; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT INFO BAR (inside contact section)
═══════════════════════════════════════════════════════════════ */
.contact-info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 28px;
}

.contact-info-bar span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #9ca3af;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
}

.contact-btn.whatsapp-btn {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.contact-btn.whatsapp-btn:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: #04060e;
  border-top: 1px solid #1e2a45;
  padding: 72px 8% 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.footer-brand p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-logo span {
  font-size: 18px;
  font-weight: 700;
  color: #f1f5f9;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social a {
  color: #64748b;
  font-size: 13px;
  text-decoration: none;
  background: #0f1a2e;
  border: 1px solid #1e2a45;
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover { color: #a5b4fc; border-color: #6366f1; }

.footer-links h4,
.footer-contact h4 {
  color: #f1f5f9;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a,
.footer-contact li,
.footer-contact li a {
  color: #64748b;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links li a:hover,
.footer-contact li a:hover { color: #a5b4fc; }

.footer-cta {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-cta:hover { opacity: 0.88; transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid #1e2a45;
  padding-top: 24px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  color: #374151;
  font-size: 13px;
  line-height: 1.6;
}

.footer-bottom a { color: #6366f1; text-decoration: none; }

.footer-keywords {
  margin-top: 6px !important;
  font-size: 11px !important;
  color: #1f2937 !important;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
═══════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 13px 20px 13px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  font-family: Inter, sans-serif;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 6px 44px rgba(37, 211, 102, 0.65); }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .testimonials { padding: 70px 6%; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .faq-section { padding: 70px 6%; }
  .faq-question { font-size: 15px; padding: 18px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding: 60px 6% 28px; }
  .contact-info-bar { gap: 10px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px; }
  .rating-summary { padding: 28px 20px; margin-top: 40px; }
  .rating-big { font-size: 48px; }
}

@media (max-width: 480px) {
  .testimonial-card { padding: 24px 20px; }
  .rating-badges { flex-direction: column; align-items: center; }
  .footer-brand p { max-width: 100%; }
  .footer-links h4, .footer-contact h4 { margin-bottom: 12px; }
}

/* ═══════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE FIX — all sections
═══════════════════════════════════════════════════════════════ */

/* ── Global safeguards ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

/* Prevent any element from causing horizontal scroll */
section, header, footer, div {
  max-width: 100vw;
}

/* ── Tablet (≤ 900px) ────────────────────────────────────────── */
@media screen and (max-width: 900px) {

  /* Hero — already 1-column at 980px; ensure card is centred */
  .hero { padding: 120px 24px 70px; }
  .glass-card { max-width: 420px; }

  /* Section headings */
  .section-title h2 { font-size: 2.6rem !important; }

  /* Stats row: wrap so they don't overflow */
  .stats { flex-wrap: wrap; gap: 14px; }
  .stat-card { padding: 16px 22px; }
}

/* ── Mobile (≤ 768px) ────────────────────────────────────────── */
@media screen and (max-width: 768px) {

  /* --- HERO --- */
  .hero {
    min-height: auto;
    padding: 100px 20px 60px;
    gap: 36px;
  }
  .hero-left h1 { font-size: 2.4rem; line-height: 1.1; }
  .hero-left p   { font-size: 0.95rem; margin-bottom: 28px; }
  .hero-tag      { font-size: 0.65rem; padding: 8px 14px; }
  .stats         { flex-wrap: wrap; gap: 10px; }
  .stat-card     { padding: 14px 18px; flex: 1 1 calc(50% - 10px); min-width: 90px; text-align: center; }
  /* Hide decorative glass card on mobile — saves space */
  .hero-right    { display: none; }

  /* --- PROJECTS --- */
  .projects { padding: 70px 20px; }
  .project-image { height: 220px; }      /* was 300px — too tall on mobile */
  .project-content { padding: 22px; }
  .project-content h3 { font-size: 1.25rem; margin: 10px 0; }

  /* --- SERVICES --- */
  .services { padding: 70px 20px; }
  .service-card { padding: 32px 24px; }
  .service-card h3 { font-size: 1.3rem; }

  /* --- ABOUT --- */
  .about { padding: 70px 20px; }
  .about-card, .skills-card { padding: 30px 22px; }
  .about-card h3, .skills-card h3 { font-size: 1.6rem; }
  .feature-item { gap: 14px; margin-bottom: 22px; }

  /* --- CONTACT --- */
  .contact { padding: 70px 20px; }
  .contact-box { padding: 36px 20px; }
  .contact-box h2 { font-size: 2rem !important; line-height: 1.15; }
  .contact-form { gap: 14px; }
  .contact-form button { padding: 16px; font-size: 0.95rem; }
  .contact-info-bar { gap: 8px; }
  .contact-info-bar span { font-size: 12px; padding: 7px 14px; }

  /* --- SECTION TITLE global --- */
  .section-title { margin-bottom: 40px; }
  .section-title h2 { font-size: 2.2rem !important; }

  /* --- FOUNDER --- */
  .founder-section { padding: 70px 20px; }
  .founder-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .founder-left { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 24px; }
  .founder-avatar-wrap { flex-direction: column; }
  .founder-quick-stats { grid-template-columns: repeat(4, 1fr); max-width: 500px; }
  .founder-name-block h3 { font-size: 2rem; }
  .founder-trust { gap: 12px; }

  /* --- TESTIMONIALS --- */
  .testimonials { padding: 70px 20px; }
  .testimonial-grid { gap: 18px; }
  .testimonial-card { padding: 26px 20px; }
  .testimonial-card p { font-size: 14px; }

  /* --- FAQ --- */
  .faq-section { padding: 70px 20px; }
  .faq-container { margin-top: 36px; gap: 10px; }
  .faq-question { font-size: 14px; padding: 18px 16px; gap: 12px; }
  .faq-answer p  { font-size: 14px; padding: 0 16px 18px; }

  /* --- FOOTER --- */
  .site-footer { padding: 52px 20px 24px; }
  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom p { font-size: 12px; }
  .footer-cta { display: block; text-align: center; }

  /* --- WHATSAPP FLOAT --- */
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    padding: 14px;
    border-radius: 50%;
  }
  .whatsapp-float span { display: none; }
}

/* ── Small phones (≤ 480px) ──────────────────────────────────── */
@media screen and (max-width: 480px) {

  /* --- HERO --- */
  .hero { padding: 90px 16px 50px; }
  .hero-left h1 { font-size: 1.95rem; }
  .hero-tag { font-size: 0.6rem; letter-spacing: 0.08em; }

  .hero-buttons { flex-direction: column; gap: 10px; }
  .primary-btn, .secondary-btn {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  .stats { gap: 10px; }
  .stat-card { flex: 1 1 calc(50% - 10px); text-align: center; padding: 14px 10px; }
  .stat-card h3 { font-size: 1.4rem; }
  .stat-card span { font-size: 0.75rem; }

  /* --- SECTION TITLES --- */
  .section-title h2 { font-size: 1.8rem !important; line-height: 1.15; }
  .section-title { margin-bottom: 32px; }

  /* --- PROJECTS --- */
  .projects { padding: 60px 16px; }
  .project-image { height: 200px; }
  .project-content { padding: 18px; }

  /* --- SERVICES --- */
  .services { padding: 60px 16px; }
  .service-card { padding: 26px 20px; }
  .service-card h3 { font-size: 1.2rem; }
  .service-card p { font-size: 0.9rem; }

  /* --- ABOUT --- */
  .about { padding: 60px 16px; }
  .about-card, .skills-card { padding: 26px 18px; }
  .about-card h3, .skills-card h3 { font-size: 1.4rem; }
  .feature-icon { width: 38px; height: 38px; font-size: 1rem; }
  .feature-item { gap: 12px; margin-bottom: 18px; }
  .feature-item h4 { font-size: 0.95rem; }
  .feature-item p  { font-size: 0.85rem; }

  /* --- PRICING --- */
  .pricing { padding: 50px 16px !important; }
  .pricing-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .price-card { padding: 26px 18px !important; }
  .price .amount { font-size: 2.2rem !important; }
  .price .amount.custom { font-size: 1.8rem !important; }
  .price-card h3 { font-size: 1.1rem !important; }
  .features li { font-size: 13px; }
  .popular-tag { font-size: 11px; padding: 5px 14px; }
  .trust-bar { flex-direction: column; align-items: center; gap: 12px; }
  .trust-item { font-size: 13px; }

  /* --- CONTACT --- */
  .contact { padding: 60px 16px; }
  .contact-box { padding: 30px 16px; border-radius: 24px; }
  .contact-box h2 { font-size: 1.7rem !important; }
  .contact-box > p { font-size: 0.9rem; }
  .contact-btn { padding: 11px 18px; font-size: 0.85rem; }
  .contact-form input,
  .contact-form textarea { padding: 14px; font-size: 0.95rem; border-radius: 14px; }
  .contact-form button { border-radius: 14px; }
  .contact-info-bar { flex-direction: column; align-items: center; gap: 8px; }

  /* --- FOUNDER --- */
  .founder-section { padding: 60px 16px; }
  .founder-wrapper { gap: 28px; }
  .founder-avatar-ring { width: 130px; height: 130px; }
  .founder-quick-stats { grid-template-columns: 1fr 1fr; max-width: 280px; }
  .founder-quick-stats { grid-template-columns: repeat(2, 1fr); max-width: 280px; gap: 10px; }
  .fq-stat { padding: 14px 10px; border-radius: 12px; }
  .fq-num { font-size: 1.3rem; }
  .founder-name-block h3 { font-size: 1.8rem; }
  .founder-title { font-size: 12px; }
  .founder-bio { font-size: 14px; line-height: 1.7; }
  .founder-trust-item { padding: 14px 16px; gap: 12px; }
  .ft-icon { font-size: 1.5rem; }
  .founder-trust-item strong { font-size: 13px; }
  .founder-trust-item p { font-size: 12px; }

  /* --- TESTIMONIALS --- */
  .testimonials { padding: 60px 16px; }
  .testimonial-card { padding: 22px 16px; border-radius: 16px; }
  .rating-summary { padding: 24px 16px; border-radius: 18px; }
  .rating-big { font-size: 42px; }
  .rating-badges { flex-direction: column; align-items: center; }
  .rating-badges span { font-size: 12px; }

  /* --- FAQ --- */
  .faq-section { padding: 60px 16px; }
  .faq-question { font-size: 13.5px; padding: 16px 14px; }
  .faq-answer p  { font-size: 13px; padding: 0 14px 16px; }
  .faq-icon { font-size: 20px; }

  /* --- FOOTER --- */
  .site-footer { padding: 48px 16px 20px; }
  .footer-logo span { font-size: 16px; }
  .footer-cta { padding: 10px 20px; font-size: 13px; }
  .footer-keywords { font-size: 10px !important; }
}

/* ═══════════════════════════════════════════════════════════════
   FOUNDER SECTION
═══════════════════════════════════════════════════════════════ */
.founder-section {
  padding: 100px 8%;
  background: #060910;
  position: relative;
  overflow: hidden;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.12), transparent 70%);
  pointer-events: none;
}

.founder-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* ── Left column ─────────────────────────────────────────────── */
.founder-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.founder-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Photo ring wrapper */
.founder-avatar-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #4f7cff, #6366f1, #8b5cf6);
  box-shadow: 0 0 0 6px rgba(99,102,241,0.18), 0 0 48px rgba(99,102,241,0.25);
  position: relative;
  animation: founderRing 3s ease-in-out infinite;
}

.founder-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 3px solid #060910;
}

@keyframes founderRing {
  0%, 100% { box-shadow: 0 0 0 6px rgba(99,102,241,0.18), 0 0 40px rgba(99,102,241,0.2); }
  50%       { box-shadow: 0 0 0 8px rgba(99,102,241,0.28), 0 0 60px rgba(99,102,241,0.35); }
}

.founder-badge {
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  color: #10b981;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.founder-quick-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
}

.fq-stat {
  background: #0f1320;
  border: 1px solid #1e2a45;
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.fq-stat:hover {
  border-color: #6366f1;
  transform: translateY(-3px);
}

.fq-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(90deg, #fff, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.fq-label {
  display: block;
  font-size: 11px;
  color: #64748b;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Right column ────────────────────────────────────────────── */
.founder-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.founder-name-block h3 {
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(90deg, #fff 30%, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 8px;
}

.founder-title {
  color: #6366f1;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.founder-bio {
  color: #94a3b8;
  font-size: 15.5px;
  line-height: 1.8;
}

.founder-bio strong { color: #e2e8f0; }

.founder-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.founder-skills span {
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.25);
  color: #a5b4fc;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.founder-skills span:hover {
  background: rgba(99,102,241,0.22);
  border-color: rgba(99,102,241,0.5);
}

.founder-trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.founder-trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #0f1320;
  border: 1px solid #1e2a45;
  border-radius: 16px;
  padding: 18px 20px;
  transition: border-color 0.3s ease;
}

.founder-trust-item:hover { border-color: #6366f1; }

.ft-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.founder-trust-item strong {
  display: block;
  color: #f1f5f9;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.founder-trust-item p {
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.founder-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 4px;
  font-size: 1rem;
}

/* ── Hide cursor glow on touch devices (no mouse) ────────────── */
@media (hover: none) and (pointer: coarse) {
  .cursor-glow { display: none; }
}

/* ── Very small phones (≤ 360px) ─────────────────────────────── */
@media screen and (max-width: 360px) {
  .hero-left h1 { font-size: 1.7rem; }
  .section-title h2 { font-size: 1.6rem !important; }
  .contact-box h2 { font-size: 1.5rem !important; }
  .primary-btn, .secondary-btn { padding: 13px 16px; font-size: 0.9rem; }
  .nav-btn { display: none; }
}

/* ── FOUNDER SECTION: Fix mobile padding
   (founder desktop styles are declared after media queries — these rules
    re-apply the correct mobile padding LAST so they win) ─────────── */
@media screen and (max-width: 980px) {
  .founder-section { padding: 80px 5%; }
  .founder-wrapper { grid-template-columns: 1fr; }
}

@media screen and (max-width: 768px) {
  .founder-section { padding: 60px 20px !important; }
  .founder-wrapper { gap: 32px !important; }
  .founder-left { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 24px; }
  .founder-quick-stats { grid-template-columns: repeat(4, 1fr); max-width: 500px; }
}

@media screen and (max-width: 480px) {
  .founder-section { padding: 50px 16px !important; }
  .founder-wrapper { gap: 24px !important; }
  .founder-quick-stats { grid-template-columns: repeat(2, 1fr) !important; max-width: 280px; gap: 10px; }
  .founder-avatar-ring { width: 130px; height: 130px; }
  .founder-name-block h3 { font-size: 1.8rem; }
  .founder-bio { font-size: 14px; }
}

@media screen and (max-width: 360px) {
  .founder-section { padding: 40px 12px !important; }
  .founder-name-block h3 { font-size: 1.5rem !important; }
}