/* ═══════════════════════════════════════════════
   CREWATIVE — main.css  (Hub only)
   Rebuilt design system, mobile-first
═══════════════════════════════════════════════ */

/* ── Design tokens ── */
:root {
  --c-bg:         #060606;
  --c-bg-2:       #0F0F0F;
  --c-bg-3:       #1A1A1A;
  --c-accent:      #FF3366;
  --c-accent-light:#FF6688;
  --c-accent-dark: #CC1144;
  --c-accent-tint: rgba(255,51,102,0.12);
  --c-web:         #FF3366;
  --c-brand:       #E8705A;
  --c-photo:       #6B9FD4;
  --c-signs:       #FF3366;
  --c-white:       #FFFFFF;
  --c-text:        rgba(255,255,255,0.90);
  --c-text-muted:  rgba(255,255,255,0.45);
  --c-text-faint:  rgba(255,255,255,0.20);
  --c-border:      rgba(255,51,102,0.18);
  --c-border-2:    rgba(255,255,255,0.12);
  --radius-card:  10px;
  --radius-btn:   6px;
  --radius-badge: 4px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Skip link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--c-accent);
  color: #000;
  padding: 0.5em 1em;
  border-radius: var(--radius-btn);
  font-weight: 700;
  z-index: 200000;
}
.skip-link:focus { top: 72px; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9000;
  background: rgba(6,6,6,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  height: 64px;
  display: flex;
  align-items: center;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1px;
}
.logo__triangle { color: var(--c-accent); font-size: 14px; display: inline-block; transform: translateY(-1px); }
.nav { display: flex; align-items: center; }
.nav__list { display: flex; gap: 4px; align-items: center; }
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-btn);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav__link:hover { color: var(--c-white); background: rgba(255,255,255,0.04); }
.nav__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
  padding: 5px 12px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.lang-toggle:hover {
  border-color: rgba(255,255,255,0.25);
}
.lang-toggle__sep {
  color: rgba(255,255,255,0.2);
  font-size: 12px;
  line-height: 1;
}
.lang-toggle__opt {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s ease;
  font-family: system-ui, -apple-system, sans-serif;
}
.lang-toggle__flag {
  width: 20px;
  height: 14px;
  display: block;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
}
.lang-toggle__opt--active {
  color: #FF3366;
}
.lang-toggle__code {
  line-height: 1;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-btn);
  padding: 8px;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.2s ease;
}
.nav-toggle__bar { display: block; width: 18px; height: 2px; background: var(--c-text); border-radius: 1px; transition: all 0.2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  background: var(--c-bg-2);
  border-bottom: 1px solid var(--c-border);
  padding: 12px 0;
  z-index: 8999;
}
.mobile-menu__list { padding: 0 24px; }
.mobile-menu__link {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text-muted);
  border-bottom: 1px solid var(--c-border);
  transition: color 0.2s ease;
}
.mobile-menu__link:last-child { border-bottom: none; }
.mobile-menu__link:hover { color: var(--c-white); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,51,102,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner { max-width: 700px; position: relative; z-index: 1; }
.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--c-accent);
  margin-bottom: 20px;
  display: block;
}
.hero__title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(60px, 10vw, 120px);
  line-height: 0.9;
  color: var(--c-white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--c-text-muted);
  max-width: 480px;
  margin: 0 auto 36px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  border: none;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-accent);
  color: #000;
}
.btn--primary:hover { opacity: 0.88; }
.btn--secondary {
  background: none;
  border: 1px solid var(--c-border-2);
  color: var(--c-text);
}
.btn--secondary:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.03); }
.btn--whatsapp {
  background: #25D366;
  color: #fff;
}
.btn--whatsapp:hover { opacity: 0.88; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-faint);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-accent), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  80%  { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; }
}

/* ═══════════════════════════════════════════════
   SERVICES OVERVIEW (hub)
═══════════════════════════════════════════════ */
.services-section {
  padding: 100px 0;
  border-top: 1px solid var(--c-border);
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-accent);
  margin-bottom: 12px;
  display: block;
}
.section-heading {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  color: var(--c-white);
  margin-bottom: 48px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}
.service-card:hover { border-color: var(--c-border-2); background: var(--c-bg-3); }
.service-card:has(.card-link:hover) {
  border-color: var(--c-border-2);
  background: var(--c-bg-3);
  transform: translateY(-2px);
}
.service-card__icon { width: 48px; height: 48px; flex-shrink: 0; }
.service-card__service-name {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 20px;
  display: block;
}
.service-card--web   .service-card__service-name { color: var(--c-web); }
.service-card--brand .service-card__service-name { color: var(--c-brand); }
.service-card--photo .service-card__service-name { color: var(--c-photo); }
.service-card--signs .service-card__service-name { color: var(--c-signs); }
.service-card__title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 28px;
  color: var(--c-white);
  line-height: 1;
  margin-top: 4px;
}
.service-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin-top: 12px;
  flex: 1;
}
.service-card__cta {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-top: 20px;
  transition: letter-spacing 0.2s ease, opacity 0.2s ease;
}
.service-card--web   .service-card__cta { color: var(--c-web); }
.service-card--brand .service-card__cta { color: var(--c-brand); }
.service-card--photo .service-card__cta { color: var(--c-photo); }
.service-card--signs .service-card__cta { color: var(--c-signs); }
.service-card__cta:hover { letter-spacing: 0.02em; opacity: 0.8; }
.service-card .card-link { position: static; }
.service-card .card-link::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about-section {
  padding: 100px 0;
  border-top: 1px solid var(--c-border);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__heading {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  color: var(--c-white);
  line-height: 1.05;
  margin-top: 12px;
  margin-bottom: 20px;
}
.about__body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}
.about__body p:last-of-type { margin-bottom: 0; }
.about__stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.about__stat-num {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 36px;
  color: var(--c-accent);
  line-height: 1;
  display: block;
}
.about__stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-faint);
  display: block;
  margin-top: 4px;
}

/* CSS geometric art */
.about__art {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__art-rect {
  position: absolute;
  border: 1px solid rgba(255,51,102,0.18);
  border-radius: 4px;
}
.about__art-rect--1 { width: 180px; height: 180px; transform: rotate(15deg) translate(-20px, -20px); }
.about__art-rect--2 { width: 140px; height: 140px; transform: rotate(-8deg) translate(30px, 30px); background: rgba(255,51,102,0.03); }
.about__art-rect--3 { width: 220px; height: 220px; transform: rotate(3deg); background: rgba(255,51,102,0.02); }
.about__art-mono {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  background: var(--c-bg-3);
  border: 1px solid rgba(255,51,102,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: -0.04em;
}

/* ═══════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════ */
.pricing-section {
  padding: 100px 0;
  border-top: 1px solid var(--c-border);
}
.pricing-intro {
  font-size: 16px;
  color: var(--c-text-muted);
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.pricing-card {
  --card-accent: var(--c-accent);
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.pricing-card:hover { border-color: var(--card-accent); background: var(--c-bg-3); }
.pricing-card__icon { width: 40px; height: 40px; flex-shrink: 0; margin-bottom: 16px; }
.pricing-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pricing-card__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--c-text-muted);
  margin-bottom: 20px;
  flex: 1;
}
.pricing-card__includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.pricing-card__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.4;
}
.pricing-card__item::before {
  content: '✓';
  color: var(--card-accent);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card__btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--card-accent);
  color: var(--card-accent);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.pricing-card__btn:hover { background: var(--card-accent); color: #000; }
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: 28px;
}
.pricing-note a {
  color: var(--c-text-muted);
  border-bottom: 1px solid var(--c-border-2);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.pricing-note a:hover { color: var(--c-white); border-color: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-section {
  padding: 100px 0;
  border-top: 1px solid var(--c-border);
  background: var(--c-bg-2);
  text-align: center;
}
.contact-section .section-heading { margin-bottom: 12px; }
.contact__sub {
  font-size: 16px;
  color: var(--c-text-muted);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.contact__options {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.contact__email {
  font-size: 15px;
  color: var(--c-text-muted);
  border-bottom: 1px solid var(--c-border-2);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.contact__email:hover { color: var(--c-white); border-color: rgba(255,255,255,0.3); }
.contact__socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.contact__social {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-faint);
  transition: color 0.2s ease;
}
.contact__social:hover { color: var(--c-text-muted); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--c-border);
  background: var(--c-bg);
  padding: 20px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__copy {
  font-size: 12px;
  color: var(--c-text-faint);
}
.footer__back-top {
  font-size: 12px;
  color: var(--c-text-faint);
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.2s ease;
}
.footer__back-top:hover { color: var(--c-text-muted); }

/* ═══════════════════════════════════════════════
   WHATSAPP STICKY
═══════════════════════════════════════════════ */
.wa-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  padding: 12px 20px 12px 16px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
  text-decoration: none;
}
.wa-sticky:hover { background: #22c55e; }
.wa-sticky svg { flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner  { grid-template-columns: 1fr; gap: 40px; }
  .about__art    { height: 220px; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .hero__sub { font-size: 16px; }
  .wa-sticky span { display: none; }
  .wa-sticky { padding: 14px; border-radius: 50%; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 20px 80px; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .about__stats { gap: 20px; }
  .contact__options { flex-direction: column; align-items: center; }
}

/* Triangle CSS */
.logo__triangle, .logo__tri, .hero__tri {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 0.38em solid transparent;
  border-right: 0.38em solid transparent;
  border-bottom: 0.65em solid #FF3366;
  margin: 0 0.1em;
  vertical-align: middle;
  position: relative;
  top: -0.07em;
  flex-shrink: 0;
}
.contact-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.contact-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; transition: transform 0.2s ease; border: none; cursor: pointer; }
.contact-btn:hover { transform: translateY(-2px); }
.contact-btn__icon { width: 20px; height: 20px; flex-shrink: 0; }
.contact-btn--whatsapp { background: #25D366; color: #000; box-shadow: 0 4px 20px rgba(37,211,102,0.30); }
.contact-btn--email { background: #CC0052; color: #fff; box-shadow: 0 4px 20px rgba(204,0,82,0.30); }

/* Hero watermark behind content */
.hero { position: relative; overflow: hidden; }
.hero__watermark { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: clamp(300px, 50vw, 600px); pointer-events: none; z-index: 0; }
.hero__watermark img { width: 100%; height: auto; opacity: 0.15; filter: grayscale(100%) brightness(300%); display: block; }
.hero__inner { position: relative; z-index: 1; }

/* Get in Touch button */
.btn--outline { background: transparent !important; color: #CC0052 !important; border: 2px solid #CC0052 !important; }
.btn--outline:hover { background: #CC0052 !important; color: #fff !important; transform: translateY(-2px); }
