/* =========================================================
   Ibiza Work Center — Premium Corporate Design System
   ========================================================= */
:root {
  --bg: #0d0e0c;
  --bg-elevated: #151712;
  --bg-card: #1a1c17;
  --bg-soft: #232520;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --text: #f4f4f0;
  --text-muted: #9a9b95;
  --text-dim: #6b6c66;

  --accent: #ff3410;
  --accent-hover: #ec7839;
  --accent-soft: rgba(255, 52, 16, 0.12);
  --accent-glow: rgba(255, 52, 16, 0.35);
  --gold: #ffc838;
  --lime: #c4fb6d;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.25);

  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Syne", "DM Sans", sans-serif;

  --container: 1180px;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 2.5rem, 780px);
  margin-inline: auto;
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  max-width: 56ch;
  line-height: 1.7;
}

.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  position: relative;
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 640px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header.center .lead {
  margin-inline: auto;
}

.section-header h2 {
  margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ff5a2e 100%);
  color: #fff;
  box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
  box-shadow: 0 14px 36px var(--accent-glow);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: var(--surface-hover);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  padding: 1.1rem 1.85rem;
  font-size: 1rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(13, 14, 12, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1002;
}

.logo img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--border);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.logo-text span {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-desktop a {
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--text);
  background: var(--surface);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
  transition: background 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

body.nav-open .nav-toggle span {
  background: transparent;
}

body.nav-open .nav-toggle span::before {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(13, 14, 12, 0.97);
  backdrop-filter: blur(20px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.nav-open .nav-mobile {
  opacity: 1;
  visibility: visible;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 700;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.nav-mobile .btn {
  margin-top: 1.75rem;
  width: fit-content;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  transform: scale(1.04);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255, 52, 16, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(13, 14, 12, 0.55) 0%, rgba(13, 14, 12, 0.75) 45%, var(--bg) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  align-items: end;
}

.hero-copy {
  max-width: 720px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  backdrop-filter: blur(8px);
}

.badge strong {
  color: var(--text);
  font-weight: 700;
}

.badge .stars {
  color: var(--gold);
  letter-spacing: 1px;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero h1 .line {
  display: block;
}

.hero h1 .accent {
  background: linear-gradient(120deg, #fff 0%, #ffb4a2 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.stat-card {
  padding: 1.25rem 1.15rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.stat-card .num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-card .label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- Cards / Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  position: relative;
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 52, 16, 0.35);
  box-shadow: var(--shadow-soft);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-media {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.service-card:hover .service-card-media img {
  transform: scale(1.05);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  margin-bottom: 0.55rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent);
  transition: gap 0.25s var(--ease);
}

.card-link:hover {
  gap: 0.7rem;
}

/* ---------- About split ---------- */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.split-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 320px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.split-media .float-card {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: rgba(13, 14, 12, 0.82);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.split-media .float-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.split-media .float-card span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.checklist {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
}

.checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--text-muted);
}

.checklist li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--lime);
  margin-top: 2px;
}

/* ---------- Events ---------- */
.events-grid {
  display: grid;
  gap: 1.25rem;
}

.event-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}

.event-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
}

.event-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.event-card:hover .event-card-media img {
  transform: scale(1.04);
}

.event-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.event-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.event-card h3 {
  margin-bottom: 0.55rem;
}

.event-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  gap: 1.25rem;
}

.testimonial {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elevated));
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.testimonial blockquote {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  flex: 1;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

.testimonial .who strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial .who span {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ---------- Partners ---------- */
.partners-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.partner {
  display: grid;
  place-items: center;
  min-height: 100px;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.partner:hover {
  background: var(--surface-hover);
  border-color: var(--border-strong);
}

.partner img {
  max-height: 48px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.2) brightness(1.05);
  opacity: 0.9;
}

.partner-cta {
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4rem);
  border: 1px solid var(--border);
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.cta-band-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 14, 12, 0.92), rgba(255, 52, 16, 0.35));
}

.cta-band-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.cta-band h2 {
  margin-bottom: 0.85rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.info-card {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.info-card .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.info-card a,
.info-card p {
  color: var(--text);
  font-weight: 500;
}

.info-card a:hover {
  color: var(--accent);
}

.form-card {
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(0, 0, 0, 0.25);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 0.85rem;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 500;
}

.form-status.ok {
  display: block;
  background: rgba(196, 251, 109, 0.12);
  border: 1px solid rgba(196, 251, 109, 0.3);
  color: var(--lime);
}

.form-status.err {
  display: block;
  background: rgba(255, 52, 16, 0.12);
  border: 1px solid rgba(255, 52, 16, 0.3);
  color: #ff8a72;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: calc(var(--header-h) + 3.5rem) 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(255, 52, 16, 0.15), transparent 60%),
    linear-gradient(180deg, var(--bg-elevated), var(--bg));
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .sep {
  opacity: 0.5;
}

/* ---------- Service detail ---------- */
.feature-grid {
  display: grid;
  gap: 1rem;
}

.feature {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.feature h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.93rem;
}

.deliverable {
  margin-top: 2rem;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 52, 16, 0.12), rgba(255, 200, 56, 0.06));
  border: 1px solid rgba(255, 52, 16, 0.25);
}

.deliverable h3 {
  margin-bottom: 0.5rem;
}

.deliverable p {
  color: var(--text-muted);
}

/* ---------- Legal ---------- */
.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  background: var(--bg-elevated);
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 32ch;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links a:hover {
  color: var(--text);
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease);
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .nav-desktop,
  .header-actions {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1.4fr 1fr;
  }

  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }

  .split.reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .split.reverse .split-media {
    order: 2;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .partners-strip {
    grid-template-columns: repeat(6, 1fr);
  }

  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2.5rem;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }

  .feature-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .logo-text {
    display: none;
  }
}

/* ---------- Language switcher ---------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(0, 0, 0, 0.25);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn:hover {
  color: var(--text);
}

.lang-btn.active {
  background: var(--accent);
  color: #fff;
}

.nav-mobile .lang-switch {
  margin-top: 1.5rem;
  width: fit-content;
}

.header-actions {
  gap: 0.65rem;
}

@media (min-width: 900px) {
  .header-actions .lang-switch {
    margin-right: 0.15rem;
  }
}

.lang-switch-mobile {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 0.5rem;
}

@media (min-width: 900px) {
  .lang-switch-mobile {
    display: none;
  }
}

/* ---------- Promise / Guarantee ---------- */
.hero-promise-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: rgba(196, 251, 109, 0.1);
  border: 1px solid rgba(196, 251, 109, 0.35);
  max-width: 100%;
}

.hero-promise-pill p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lime);
  margin: 0;
  line-height: 1.35;
}

.hero-promise-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime);
  color: #0d0e0c;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.promise-section {
  padding-top: 0;
}

.promise-card {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(255, 52, 16, 0.18), transparent 55%),
    linear-gradient(160deg, var(--bg-card), var(--bg-elevated));
  border: 1px solid rgba(255, 52, 16, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.promise-badge {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.promise-grid {
  display: grid;
  gap: 2.25rem;
}

.promise-sub {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  color: var(--lime);
  margin: 0.85rem 0 1rem;
  line-height: 1.3;
}

.promise-steps {
  display: grid;
  gap: 1rem;
}

.promise-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--border);
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  line-height: 1;
  padding-top: 0.15rem;
}

.promise-steps h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.promise-steps p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Clients ---------- */
.clients-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

.client-card {
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 52, 16, 0.35);
  box-shadow: var(--shadow-soft);
}

.client-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(255, 52, 16, 0.2), rgba(255, 200, 56, 0.12));
  border: 1px solid rgba(255, 52, 16, 0.3);
  color: var(--text);
}

.client-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.2rem;
}

.client-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin: 0;
}

.clients-note {
  text-align: center;
  margin-top: 1.75rem;
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 500;
}

@media (min-width: 700px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .promise-grid {
    grid-template-columns: 1.15fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
  }
}

/* ---------- Event cards with logo badges ---------- */
.event-card-media {
  position: relative;
}

.event-logo-badge {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(13, 14, 12, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  padding: 0.4rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.event-logo-badge img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.event-logo-badge-light {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.08);
}

.event-logo-badge-wide {
  width: 110px;
  height: 56px;
  padding: 0.35rem 0.5rem;
}

.event-logo-text {
  width: auto;
  max-width: calc(100% - 1.5rem);
  height: auto;
  padding: 0.45rem 0.75rem;
  background: linear-gradient(135deg, rgba(255, 52, 16, 0.95), rgba(236, 120, 57, 0.92));
  border: none;
}

.event-logo-text span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.event-card-featured .event-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.event-card-featured .card-link {
  margin-top: 0.5rem;
  align-self: flex-start;
}

@media (min-width: 900px) {
  .events-grid-featured {
    grid-template-columns: repeat(2, 1fr);
  }
  .events-grid-featured .event-card-featured .event-card-media {
    aspect-ratio: 16 / 9;
  }
}

/* ========== Professional upgrade 2026 ========== */

/* Accessibility: stronger muted text */
:root {
  --text-muted: #a8a9a3;
  --text-dim: #7d7e78;
}

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Sticky header CTA always visible on tablet+ */
@media (min-width: 768px) {
  .header-actions {
    display: flex !important;
  }
}

/* Tighter service cards */
.service-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card.compact .service-card-media {
  aspect-ratio: 16 / 9;
}

/* How we work */
.how-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  counter-reset: how;
}
.how-step {
  position: relative;
  padding: 1.5rem 1.35rem 1.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.how-step .how-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.65rem;
}
.how-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}
.how-step p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin: 0;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 820px;
  margin-inline: auto;
}
.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.25rem;
  font-weight: 600;
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 1.25rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Client logo strip */
.client-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.client-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 140px;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border-strong);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.client-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.client-logo-card img {
  max-height: 52px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
}
.client-logo-card span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
  text-align: center;
}

/* Case study cards */
.cases-grid {
  display: grid;
  gap: 1.25rem;
}
.case-card {
  display: grid;
  gap: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s var(--ease);
}
.case-card:hover {
  border-color: rgba(255, 52, 16, 0.35);
  transform: translateY(-3px);
}
.case-card-top {
  padding: 1.5rem 1.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
}
.case-card-top img {
  max-height: 44px;
  max-width: 120px;
  object-fit: contain;
}
.case-card-body {
  padding: 1.35rem 1.5rem 1.6rem;
}
.case-card-body .tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.case-card-body h3 {
  margin-bottom: 0.55rem;
}
.case-card-body p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 0.85rem;
}
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.case-meta span {
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* Trust strip */
.trust-strip {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  margin-top: 1rem;
}
.trust-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.trust-item strong {
  color: var(--text);
  display: block;
  font-size: 0.92rem;
}
.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  margin-top: 0.45rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(196, 251, 109, 0.15);
}

/* Map */
.map-wrap {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 280px;
  background: var(--bg-soft);
}
.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
  filter: grayscale(0.3) contrast(1.05);
}

/* Service outcomes list */
.outcome-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0;
}
.outcome-list li {
  display: flex;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.93rem;
}
.outcome-list li::before {
  content: "✓";
  color: var(--lime);
  font-weight: 800;
}

/* Section alt background helper */
.section-soft {
  background: var(--bg-elevated);
}

@media (min-width: 700px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .how-grid { grid-template-columns: repeat(4, 1fr); }
  .cases-grid { grid-template-columns: repeat(3, 1fr); }
  .client-logos { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 640px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Client logos 4 columns */
@media (min-width: 700px) {
  .client-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .client-logos {
    grid-template-columns: repeat(4, 1fr);
  }
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .cases-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Event card with logo on dark background */
.event-card-media-logo {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #121410 0%, #1c1e1a 50%, #0d0e0c 100%);
  aspect-ratio: 16 / 9;
  padding: 1.75rem;
}
.event-card-media-logo .event-logo-main {
  width: auto;
  max-width: 85%;
  max-height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}

/* Case cards with photo + logo (event style) */
.case-card.with-media {
  display: flex;
  flex-direction: column;
}
.case-card.with-media .event-card-media {
  border-radius: 0;
  aspect-ratio: 16 / 10;
}
.case-card.with-media .case-card-body {
  flex: 1;
}
.client-logos {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) {
  .client-logos { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .client-logos { grid-template-columns: repeat(4, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .cases-grid { grid-template-columns: repeat(3, 1fr); }
}

.event-card-media-logo-light {
  background: linear-gradient(145deg, #ffffff 0%, #f4f4f0 55%, #eaeae4 100%);
}
.event-card-media-logo-light .event-logo-main {
  filter: none;
  max-width: 70%;
  max-height: 55%;
}
