/* ==========================================
   ELD ITALIA S.R.L. — Design System & Styles
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;700;800;900&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --navy: #0B1E36;
  --navy-mid: #132A4E;
  --navy-light: #1A3A6B;
  --orange: #E8581A;
  --orange-bright: #FF6B35;
  --orange-glow: rgba(232, 88, 26, 0.12);
  --sky: #4B9FE1;
  --light-bg: #F4F8FC;
  --white: #FFFFFF;
  --text-dark: #0B1E36;
  --text-body: #3D5068;
  --text-light: #7B8FA6;
  --border: #DDE7F2;
  --shadow-sm: 0 2px 8px rgba(11, 30, 54, 0.08);
  --shadow-md: 0 8px 32px rgba(11, 30, 54, 0.12);
  --shadow-lg: 0 20px 60px rgba(11, 30, 54, 0.18);
  --shadow-orange: 0 8px 32px rgba(232, 88, 26, 0.28);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 700;
  color: var(--navy);
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-glow);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(232, 88, 26, 0.2);
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--orange);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 580px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

section {
  padding: 100px 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-bright);
  border-color: var(--orange-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}

.btn-outline-dark:hover {
  background: var(--light-bg);
  border-color: var(--navy-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1rem;
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(11, 30, 54, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-badge {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(232, 88, 26, 0.35);
}

.logo-badge svg {
  width: 22px;
  height: 22px;
  stroke: white;
  fill: none;
}

/* Real logo image badge */
.logo-badge-img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-badge-img img {
  height: 46px;
  width: auto;
  display: block;
}

.logo-text-wrap {
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  display: block;
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: block;
}

/* Nav links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.navbar-nav a {
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* Navbar right */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-btn {
  padding: 6px 11px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}

.lang-btn.active {
  background: var(--orange);
  color: var(--white);
}

.lang-btn:hover:not(.active) {
  color: var(--white);
}

/* Mobile menu */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: white;
  flex-direction: column;
  gap: 5px;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: var(--transition);
  border-radius: 2px;
}

.menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1.0);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(11, 30, 54, 0.88) 0%,
      rgba(11, 30, 54, 0.68) 45%,
      rgba(11, 30, 54, 0.38) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232, 88, 26, 0.18);
  border: 1px solid rgba(232, 88, 26, 0.35);
  color: #FF9A70;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease both;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.15s ease both;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange-bright);
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 44px;
  animation: fadeInUp 0.8s 0.3s ease both;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.45s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeIn 1s 1s ease both;
  cursor: pointer;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.45), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    height: 0;
    opacity: 1;
  }

  100% {
    height: 56px;
    opacity: 0;
  }
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--navy);
  padding: 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 44px 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--transition);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- Services Grid ---- */
.services-section {
  background: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--orange-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
  border: 1px solid rgba(232, 88, 26, 0.15);
}

.service-card:hover .service-icon-wrap {
  background: var(--orange);
  border-color: var(--orange);
}

.service-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: var(--orange);
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap svg {
  stroke: white;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.72;
}

.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--orange);
  transition: var(--transition);
}

.card-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--orange);
  transition: var(--transition);
}

.card-arrow:hover {
  gap: 10px;
}

/* ---- Why ELD Section ---- */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}

.why-badge-icon {
  width: 46px;
  height: 46px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-badge-icon svg {
  width: 22px;
  height: 22px;
  stroke: white;
}

.why-badge-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.why-badge-label {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

.why-content .section-subtitle {
  margin-bottom: 36px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feat-icon {
  width: 42px;
  height: 42px;
  background: var(--orange-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid rgba(232, 88, 26, 0.15);
}

.why-feat-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
}

.why-feature h4 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy);
}

.why-feature p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ---- Process Section ---- */
.process-section {
  background: var(--navy);
  padding: 100px 0;
}

.process-section .section-title {
  color: var(--white);
}

.process-section .section-subtitle {
  color: rgba(255, 255, 255, 0.58);
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 64px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), rgba(232, 88, 26, 0.15));
}

.process-step {
  text-align: center;
  padding: 0 16px;
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--orange);
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  background: var(--navy);
  transition: var(--transition);
}

.process-step:hover .step-num {
  background: var(--orange);
  color: white;
}

.process-step h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* ---- CTA Banner ---- */
.cta-section {
  background: linear-gradient(130deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232, 88, 26, 0.13) 0%, transparent 65%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 44px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 180px 0 100px;
  background: linear-gradient(130deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 580px;
  line-height: 1.72;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.48);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: var(--orange-bright);
}

.breadcrumb i {
  font-size: 0.6rem;
}

/* ---- Services Page ---- */
.services-page {
  background: var(--white);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.service-block:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-block-top {
  padding: 36px 36px 0;
}

.service-block-icon {
  width: 62px;
  height: 62px;
  background: var(--orange-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(232, 88, 26, 0.18);
}

.service-block-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--orange);
}

.service-block h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-block>.service-block-top>p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.72;
}

.service-block-bullets {
  padding: 24px 36px 36px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--light-bg);
}

.sbb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-body);
}

.sbb::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* Service image */
.service-img-section {
  background: var(--light-bg);
  padding: 0;
}

.service-img-section img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* FAQ Section */
.faq-section {
  background: var(--light-bg);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  box-shadow: var(--shadow-sm);
  border-color: rgba(232, 88, 26, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--orange);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-chevron {
  stroke: var(--orange);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* ---- Contact Page ---- */
.contact-section {
  background: var(--light-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

/* Contact info column - keep cards tight together */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info h2 {
  margin-bottom: 10px;
}

.contact-info>p {
  margin-bottom: 28px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-card:last-of-type {
  border-bottom: none;
}

.contact-card-icon {
  width: 42px;
  height: 42px;
  background: var(--orange-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(232, 88, 26, 0.15);
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
}

.contact-card strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 3px;
}

.contact-card span {
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.55;
}

.contact-card span a {
  color: var(--text-dark);
  transition: var(--transition);
}

.contact-card span a:hover {
  color: var(--orange);
}

.contact-metrics {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-heading);
}

.metric-label {
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.contact-info-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-info-header p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.72;
  margin-bottom: 40px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ci-icon {
  width: 46px;
  height: 46px;
  background: var(--orange-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(232, 88, 26, 0.15);
}

.ci-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
}

.ci-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.ci-val {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}

.ci-val a {
  color: var(--text-dark);
  transition: var(--transition);
}

.ci-val a:hover {
  color: var(--orange);
}

/* Contact Form Card */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-form-card>p {
  font-size: 0.875rem;
  color: var(--text-body);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 88, 26, 0.09);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.55;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.form-submit svg {
  width: 18px;
  height: 18px;
  stroke: white;
}

.form-submit:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.form-note {
  font-size: 0.76rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 14px;
  line-height: 1.55;
}

/* Map */
.map-section {
  background: #cdd8e5;
  height: 420px;
  position: relative;
  overflow: hidden;
}

.map-embed {
  width: 100%;
  height: 100%;
  border: none;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d4e3f0, #b8ccdf);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.map-placeholder svg {
  width: 44px;
  height: 44px;
  stroke: var(--text-light);
  opacity: 0.5;
}

/* ---- Footer ---- */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand p {
  font-size: 0.845rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.72;
  margin: 18px 0 0;
  max-width: 270px;
}

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.845rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fc-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.fc-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.fc-item span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.5;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.32);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .why-grid {
    gap: 48px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .process-steps::before {
    display: none;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .stat-item:nth-child(4) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 70px 0;
  }

  .navbar-nav,
  .btn-outline.hero-btn-outline {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .navbar-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px 24px;
    gap: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .navbar-nav.mobile-open a {
    padding: 13px 16px;
    border-radius: 8px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-visual {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 28px 22px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* ---- Navbar mobile fixes ---- */
  /* Hide the "Richiedi un Preventivo" CTA button in navbar on mobile (too wide) */
  .navbar-right .btn-primary {
    display: none;
  }

  /* Smaller logo image on mobile */
  .logo-badge-img img {
    height: 36px;
  }

  /* Reduce logo text size on mobile */
  .logo-name {
    font-size: 1rem;
  }

  .logo-sub {
    display: none;
  }

  /* ---- FAB buttons — avoid overlap with sticky CTA ---- */
  #backToTop {
    bottom: 130px !important;
    right: 20px !important;
  }

  .whatsapp-fab {
    bottom: 70px !important;
    right: 20px !important;
  }

  /* ---- Sticky CTA bar — reduce size on mobile ---- */
  .sticky-cta {
    padding: 10px 16px;
    font-size: 0.88rem;
  }

  /* Add body padding at bottom so content isn't hidden behind sticky CTA */
  body {
    padding-bottom: 60px;
  }

  /* ---- Contact form wrap ---- */
  .contact-form-wrap {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .stats-inner {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: none;
  }
}

/* ---- Google Maps Embed ---- */
.map-section {
  width: 100%;
  overflow: hidden;
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  line-height: 0;
  max-height: 460px;
}

.map-section iframe {
  width: 100%;
  height: 420px;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.4s ease;
}

.map-section:hover iframe {
  filter: grayscale(0%) contrast(1);
}

@media (max-width: 768px) {
  .map-section iframe {
    height: 280px;
  }
}

/* ============================
   NEW ENHANCEMENTS
   ============================ */

/* --- Scroll Progress Bar --- */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright), #FFB347);
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px rgba(232, 88, 26, 0.5);
}

/* --- Back To Top --- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

/* --- WhatsApp FAB --- */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-btn {
  position: relative;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: waBounce 2.5s ease-in-out 2s infinite;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  animation: none;
}

.wa-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.wa-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: waPulse 2s ease-in-out infinite;
}

.wa-tooltip {
  background: var(--navy);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

.wa-fab:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes waBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* --- Sticky CTA (mobile homepage) --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--orange);
  z-index: 450;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 24px rgba(232, 88, 26, 0.35);
}

.sticky-cta.sticky-cta-visible {
  transform: translateY(0);
}

.sticky-cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}

.sticky-cta-link svg {
  width: 20px;
  height: 20px;
  stroke: white;
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .sticky-cta {
    display: none;
  }
}

/* --- GDPR Banner --- */
.gdpr-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 2px solid rgba(232, 88, 26, 0.4);
  z-index: 800;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 18px 0;
}

.gdpr-banner.gdpr-show {
  transform: translateY(0);
}

.gdpr-banner.gdpr-hide {
  transform: translateY(100%);
}

.gdpr-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.gdpr-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  line-height: 1.55;
  flex: 1;
  min-width: 240px;
}

.gdpr-text svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  flex-shrink: 0;
}

.gdpr-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.gdpr-link {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  transition: color 0.2s;
  text-decoration: underline;
}

.gdpr-link:hover {
  color: white;
}

.gdpr-btn {
  background: var(--orange);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.25s, transform 0.2s;
}

.gdpr-btn:hover {
  background: var(--orange-bright);
  transform: scale(1.04);
}

/* --- Typewriter Effect --- */
.hero-typewriter-wrap {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.22s ease both;
}

.hero-typewriter-label {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.62);
  font-weight: 400;
}

.hero-typewriter {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 700;
  color: var(--orange-bright);
  min-width: 140px;
  display: inline-block;
}

.tw-cursor::after {
  content: '|';
  animation: twBlink 0.9s step-end infinite;
  color: var(--orange);
  font-weight: 300;
  margin-left: 2px;
}

@keyframes twBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* --- Hero Particles (CSS only) --- */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  animation: particleFloat linear infinite;
}

.hero-particles span:nth-child(1) {
  width: 3px;
  height: 3px;
  left: 10%;
  top: 20%;
  animation-duration: 18s;
}

.hero-particles span:nth-child(2) {
  width: 5px;
  height: 5px;
  left: 25%;
  top: 60%;
  animation-duration: 24s;
  animation-delay: -6s;
}

.hero-particles span:nth-child(3) {
  width: 2px;
  height: 2px;
  left: 40%;
  top: 35%;
  animation-duration: 15s;
  animation-delay: -3s;
}

.hero-particles span:nth-child(4) {
  width: 4px;
  height: 4px;
  left: 60%;
  top: 70%;
  animation-duration: 20s;
  animation-delay: -9s;
}

.hero-particles span:nth-child(5) {
  width: 3px;
  height: 3px;
  left: 75%;
  top: 15%;
  animation-duration: 22s;
  animation-delay: -12s;
}

.hero-particles span:nth-child(6) {
  width: 6px;
  height: 6px;
  left: 88%;
  top: 45%;
  animation-duration: 26s;
  animation-delay: -5s;
}

.hero-particles span:nth-child(7) {
  width: 2px;
  height: 2px;
  left: 15%;
  top: 80%;
  animation-duration: 17s;
  animation-delay: -8s;
}

.hero-particles span:nth-child(8) {
  width: 4px;
  height: 4px;
  left: 50%;
  top: 90%;
  animation-duration: 21s;
  animation-delay: -14s;
}

.hero-particles span:nth-child(9) {
  width: 3px;
  height: 3px;
  left: 70%;
  top: 30%;
  animation-duration: 19s;
  animation-delay: -2s;
}

.hero-particles span:nth-child(10) {
  width: 5px;
  height: 5px;
  left: 35%;
  top: 10%;
  animation-duration: 23s;
  animation-delay: -7s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100vh) translateX(30px) rotate(360deg);
    opacity: 0;
  }
}

/* --- Partners Strip --- */
.partners-strip {
  background: var(--white);
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.partners-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px;
}

.partners-track-wrap {
  overflow: hidden;
  position: relative;
}

.partners-track-wrap::before,
.partners-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.partners-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.partners-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 64px;
  animation: partnersScroll 28s linear infinite;
  width: max-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.38;
  transition: opacity 0.3s;
  white-space: nowrap;
  filter: grayscale(1);
}

.partner-item:hover {
  opacity: 0.85;
  filter: grayscale(0);
}

.partner-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.partner-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--navy);
}

@keyframes partnersScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --- Testimonials Section --- */
.testimonials-section {
  background: var(--navy);
  padding: 100px 0;
  overflow: hidden;
}

.testimonials-section .section-title {
  color: var(--white);
}

.testimonials-section .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 auto;
}

.testimonials-slider {
  position: relative;
  margin-top: 60px;
  min-height: 220px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.testimonial-card.t-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  position: relative;
}

.t-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 20px;
}

.t-star {
  color: #FFB347;
  font-size: 1.2rem;
}

.t-quote {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  max-width: 680px;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
}

.t-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: rgba(232, 88, 26, 0.2);
  line-height: 1;
  position: absolute;
  top: -20px;
  left: -20px;
  font-family: Georgia, serif;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-direction: column;
}

.t-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
  border: 3px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.t-name {
  font-weight: 700;
  color: white;
  font-size: 0.95rem;
}

.t-role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.t-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 44px;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  border: none;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.t-dot.t-dot-active {
  background: var(--orange);
  transform: scale(1.3);
}

.t-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* --- Form Validation States --- */
.contact-form input.field-ok,
.contact-form textarea.field-ok,
.contact-form select.field-ok {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.contact-form input.field-error,
.contact-form textarea.field-error,
.contact-form select.field-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

/* --- Animations utility --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}