/* Europa Incorpora modern dark theme */
:root {
  color-scheme: dark;
  --bg: #0f172a;
  --panel: #1e293b;
  --panel-soft: #334155;
  --surface: #1e293b;
  --surface-soft: rgba(30, 41, 59, 0.9);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --accent: #3b82f6;
  --accent-soft: #60a5fa;
  --border: rgba(148, 163, 184, 0.2);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  --radius: 28px;
  --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  --gradient-secondary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

/* Edit mode styles */
.edit-button {
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.edit-button:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow);
}

.edit-mode [data-i18n] {
  cursor: pointer;
  position: relative;
}

.edit-mode [data-i18n]:hover {
  background: rgba(59, 130, 246, 0.1);
  border-radius: 4px;
  padding: 2px 4px;
}

.edit-mode [data-i18n]:after {
  content: "✏️";
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 12px;
  opacity: 0.7;
}

.edit-mode .edit-button {
  background: var(--gradient-accent);
}

/* Text accent styles */
.text-accent {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

/* Improved section graphic styles */
.section-graphic {
  margin: 40px 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--gradient-secondary);
  box-shadow: var(--shadow);
  animation: slideInLeft 0.8s ease-out;
  max-width: 100%;
  height: auto;
}

.section-graphic img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(1.05) saturate(1.1);
  transition: transform 0.3s ease;
}

.section-graphic:hover img {
  transform: scale(1.02);
}

/* Ensure proper contrast for all text elements */
h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  line-height: 1.2;
}

p, li, span {
  color: var(--muted);
}

/* Improve card readability */
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.card h3 {
  color: var(--text);
  margin-bottom: 14px;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

/* Menu toggle button for mobile */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  color: var(--text);
  cursor: pointer;
  font-size: 1.2rem;
}

.menu-toggle:hover {
  background: rgba(59, 130, 246, 0.1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--gradient-secondary);
  color: var(--text);
  line-height: 1.75;
  animation: fadeInUp 1s ease-out;
}

img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 8px;
}

img:hover {
  transform: scale(1.02);
  filter: brightness(1.05) saturate(1.1);
}

button,
input,
textarea,
a {
  font: inherit;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  animation: slideInLeft 0.6s ease-out;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.site-logo img {
  display: block;
  width: auto;
  max-height: 104px;
  filter: none;
  background: rgba(47, 111, 158, 0.08);
  padding: 12px;
  border-radius: 16px;
}

.header-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-links {
  flex: 1;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.lang-switcher button {
  min-width: 58px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(30, 41, 59, 0.8);
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lang-switcher button:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: translateY(-1px);
}

.lang-switcher button.active {
  background: var(--accent);
  color: #ffffff;
}

.lang-switcher button[data-lang="en"]::before { content: '🇬🇧'; margin-right: 6px; }
.lang-switcher button[data-lang="fr"]::before { content: '🇫🇷'; margin-right: 6px; }
.lang-switcher button[data-lang="es"]::before { content: '🇪🇸'; margin-right: 6px; }
.lang-switcher button[data-lang="pl"]::before { content: '🇵🇱'; margin-right: 6px; }

.chatbot-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  font-family: inherit;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.chatbot-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  cursor: pointer;
  font-size: 1.35rem;
}

.chatbot-panel {
  width: 360px;
  max-width: calc(100vw - 32px);
  background: #ffffff;
  border: 1px solid rgba(17, 34, 51, 0.1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}

.chatbot-hidden {
  display: none;
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--accent);
  color: white;
}

.chatbot-title {
  font-weight: 700;
  font-size: 1rem;
}

.chatbot-close {
  background: transparent;
  color: white;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.chatbot-messages {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 420px;
  overflow-y: auto;
  background: #f4f7fb;
}

.chatbot-message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 18px;
  line-height: 1.5;
  font-size: 0.95rem;
  color: var(--text);
}

.chatbot-message.bot {
  align-self: flex-start;
  background: rgba(47, 111, 158, 0.08);
}

.chatbot-message.user {
  align-self: flex-end;
  background: var(--accent);
  color: #ffffff;
}

.chatbot-footer {
  display: flex;
  gap: 10px;
  padding: 14px 16px 18px;
  border-top: 1px solid rgba(17, 34, 51, 0.08);
  background: #fdfdfd;
}

.chatbot-input {
  flex: 1;
  border: 1px solid rgba(17, 34, 51, 0.1);
  border-radius: 999px;
  padding: 12px 16px;
  outline: none;
  font: inherit;
}

.chatbot-send {
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--accent);
  color: white;
  cursor: pointer;
  font-weight: 700;
}

@media (max-width: 720px) {
  .chatbot-widget {
    right: 16px;
    bottom: 16px;
  }

  .chatbot-panel {
    width: calc(100vw - 32px);
  }
}

.cta-button {
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(47, 111, 158, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(47, 111, 158, 0.4);
}

.secondary-button {
  background: var(--gradient-accent);
  color: var(--text);
  border: 1px solid rgba(210, 184, 106, 0.3);
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(210, 184, 106, 0.3);
}

.hero {
  padding: 90px 0 80px;
}

.hero-copy {
  max-width: 680px;
}

.hero-copy p,
.hero-copy li {
  color: var(--muted);
}

.hero-copy h1 {
  font-size: clamp(3rem, 4vw, 4.6rem);
  line-height: 0.94;
  margin: 0 0 24px;
  letter-spacing: -0.04em;
}

.hero-copy h2 {
  margin: 0;
  font-size: 1.1rem;
  max-width: 670px;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(47, 111, 158, 0.12);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.hero-panel h3 {
  margin-top: 0;
  font-size: 1.03rem;
  letter-spacing: 0.02em;
}

.hero-panel p {
  margin: 16px 0 0;
  color: var(--muted);
}

.hero-visual {
  margin-bottom: 28px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--gradient-primary);
  box-shadow: inset 0 0 0 1px rgba(17, 34, 51, 0.08);
  animation: slideInRight 0.8s ease-out;
  max-width: 100%;
  display: flex;
  justify-content: center;
}

.hero-visual img {
  display: block;
  width: 100%;
  max-width: 450px;
  height: auto;
  filter: brightness(1.1) contrast(1.05);
  transition: transform 0.3s ease;
}

.hero-visual:hover img {
  transform: scale(1.02);
}

.section-graphic {
  margin: 40px 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--gradient-secondary);
  box-shadow: var(--shadow);
  animation: slideInLeft 0.8s ease-out;
  max-width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}

.section-graphic img {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: brightness(1.05) saturate(1.1);
  transition: transform 0.3s ease;
}

.section-graphic:hover img {
  transform: scale(1.02);
}

.split-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section {
  padding: 80px 0;
  animation: fadeInUp 0.8s ease-out;
}

.section-alt {
  background: var(--gradient-secondary);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section-title {
  display: grid;
  gap: 18px;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin: 0;
}

.section-title p {
  max-width: 700px;
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 24px;
}

.card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 34, 51, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 80px rgba(15, 23, 42, 0.15);
}

.card h3,
.card h4 {
  margin: 0 0 14px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.process-list,
.testimonials,
.faq-list {
  display: grid;
  gap: 24px;
}

.process-step {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(184, 156, 87, 0.14);
  color: var(--accent);
  font-weight: 700;
}

.testimonial-card {
  background: var(--surface);
  color: #112131;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.08);
}

.testimonial-card p {
  margin: 0 0 22px;
}

.testimonial-card strong {
  display: block;
  margin-bottom: 8px;
  color: #081826;
}

.testimonial-card span {
  display: block;
  color: #6d6b61;
}

.faq-item {
  padding: 28px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(17, 34, 51, 0.08);
  border-radius: 24px;
}

.faq-item h4 {
  margin-top: 0;
}

.footer {
  padding: 40px 0 24px;
  border-top: 1px solid rgba(17, 34, 51, 0.08);
  background: #f7f7f5;
}

.footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer a {
  color: var(--muted);
}

.footer p,
.footer a {
  margin: 0;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 34, 51, 0.08);
  border-radius: 32px;
  padding: 40px;
}

.form-group {
  display: grid;
  gap: 10px;
}

input,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  border-radius: 18px;
  padding: 14px 18px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 156, 87, 0.15);
}

textarea {
  min-height: 170px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}

.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 42px 48px;
  border-radius: 28px;
  background: rgba(47, 111, 158, 0.08);
  border: 1px solid rgba(17, 34, 51, 0.08);
}

.bottom-cta h3 {
  margin: 0;
}

.bottom-cta p {
  margin: 10px 0 0;
  color: var(--muted);
}

.text-accent {
  color: var(--accent);
}

.highlight {
  color: var(--accent-soft);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-size: 1.45rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lang-switcher button {
  min-width: 58px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.lang-switcher button::before {
  margin-right: 6px;
}

.lang-switcher button[data-lang="en"]::before { content: '🇬🇧'; }
.lang-switcher button[data-lang="fr"]::before { content: '🇫🇷'; }
.lang-switcher button[data-lang="es"]::before { content: '🇪🇸'; }
.lang-switcher button[data-lang="pl"]::before { content: '🇵🇱'; }

.lang-switcher button.active,
.lang-switcher button:hover {
  background: var(--accent);
  color: #081826;
  border-color: transparent;
  transform: translateY(-1px);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(184, 156, 87, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.35rem;
  color: var(--accent);
}

.icon-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.icon-block span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
  font-size: 1.2rem;
}

.section-graphic {
  margin-top: 32px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(19, 35, 47, 0.96), rgba(29, 55, 73, 0.96));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.section-graphic img {
  display: block;
  width: 100%;
  height: auto;
}

/* Responsive Design */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
  .section-graphic img {
    max-width: 400px;
  }

  .hero-visual img {
    max-width: 350px;
  }
}

/* Desktop (1200px - 1440px) */
@media (min-width: 1200px) and (max-width: 1439px) {
  .section-graphic img {
    max-width: 450px;
  }

  .hero-visual img {
    max-width: 400px;
  }
}

/* Laptop (768px - 1200px) */
@media (max-width: 1200px) {
  .container {
    width: min(1100px, calc(100% - 40px));
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

/* Tablet (480px - 768px) */
@media (max-width: 768px) {
  .container {
    width: min(100%, calc(100% - 32px));
  }

  .navbar {
    gap: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .header-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    justify-content: center;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-actions {
    display: none;
  }

  .lang-switcher {
    justify-content: space-between;
    order: 3;
    width: 100%;
    align-self: stretch;
    margin-top: 6px;
  }

  .lang-switcher button {
    width: auto;
    flex: 1 1 22%;
    justify-content: center;
  }

  .hero {
    padding: 60px 0 50px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero-copy h2 {
    font-size: 1rem;
  }

  .hero-grid,
  .split-grid,
  .grid-4,
  .grid-3,
  .footer .container {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 0;
  }

  .section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
  }

  .card h3,
  .card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .bottom-cta {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .contact-panel {
    padding: 30px;
  }

  .section-graphic {
    margin-top: 24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }

  .section-graphic img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    display: block;
  }

  .hero-visual {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }

  .hero-visual img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    display: block;
  }
}

/* Mobile (< 480px) */
@media (max-width: 480px) {
  .container {
    width: min(100%, calc(100% - 20px));
  }

  .hero {
    padding: 50px 0 40px;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .hero-copy h2 {
    font-size: 0.95rem;
  }

  .section {
    padding: 40px 0;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h2 {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }

  .section-title p {
    font-size: 0.9rem;
  }

  .card,
  .process-step,
  .faq-item {
    padding: 18px;
  }

  .card h3,
  .card h4 {
    font-size: 1rem;
  }

  .card p {
    font-size: 0.9rem;
  }

  .process-step span {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .testimonial-card p {
    font-size: 0.9rem;
  }

  .testimonial-card strong {
    font-size: 1rem;
  }

  .testimonial-card span {
    font-size: 0.85rem;
  }

  .bottom-cta h3 {
    font-size: 1.2rem;
  }

  .bottom-cta p {
    font-size: 0.9rem;
  }

  .contact-panel {
    padding: 24px;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  input,
  textarea {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .cta-button,
  .secondary-button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .footer .container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .section-graphic img {
    max-height: 150px;
  }

  .hero-visual img {
    max-height: 200px;
  }

  .site-logo img {
    max-height: 80px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  .chatbot-widget {
    right: 12px;
    bottom: 12px;
  }

  .chatbot-button {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }

  .chatbot-panel {
    width: calc(100vw - 24px);
    max-width: 320px;
  }
}
