/* ════════════════════════════════════════════════════════ */
/* NetDeploy Studio - Shared Stylesheet                     */
/* ════════════════════════════════════════════════════════ */

:root {
  --bg: #fefdf8;
  --ink: #1a1a1a;
  --pink: #ff5e93;
  --orange: #ff8c42;
  --yellow: #ffd60a;
  --green: #00d68f;
  --blue: #4361ee;
  --purple: #9d4edd;
  --muted: #6b6b80;
  --soft: #f5f0e8;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.5;
}

/* ── BLOBS BACKGROUND ── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  animation: float 12s ease-in-out infinite;
}
.blob-1 { width: 400px; height: 400px; background: var(--pink); top: -100px; right: -100px; }
.blob-2 { width: 350px; height: 350px; background: var(--yellow); top: 300px; left: -150px; animation-delay: -3s; }
.blob-3 { width: 300px; height: 300px; background: var(--green); top: 1200px; right: 0; animation-delay: -6s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(254, 253, 248, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.logo {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
}
.logo-dot {
  width: 12px;
  height: 12px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--pink); font-weight: 600; }

.nav-cta {
  background: var(--ink);
  color: var(--bg) !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  transition: transform .2s;
}
.nav-cta:hover { transform: translateY(-2px); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: .3s;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }

@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 16px; padding: 8px 0; }
}

/* ── BUTTONS ── */
.btn {
  padding: 17px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ── HERO HOMEPAGE ── */
.hero {
  min-height: 100vh;
  padding: 140px 32px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--bg);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 32px;
  width: fit-content;
}
.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 1100px;
  margin-bottom: 28px;
}
.hero h1 .highlight {
  background: linear-gradient(120deg, var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero h1 .scribble {
  font-family: 'Caveat', cursive;
  color: var(--pink);
  display: inline-block;
  transform: rotate(-3deg);
  font-weight: 700;
}
.hero p {
  font-size: clamp(17px, 2vw, 22px);
  color: var(--muted);
  max-width: 620px;
  line-height: 1.55;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 56px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.avatars { display: flex; }
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  margin-right: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: white;
}
.avatar:nth-child(1) { background: var(--pink); }
.avatar:nth-child(2) { background: var(--orange); }
.avatar:nth-child(3) { background: var(--green); }
.avatar:nth-child(4) { background: var(--blue); }
.proof-text { font-size: 14px; color: var(--muted); }
.proof-text strong { color: var(--ink); }

/* ── HERO SUB-PAGES (more compact) ── */
.hero-sub {
  padding: 130px 32px 60px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.hero-sub-tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}
.hero-sub h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  max-width: 900px;
  margin-bottom: 20px;
}
.hero-sub p {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 640px;
  line-height: 1.55;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb span { margin: 0 8px; }

/* ── MARQUEE ── */
.marquee {
  background: var(--ink);
  color: var(--bg);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-top: 4px solid var(--pink);
  border-bottom: 4px solid var(--pink);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-size: 22px;
  font-weight: 600;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-dot { color: var(--pink); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
.section {
  padding: 100px 32px;
  position: relative;
  z-index: 1;
}
.section-tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.section-h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 800px;
}
.section-h2 em {
  font-family: 'Caveat', cursive;
  font-style: normal;
  color: var(--pink);
  font-weight: 700;
}
.section-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 56px;
}
.container { max-width: 1300px; margin: 0 auto; }
.container-narrow { max-width: 900px; margin: 0 auto; }

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 768px) { .cards-grid { grid-template-columns: 1fr; } }

.card-creative {
  background: white;
  border: 2px solid var(--ink);
  border-radius: 32px;
  padding: 36px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
}
.card-creative:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 16px 16px 0 var(--ink);
}
.card-creative.pink { background: #ffe4ec; }
.card-creative.yellow { background: #fff4cc; }
.card-creative.green { background: #ccf5e3; }
.card-creative.blue { background: #e0e7ff; }

.card-num {
  font-family: 'Caveat', cursive;
  font-size: 60px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  top: 20px;
  right: 28px;
}
.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}
.card-h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.card-p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.75;
}
.card-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-features li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  opacity: 0.85;
}
.card-features li::before {
  content: '✓';
  font-weight: 700;
  color: var(--pink);
}
.card-price-tag {
  font-size: 13px;
  font-weight: 600;
  background: var(--ink);
  color: var(--bg);
  padding: 8px 14px;
  border-radius: 100px;
  display: inline-block;
}

/* Sober card style for sub-pages */
.card-sober {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all .3s;
}
.card-sober:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}
.card-sober h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.card-sober p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

/* ── PRICING ── */
.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: white;
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  transition: transform .3s;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.popular {
  background: var(--ink);
  color: var(--bg);
}
.price-card.popular::before {
  content: '⭐ POPULAIRE';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: white;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.price-name {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  opacity: 0.7;
}
.price-amount {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount span { font-size: 17px; opacity: 0.6; }
.price-desc { font-size: 13px; opacity: 0.7; margin-bottom: 28px; }
.price-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.price-features li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li::before {
  content: '✓';
  color: var(--pink);
  font-weight: 700;
}
.price-card.popular .price-features li::before { color: var(--yellow); }

.price-btn {
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  text-align: center;
  display: block;
  text-decoration: none;
  font-family: inherit;
  transition: all .2s;
}
.price-btn.dark { background: var(--ink); color: var(--bg); }
.price-btn.light { background: var(--bg); color: var(--ink); }
.price-btn:hover { transform: translateY(-2px); }

/* ── FAQ ── */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: white;
  border: 2px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  transition: all .3s;
}
.faq-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
}
.faq-question {
  padding: 22px 28px;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  color: var(--ink);
}
.faq-icon {
  font-size: 22px;
  font-weight: 700;
  color: var(--pink);
  transition: transform .25s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 28px;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 22px;
}
.faq-answer p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

/* ── CONTACT FORM ── */
.contact-form {
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-input, .contact-textarea {
  padding: 18px 22px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: white;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: transform .2s;
  cursor: text;
  width: 100%;
}
.contact-input:focus, .contact-textarea:focus {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
}
.contact-textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-submit {
  background: var(--pink);
  color: white;
  padding: 18px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid var(--ink);
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
}
.contact-submit:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
}
.contact-success {
  display: none;
  background: var(--green);
  color: var(--ink);
  padding: 16px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
}

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 9998;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  animation: whatsappPulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ── FOOTER ── */
footer {
  padding: 60px 32px 40px;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: rgba(254, 253, 248, 0.6);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(254, 253, 248, 0.85);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--pink); }
.footer-brand h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-brand p {
  color: rgba(254, 253, 248, 0.6);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(254, 253, 248, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(254, 253, 248, 0.5);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── UTILS ── */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 32px 100px;
  position: relative;
  z-index: 1;
}
.legal-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
}
.legal-content h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 28px 0 12px;
}
.legal-content p, .legal-content li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content a { color: var(--pink); }
.legal-content strong { color: var(--ink); }
.legal-meta {
  font-size: 13px;
  color: var(--muted);
  padding: 16px;
  background: var(--soft);
  border-radius: 12px;
  margin-bottom: 30px;
}

/* ── 404 ── */
.error-404 {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 32px;
  position: relative;
  z-index: 1;
}
.error-404 .big {
  font-size: clamp(120px, 25vw, 220px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(120deg, var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

/* ── PORTFOLIO ── */
.portfolio-list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.portfolio-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 28px;
  overflow: hidden;
  transition: all .3s;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 12px 12px 0 var(--ink);
}
@media (max-width: 768px) { .portfolio-card { grid-template-columns: 1fr; } }

.portfolio-img {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  color: white;
}
.portfolio-img.green { background: linear-gradient(135deg, var(--green), #00b377); }
.portfolio-img.blue { background: linear-gradient(135deg, var(--blue), #2942b3); }
.portfolio-img.yellow { background: linear-gradient(135deg, var(--yellow), #d4a800); color: var(--ink); }

.portfolio-img-content {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
}
.portfolio-info { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.portfolio-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pink);
  margin-bottom: 12px;
}
.portfolio-h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.portfolio-p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 20px;
}
.portfolio-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.portfolio-stat {
  font-size: 13px;
  color: var(--muted);
}
.portfolio-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pink);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  width: fit-content;
}
.portfolio-link::after {
  content: '→';
  transition: transform .25s;
}
.portfolio-link:hover::after { transform: translateX(4px); }

/* ── PROCESS ── */
.process {
  background: var(--ink);
  color: var(--bg);
}
.process .section-tag { color: var(--yellow); }
.process .section-h2 em { color: var(--yellow); }
.process .section-sub { color: rgba(254, 253, 248, 0.7); }
.process-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }
.process-step { position: relative; }
.process-num {
  font-family: 'Caveat', cursive;
  font-size: 80px;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 16px;
}
.process-h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.process-p {
  font-size: 14px;
  color: rgba(254, 253, 248, 0.7);
  line-height: 1.55;
}

/* ── CTA BLOCK ── */
.cta-block {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: white;
  padding: 80px 40px;
  border-radius: 32px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.cta-block p {
  font-size: 17px;
  opacity: 0.95;
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.cta-block .btn-primary {
  background: white;
  color: var(--ink);
}
.cta-block .btn-primary:hover {
  background: var(--ink);
  color: white;
}
.cta-block .btn-outline {
  border-color: white;
  color: white;
}
.cta-block .btn-outline:hover {
  background: white;
  color: var(--ink);
}

/* ════════════════════════════════════════════════════════ */
/* NEW FEATURES - Multi-improvements                        */
/* ════════════════════════════════════════════════════════ */

/* ── DARK MODE ── */
[data-theme="dark"] {
  --bg: #0f0f12;
  --ink: #fefdf8;
  --soft: #1a1a1f;
  --muted: #9999a8;
}
[data-theme="dark"] .card-creative {
  background: #1a1a1f;
  border-color: var(--ink);
}
[data-theme="dark"] .card-creative.pink { background: #2a1a1f; }
[data-theme="dark"] .card-creative.yellow { background: #2a261a; }
[data-theme="dark"] .card-creative.green { background: #1a2a22; }
[data-theme="dark"] .card-creative.blue { background: #1a1f2e; }
[data-theme="dark"] .card-sober { background: #1a1a1f; border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .price-card { background: #1a1a1f; }
[data-theme="dark"] .price-card.popular { background: var(--pink); color: white; }
[data-theme="dark"] .price-card.popular::before { background: var(--ink); color: var(--bg); }
[data-theme="dark"] .faq-item { background: #1a1a1f; }
[data-theme="dark"] .contact-input,
[data-theme="dark"] .contact-textarea { background: #1a1a1f; color: var(--ink); }
[data-theme="dark"] nav { background: rgba(15, 15, 18, 0.85); }
[data-theme="dark"] .menu-toggle span { background: var(--ink); }
[data-theme="dark"] .nav-links { background: var(--bg); }

/* Theme toggle button */
.theme-toggle {
  background: none;
  border: 2px solid var(--ink);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all .25s;
  padding: 0;
}
.theme-toggle:hover { transform: scale(1.1) rotate(15deg); }
[data-theme="dark"] .theme-toggle .sun { display: block; }
[data-theme="dark"] .theme-toggle .moon { display: none; }
.theme-toggle .sun { display: none; }
.theme-toggle .moon { display: block; }

/* ── LANGUAGE TOGGLE ── */
.lang-toggle {
  background: none;
  border: 1px solid var(--ink);
  padding: 6px 12px;
  border-radius: 100px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  transition: all .2s;
}
.lang-toggle:hover { background: var(--ink); color: var(--bg); }

/* ── WHY CHOOSE US ── */
.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }

.why-item {
  padding: 28px;
  border-radius: 20px;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all .3s;
  position: relative;
}
.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: var(--pink);
}
.why-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  color: white;
}
.why-item h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.why-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
[data-theme="dark"] .why-item { background: #1a1a1f; border-color: rgba(255,255,255,0.08); }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: white;
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: 30px;
  position: relative;
  transition: all .3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 var(--ink);
}
.testimonial-card.placeholder {
  background: var(--soft);
  border-style: dashed;
  opacity: 0.7;
}
.testimonial-stars {
  color: var(--yellow);
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 16px;
}
.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.testimonial-role {
  font-size: 12px;
  color: var(--muted);
}
[data-theme="dark"] .testimonial-card { background: #1a1a1f; }
[data-theme="dark"] .testimonial-card.placeholder { background: rgba(255,255,255,0.03); }

/* ── GUARANTEE BADGE ── */
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green), #00b377);
  color: white;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(0, 214, 143, 0.35);
}
.guarantee-icon {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-weight: 900;
  font-size: 14px;
}

/* ── PRICE CALCULATOR ── */
.calculator {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 28px;
  padding: 40px;
  position: relative;
}
[data-theme="dark"] .calculator { background: #1a1a1f; }
.calc-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.calc-subtitle {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
}
.calc-section { margin-bottom: 24px; }
.calc-section h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: var(--pink);
}
.calc-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}
.calc-option {
  padding: 14px 16px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 14px;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  user-select: none;
  background: white;
}
[data-theme="dark"] .calc-option { background: #25252b; border-color: rgba(255,255,255,0.1); }
.calc-option:hover { border-color: var(--pink); }
.calc-option input { display: none; }
.calc-option.selected {
  background: var(--pink);
  color: white;
  border-color: var(--pink);
}
.calc-option .price {
  font-size: 11px;
  opacity: 0.7;
  margin-left: auto;
}
.calc-result {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  border-radius: 18px;
  color: white;
  text-align: center;
}
.calc-total {
  font-size: 16px;
  margin-bottom: 6px;
  opacity: 0.9;
}
.calc-amount {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.calc-amount span { font-size: 20px; opacity: 0.8; }
.calc-note {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 12px;
}

/* ── COMPARISON TABLE ── */
.compare-table {
  max-width: 1100px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 2px solid var(--ink);
}
[data-theme="dark"] .compare-table { background: #1a1a1f; }
.compare-table table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th, .compare-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 14px;
}
[data-theme="dark"] .compare-table th,
[data-theme="dark"] .compare-table td { border-color: rgba(255,255,255,0.08); }
.compare-table th {
  background: var(--ink);
  color: var(--bg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
  padding: 22px 20px;
}
.compare-table th.featured {
  background: var(--pink);
}
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
}
.compare-table .check { color: var(--green); font-size: 18px; }
.compare-table .cross { color: #ff4d4d; font-size: 18px; opacity: 0.7; }
.compare-table .featured-col {
  background: rgba(255, 94, 147, 0.05);
  font-weight: 600;
}
.compare-table tr:last-child td { border-bottom: none; }

/* ── COUNTERS / STATS ── */
.stats-bar {
  background: var(--ink);
  color: var(--bg);
  padding: 60px 32px;
  position: relative;
  z-index: 1;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.stat-item { text-align: center; }
.stat-num {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, var(--pink), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: rgba(254, 253, 248, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 100px;
  max-width: 480px;
  background: var(--ink);
  color: var(--bg);
  padding: 20px 24px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  z-index: 9997;
  display: none;
  font-size: 14px;
  line-height: 1.5;
  border: 2px solid var(--pink);
}
.cookie-banner.show { display: block; animation: cookieSlide .4s ease-out; }
@keyframes cookieSlide {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p { margin-bottom: 12px; }
.cookie-banner a { color: var(--pink); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 8px 16px;
  border-radius: 100px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.cookie-accept { background: var(--pink); color: white; }
.cookie-decline { background: transparent; color: var(--bg); border: 1px solid rgba(255,255,255,0.3); }
@media (max-width: 768px) {
  .cookie-banner { right: 24px; left: 24px; bottom: 100px; }
}

/* ── BLOG SECTION ── */
.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
[data-theme="dark"] .blog-card { background: #1a1a1f; border-color: rgba(255,255,255,0.08); }
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.blog-image {
  height: 180px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}
.blog-image.green { background: linear-gradient(135deg, var(--green), #00b377); }
.blog-image.blue { background: linear-gradient(135deg, var(--blue), #2942b3); }
.blog-image.yellow { background: linear-gradient(135deg, var(--yellow), #d4a800); }
.blog-content { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--ink);
}
.blog-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}
.blog-meta {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 14px;
}
[data-theme="dark"] .blog-meta { border-color: rgba(255,255,255,0.08); }
.coming-soon-badge {
  background: var(--yellow);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── ABOUT/STORY SECTION ── */
.story-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) { .story-grid { grid-template-columns: 1fr; gap: 40px; } }
.story-image {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  border-radius: 24px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  color: white;
  position: relative;
  overflow: hidden;
}
.story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent 50%);
}
.story-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.story-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.story-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.story-value {
  padding: 16px;
  background: var(--soft);
  border-radius: 14px;
  border-left: 3px solid var(--pink);
}
[data-theme="dark"] .story-value { background: rgba(255,255,255,0.05); }
.story-value h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.story-value p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ── LEAD MAGNET ── */
.lead-magnet {
  background: linear-gradient(135deg, var(--ink), #2d2d35);
  color: white;
  padding: 50px 40px;
  border-radius: 28px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) { .lead-magnet { grid-template-columns: 1fr; padding: 36px 28px; } }
.lead-magnet::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: var(--pink);
  filter: blur(120px);
  opacity: 0.4;
}
.lead-magnet > * { position: relative; z-index: 1; }
.lead-magnet h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.lead-magnet p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 15px;
}
.lead-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lead-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border: none;
  border-radius: 100px;
  font-family: inherit;
  font-size: 14px;
}
.lead-form button {
  padding: 14px 24px;
  border-radius: 100px;
  border: none;
  background: var(--pink);
  color: white;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.lead-form button:hover { background: var(--orange); }
.lead-mockup {
  font-size: 80px;
  text-align: center;
  filter: drop-shadow(0 20px 40px rgba(255, 94, 147, 0.5));
}

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  z-index: 1000;
  width: 0%;
  transition: width .1s linear;
}

/* ── BACK TO TOP BUTTON ── */
.back-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 9996;
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s;
  pointer-events: none;
}
.back-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-top:hover { background: var(--pink); transform: translateY(-3px); }

/* ── SCROLL ANIMATION VARIANTS ── */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-zoom.visible { opacity: 1; transform: scale(1); }

/* Performance: Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
