/* =========================================================
   Petrolfluid — stylesheet
   Struttura pensata per il rebuild in Elementor:
   sezioni = Section, righe = Container (flex), card = Icon Box
   ========================================================= */

:root {
  --color-ink-deep: #0f1113;
  --color-tint: #eaf1fd;
  --color-accent: #1d6fe0;
  --color-accent-light: #6fa8f5;
  --color-navy: #0d2b5e;
  --color-navy-deep: #081b3d;
  --color-white: #ffffff;
  --color-ink: #1b1f23;
  --color-ink-soft: #5b6066;
  --color-bg-light: #f5f5f2;
  --color-border: #e4e4df;

  --font-heading: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(20, 22, 24, 0.06);
  --shadow-md: 0 12px 32px rgba(20, 22, 24, 0.12);
  --container-w: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Q8 logo cursor everywhere on the site */
body {
  cursor: url("../images/cursor-q8.png") 6 4, auto;
}

a,
button,
.btn,
.nav-toggle,
.whatsapp-float,
summary {
  cursor: url("../images/cursor-q8.png") 6 4, pointer;
}

input,
textarea {
  cursor: text;
}

input[type="checkbox"] {
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-ink);
  margin: 0 0 16px;
  line-height: 1.25;
}

p {
  margin: 0 0 16px;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(29, 111, 224, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
  margin-bottom: 56px;
}

.section-head.center {
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
}

.section-head p {
  color: var(--color-ink-soft);
  font-size: 17px;
  margin-bottom: 0;
}

.eyebrow-line {
  width: 46px;
  height: 4px;
  background: var(--color-accent-light);
  border-radius: 4px;
  margin-bottom: 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, background-position 0.5s ease,
    background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-primary {
  background-image: linear-gradient(120deg, var(--color-accent-light) 0%, var(--color-accent) 45%, var(--color-navy) 130%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  color: var(--color-white);
  box-shadow: 0 12px 26px rgba(29, 111, 224, 0.3);
}

.btn-primary:hover {
  background-position: 100% 0%;
  box-shadow: 0 18px 34px rgba(29, 111, 224, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--color-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-outline:hover {
  background-image: linear-gradient(120deg, var(--color-accent-light) 0%, var(--color-accent) 45%, var(--color-navy) 130%);
  border-color: transparent;
  color: var(--color-white);
  box-shadow: 0 14px 28px rgba(29, 111, 224, 0.3);
}

.btn-block {
  width: 100%;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 40px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}

.brand-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 21px;
  color: var(--color-ink);
  letter-spacing: -0.01em;
  line-height: 1;
}

.brand-drop {
  flex-shrink: 0;
  color: var(--color-accent);
}

.brand-name span {
  color: var(--color-accent);
}

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

.main-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.main-nav a:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
  border-right: 1px solid var(--color-border);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--color-ink);
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--color-accent);
}

.header-phone svg {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 0;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: var(--color-navy-deep) url("../images/hero-video-poster.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 27, 61, 0.42) 0%, rgba(8, 27, 61, 0.55) 55%, rgba(6, 20, 46, 0.78) 100%);
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 150px 0 110px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 760px;
}

.hero h1 {
  color: var(--color-white);
  font-size: clamp(34px, 5vw, 54px);
  margin-bottom: 20px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero h1 em {
  font-style: normal;
  color: var(--color-accent-light);
}

.hero p.lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
  max-width: 600px;
  margin-bottom: 36px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

/* =========================================================
   Mini band (section title bar) + Fa per te se / Cosa ottieni
   ========================================================= */
.mini-band {
  background: linear-gradient(100deg, var(--color-navy) 0%, var(--color-accent) 100%);
  padding: 22px 0;
}

.mini-band h2 {
  color: var(--color-white);
  text-align: center;
  font-size: 21px;
  margin: 0;
}

.pain-section {
  padding: 72px 0;
}

.pain-row {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
}

.pain-item {
  flex: 1 1 280px;
  text-align: center;
  padding: 0 14px;
}

.pain-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2px solid var(--color-ink);
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.pain-item h3 {
  color: var(--color-ink);
  font-size: 18px;
  margin-bottom: 10px;
}

.pain-item p {
  color: var(--color-ink-soft);
  font-size: 15px;
  margin-bottom: 0;
}

.gain-section {
  background: var(--color-bg-light);
  padding: 72px 0;
}

.gain-intro {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.5;
}

.gain-row {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.gain-item {
  flex: 1 1 220px;
  text-align: center;
  padding: 0 10px;
}

.gain-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2px solid var(--color-ink);
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.gain-item h3 {
  color: var(--color-ink);
  font-size: 16.5px;
  margin-bottom: 8px;
}

.gain-item p {
  color: var(--color-ink-soft);
  font-size: 14.5px;
  margin-bottom: 0;
}

/* =========================================================
   About
   ========================================================= */
.about-row {
  display: flex;
  align-items: center;
  gap: 64px;
}

.about-media {
  flex: 1 1 420px;
  position: relative;
}

.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
}

.about-media-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-media-badge img {
  height: 30px;
  width: auto;
  box-shadow: none;
  border-radius: 0;
}

.about-media-badge span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-ink);
  line-height: 1.3;
}

.about-content {
  flex: 1 1 460px;
}

.about-content h2 {
  font-size: clamp(28px, 3.6vw, 38px);
}

.about-content p {
  color: var(--color-ink-soft);
  font-size: 16.5px;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 32px;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--color-ink);
}

.about-point svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-accent);
}

/* =========================================================
   Services
   ========================================================= */
.services {
  background: var(--color-bg-light);
}

/* Feature rows: image + text, alternating sides */
.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-media {
  flex: 1 1 460px;
}

.feature-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.feature-media-float {
  aspect-ratio: 6 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.feature-media-float img {
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 22px 30px rgba(20, 22, 24, 0.18));
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-media-float:hover img {
  transform: scale(1.045) translateY(-4px);
}

.feature-media-cover {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.feature-media-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-media-cover:hover img {
  transform: scale(1.06);
}

.feature-content {
  flex: 1 1 420px;
}

.feature-content h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  margin-bottom: 14px;
}

.feature-content > p {
  color: var(--color-ink-soft);
  font-size: 17.5px;
}

.feature-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.feature-points li {
  position: relative;
  padding-left: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-ink);
}

.feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%231d6fe0'/%3E%3Cpath d='M6 10.3l2.6 2.6L14.2 7' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--color-accent);
  padding: 12px 20px;
  border: 1.5px solid var(--color-accent);
  border-radius: 100px;
  transition: background 0.25s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.25s ease,
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-cta svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.feature-cta:hover {
  background-image: linear-gradient(120deg, var(--color-accent-light) 0%, var(--color-accent) 45%, var(--color-navy) 130%);
  border-color: transparent;
  color: var(--color-white);
  box-shadow: 0 12px 24px rgba(29, 111, 224, 0.28);
  transform: translateY(-2px);
}

.feature-cta:hover svg {
  transform: translateX(4px);
}

.more-services-head {
  margin-bottom: 34px !important;
}

.more-services-head h3 {
  font-size: 20px;
  color: var(--color-ink-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.service-card {
  flex: 1 1 320px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--color-tint);
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.card-row-2 {
  justify-content: center;
}

.card-row-2 .service-card {
  flex: 1 1 340px;
  max-width: 420px;
}

.service-card-photo-frame {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-card-photo-frame img {
  max-height: 100%;
  max-width: 82%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(20, 22, 24, 0.16));
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card-photo-frame img {
  transform: scale(1.05) translateY(-3px);
}

.service-card h3 {
  font-size: 19.5px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--color-ink-soft);
  font-size: 15px;
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-tag {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-ink);
  background: var(--color-tint);
  padding: 6px 14px;
  border-radius: 100px;
}

/* =========================================================
   Contact
   ========================================================= */
.contact {
  background: var(--color-bg-light);
}

.contact-row {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-form-col {
  flex: 1 1 480px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px;
}

.contact-form-col h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.contact-form-col > p {
  color: var(--color-ink-soft);
  margin-bottom: 26px;
  font-size: 15px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.form-field {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full {
  flex: 1 1 100%;
}

.form-field label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--color-ink);
}

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-ink);
  resize: vertical;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-ink);
  box-shadow: 0 0 0 4px rgba(29, 111, 224, 0.14);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--color-ink-soft);
}

.form-consent input {
  margin-top: 3px;
}

.form-consent a {
  color: var(--color-ink);
  font-weight: 600;
  text-decoration: underline;
}

.captcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  background: var(--color-bg-light);
}

.captcha-check-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-ink);
  cursor: pointer;
}

.captcha-check-label input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.captcha-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-ink-soft);
  flex-shrink: 0;
}

.captcha-badge-text {
  font-size: 10px;
  line-height: 1.25;
  text-align: right;
}

.form-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--color-ink-soft);
  display: none;
}

.form-note.success {
  display: block;
  color: var(--color-accent);
  font-weight: 600;
}

.form-note.error {
  display: block;
  color: #c0362c;
  font-weight: 600;
}

.contact-info-col {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-card .icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--color-tint);
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  margin-bottom: 3px;
}

.info-card span,
.info-card a {
  display: block;
  color: var(--color-ink-soft);
  font-size: 14.5px;
}

.info-card a:hover {
  color: var(--color-ink);
}

.info-card.highlight {
  background: linear-gradient(120deg, var(--color-navy) 0%, var(--color-accent) 100%);
  border-color: transparent;
}

.info-card.highlight .icon {
  background: rgba(255, 255, 255, 0.16);
  color: var(--color-accent-light);
}

.info-card.highlight strong,
.info-card.highlight span {
  color: var(--color-white);
}

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  background: linear-gradient(120deg, var(--color-accent) 0%, var(--color-navy) 100%);
  padding: 64px 0;
}

.cta-band-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: var(--color-white);
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 6px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
}

.cta-band .btn-secondary {
  border-color: var(--color-white);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: linear-gradient(180deg, var(--color-navy-deep) 0%, #061024 100%);
  color: rgba(255, 255, 255, 0.72);
  padding: 76px 0 0;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
  flex: 1 1 220px;
}

.footer-col.wide {
  flex: 1 1 300px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand img {
  height: 36px;
  width: auto;
}

.footer-brand span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 19px;
  color: var(--color-white);
}

.footer-col p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.15s ease;
}

.footer-col ul a:hover {
  color: var(--color-accent-light);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background 0.15s ease;
}

.footer-social a:hover {
  background: var(--color-accent);
}

.footer-bottom {
  padding: 24px 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
  color: var(--color-white);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* =========================================================
   WhatsApp floating button
   ========================================================= */
.whatsapp-float {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%) translateX(90px);
  opacity: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--color-white);
  padding: 14px;
  border-radius: 100px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.whatsapp-float.is-visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

.whatsapp-float:hover {
  background: #1fbd5a;
}

.whatsapp-float .wa-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.3s ease, margin 0.3s ease;
}

.whatsapp-float:hover .wa-label {
  max-width: 160px;
  margin-right: 4px;
}

/* =========================================================
   Cookie consent banner
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 700;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 20px 24px;
  max-width: 760px;
  margin: 0 auto;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  font-size: 13.5px;
  color: var(--color-ink-soft);
  flex: 1 1 320px;
}

.cookie-banner p a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner-actions .btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* =========================================================
   Utilities / animations
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 12px 18px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  section {
    padding: 72px 0;
  }

  .about-row {
    flex-direction: column;
  }

  .about-media {
    width: 100%;
  }

  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 56px;
  }

  .feature-media {
    width: 100%;
  }

  .contact-row {
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 20px 24px 40px;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid var(--color-border);
  }

  .main-nav .btn {
    margin-top: 14px;
    width: 100%;
  }

  .header-contacts {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-inner {
    padding: 120px 0 80px;
  }

  .cta-band-row {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 18px;
  }

  section {
    padding: 60px 0;
  }

  .hero-actions .btn,
  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .contact-form-col {
    padding: 28px 22px;
  }

  .whatsapp-float {
    right: 16px;
  }

  .about-media-badge {
    left: 12px;
    bottom: -16px;
    padding: 12px 16px;
  }

  .hero-video {
    display: block;
  }
}

