/* --- CSS VARIABLES & THEME --- */
:root {
  --color-espresso: #1e1a1d; /* Deep Espresso Dark */
  --color-terracotta: #e26d5c; /* Warm Terracotta */
  --color-terracotta-hover: #c5584a;
  --color-crema: #f8f1e5; /* Light Crema background */
  --color-sage: #729b79; /* Sage Green accent */

  --color-text-dark: #2a2528;
  --color-text-muted: #6b6568;
  --color-text-light: #f8f1e5;
  --color-text-crema-muted: #d1c8bc;

  --color-border: #e0d5c1;
  --color-border-dark: #3a3236;

  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Outfit", sans-serif;

  --shadow-soft: 0 10px 30px rgba(30, 26, 29, 0.08);
  --shadow-strong: 0 15px 40px rgba(30, 26, 29, 0.3);

  --rad-md: 16px;
  --rad-lg: 32px;

  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & GLOBALS --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-white);
  color: var(--color-text-dark);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden; /* Prevents background scrolling when sidebar is open */
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--rad-md);
}

/* --- UTILITIES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.section {
  padding: 120px 0;
  position: relative;
}
.bg-crema {
  background-color: var(--color-crema);
}
.bg-espresso {
  background-color: var(--color-espresso);
}
.text-light {
  color: var(--color-text-light) !important;
}
.text-crema-muted {
  color: var(--color-text-crema-muted) !important;
}
.center-text {
  text-align: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mt-space {
  margin-top: 30px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--color-espresso);
  line-height: 1.1;
}
.bg-espresso h2,
.bg-espresso h3,
.bg-espresso h4 {
  color: var(--color-text-light);
}

.section-header {
  max-width: 800px;
  margin: 0 auto 60px;
}
.section-heading {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 24px;
  font-weight: 700;
}
.section-body {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
.section-body:last-child {
  margin-bottom: 0;
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background-color: var(--color-terracotta);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(226, 109, 92, 0.3);
}
.btn-primary:hover {
  background-color: var(--color-terracotta-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(226, 109, 92, 0.5);
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

/* --- HEADER (TRANSPARENT/MINIMAL) --- */
.navbar-transparent {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition:
    background-color 0.4s,
    padding 0.4s;
}
.navbar-transparent.scrolled {
  background-color: rgba(30, 26, 29, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 50px;
  height: 50px;
}
.spin-slow {
  transform-origin: center;
  animation: spinRotate 20s linear infinite;
}
@keyframes spinRotate {
  100% {
    transform: rotate(360deg);
  }
}
.pulse-dot {
  animation: pulseDot 2s infinite alternate;
}
@keyframes pulseDot {
  0% {
    opacity: 0.5;
    r: 4;
  }
  100% {
    opacity: 1;
    r: 7;
  }
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

/* BURGER ICON EVERYWHERE */
.burger-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}
.burger-toggle:hover {
  color: var(--color-terracotta);
}
.burger-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.burger-icon {
  width: 32px;
  height: 32px;
}

/* --- SIDEBAR MENU --- */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar-menu {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background-color: var(--color-crema);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}
.sidebar-menu.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  border-bottom: 1px solid var(--color-border);
}
.sidebar-header .brand-name {
  color: var(--color-espresso);
}
.close-sidebar {
  background: none;
  border: none;
  color: var(--color-espresso);
  cursor: pointer;
  transition: var(--transition);
}
.close-sidebar:hover {
  color: var(--color-terracotta);
  transform: rotate(90deg);
}
.close-sidebar i {
  width: 32px;
  height: 32px;
}

.sidebar-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  overflow-y: auto;
}
.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.side-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-espresso);
  transition: var(--transition);
  display: inline-block;
}
.side-link:hover {
  color: var(--color-terracotta);
  transform: translateX(10px);
}
.highlight-side {
  color: var(--color-terracotta);
  font-style: italic;
  margin-top: 20px;
}

.sidebar-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.sidebar-email {
  font-weight: 700;
  color: var(--color-espresso);
  margin-top: 8px;
  font-size: 1.1rem;
}

/* --- HERO WITH BACKGROUND IMAGE --- */
.hero-bg {
  position: relative;
  width: 100%;
  height: 200vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  background-image: url("https://images.pexels.com/photos/5475149/pexels-photo-5475149.jpeg?auto=compress&cs=tinysrgb&w=1920");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(30, 26, 29, 0.9) 0%,
    rgba(30, 26, 29, 0.6) 50%,
    rgba(30, 26, 29, 0.3) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 40px;
  margin-left: 5%;
}
.hero-tag {
  display: inline-block;
  background: rgba(226, 109, 92, 0.2);
  color: var(--color-terracotta);
  border: 1px solid var(--color-terracotta);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  backdrop-filter: blur(5px);
}
.hero-title {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.05;
}
.hero-title span {
  display: block;
  font-style: italic;
  color: var(--color-terracotta);
}
.hero-desc {
  color: rgba(248, 241, 229, 0.8);
  font-size: 1.2rem;
  margin-bottom: 20px;
  max-width: 650px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* --- VISION (OVERLAPPING LAYOUT) --- */
.vision-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vision-images {
  position: relative;
  height: 600px;
}
.vision-img-main {
  width: 80%;
  height: 500px;
  object-fit: cover;
  border-radius: 0 100px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: var(--shadow-soft);
}
.vision-img-sub {
  width: 60%;
  height: 350px;
  object-fit: cover;
  border-radius: 0 0 0 100px;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 10px solid #fff;
  box-shadow: var(--shadow-strong);
  z-index: 2;
}
.vision-text {
  padding-left: 20px;
}

/* --- PRACTICES (ZIG-ZAG) --- */
.zigzag-wrapper {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 60px;
}
.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.reverse-row {
  direction: rtl;
}
.reverse-row > * {
  direction: ltr;
}
.zz-text {
  position: relative;
}
.zz-number {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(226, 109, 92, 0.1);
  position: absolute;
  top: -60px;
  left: -20px;
  z-index: 0;
  line-height: 1;
}
.zz-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.zz-text p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}
.zz-visual img {
  box-shadow: var(--shadow-soft);
  border-radius: var(--rad-lg);
}

/* --- MONETIZATION (DARK CARDS) --- */
.money-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.money-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
}
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: var(--rad-lg);
  transition: var(--transition);
}
.glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-10px);
  border-color: var(--color-terracotta);
}
.glass-offset {
  margin-top: 60px;
}
.glass-card i {
  color: var(--color-terracotta);
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
}
.glass-card h4 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.glass-card p {
  color: var(--color-text-crema-muted);
  font-size: 1rem;
}

/* --- REGION EU --- */
.region-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.icon-wrap-large {
  width: 80px;
  height: 80px;
  background: var(--color-crema);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.icon-wrap-large i {
  color: var(--color-terracotta);
  width: 40px;
  height: 40px;
}
.region-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.abstract-shape {
  position: relative;
  width: 100%;
  max-width: 400px;
  animation: floatShape 6s infinite ease-in-out;
}
@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}
.city-label {
  position: absolute;
  background: var(--color-espresso);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
}
.label-milan {
  top: 20%;
  right: 10%;
  border-bottom: 2px solid var(--color-terracotta);
}
.label-rome {
  bottom: 30%;
  left: 10%;
  border-bottom: 2px solid var(--color-sage);
}

/* --- STEPS (VERTICAL TIMELINE) --- */
.vertical-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}
.vertical-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--color-border);
}
.timeline-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  width: 100%;
}
.timeline-row:last-child {
  margin-bottom: 0;
}
.timeline-content {
  width: 45%;
  background: #fff;
  padding: 40px;
  border-radius: var(--rad-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid #fff;
  transition: var(--transition);
  position: relative;
}
.timeline-content:hover {
  box-shadow: var(--shadow-strong);
  border-color: var(--color-terracotta);
  transform: translateY(-5px);
}
.timeline-center {
  width: 10%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.timeline-dot {
  width: 60px;
  height: 60px;
  background: var(--color-espresso);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  border: 4px solid var(--color-crema);
  box-shadow: var(--shadow-soft);
}
.timeline-empty {
  width: 45%;
}
.left-content {
  text-align: right;
}
.right-content {
  text-align: left;
}
.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

/* --- FAQ (GRID STYLE) --- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}
.faq-item {
  background: #fff;
  border: 2px solid var(--color-border);
  padding: 40px;
  border-radius: var(--rad-md);
  transition: var(--transition);
  border-left: 6px solid var(--color-sage);
}
.faq-item:hover {
  border-color: var(--color-espresso);
  border-left-color: var(--color-terracotta);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}
.faq-q {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-espresso);
  margin-bottom: 16px;
}
.faq-a {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* --- CONTACT FORM --- */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.contact-data-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.data-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.data-item i {
  color: var(--color-terracotta);
  width: 28px;
  height: 28px;
  margin-top: 4px;
}
.data-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 4px;
}
.data-item span {
  color: var(--color-text-crema-muted);
  font-size: 1rem;
}

.contact-form-block {
  background: #fff;
  padding: 50px;
  border-radius: var(--rad-lg);
  box-shadow: var(--shadow-strong);
}
.custom-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.input-group label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-espresso);
}
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}
.input-with-icon i {
  position: absolute;
  left: 16px;
  color: var(--color-text-muted);
  width: 20px;
  height: 20px;
}
.input-with-icon input {
  width: 100%;
  padding: 18px 18px 18px 50px;
  border: 1px solid var(--color-border);
  border-radius: var(--rad-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-dark);
  background: var(--color-bg-white);
  transition: var(--transition);
}
.input-with-icon input:focus {
  outline: none;
  border-color: var(--color-terracotta);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(226, 109, 92, 0.1);
}
.captcha-group {
  padding-top: 16px;
  border-top: 1px dashed var(--color-border);
}
.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}
.checkbox-group input {
  margin-top: 6px;
  width: 22px;
  height: 22px;
  accent-color: var(--color-terracotta);
  cursor: pointer;
  flex-shrink: 0;
}
.consent-label {
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  color: var(--color-text-muted) !important;
  font-weight: 400 !important;
  cursor: pointer;
  line-height: 1.5;
  white-space: normal;
}
.doc-link {
  color: var(--color-espresso);
  text-decoration: underline;
  font-weight: 600;
}
.form-submit-btn {
  width: 100%;
  padding: 20px;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* --- FOOTER --- */
.main-footer {
  background: var(--color-crema);
  padding: 80px 0 30px;
  border-top: 1px solid var(--color-border);
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .brand-name {
  color: var(--color-espresso) !important;
}
.footer-desc {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-top: 20px;
  max-width: 350px;
}
.footer-title {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--color-espresso);
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--color-text-muted);
}
.footer-links a:hover {
  color: var(--color-terracotta);
}
.contact-infos li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-text-muted);
}
.contact-infos i {
  color: var(--color-sage);
  margin-top: 2px;
  width: 20px;
  height: 20px;
}
.accent-link {
  color: var(--color-terracotta) !important;
  font-weight: 700;
  text-decoration: underline;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: inline-block;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  bottom: -150%;
  left: 0;
  width: 100%;
  background: var(--color-espresso);
  color: #fff;
  padding: 24px 0;
  z-index: 3000;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  border-top: 4px solid var(--color-terracotta);
  transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-modal.show {
  bottom: 0;
}
.cookie-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cookie-text-box {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1 1 400px;
}
.cookie-icon-wrapper {
  background: rgba(226, 109, 92, 0.2);
  color: var(--color-terracotta);
  padding: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cookie-text-content h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.cookie-text-content p {
  color: var(--color-text-crema-muted);
  font-size: 0.95rem;
}
.cookie-text-content a {
  color: var(--color-sage);
  text-decoration: underline;
  font-weight: 700;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 24px;
  }

  .hero-bg {
    min-height: 700px;
  }
  .hero-content {
    margin-left: 0;
    text-align: center;
    padding: 0 24px;
  }
  .hero-actions {
    justify-content: center;
  }

  .vision-container,
  .zigzag-row,
  .money-grid,
  .region-container,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .vision-images {
    height: 400px;
    margin-bottom: 40px;
  }
  .vision-img-main {
    width: 90%;
    height: 350px;
  }
  .vision-img-sub {
    width: 70%;
    height: 250px;
  }

  .reverse-row .zz-visual {
    order: -1;
  }

  .money-cards .glass-offset {
    margin-top: 0;
  }

  .region-graphic {
    order: -1;
    max-width: 300px;
    margin: 0 auto;
  }

  .vertical-timeline::before {
    left: 30px;
  }
  .timeline-row {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 80px;
  }
  .timeline-center {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
  }
  .timeline-empty {
    display: none;
  }
  .timeline-content {
    width: 100%;
    text-align: left;
  }

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

@media (max-width: 768px) {
  .burger-text {
    display: none;
  } /* Hide text "Menu" on small screens, keep icon */
  .sidebar-menu {
    width: 100%;
    right: -100%;
  } /* Fullscreen on mobile */

  .section-heading {
    font-size: 1.8rem;
  }

  .money-cards {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  .hero-bg {
    min-height: 600px;
  }

  .section {
    padding: 80px 0;
  }
  .section-heading {
    font-size: 2.2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-block {
    padding: 30px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand,
  .contact-infos li {
    justify-content: center;
  }
  .footer-desc {
    margin: 16px auto 0;
  }

  .cookie-flex {
    flex-direction: column;
    text-align: center;
  }
  .cookie-text-box {
    flex-direction: column;
  }
  .cookie-btn-box button {
    width: 100%;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 40px;
  margin-top: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--ink);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px !important;
    margin-top: 30px;
  }
  .margin {
    font-size: 28px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
  display: flex;
  justify-content: center;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
