/* ── HOME.CSS — Homepage-specific styles ── */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--white);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 4rem) var(--pad-x) 5rem;
}

.hero-text { max-width: 820px; }

.hero-headline {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  color: var(--primary);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--neutral);
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── MANIFESTO ── */
.manifesto-section {
  background: var(--primary);
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  position: relative;
  overflow: hidden;
}

.manifesto-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.manifesto-inner {
  max-width: 960px;
  margin: 0 auto;
}

.manifesto-headline {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3em;
}

.choice-box {
  display: inline-block;
  background: var(--cta);
  color: var(--primary);
  padding: 0.05em 0.3em;
  line-height: 1.15;
  letter-spacing: -0.02em;
  border-radius: 2px;
  transition: transform 0.25s;
  cursor: default;
}
.choice-box:hover {
  transform: rotate(0deg) scale(1.05);
}

.manifesto-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.manifesto-moliner {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  line-height: 1.8;
}
.manifesto-moliner strong {
  color: var(--white);
  font-weight: 700;
}

.manifesto-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.manifesto-list li {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.manifesto-list li:first-child { padding-top: 0; }
.manifesto-list li:last-child { border-bottom: none; padding-bottom: 0; }

.manifesto-label {
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cta);
  margin-bottom: 0.3rem;
}

.manifesto-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 300;
  line-height: 1.55;
}

/* ── SERVICES ── */
.services-section {
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  background: var(--bg);
}

.services-header { margin-bottom: 3rem; }
.services-section .eyebrow { color: var(--accent); }

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--white);
  border-top: 4px solid var(--primary);
  padding: 2rem 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,116,218,0.11);
}

.service-icon {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(10,116,218,0.1);
  line-height: 1;
  margin-bottom: 1.25rem;
  user-select: none;
}

.service-title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--neutral);
  font-weight: 300;
  line-height: 1.7;
}

.services-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── NAV LANG SWITCHER ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(47,79,79,0.25);
  border-radius: 3px;
  overflow: hidden;
}

.lang-opt {
  font-family: var(--font-title);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  color: var(--neutral);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  border-right: 1.5px solid rgba(47,79,79,0.15);
  line-height: 1;
}
.lang-opt:last-child { border-right: none; }
.lang-opt:hover { background: var(--bg); color: var(--primary); }
.lang-opt.active { background: var(--primary); color: var(--white); }

.mobile-lang {
  display: flex;
  border: 1.5px solid rgba(47,79,79,0.2);
  border-radius: 3px;
  overflow: hidden;
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .manifesto-body { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .nav-right { gap: 1rem; }
  .manifesto-headline { font-size: 2rem; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
}
