/* ── CNTRL FUTBOL · GLOBAL STYLES v4 ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  /* ── BRAND PALETTE v4 — lighter dark feel ── */
  --black:    #141414;    /* lighter than pure black — dark charcoal */
  --white:    #F1F1F1;    /* off-white text */
  --accent:   #999999;    /* light gray accent */
  --accent-dark: #777777; /* darker gray for readable labels */
  --gray:     #1e1e1e;    /* section backgrounds */
  --mid:      #282828;    /* cards */
  --light:    #323232;    /* hover states, lighter cards */
  --muted:    #777777;    /* small labels */
  --border:   rgba(241,241,241,0.09);

  --display: 'Bebas Neue', sans-serif;
  --body:    'Poppins', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7vw;
  height: 72px;
  background: rgba(20,20,20,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}

/* LOGO PLACEHOLDER */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  background: var(--mid);
  border: 1px dashed rgba(241,241,241,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-main {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--white);
}

.nav-logo-sub {
  font-family: var(--body);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241,241,241,0.55);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width 0.25s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241,241,241,0.55);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nav-dropdown-toggle:hover,
.nav-dropdown:hover .nav-dropdown-toggle { color: var(--white); }
.nav-dropdown-toggle svg { width: 10px; height: 10px; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--gray);
  border: 1px solid var(--border);
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 14px 22px;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(241,241,241,0.55);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s, padding-left 0.2s;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--mid); color: var(--white); padding-left: 28px; }

.nav-cta {
  background: var(--white) !important;
  color: var(--black) !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  transition: background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent) !important; color: var(--black) !important; }

/* Mobile */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--gray);
  padding: 32px 7vw 40px;
  z-index: 99;
  border-bottom: 1px solid var(--border);
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
}
.nav-mobile.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.nav-mobile a {
  display: block;
  font-family: var(--display);
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.nav-mobile a:hover { color: var(--accent); padding-left: 8px; }
.nav-mobile .mobile-sub {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 0 8px 16px;
  border-bottom: 1px solid rgba(241,241,241,0.04);
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { display: block; }
}

/* ── FOOTER ── */
footer {
  background: var(--gray);
  border-top: 1px solid var(--border);
  padding: 72px 7vw 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-img {
  width: 44px; height: 44px;
  background: var(--mid);
  border: 1px dashed rgba(241,241,241,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-logo-text { display: flex; flex-direction: column; line-height: 1; }
.footer-logo-main { font-family: var(--display); font-size: 1.6rem; letter-spacing: 0.12em; color: var(--white); }
.footer-logo-sub { font-size: 0.5rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-top: 2px; }

.footer-tagline { font-size: 0.82rem; color: var(--muted); line-height: 1.75; max-width: 260px; margin-bottom: 20px; }
.footer-contact-item { font-size: 0.82rem; color: rgba(241,241,241,0.4); margin-bottom: 6px; }
.footer-contact-item a { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--white); }

.footer-col-title {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0.5;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.82rem; color: rgba(241,241,241,0.4); text-decoration: none; transition: color 0.2s, padding-left 0.2s; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(241,241,241,0.2);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── SHARED ── */
.section-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  opacity: 0.45;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(241,241,241,0.25);
  color: var(--white);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(241,241,241,0.06); }

.btn-dark {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border: 1px solid rgba(241,241,241,0.25);
  transition: background 0.2s, border-color 0.2s;
}
.btn-dark:hover { background: var(--gray); border-color: var(--white); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--white);
  padding: 80px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cta-band-sub { font-size: 0.88rem; color: rgba(241,241,241,0.55); margin-top: 10px; max-width: 500px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 1px; margin-top: 52px; }
.faq-item { background: var(--mid); overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; color: var(--white);
  font-family: var(--body); font-size: 0.88rem; font-weight: 500;
  text-align: left; padding: 22px 28px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--light); }
.faq-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--white); opacity: 0.5; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); opacity: 1; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; font-size: 0.84rem; color: rgba(241,241,241,0.55); line-height: 1.8; padding: 0 28px; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 28px 22px; }

/* ── IMAGE COMPONENTS ── */
.img-placeholder {
  background: var(--mid);
  border: 1px dashed rgba(241,241,241,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}
.img-placeholder svg { width: 28px; height: 28px; opacity: 0.3; }
.img-placeholder .ph-label { opacity: 0.5; font-size: 0.68rem; }
.img-placeholder .ph-code { opacity: 0.22; font-size: 0.6rem; font-family: monospace; margin-top: 4px; }

.img-block { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.img-portrait { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.img-wide { width: 100%; aspect-ratio: 16/7; object-fit: cover; display: block; }
.img-square { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }

/* ── PRICING ── */
.price-badge {
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(241,241,241,0.25);
  padding: 5px 12px;
  display: inline-block;
  margin-bottom: 22px;
}
.price-name { font-family: var(--display); font-size: 1.8rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.price-amount { font-family: var(--display); font-size: 4.5rem; line-height: 1; margin-bottom: 4px; letter-spacing: 0.02em; color: var(--white); }
.price-per { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; font-weight: 400; }
.price-divider { height: 1px; background: var(--border); margin-bottom: 22px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-features li { font-size: 0.84rem; display: flex; gap: 10px; align-items: flex-start; color: rgba(241,241,241,0.65); }
.price-features li::before { content: '→'; color: var(--white); opacity: 0.4; flex-shrink: 0; }

.price-card-featured { background: var(--white) !important; color: var(--black) !important; }
.price-card-featured .price-badge { color: var(--black); border-color: rgba(0,0,0,0.2); }
.price-card-featured .price-amount { color: var(--black); }
.price-card-featured .price-per { color: rgba(0,0,0,0.45); }
.price-card-featured .price-divider { background: rgba(0,0,0,0.1); }
.price-card-featured .price-features li { color: rgba(0,0,0,0.7); }
.price-card-featured .price-features li::before { color: var(--black); opacity: 0.5; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ── LOGO ── */
.nav-logo-img-real {
  height: 100px;
  width: auto;
  display: block;
  position: relative;
  /* overflows beyond the 72px nav height for bold look */
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0;
  overflow: visible;
  z-index: 101;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo-img-real {
  height: 56px;
  width: auto;
  display: block;
  opacity: 0.9;
}


/* ── PRICING WATERMARK ── */
.pricing-watermark {
  position: relative;
  overflow: hidden;
}

.pricing-watermark::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 700px;
  aspect-ratio: 1/1;
  background-image: url('images/logo.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
}

.pricing-watermark > * {
  position: relative;
  z-index: 1;
}
