/* ============================================================
   CCC Hospitality Consulting — style.css
   Brand: #FFFF00 (yellow) · #000000 (black) · #F5F5F5 (bg)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background-color: #F5F5F5;
  color: #111111;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--dark { background: #111111; color: #ffffff; }
.section--black { background: #000000; color: #ffffff; }
.section--yellow { background: #FFFF00; color: #000000; }
.section--white { background: #ffffff; }

@media (max-width: 768px) {
  .section { padding: 48px 0; }
}

/* ── Logo image ── */
.logo-img {
  display: block;
  height: 52px;
  width: auto;
}

.header-logo .logo-img {
  height: 52px;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  background: #F5F5F5;
  border-radius: 6px;
  padding: 4px 8px;
}

.logo-pill .logo-img {
  height: 44px;
}

/* ── Header / Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.header-logo { flex-shrink: 0; }
.header-logo .logo-svg { height: 52px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #111111;
  transition: color 0.2s;
}

.main-nav a:hover { color: #000000; text-decoration: underline; }
.main-nav a.active { font-weight: 700; }

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.lang-switcher a {
  color: #555555;
  transition: color 0.2s;
}

.lang-switcher a:hover,
.lang-switcher a.active { color: #000000; }

.lang-switcher span { color: #cccccc; }

.btn-contact-header {
  background: #FFFF00;
  color: #000000;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 4px;
  white-space: nowrap;
  transition: filter 0.2s;
  letter-spacing: 0.02em;
}

.btn-contact-header:hover { filter: brightness(0.88); }

/* Hamburger */
/* ── Hamburger: CSS-only checkbox technique ── */
.menu-checkbox {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 12px;
  margin: -8px;
  z-index: 1100;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111111;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav: shown when checkbox is checked */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 1050;
  padding: 32px 24px;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
}

.menu-checkbox:checked ~ .mobile-nav {
  display: flex;
}

/* menu open/close handled via CSS checkbox */

.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #111111;
  padding: 8px 0;
  border-bottom: 1px solid #eeeeee;
}

.mobile-nav .mobile-lang {
  display: flex;
  gap: 16px;
  padding-top: 8px;
}

.mobile-nav .mobile-lang a {
  font-size: 0.9rem;
  border-bottom: none;
  color: #555555;
}

.mobile-nav .btn-contact-header {
  margin-top: 8px;
  display: inline-block;
  text-align: center;
}

@media (max-width: 900px) {
  .main-nav,
  .lang-switcher,
  .btn-contact-header { display: none; }
  .hamburger { display: flex; }
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-radius: 4px;
  padding: 14px 32px;
  cursor: pointer;
  border: none;
  transition: filter 0.2s, transform 0.15s;
  text-align: center;
}

.btn:hover {
  filter: brightness(0.88);
  transform: translateY(-1px);
}

.btn-yellow {
  background: #FFFF00;
  color: #000000;
}

.btn-black {
  background: #000000;
  color: #ffffff;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
  display: block;
  padding: 16px;
  font-size: 1rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 780px;
}

.hero-content h1 {
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content .subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  margin-bottom: 36px;
  opacity: 0.92;
  line-height: 1.6;
}

/* Hero (inner pages) — shorter */
.hero-inner {
  min-height: 45vh;
  padding: 100px 0 60px;
}

/* ── Trust Bar ── */
.trust-bar {
  background: #ffffff;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  padding: 16px 0;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: #444444;
}

/* ── Cards ── */
.cards-grid {
  display: grid;
  gap: 28px;
}

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

@media (max-width: 900px) {
  .cards-grid--3,
  .cards-grid--4 { grid-template-columns: 1fr; }
  .cards-grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: #ffffff;
  border-radius: 2px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.card p { font-size: 0.95rem; color: #444444; }

.card-cta {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #111111;
  background: #FFFF00;
  padding: 10px 20px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: opacity 0.2s;
}
.card-cta:hover {
  opacity: 0.85;
}

.card-cta:hover { opacity: 0.6; }

/* Value card with yellow border */
.card--value {
  border-left: 4px solid #FFFF00;
  padding-left: 24px;
}

.card--value h3 { font-size: 1rem; margin-bottom: 8px; }
.card--value p { font-size: 0.9rem; color: #555555; }

/* Testimonial placeholder card */
.card--testimonial {
  background: #f9f9f9;
  border: 2px dashed #CCCCCC;
  box-shadow: none;
}

.card--testimonial:hover {
  transform: none;
  box-shadow: none;
}

.testimonial-badge {
  display: inline-block;
  background: #111111;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.testimonial-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: #111111;
  margin-bottom: 4px;
}

.testimonial-text {
  font-size: 0.88rem;
  color: #888888;
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial-note {
  margin-top: 32px;
  text-align: center;
  font-size: 0.9rem;
  color: #888888;
  font-style: italic;
}

/* ── How It Works Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: steps;
}

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; }
}

.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFF00;
  flex-shrink: 0;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.step p {
  font-size: 0.9rem;
  color: #555555;
  margin: 0;
}

/* ── Why CCC (2-col grid) ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
}

.why-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #ffffff;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.why-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.why-item p {
  font-size: 0.9rem;
  color: #555555;
  margin: 0;
}

/* ── Central CTA Section ── */
.cta-section {
  background: #FFFF00;
  color: #000000;
  text-align: center;
  padding: 80px 40px;
}

.cta-section h2 { margin-bottom: 16px; }
.cta-section p { font-size: 1.05rem; margin-bottom: 32px; }

@media (max-width: 768px) {
  .cta-section { padding: 48px 24px; }
}

/* ── Section Headers ── */
.section-header {
  margin-bottom: 48px;
}

.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; color: #555555; max-width: 680px; }

.section-header--center {
  text-align: center;
}

.section-header--center p { margin: 0 auto; }

/* ── Services Page ── */
.service-block {
  padding: 64px 0;
  border-bottom: 1px solid #E0E0E0;
}

.service-block:last-of-type { border-bottom: none; }

.included-list,
.excluded-list {
  list-style: none;
  margin: 16px 0;
}

.included-list li,
.excluded-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.95rem;
}

.check-icon { color: #2D7D46; font-weight: 700; flex-shrink: 0; }
.cross-icon { color: #CC0000; font-weight: 700; flex-shrink: 0; }

.included-excluded-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 24px 0 32px;
}

@media (max-width: 600px) {
  .included-excluded-grid { grid-template-columns: 1fr; }
}

.included-excluded-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #444444;
}

/* ── Pricing Tabs: CSS-only radio button system ── */
.tab-radio { display: none; }

.pricing-tabs {
  margin: 32px 0;
}

.tab-label {
  display: inline-block;
  cursor: pointer;
  padding: 12px 24px;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #888888;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  background: none;
  margin-bottom: -2px;
}

.tab-label:hover { color: #000000; }

.tab-bar-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #E0E0E0;
  margin-bottom: 24px;
}

.tab-radio:checked + .tab-label {
  color: #000000;
  border-bottom-color: #FFFF00;
}

/* All panels hidden by default */
.pricing-tabs .tab-panel { display: none; }

/* EN — show correct panel when radio is checked */
#tab-r1:checked ~ #tab-restaurants { display: block; }
#tab-r2:checked ~ #tab-hotels      { display: block; }
#tab-r3:checked ~ #tab-bars        { display: block; }

/* IT */
#tab-i1:checked ~ #tab-ristoranti  { display: block; }
#tab-i2:checked ~ #tab-hotel       { display: block; }
#tab-i3:checked ~ #tab-bar         { display: block; }

/* ES */
#tab-e1:checked ~ #tab-restaurantes { display: block; }
#tab-e2:checked ~ #tab-hoteles      { display: block; }
#tab-e3:checked ~ #tab-bares        { display: block; }

/* ── Pricing Tables ── */
.table-wrapper {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #E0E0E0;
  font-size: 0.92rem;
  min-width: 420px;
}

.pricing-table th {
  background: #000000;
  color: #ffffff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.pricing-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #E0E0E0;
}

.pricing-table tr:nth-child(even) td { background: #FAFAFA; color: #111111; }
.pricing-table tr:nth-child(odd) td  { background: #ffffff; color: #111111; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: #f0f0f0; color: #111111; }

.price-note {
  margin-top: 16px;
  padding: 14px 20px;
  background: #F5F5F5;
  border-left: 3px solid #FFFF00;
  font-size: 0.88rem;
  color: #333333;
  line-height: 1.6;
}

.launch-badge {
  display: inline-block;
  background: #FFFF00;
  color: #111111;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.82rem;
}

/* AI Tables (country tables) */
.ai-tables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 32px 0;
  width: 100%;
}

@media (max-width: 768px) {
  .ai-tables-grid { grid-template-columns: 1fr; gap: 24px; }
}

.ai-table-block h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-table .saving {
  font-weight: 700;
  color: #2D7D46;
}

.source-note {
  font-size: 0.78rem;
  color: #888888;
  margin-top: 8px;
  font-style: italic;
}

/* ── AI Phases ── */
.phases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 32px 0;
}

@media (max-width: 900px) {
  .phases-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.phase-card {
  background: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 2px;
  padding: 24px 20px;
  color: #ffffff;
}

.phase-number {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFF00;
  line-height: 1;
  margin-bottom: 8px;
}

.phase-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.phase-card p {
  font-size: 0.85rem;
  color: #aaaaaa;
  margin: 0;
}

/* ── Strong Data Block ── */
.strong-data-block {
  background: #000000;
  color: #FFFF00;
  text-align: center;
  padding: 64px 40px;
  width: 100%;
  box-sizing: border-box;
}

.strong-data-block .big-stat {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 16px;
  word-break: break-word;
}

.strong-data-block .closing-line {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.85;
}

/* ── Coming Soon Cards ── */
.coming-soon-card {
  opacity: 0.7;
  position: relative;
}

.coming-soon-badge {
  display: inline-block;
  background: #000000;
  color: #FFFF00;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ── About Page ── */
.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #222222;
  max-width: 760px;
}

.about-text p { margin-bottom: 1.4em; }

.positioning-block {
  border-left: 4px solid #FFFF00;
  background: #F5F5F5;
  padding: 32px 40px;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #222222;
  margin: 48px 0;
}

.visual-note {
  text-align: center;
  color: #888888;
  font-style: italic;
  font-size: 0.92rem;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #E0E0E0;
}

/* ── Contact Page ── */
.contact-hero {
  background: #111111;
  text-align: center;
  padding: 120px 40px;
  color: #ffffff;
}

.contact-hero h1 { margin-bottom: 16px; color: #ffffff; }
.contact-hero .subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin: 0 auto;
}

.contact-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-radius: 2px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  color: #333333;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #111111;
  background: #ffffff;
  transition: border-color 0.2s;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #000000;
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contact-info {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #E0E0E0;
  font-size: 0.95rem;
  color: #555555;
}

.contact-info a {
  color: #000000;
  font-weight: 600;
  text-decoration: underline;
}

.contact-info a:hover { opacity: 0.65; }

.response-time {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #888888;
}

/* ── Intro Block (dark, AI section) ── */
.intro-dark-block {
  background: #111111;
  color: #ffffff;
  padding: 48px 40px;
  margin: 32px 0;
  border-radius: 2px;
  width: 100%;
  box-sizing: border-box;
}

.intro-dark-block p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.2em;
}

.intro-dark-block p:last-child { margin-bottom: 0; }

/* ── Service Needs/Gets Grid ── */
.needs-gets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 24px 0;
}

@media (max-width: 600px) {
  .needs-gets-grid { grid-template-columns: 1fr; }
}

.needs-gets-block h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 12px;
}

.needs-gets-block ul { list-style: none; }
.needs-gets-block ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 5px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid #eeeeee;
}

.needs-gets-block ul li:last-child { border-bottom: none; }

/* ── Footer ── */
.site-footer {
  background: #000000;
  color: #ffffff;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

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

.footer-brand .tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  line-height: 1.5;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-col a:hover { color: #FFFF00; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom .footer-lang {
  display: flex;
  gap: 12px;
}

.footer-bottom .footer-lang a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-bottom .footer-lang a:hover { color: #FFFF00; }

/* ── Utilities ── */
.text-center { text-align: center; }
.text-yellow { color: #FFFF00; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.divider {
  border: none;
  border-top: 1px solid #E0E0E0;
  margin: 48px 0;
}

.on-request-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111111;
  padding: 16px 0;
}

.less-more-line {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 24px 0 32px;
  color: #ffffff;
}

/* ── Responsive helpers ── */
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .contact-form-wrap { padding: 24px 16px; }
  .intro-dark-block { padding: 32px 16px; }
  .positioning-block { padding: 24px; }
  .cta-section { padding: 48px 20px; }
  .strong-data-block { padding: 48px 16px; }

  /* AI tables: each block scrolls independently */
  .ai-table-block {
    width: 100%;
    max-width: 100%;
  }
  .ai-table-block .table-wrapper {
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  /* Smaller font in tables so they fit better */
  .pricing-table { font-size: 0.78rem; min-width: 360px; }
  .pricing-table th,
  .pricing-table td { padding: 7px 8px; }

  /* Grids to single column */
  .ai-tables-grid { grid-template-columns: 1fr !important; }
  .phases-grid { grid-template-columns: 1fr !important; }
  .needs-gets-grid { grid-template-columns: 1fr !important; }
  .included-excluded-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .why-grid { grid-template-columns: 1fr !important; }
  .cards-grid--3 { grid-template-columns: 1fr !important; }
  .cards-grid--2 { grid-template-columns: 1fr !important; }

  /* About two-col layout */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Buttons */
  .btn-lg { padding: 14px 20px; font-size: 0.95rem; }

  /* Dark section containers */
  .section--dark .container,
  .section--black .container {
    padding: 0 16px;
  }
}

/* ── Playbook Promise ── */
.playbook-promise {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 4px solid #FFFF00;
  background: #f9f9f9;
}
.playbook-promise p {
  margin: 0;
  font-size: 1rem;
  color: #111111;
  line-height: 1.6;
}

/* ── FAQ hero scuro ── */
.faq-hero {
  background: #111111;
  padding: 80px 0 56px;
}
.faq-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}
.faq-hero p {
  font-size: 1.05rem;
  color: #AAAAAA;
  line-height: 1.7;
  max-width: 600px;
}
