/* ===================================================================
   Inside Technologies — Design Tokens
   =================================================================== */

/* === Font: Brinnan (locale) === */
@font-face {
  font-family: "Brinnan";
  src: url("../fonts/Brinnan-Thin.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Brinnan";
  src: url("../fonts/Brinnan-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Brinnan";
  src: url("../fonts/Brinnan-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Brinnan";
  src: url("../fonts/Brinnan-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Brinnan";
  src: url("../fonts/Brinnan-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* === Color: Brand (PDF palette) === */
  --c-blue-900: #102B5C;
  --c-blue-800: #1A3F7F;
  --c-blue-600: #2557B5;
  --c-blue-100: #DCE6F5;
  --c-blue-50:  #EFF4FB;

  --c-yellow-500: #F5C518;
  --c-yellow-400: #FFD43B;
  --c-yellow-100: #FFF3C4;

  --c-red-700: #990000;
  --c-red-100: #F4D6D6;

  /* === Color: Neutral === */
  --c-gray-900: #0F1115;
  --c-gray-800: #1A1D24;
  --c-gray-700: #3A3F47;
  --c-gray-500: #7A8088;
  --c-gray-300: #C4C8CE;
  --c-gray-200: #E4E6EA;
  --c-gray-100: #EFF1F4;
  --c-gray-50:  #F6F7F9;
  --c-white:    #FFFFFF;
  --c-black:    #000000;

  /* === Semantic (dark theme) === */
  --c-bg:        #0B1929;
  --c-bg-alt:    #09151F;
  --c-bg-alt2:   #0E2240;
  --c-text:      #F0F4FA;
  --c-text-soft: rgba(240,244,250,0.72);
  --c-text-mute: rgba(240,244,250,0.44);
  --c-border:    rgba(255,255,255,0.10);
  --c-link:      var(--c-yellow-500);

  /* === Pillar accents === */
  --c-pillar-cloud: #2557B5;
  --c-pillar-workplace: #F5C518;
  --c-pillar-security: #990000;

  /* === Gradients === */
  --grad-navy:        linear-gradient(135deg, #102B5C 0%, #1A3F7F 100%);
  --grad-navy-soft:   linear-gradient(180deg, var(--c-white) 0%, #F4F8FE 100%);
  --grad-cloud:       linear-gradient(135deg, #102B5C 0%, #2557B5 60%, #6FA8FF 100%);
  --grad-workplace:   linear-gradient(135deg, #102B5C 0%, #2557B5 50%, #F5C518 100%);
  --grad-security:    linear-gradient(135deg, #0F1115 0%, #2A0E0E 50%, #990000 100%);
  --grad-aperiteams:  linear-gradient(135deg, #102B5C 0%, #2557B5 60%, #F5C518 100%);

  /* === Typography === */
  --ff-display: "Brinnan", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ff-body:    "Brinnan", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ff-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Consolas, "Liberation Mono", monospace;

  /* === Spacing (8pt grid) === */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-7:  48px;
  --sp-8:  64px;
  --sp-9:  96px;
  --sp-10: 128px;
  --sp-11: 160px;

  /* === Radii === */
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 24px;
  --r-3xl: 32px;
  --r-pill: 999px;

  /* === Shadows === */
  --shadow-xs: 0 1px 2px rgba(15,17,21,0.05);
  --shadow-sm: 0 4px 12px rgba(15,17,21,0.06);
  --shadow-md: 0 12px 32px rgba(15,17,21,0.10);
  --shadow-lg: 0 32px 64px rgba(15,17,21,0.14);
  --shadow-glow-blue:   0 0 0 4px rgba(37,87,181,0.20);
  --shadow-glow-yellow: 0 0 0 4px rgba(245,197,24,0.30);

  /* === Transitions === */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 150ms var(--ease-out);
  --t-base: 220ms var(--ease-out);
  --t-slow: 360ms var(--ease-out);

  /* === Layout === */
  --container-max: 1280px;
  --gutter-x: clamp(20px, 4vw, 64px);
  --section-y: clamp(72px, 11vw, 160px);

  /* === Z-index === */
  --z-nav: 100;
  --z-modal: 200;
  --z-toast: 300;
}


/* ===================================================================
   Inside Technologies — Main Stylesheet
   (fusione di style.css + about-page.css)
   =================================================================== */
/* ===================================================================
   Inside Technologies — Stylesheet
   Token, stili globali e stili pagina in un unico file.
   =================================================================== */

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; padding-left: 0; }
a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
:focus-visible { outline: 2px solid var(--c-blue-600); outline-offset: 2px; border-radius: 4px; }

/* === Body === */
body {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 767px) { body { font-size: 15px; } }

/* === Container === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter-x);
}
.container--narrow { max-width: 960px; }

/* === Typography === */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-yellow-500);
  margin-bottom: var(--sp-4);
}

.display-1 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--c-text);
}

.display-2 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4.8vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--c-text);
}

.h1 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.h2 {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.h3 {
  font-family: var(--ff-display);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 600;
  line-height: 1.3;
}

.body-lg {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--c-text-soft);
}

.body-sm { font-size: 14px; color: var(--c-text-mute); }
.mono { font-family: var(--ff-body); font-size: 13px; letter-spacing: 0.01em; }

/* === Section === */
.section {
  padding-block: var(--section-y);
  position: relative;
  overflow: hidden;
}

.section--gray { background: #09151F; }
.section--blue-soft { background: #0E2240; }
.section--dark { background: #09151F; color: var(--c-text); }
.section--yellow { background: var(--c-yellow-500); color: var(--c-blue-900); }
.section--navy { background: var(--grad-navy); color: var(--c-white); }
.section--cyber { background: var(--grad-security); color: var(--c-white); }
.section--aperiteams { background: #1A0A2E; color: var(--c-white); }

.section--dark .eyebrow,
.section--cyber .eyebrow,
.section--aperiteams .eyebrow,
.section--navy .eyebrow { color: var(--c-yellow-500); }

.section--dark .display-2,
.section--cyber .display-2,
.section--aperiteams .display-2,
.section--navy .display-2,
.section--dark .display-1,
.section--navy .display-1 { color: var(--c-white); }

.section--dark .body-lg,
.section--cyber .body-lg,
.section--aperiteams .body-lg,
.section--navy .body-lg { color: rgba(255,255,255,0.78); }

.section-header {
  max-width: 760px;
  margin-bottom: var(--sp-8);
}
.section-header--centered {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}
.section-header--centered .body-lg { margin-inline: auto; }
.section-header .body-lg { margin-top: var(--sp-4); }

/* === Dot pattern (PDF brand decoration) === */
.dot-pattern {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  width: 130px;
  pointer-events: none;
}
.dot-pattern span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-yellow-500);
  opacity: 0.85;
}
.dot-pattern--dark span { background: var(--c-blue-600); opacity: 0.35; }
.dot-pattern--top-right { top: var(--sp-7); right: var(--sp-7); }
.dot-pattern--bottom-left { bottom: var(--sp-7); left: var(--sp-7); }

/* === Buttons === */
/* === Buttons v2 — Rounded Glow === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 28px;
  border-radius: 14px;
  border: none;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
}
.btn:focus-visible { outline: none; box-shadow: var(--shadow-glow-blue); }
.btn:active { transform: translateY(1px) scale(0.98) !important; }

/* Primary — gradient navy→blue + glow */
.btn--primary {
  background: linear-gradient(135deg, var(--c-blue-800) 0%, var(--c-blue-600) 100%);
  color: var(--c-white);
  box-shadow: 0 2px 10px rgba(37,87,181,0.22);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--c-blue-900) 0%, var(--c-blue-800) 100%);
  box-shadow: 0 0 0 3px rgba(37,87,181,0.18), 0 8px 28px rgba(37,87,181,0.38);
  transform: translateY(-2px);
}

/* Blog CTA — gradiente animato blu scuro→blu chiaro */
@keyframes blogBtnGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.btn--blog {
  background: linear-gradient(135deg, var(--c-blue-900), var(--c-blue-800), var(--c-blue-600), #3b82c4);
  background-size: 300% 300%;
  animation: blogBtnGradient 5s ease infinite;
  color: var(--c-white);
  box-shadow: 0 2px 10px rgba(37,87,181,0.25);
}
.btn--blog:hover {
  animation-duration: 2.5s;
  box-shadow: 0 0 0 3px rgba(37,87,181,0.18), 0 8px 28px rgba(37,87,181,0.42);
  transform: translateY(-2px);
}

/* Yellow animated — gradiente animato giallo ambra */
@keyframes yellowBtnGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.btn--yellow-animated {
  background: linear-gradient(135deg, #b8860b, var(--c-yellow-500), var(--c-yellow-400), #ffe066);
  background-size: 300% 300%;
  animation: yellowBtnGradient 5s ease infinite;
  color: var(--c-gray-900);
  box-shadow: 0 2px 10px rgba(245,197,24,0.30);
}
.btn--yellow-animated:hover {
  animation-duration: 2.5s;
  box-shadow: 0 0 0 3px rgba(245,197,24,0.22), 0 8px 28px rgba(245,197,24,0.45);
  transform: translateY(-2px);
}

/* Yellow — gradiente caldo + glow ambra */
.btn--yellow {
  background: linear-gradient(135deg, var(--c-yellow-400) 0%, var(--c-yellow-500) 100%);
  color: var(--c-gray-900);
  box-shadow: 0 2px 10px rgba(245,197,24,0.22);
}
.btn--yellow:hover {
  background: linear-gradient(135deg, #ffe066 0%, var(--c-yellow-400) 100%);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.22), 0 8px 28px rgba(245,197,24,0.42);
  transform: translateY(-2px);
}
.btn--yellow:focus-visible { box-shadow: var(--shadow-glow-yellow); }

/* Secondary — outline che si riempie all'hover */
.btn--secondary {
  background: transparent;
  color: var(--c-blue-600);
  border: 1.5px solid var(--c-blue-600);
  padding: 12.5px 26.5px;
}
.btn--secondary:hover {
  background: linear-gradient(135deg, var(--c-blue-800) 0%, var(--c-blue-600) 100%);
  color: var(--c-white);
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(37,87,181,0.15), 0 8px 24px rgba(37,87,181,0.30);
  transform: translateY(-2px);
}

/* Ghost su dark — glassmorphism */
.btn--ghost-on-dark {
  background: rgba(255,255,255,0.07);
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12.5px 26.5px;
}
.btn--ghost-on-dark:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.60);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08), 0 8px 24px rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* Danger */
.btn--danger {
  background: linear-gradient(135deg, #7a0000 0%, var(--c-red-700) 100%);
  color: var(--c-white);
  box-shadow: 0 2px 10px rgba(153,0,0,0.22);
}
.btn--danger:hover {
  background: linear-gradient(135deg, #5c0000 0%, #7a0000 100%);
  box-shadow: 0 0 0 3px rgba(153,0,0,0.15), 0 8px 28px rgba(153,0,0,0.38);
  transform: translateY(-2px);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.85em;
  transition: transform 0.30s cubic-bezier(0.34,1.56,0.64,1), opacity 0.20s ease;
  opacity: 0.75;
}
.btn:hover .btn-arrow {
  transform: translateX(7px);
  opacity: 1;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--c-blue-600);
  font-weight: 600;
  font-size: 14px;
  transition: gap var(--t-base);
}
.link-arrow:hover { gap: var(--sp-3); }
.section--dark .link-arrow,
.section--cyber .link-arrow,
.section--aperiteams .link-arrow,
.section--navy .link-arrow { color: var(--c-yellow-500); }

/* === Section Yellow (contact CTA bottom) === */
.section--yellow .eyebrow { color: var(--c-blue-800); }
.section--yellow .display-1,
.section--yellow .display-2 { color: var(--c-blue-900); }
.section--yellow .body-lg { color: rgba(16,43,92,0.78); }
.section--yellow .link-arrow { color: var(--c-blue-800); }
.section--yellow .contact__form-card { background: transparent; border-color: transparent; backdrop-filter: none; }
.section--yellow .contact__promise {
  background: rgba(16,43,92,0.08);
  border-left-color: var(--c-blue-900);
  color: rgba(16,43,92,0.82);
}
.section--yellow .contact__channels-label { color: var(--c-blue-800); }
.section--yellow .contact-channel { border-bottom-color: rgba(16,43,92,0.15); }
.section--yellow .contact-channel__label { color: rgba(16,43,92,0.55); }
.section--yellow .contact-channel__value { color: var(--c-blue-900); font-weight: 600; }
.section--yellow .contact-channel a:hover { color: var(--c-blue-600); }
.section--yellow .contact-form__label { color: rgba(16,43,92,0.62); }
.section--yellow .contact-form__input {
  background: rgba(255,255,255,0.78);
  border-color: rgba(16,43,92,0.20);
  color: var(--c-blue-900);
}
.section--yellow .contact-form__input::placeholder { color: rgba(16,43,92,0.32); }
.section--yellow .contact-form__input:hover { border-color: rgba(16,43,92,0.38); }
.section--yellow .contact-form__input:focus {
  border-color: var(--c-blue-900);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 0 0 3px rgba(16,43,92,0.15);
}
.section--yellow .contact-form__submit {
  background: var(--c-blue-900);
  color: var(--c-yellow-500);
}
.section--yellow .contact-form__submit:hover { background: var(--c-blue-800); transform: translateY(-2px); }
.section--yellow .contact-form__status--ok  { background: rgba(40,167,69,0.12); border-color: rgba(40,167,69,0.35); color: #155724; }
.section--yellow .contact-form__status--err { background: rgba(153,0,0,0.08); border-color: rgba(153,0,0,0.25); color: #6b0000; }

/* === Navigation === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  background: rgba(11,25,41,0.92);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  z-index: var(--z-nav);
  transition: box-shadow var(--t-base), border-color var(--t-base);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav.is-scrolled {
  border-bottom-color: rgba(255,255,255,0.10);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--c-white);
}
.nav__logo-mark {
  width: 32px; height: 32px;
}

.nav__links {
  display: none;
  gap: var(--sp-5);
  align-items: center;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-soft);
  transition: color var(--t-fast);
  position: relative;
  padding: 4px 0;
}
.nav__links a:hover { color: var(--c-text); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--c-blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: var(--sp-3); }

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  overflow: hidden;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
}
.lang-switch button {
  padding: 6px 12px;
  color: var(--c-text-mute);
  transition: background var(--t-fast), color var(--t-fast);
}
.lang-switch button[aria-current="true"] {
  background: var(--c-yellow-500);
  color: var(--c-gray-900);
}

.nav__cta { display: none; }
.nav__hamburger {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
}
.nav__hamburger:hover { background: var(--c-gray-50); }
.nav__hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--c-white);
  position: relative;
}
.nav__hamburger span::before,
.nav__hamburger span::after {
  content: "";
  position: absolute;
  left: 0; width: 100%; height: 2px;
  background: var(--c-white);
}
.nav__hamburger span::before { top: -6px; }
.nav__hamburger span::after { top: 6px; }

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__hamburger { display: none; }
}

.nav-drawer {
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--c-bg);
  z-index: calc(var(--z-nav) - 1);
  padding: var(--sp-7) var(--gutter-x);
  transform: translateY(-100%);
  transition: transform var(--t-slow);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  overflow-y: auto;
}
.nav-drawer.is-open { transform: translateY(0); }
.nav-drawer a {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 600;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--c-border);
}


/* === Hero — full-bleed, min-height 100vh === */
.hero {
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #09151F;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(9,21,32,0.92) 0%, rgba(14,34,64,0.80) 55%, rgba(9,21,32,0.70) 100%);
}
.hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(circle, rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  top: 5%; right: 6%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(245,197,24,0.22) 0%, transparent 60%);
  pointer-events: none;
  z-index: 3;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 5%; left: 4%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(37,87,181,0.28) 0%, transparent 60%);
  pointer-events: none;
  z-index: 3;
}
.hero__scroll-hint {
  position: absolute;
  bottom: var(--sp-7);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.35);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: scroll-bounce 2.4s ease-in-out infinite;
}
.hero__scroll-hint::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(245,197,24,0.55), transparent);
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.7; }
}

/* === About === */
.about__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}
.about__tagline {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-blue-900);
  margin-bottom: var(--sp-2);
}
.about__subtagline {
  font-family: var(--ff-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-yellow-500);
  margin-bottom: var(--sp-5);
}
.about__paragraphs p {
  margin-bottom: var(--sp-4);
  color: var(--c-text-soft);
  font-size: 17px;
  line-height: 1.65;
}
.about__visual {
  position: relative;
  background: var(--grad-navy);
  border-radius: var(--r-2xl);
  padding: var(--sp-8) var(--sp-7);
  color: var(--c-white);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about__visual::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(245,197,24,0.25) 0%, transparent 60%);
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  position: relative;
}
.about__stats .metric {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--c-yellow-500);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.about__stats .label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-family: var(--ff-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about__pillars-mini {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  position: relative;
  margin-top: var(--sp-5);
}
.about__pillar-mini {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--c-yellow-500);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.about__pillar-mini-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(245,197,24,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1023px) {
  .about__layout { grid-template-columns: 1fr; gap: var(--sp-7); }
}

/* === Why Inside === */
.why__grid {
  display: grid;
  grid-template-columns: repeat(var(--why-cols, 3), 1fr);
  gap: var(--sp-5);
  max-width: min(100%, calc(var(--why-cols, 3) * 680px));
  margin-inline: auto;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: var(--sp-7);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base), background var(--t-base);
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border-color: rgba(245,197,24,0.30);
  background: rgba(255,255,255,0.07);
}
.why-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--c-yellow-100);
  color: var(--c-blue-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
}
.why-card__icon svg { width: 28px; height: 28px; }
.why-card__title {
  margin-bottom: var(--sp-3);
  color: var(--c-text);
}
.why-card__desc { color: var(--c-text-soft); font-size: 15px; line-height: 1.6; }

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

/* === Why showcase (un elemento + link esterno) === */
.why-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
}
.why-showcase__text .eyebrow { margin-bottom: var(--sp-3); }
.why-showcase__text .display-2 { color: var(--c-text); margin-bottom: var(--sp-5); }
.why-showcase__text .body-lg { color: var(--c-text-soft); margin-bottom: 0; }
.why-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-7);
}
@media (max-width: 1023px) {
  .why-showcase {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }
}

/* === Pillars (BMW-style cards) === */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(var(--pillars-cols, 3), 1fr);
  gap: var(--sp-6);
  max-width: min(100%, calc(var(--pillars-cols, 3) * 420px));
  margin-inline: auto;
}
.pillar-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-2xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base), background var(--t-base);
  border: 1px solid rgba(255,255,255,0.08);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  border-color: rgba(245,197,24,0.25);
  background: rgba(255,255,255,0.07);
}
.pillar-card__cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--grad-navy);
}
.pillar-card__cover--photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.pillar-card__cover svg {
  width: 100%; height: 100%;
  display: block;
}
.pillar-card[data-pillar="hybrid-cloud"] .pillar-card__cover { background: var(--grad-cloud); }
.pillar-card[data-pillar="modern-workplace"] .pillar-card__cover { background: var(--grad-workplace); }
.pillar-card[data-pillar="cyber-security"] .pillar-card__cover { background: var(--grad-security); }
.pillar-card__cover-dots {
  position: absolute;
  bottom: 16px; right: 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.pillar-card__cover-dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
}
.pillar-card__body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pillar-card__label {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-yellow-500);
  margin-bottom: var(--sp-3);
}
.pillar-card[data-pillar="cyber-security"] .pillar-card__label { color: #ff8f8f; }
.pillar-card[data-pillar="modern-workplace"] .pillar-card__label { color: var(--c-yellow-500); }
.pillar-card__title {
  min-height: calc(2 * 1.15em);
  margin-bottom: var(--sp-5);
  color: var(--c-text);
}
.pillar-card__summary {
  color: var(--c-text-soft);
  font-size: 15px;
  line-height: 1.6;
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--sp-5);
}
.pillar-card__highlights {
  margin-bottom: var(--sp-5);
  flex: 1;
}
.pillar-card__highlights li {
  position: relative;
  padding-left: 22px;
  margin-bottom: var(--sp-3);
  font-size: 14px;
  color: var(--c-text-soft);
}
.pillar-card__highlights li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 2px;
  background: var(--c-yellow-500);
}
.pillar-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 600;
  font-size: 14px;
  color: var(--c-yellow-500);
  transition: gap var(--t-base);
}
.pillar-card[data-pillar="cyber-security"] .pillar-card__cta { color: #ff8f8f; }
.pillar-card:hover .pillar-card__cta { gap: var(--sp-3); }

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

/* === Consulting strip === */
.consulting__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.consulting-card {
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.consulting-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border-color: rgba(245,197,24,0.25);
}
.consulting-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--c-yellow-100);
  color: var(--c-blue-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
}
.consulting-card__icon svg { width: 22px; height: 22px; }
.consulting-card__title { color: var(--c-text); margin-bottom: var(--sp-2); }
.consulting-card__desc { color: var(--c-text-soft); font-size: 14px; line-height: 1.55; }

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

/* === Blog === */
.section--blog { background: var(--c-white); }

.blog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
}

.blog__title {
  font-family: var(--ff-display);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 900;
  color: var(--c-gray-900);
  line-height: 1.06;
  letter-spacing: -0.025em;
  white-space: pre-line;
  margin: 0;
}

.blog__header-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.blog__header-text .eyebrow { color: var(--c-blue-600); }

.blog__cta-all {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-blue-600);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: gap 0.25s var(--ease-out), border-color 0.25s;
  white-space: nowrap;
  align-self: flex-end;
  margin-bottom: 6px;
}
.blog__cta-all:hover {
  gap: 8px;
  border-bottom-color: var(--c-blue-600);
  color: var(--c-blue-800);
}

/* Grid: featured sx + 2 piccole dx */
.blog__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto auto;
  gap: 24px;
  align-items: stretch;
}

/* Card base */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm), 0 0 0 1px var(--c-gray-200);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--c-gray-200);
}

/* --- Featured (prima card, colonna sx, occupa entrambe le righe) --- */
.blog-card:first-child {
  grid-row: 1 / 3;
  flex-direction: column;
}
.blog-card:first-child .blog-card__cover {
  height: 280px;
}
.blog-card:first-child .blog-card__title {
  font-size: 24px;
}
.blog-card:first-child .blog-card__excerpt {
  font-size: 15px;
}

/* --- Card secondarie: layout orizzontale (cover sx, testo dx) --- */
.blog-card:not(:first-child) {
  flex-direction: row;
  align-items: stretch;
}
.blog-card:not(:first-child) .blog-card__cover {
  width: 140px;
  min-width: 140px;
  height: auto;
  border-radius: 0;
}
.blog-card:not(:first-child) .blog-card__body {
  padding: 20px 22px;
  justify-content: center;
}
.blog-card:not(:first-child) .blog-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Cover */
.blog-card__cover {
  height: 210px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card__cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card__cover svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.blog-card__cover--cyber-security   { background: var(--grad-security); }
.blog-card__cover--modern-workplace  { background: linear-gradient(135deg, #0D8ADE 0%, #1A5DBE 100%); }
.blog-card__cover--hybrid-cloud      { background: var(--grad-workplace); }
.blog-card__cover--editoriale        { background: linear-gradient(135deg, #1f2430 0%, #2f3b52 100%); }

/* Body */
.blog-card__body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.blog-card__category { font-weight: 600; color: #990000; }
.blog-card__category--cyber-security  { color: #990000; }
.blog-card__category--modern-workplace { color: var(--c-blue-600); }
.blog-card__category--hybrid-cloud     { color: var(--c-pillar-cloud); }
.blog-card__dot      { color: var(--c-gray-300); line-height: 1; }
.blog-card__readtime { color: var(--c-gray-500); }
.blog-card__pubdate  { color: var(--c-gray-900); font-weight: 500; }

.blog-card__title {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-gray-900);
  line-height: 1.28;
  letter-spacing: -0.01em;
  margin: 0;
}
.blog-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-gray-500);
  margin: 0;
}

/* Responsive */
@media (max-width: 1023px) {
  .blog__grid { grid-template-columns: 1fr 1fr; }
  .blog-card:first-child { grid-row: auto; }
  .blog-card:not(:first-child) { flex-direction: column; }
  .blog-card:not(:first-child) .blog-card__cover { width: auto; height: 170px; }
}
@media (max-width: 639px) {
  .blog__grid { grid-template-columns: 1fr; }
  .blog__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .blog-card:not(:first-child) { flex-direction: row; }
  .blog-card:not(:first-child) .blog-card__cover { width: 110px; min-width: 110px; height: auto; }
}

/* === AperiTeams === */
.aperiteams { position: relative; }
.aperiteams::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(245,197,24,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.aperiteams > .container { position: relative; }
.aperiteams__formats {
  display: grid;
  grid-template-columns: repeat(var(--aperiteams-cols, 2), 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-7);
  max-width: min(100%, calc(var(--aperiteams-cols, 2) * 560px));
  margin-inline: auto;
}
.aperiteams-card {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-2xl);
  padding: var(--sp-7);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.aperiteams-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: rgba(245,197,24,0.18);
  color: var(--c-yellow-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.aperiteams-card__icon svg { width: 24px; height: 24px; }
.aperiteams-card__title { color: var(--c-yellow-500); }
.aperiteams-card__desc { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.6; }
.aperiteams-card__meta {
  display: grid;
  gap: var(--sp-2);
  padding: var(--sp-4) 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.aperiteams-card__meta-row {
  display: flex;
  gap: var(--sp-3);
  font-size: 14px;
}
.aperiteams-card__meta-row strong {
  color: var(--c-white);
  min-width: 80px;
  font-family: var(--ff-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.aperiteams-card__meta-row span { color: rgba(255,255,255,0.85); }
.aperiteams-card__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: auto;
}

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


/* === Partners === */
.partners__category {
  margin-bottom: var(--sp-8);
}
.partners__category-label {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  margin-bottom: var(--sp-4);
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}
.partner-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.partner-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-blue-100);
}
.partner-card__name {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-gray-900);
}
.partner-card__tier {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--c-text-mute);
}

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

/* === Contact === */
.contact__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}
.contact__form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  backdrop-filter: blur(8px);
}
.contact__form-card .body-lg { margin-top: var(--sp-4); margin-bottom: var(--sp-6); }
.contact__channels {
  display: grid;
  gap: var(--sp-3);
}
.contact__channels-label {
  font-family: var(--ff-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-yellow-500);
  margin-bottom: var(--sp-3);
}
.contact-channel {
  display: flex;
  flex-direction: column;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-channel__label {
  font-family: var(--ff-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.contact-channel__value {
  font-size: 17px;
  color: var(--c-white);
}
.contact-channel a:hover { color: var(--c-yellow-500); }
.contact__promise {
  margin-top: var(--sp-6);
  padding: var(--sp-5);
  background: rgba(245,197,24,0.08);
  border-left: 3px solid var(--c-yellow-500);
  border-radius: var(--r-md);
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}

@media (max-width: 1023px) {
  .contact__layout { grid-template-columns: 1fr; gap: var(--sp-6); }
}

/* === Contact — inline form === */
.contact__inline-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.contact-form__label {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

#contact .contact-form__label {
  color: rgba(255,255,255,0.92);
}
.contact-form__input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  padding: 12px 16px;
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.5;
  transition: border-color var(--t-base), background var(--t-base), box-shadow var(--t-base);
  width: 100%;
}
.contact-form__input::placeholder { color: rgba(255,255,255,0.28); }
.contact-form__input:hover { border-color: rgba(255,255,255,0.3); }
.contact-form__input:focus {
  outline: none;
  border-color: var(--c-yellow-500);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.18);
}
.contact-form__input:invalid:not(:placeholder-shown) {
  border-color: rgba(200,60,60,0.7);
}
.contact-form__textarea {
  resize: vertical;
  min-height: 110px;
}
.contact-form__checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: pointer;
}
.contact-form__checkbox {
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  position: relative;
}
.contact-form__checkbox:hover {
  border-color: var(--c-yellow-500);
}
.contact-form__checkbox:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(245,197,24,0.28);
}
.contact-form__checkbox:checked {
  background: var(--c-yellow-500);
  border-color: var(--c-yellow-500);
}

/* === Anagrafica page === */
.anagrafica-page {
  min-height: 100vh;
  padding: calc(64px + var(--sp-7)) var(--gutter-x) var(--sp-7);
  background: var(--c-bg);
}

.anagrafica-page__section {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.anagrafica-page__intro {
  text-align: center;
  margin-bottom: var(--sp-5);
}

.anagrafica-page__form {
  background: linear-gradient(130deg, rgba(255,255,255,0.05) 0%, rgba(37,87,181,0.14) 100%);
}

.anagrafica-page__form .contact-form__label {
  color: rgba(255,255,255,0.92);
}

.anagrafica-page__row--triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.anagrafica-page__form .anagrafica-page__submit {
  align-self: center;
  margin-inline: auto;
  width: auto;
  min-width: 280px;
  margin-top: var(--sp-4);
  font-size: 1rem;
  padding: 12px 28px;
}

@media (max-width: 767px) {
  .anagrafica-page {
    padding: calc(64px + var(--sp-6)) var(--sp-4) var(--sp-6);
  }

  .anagrafica-page__form .anagrafica-page__submit {
    min-width: 0;
    width: 100%;
  }
}
.contact-form__checkbox:checked::after {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 4px;
  width: 6px;
  height: 10px;
  border: 2px solid var(--c-gray-900);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.contact-form__checkbox-label {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  user-select: none;
}
.contact-form__checkbox-group:hover .contact-form__checkbox-label {
  color: rgba(255,255,255,0.9);
}
.contact-form__submit {
  align-self: flex-start;
  margin-top: var(--sp-2);
}
.contact-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
.contact-form__status {
  font-size: 14px;
  line-height: 1.5;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  display: none;
}
.contact-form__status--ok {
  display: block;
  background: rgba(40,167,69,0.15);
  border: 1px solid rgba(40,167,69,0.4);
  color: #7ee8a2;
}
.contact-form__status--err {
  display: block;
  background: rgba(200,50,50,0.15);
  border: 1px solid rgba(200,50,50,0.4);
  color: #f5a0a0;
}

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

/* === Footer === */
.footer {
  background: var(--c-gray-900);
  color: rgba(255,255,255,0.7);
  padding-block: var(--sp-7) var(--sp-5);
  font-size: 14px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-5);
  align-items: start;
  padding-bottom: var(--sp-5);
  margin-bottom: var(--sp-5);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer__tagline {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-yellow-500);
  letter-spacing: -0.01em;
}
.footer__tagline-sub { color: rgba(255,255,255,0.55); font-size: 13px; }
.footer__social {
  display: flex; gap: var(--sp-3);
  align-items: center;
}
.footer__social a {
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), color var(--t-fast);
  color: rgba(255,255,255,0.7);
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.footer__social a:hover {
  background: var(--c-yellow-500);
  color: var(--c-gray-900);
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
}
.footer__rights p { margin-bottom: 4px; }

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

/* === Sub-page hero === */
.page-hero {
  padding-top: calc(64px + var(--sp-9));
  padding-bottom: var(--sp-9);
  position: relative;
  overflow: hidden;
  color: var(--c-white);
}
.page-hero[data-pillar="hybrid-cloud"]    { background: var(--grad-cloud); }
.page-hero[data-pillar="modern-workplace"] { background: var(--grad-workplace); }
.page-hero[data-pillar="cyber-security"]  { background: var(--grad-security); }
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(245,197,24,0.18) 0%, transparent 50%),
    radial-gradient(circle at 10% 100%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero__inner { position: relative; max-width: 100%; }
.page-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--sp-5);
  transition: color var(--t-fast);
}
.page-hero__breadcrumb:hover { color: var(--c-yellow-500); }
.page-hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(245,197,24,0.16);
  border: 1px solid rgba(245,197,24,0.4);
  border-radius: var(--r-pill);
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-yellow-500);
  margin-bottom: var(--sp-5);
}
.page-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-5);
  color: var(--c-white);
}
.page-hero__lead {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--sp-4);
}
.page-hero__secondary {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--sp-4);
}

/* === Sub-areas (alternating, dark theme) === */
.subareas { padding-block: var(--section-y); background: linear-gradient(175deg, #0B1929 0%, #0E2138 55%, #0B1929 100%); position: relative; overflow: hidden; }
.subareas::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 55% 70% at 0% 50%,  rgba(37,87,181,0.13)  0%, transparent 100%),
    radial-gradient(ellipse 35% 55% at 100% 15%, rgba(245,197,24,0.05) 0%, transparent 100%);
  pointer-events: none;
}
.subarea {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
  margin-bottom: var(--sp-9);
  position: relative; z-index: 1;
}
.subarea:last-child { margin-bottom: 0; }
.subarea:nth-child(even) .subarea__visual { order: 2; }
.subarea__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--grad-navy);
}
.subarea__visual svg { width: 100%; height: 100%; display: block; }
.subarea__content { padding: var(--sp-3) 0; }
.subarea__vendor {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-yellow-500);
  margin-bottom: var(--sp-3);
}
.subarea__title {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: var(--sp-4);
}
.subarea__desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text-soft);
  margin-bottom: var(--sp-5);
}
.subarea__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
  margin-bottom: var(--sp-5);
}
.subarea__tags .tag {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  background: rgba(245,197,24,0.10);
  color: var(--c-yellow-500);
  border: 1px solid rgba(245,197,24,0.22);
  border-radius: var(--r-sm);
}

@media (max-width: 1023px) {
  .subarea { grid-template-columns: 1fr; gap: var(--sp-5); }
  .subarea:nth-child(even) .subarea__visual { order: 0; }
}

/* === Subarea showcase (CyberGuard) — stile "Contatti": testo sx, glass card dx === */
.subarea--showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
}

.subarea__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
  margin-top: var(--sp-5);
}

/* Ghost outline su dark */
.btn--ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  border-radius: var(--r-md);
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
  text-decoration: none;
  transition: border-color var(--t-base), background var(--t-base), color var(--t-base), transform var(--t-base);
}
.btn--ghost-light:hover {
  border-color: var(--c-yellow-500);
  color: var(--c-yellow-500);
  background: rgba(245,197,24,0.06);
  transform: translateY(-1px);
}
.btn--ghost-light .btn-arrow { transition: transform var(--t-base); }
.btn--ghost-light:hover .btn-arrow { transform: translate(2px, -2px); }

/* Glass card */
.showcase__glass {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-2xl);
  padding: var(--sp-3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.showcase__glass::before {
  content: "";
  position: absolute;
  inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 10%, rgba(153,0,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Schermate: 1 grande sopra, 2+3 affiancate sotto */
.showcase__screens {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

/* Riga inferiore con 2 e 3 affiancate */
.showcase__screens .showcase__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}

.showcase__screen {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  line-height: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 400ms var(--ease-out), opacity 400ms var(--ease-out);
}
.showcase__screen--1 { aspect-ratio: 4 / 3; }
.showcase__screen--2,
.showcase__screen--3 {
  aspect-ratio: 4 / 3;
  opacity: 0.80;
}
.showcase__glass:hover .showcase__screen--2,
.showcase__glass:hover .showcase__screen--3 {
  opacity: 0.95;
}
.showcase__screen svg,
.showcase__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1023px) {
  .subarea--showcase {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
}

/* === Page why-us === */
.page-why { padding-block: var(--section-y); background: linear-gradient(160deg, #09151F 0%, #0B1D30 55%, #09151F 100%); }
.page-why__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.page-why__inner .display-2 { color: var(--c-text); }
.page-why__points {
  display: grid;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  text-align: left;
}
.page-why__points li {
  position: relative;
  padding: var(--sp-4) var(--sp-5) var(--sp-4) var(--sp-7);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  font-size: 16px;
  color: var(--c-text);
}
.page-why__points li::before {
  content: "✓";
  position: absolute;
  left: var(--sp-4);
  top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-yellow-500);
  color: var(--c-blue-900);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* === Page CTA === */
.page-cta { padding-block: var(--section-y); background: var(--grad-navy); color: var(--c-white); text-align: center; }
.page-cta .body-lg { max-width: 680px; margin: var(--sp-4) auto var(--sp-6); color: rgba(255,255,255,0.8); }

/* === Reveal animation === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* === Skip link (a11y) === */
.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  padding: 12px 16px;
  background: var(--c-blue-600);
  color: var(--c-white);
  border-radius: var(--r-md);
  z-index: 999;
  font-weight: 600;
  font-size: 14px;
  transition: top var(--t-base);
}
.skip-link:focus { top: 8px; }

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(15, 17, 21, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(245, 197, 24, 0.18);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}
.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.cookie-banner__icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--c-yellow-500);
}
.cookie-banner__content {
  flex: 1;
  min-width: 0;
}
.cookie-banner__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-gray-300, #c8cdd5);
}
.cookie-banner__policy {
  margin-top: 4px;
  font-size: 13px;
  color: var(--c-yellow-400);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
.cookie-banner__policy:hover { color: var(--c-yellow-500); }
.cookie-banner__actions {
  display: flex;
  flex-shrink: 0;
  gap: var(--sp-3);
  align-items: center;
}
.cookie-banner__actions .btn--cookie-accept {
  background: var(--c-yellow-500);
  color: var(--c-gray-900);
  border: 2px solid var(--c-yellow-500);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--r-lg, 8px);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.cookie-banner__actions .btn--cookie-accept:hover {
  background: var(--c-yellow-400);
  border-color: var(--c-yellow-400);
  transform: translateY(-1px);
}
.cookie-banner__actions .btn--cookie-reject {
  background: transparent;
  color: var(--c-gray-300, #c8cdd5);
  border: 2px solid rgba(255,255,255,0.18);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-lg, 8px);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.cookie-banner__actions .btn--cookie-reject:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--c-white);
  transform: translateY(-1px);
}
@media (max-width: 767px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--sp-5) var(--sp-4);
    gap: var(--sp-4);
  }
  .cookie-banner__icon { display: none; }
  .cookie-banner__actions { width: 100%; flex-direction: column; gap: var(--sp-2); }
  .cookie-banner__actions .btn--cookie-accept,
  .cookie-banner__actions .btn--cookie-reject { width: 100%; text-align: center; }
}

/* ================================================================
   DECORATIVE SECTION BACKGROUNDS
   Gradient diagonali + glow orb in angoli — stile Engitech
   ================================================================ */

/* Il contenuto di ogni section deve stare sopra i pseudo-elementi decorativi */
.section > .container { position: relative; z-index: 1; }

/* ---- About: dark navy con sfumatura bianca solo in fondo ---- */
#about {
  background: #06121F;
  color: var(--c-text);
}
#about::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 55% 65% at 15% 50%, rgba(37,87,181,0.22) 0%, transparent 100%),
    radial-gradient(ellipse 40% 50% at 85% 20%, rgba(245,197,24,0.08) 0%, transparent 100%);
  pointer-events: none;
}
#about > .container { position: relative; z-index: 1; }

/* ---- Why/CyberGuard: dark navy solido ---- */
#why {
  background: #06121F;
}
#why::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 30%,  rgba(37,87,181,0.28)  0%, transparent 100%),
    radial-gradient(ellipse 40% 55% at 10% 65%,  rgba(245,197,24,0.08) 0%, transparent 100%);
  pointer-events: none;
}
/* Wave lines decorativi in why */
#why::after {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath d='M0%2C80 C360%2C160 720%2C0 1080%2C80 C1260%2C120 1380%2C40 1440%2C80' fill='none' stroke='white' stroke-width='0.9' opacity='0.10'/%3E%3Cpath d='M0%2C115 C360%2C195 720%2C35 1080%2C115 C1260%2C155 1380%2C75 1440%2C115' fill='none' stroke='white' stroke-width='0.7' opacity='0.07'/%3E%3Cpath d='M0%2C150 C360%2C230 720%2C70 1080%2C150 C1260%2C190 1380%2C110 1440%2C150' fill='none' stroke='white' stroke-width='0.6' opacity='0.05'/%3E%3Cpath d='M0%2C185 C360%2C265 720%2C105 1080%2C185 C1260%2C225 1380%2C145 1440%2C185' fill='none' stroke='white' stroke-width='0.5' opacity='0.04'/%3E%3Cpath d='M0%2C220 C360%2C300 720%2C140 1080%2C220 C1260%2C260 1380%2C180 1440%2C220' fill='none' stroke='white' stroke-width='0.4' opacity='0.03'/%3E%3C%2Fsvg%3E");
  background-size: 100% 55%;
  background-position: center bottom;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* ---- Pillars: sfondo bianco crema ---- */
#pillars {
  background: linear-gradient(180deg, #ffffff 0%, #EDE9DA 100%);
  color: var(--c-gray-900);
}
#pillars::before {
  content: none;
}

/* ---- Consulting: glow top-center + accent bottom-right ---- */
#consulting {
  background: linear-gradient(180deg, #0B1929 0%, #0D2242 65%, #0B1929 100%);
}
#consulting::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 45% at 50% 0%,    rgba(37,87,181,0.12)  0%, transparent 100%),
    radial-gradient(ellipse 40% 50% at 95% 100%,  rgba(245,197,24,0.06) 0%, transparent 100%);
  pointer-events: none;
}

/* ---- Partners: sfondo bianco crema ---- */
#partners {
  background: #FAF9F5;
  color: var(--c-gray-900);
}
#partners::before {
  content: none;
}
/* Wave lines in consulting */
#consulting::after {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath d='M0%2C100 C480%2C200 960%2C0 1440%2C100' fill='none' stroke='white' stroke-width='0.9' opacity='0.08'/%3E%3Cpath d='M0%2C135 C480%2C235 960%2C35 1440%2C135' fill='none' stroke='white' stroke-width='0.7' opacity='0.06'/%3E%3Cpath d='M0%2C170 C480%2C270 960%2C70 1440%2C170' fill='none' stroke='white' stroke-width='0.5' opacity='0.04'/%3E%3C%2Fsvg%3E");
  background-size: 100% 50%;
  background-position: center top;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* ---- AperiTeams: glow viola al centro tramite overlay, bordi sempre #1A0A2E ---- */
#aperiteams::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, #3D1878 0%, #2D1260 50%, transparent 100%);
  pointer-events: none;
}
#aperiteams::after {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath d='M0%2C90 C360%2C170 720%2C10 1080%2C90 C1260%2C130 1380%2C50 1440%2C90' fill='none' stroke='%23c084fc' stroke-width='0.9' opacity='0.15'/%3E%3Cpath d='M0%2C125 C360%2C205 720%2C45 1080%2C125 C1260%2C165 1380%2C85 1440%2C125' fill='none' stroke='%23c084fc' stroke-width='0.7' opacity='0.10'/%3E%3Cpath d='M0%2C160 C360%2C240 720%2C80 1080%2C160 C1260%2C200 1380%2C120 1440%2C160' fill='none' stroke='%23c084fc' stroke-width='0.5' opacity='0.07'/%3E%3Cpath d='M0%2C195 C360%2C275 720%2C115 1080%2C195 C1260%2C235 1380%2C155 1440%2C195' fill='none' stroke='%23c084fc' stroke-width='0.4' opacity='0.05'/%3E%3C%2Fsvg%3E");
  background-size: 100% 60%;
  background-position: center center;
  background-repeat: no-repeat;
  pointer-events: none;
}



/* === Hero — full-bleed body content === */
.hero__body {
  position: relative;
  z-index: 4;
  width: 100%;
  padding-top: calc(64px + var(--sp-11));
  padding-bottom: var(--sp-11);
  text-align: center;
}
.hero__eyebrow-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: rgba(245,197,24,0.13);
  border: 1px solid rgba(245,197,24,0.32);
  border-radius: var(--r-pill);
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-yellow-500);
  margin-bottom: var(--sp-6);
}
.hero__logo {
  display: block;
  height: clamp(80px, 10vw, 140px);
  width: auto;
  margin-inline: auto;
  margin-bottom: var(--sp-6);
}
.hero__title {
  color: var(--c-white);
  max-width: 1000px;
  margin-inline: auto;
  margin-bottom: var(--sp-5);
}
.hero__lead {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.6;
  color: rgba(240,244,250,0.75);
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--sp-7);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
}

@media (max-width: 767px) {
  .hero__body { padding-top: calc(64px + var(--sp-9)); padding-bottom: var(--sp-9); }
  .hero__title { font-size: clamp(32px, 8vw, 56px); }
}

/* === About — single column refined === */
.about__container {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}
.about__container .eyebrow {
  display: inline-block;
}
.about__tagline {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin: 0 0 var(--sp-2);
}
.about__subtagline {
  font-family: var(--ff-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--c-yellow-500);
  margin-bottom: var(--sp-4);
}
.about__title {
  margin-bottom: var(--sp-4);
  color: var(--c-text);
}
.about__paragraphs {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.about__paragraphs p {
  color: var(--c-text-soft);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.75;
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

/* --- About: testo bianco su sfondo dark navy --- */
#about .eyebrow { color: rgba(255,255,255,0.75); }
#about .about__tagline {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  color: #ffffff;
}
#about .about__tagline-word--black { color: #000; -webkit-text-fill-color: #000; }
#about .about__tagline-word--red   { color: #990000; -webkit-text-fill-color: #990000; }
#about .about__tagline-word--blue  { color: #102B5C; -webkit-text-fill-color: #102B5C; }
#about .about__tagline-word--yellow  { color: #F5C518; -webkit-text-fill-color: #F5C518; }
#about .about__tagline-word--white  { color: #ffffff; -webkit-text-fill-color: #ffffff; }
#about .about__subtagline { color: #ffffff; }
#about .about__title { color: #ffffff; }
#about .about__paragraphs p { color: rgba(255,255,255,0.80); }
#about .display-2 { color: #ffffff; }
#about .h1, #about .h2, #about .h3 { color: #ffffff; }
#about .body-lg { color: rgba(255,255,255,0.80); }
/* === About CTA — freccia animata === */
#about .about__cta {
  margin-top: var(--sp-6);
}
#about .about__cta::after  { content: none; }
#about .about__cta::before { content: none; }
#about .about__cta:hover { transform: translateY(-2px); }

/* freccia circolare */
#about .about__cta .btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#about .about__cta:hover .btn-arrow {
  transform: translateX(4px);
}

/* --- Pillars: testo su sfondo crema --- */
#pillars .eyebrow { color: var(--c-blue-600); }
#pillars .display-2 { color: var(--c-gray-900); }
#pillars .h1, #pillars .h2, #pillars .h3 { color: var(--c-gray-900); }
#pillars .body-lg { color: var(--c-gray-700); }
#pillars .pillar-card {
  background: #ffffff;
  border-color: var(--c-gray-200);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
#pillars .pillar-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: var(--c-blue-100);
  background: #ffffff;
}
#pillars .pillar-card__title { color: var(--c-gray-900); }
#pillars .pillar-card__summary { color: var(--c-gray-700); }
#pillars .pillar-card__highlights li { color: var(--c-gray-700); }
#pillars .pillar-card__highlights li::before { background: var(--c-blue-600); }
#pillars .pillar-card[data-pillar="cyber-security"] .pillar-card__highlights li::before { background: var(--c-red-700); }
#pillars .pillar-card__label { color: var(--c-blue-600); }
#pillars .pillar-card[data-pillar="cyber-security"] .pillar-card__label { color: var(--c-red-700); }
#pillars .pillar-card__cta { color: var(--c-blue-600); }
#pillars .pillar-card[data-pillar="cyber-security"] .pillar-card__cta { color: var(--c-red-700); }

/* --- Partners: testo su sfondo crema + marquee fade crema --- */
#partners .eyebrow { color: var(--c-blue-600); }
#partners .display-2 { color: var(--c-gray-900); }
#partners .h1, #partners .h2 { color: var(--c-gray-900); }
#partners .body-lg { color: var(--c-gray-700); }
#partners .partners__marquee::before {
  background: linear-gradient(to right, #FAF9F5 0%, transparent 100%);
}
#partners .partners__marquee::after {
  background: linear-gradient(to left, #FAF9F5 0%, transparent 100%);
}
#partners .partner-tile {
  background: #ffffff;
  border-color: rgba(0,0,0,0.10);
}
#partners .partner-tile:hover {
  background: #ffffff;
  border-color: var(--c-blue-100);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
#partners .partner-tile__name { color: var(--c-gray-900); }

/* --- Contact: dark navy solido con glow (analogo a sezione CyberGuard del sito di riferimento) --- */
#contact {
  background: #06121F;
  color: var(--c-text);
}
#contact::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 55% 65% at 15% 50%, rgba(37,87,181,0.22) 0%, transparent 100%),
    radial-gradient(ellipse 40% 50% at 85% 20%, rgba(245,197,24,0.08) 0%, transparent 100%);
  pointer-events: none;
}
#contact > .container { position: relative; z-index: 1; }



/* === Why-card — illustration foto === */
.why-card { padding-top: 0; overflow: hidden; }
.why-card__illustration {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: var(--sp-5);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden;
  position: relative;
}
/* Overlay gradiente brand sulla foto */
.why-card__illustration::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(16,43,92,0.45) 0%, rgba(37,87,181,0.15) 60%, transparent 100%);
  pointer-events: none;
}
.why-card__illustration svg { width: 100%; height: 100%; display: block; }
.why-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease-out);
}
.why-card:hover .why-card__img { transform: scale(1.04); }
.why-card__icon { display: none; }
.why-card__title { text-align: center; }
.why-card__desc {
  padding-bottom: var(--sp-6);
}

/* === Consulting-card — illustration grande in cima === */
.consulting-card { padding-top: var(--sp-5); }
.consulting-card__illustration {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  margin-bottom: var(--sp-5);
  border-radius: var(--r-md);
  overflow: hidden;
}
.consulting-card__illustration svg { width: 100%; height: 100%; display: block; }
.consulting-card__icon { display: none; }

/* === Partners — marquee carousel === */
#partners { padding-bottom: calc(var(--section-y) * 0.7); }
.partners__marquee {
  position: relative;
  overflow: hidden;
  margin-top: var(--sp-7);
  padding-block: var(--sp-3);
}
.partners__marquee::before,
.partners__marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.partners__marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--c-bg) 0%, transparent 100%);
}
.partners__marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--c-bg) 0%, transparent 100%);
}
.partners__track {
  display: flex;
  gap: var(--sp-4);
  width: max-content;
  animation: partners-marquee 50s linear infinite;
}
.partners__marquee:hover .partners__track,
.partners__marquee:focus-within .partners__track {
  animation-play-state: paused;
}
@keyframes partners-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.partner-tile {
  flex: 0 0 auto;
  width: 220px;
  height: 110px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 6px;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base), background var(--t-base);
  text-decoration: none;
}
.partner-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  border-color: rgba(245,197,24,0.25);
  background: rgba(255,255,255,0.08);
}
.partner-tile__name {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.partner-tile__tier {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--c-text-mute);
  line-height: 1.3;
}

@media (prefers-reduced-motion: reduce) {
  .partners__track { animation: none; }
}

/* Hide old partners__category styles (legacy) */
.partners__category { display: none; }


/* === Brand logo (immagine PNG) === */
.brand-logo-img {
  height: 32px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}
.nav__logo-mark .brand-logo-img { height: 32px; }
.nav__logo-mark { width: auto; height: 32px; display: flex; align-items: center; }
/* Quando il logo brand image è presente, nascondi il testo "Inside Technologies" del nav per evitare doppione */
.nav__logo-mark:has(.brand-logo-img) + [data-brand-name] {
  display: none;
}

.footer__logo {
  margin-bottom: var(--sp-3);
  max-width: 200px;
}
.footer__logo .brand-logo-img { height: 36px; max-width: 200px; }

/* === Partner tile con logo immagine === */
.partner-tile__logo {
  max-width: 140px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity var(--t-base);
  opacity: 0.9;
}
.partner-tile:hover .partner-tile__logo,
.partner-tile:focus-visible .partner-tile__logo {
  opacity: 1;
}

/* Se il logo c'è, il tier sotto è più piccolo e meno presente */
.partner-tile:has(.partner-tile__logo) .partner-tile__tier {
  margin-top: 4px;
  opacity: 0.7;
}


/* === AperiTeams card: logo immagine === */
.aperiteams-card__logo {
  max-width: 200px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: var(--sp-3);
  /* I PNG hanno sfondo trasparente ma colore originale; nelle aperiteams card il bg è scuro
     quindi i loghi color (blu+rosso) si vedono bene. Per logo bianco non serve filter. */
}
.aperiteams-card { padding-top: var(--sp-7); }

/* === Brand logo size tuning === */
/* Nav: logo orizzontale - più alto + responsive */
.nav__logo-mark .brand-logo-img {
  height: 36px;
  max-width: 240px;
}
/* Footer logo: bianco, leggermente più grande */
.footer__logo .brand-logo-img {
  height: 40px;
  max-width: 220px;
}

/* Sizing dei tile partner: logo deve essere ben visibile, tier opzionalmente sotto */
.partner-tile {
  height: 130px;
  width: 240px;
}
.partner-tile__logo {
  max-width: 180px;
  max-height: 70px;
}

/* ===================================================================
   Wave separators
   =================================================================== */
.wave-sep {
  display: block;
  line-height: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}
.wave-sep svg {
  display: block;
  width: 100%;
  height: 120px;
}
.wave-sep--white-gray   { background: #0B1929; }
.wave-sep--gray-white   { background: #09151F; }
.wave-sep--white-bluesoft { background: #0B1929; }
.wave-sep--bluesoft-navy { background: #0E2240; }
.wave-sep--navy-white   { background: #102B5C; }
.wave-sep--white-dark   { background: #0B1929; }
.wave-sep--gray-dark    { background: #09151F; }

/* Remove top padding from sections that follow a wave (wave already bridges the gap) */
.wave-sep + .section { padding-top: calc(var(--section-y) * 0.6); }

/* ===================================================================
   About CTA — animazioni sonar
   =================================================================== */
@keyframes cta-sonar {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.40), 0 6px 24px rgba(255,255,255,0.12); }
  60%  { box-shadow: 0 0 0 18px rgba(255,255,255,0), 0 6px 24px rgba(255,255,255,0.12); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0), 0 6px 24px rgba(255,255,255,0.12); }
}
@keyframes cta-ring {
  0%   { transform: scale(1);    opacity: 0.6; }
  70%  { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.28); opacity: 0; }
}

/* ===================================================================
   Hero — animazione glow flottante
   =================================================================== */
@keyframes glow-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-35px, 25px) scale(1.12); }
  66%       { transform: translate(20px, -18px) scale(0.95); }
}
@keyframes glow-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(40px, -28px) scale(1.1); }
}
.hero::before { animation: glow-drift-1 14s ease-in-out infinite; }
.hero::after  { animation: glow-drift-2 18s ease-in-out infinite; }

/* ===================================================================
   AperiTeams — glow animato
   =================================================================== */
@keyframes aperiteams-drift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  50%       { transform: translate(-80px, 60px) scale(1.3); opacity: 0.6; }
}
.aperiteams::before { animation: aperiteams-drift 10s ease-in-out infinite; }

/* ===================================================================
   Reveal — stagger CSS helper
   =================================================================== */
.reveal { transition-property: opacity, transform; }

/* Counter metric — transizione cifre */
.metric { transition: color 400ms var(--ease-out); }

/* prefers-reduced-motion: disable floating animations */
@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after { animation: none; }
  .aperiteams::before         { animation: none; }
}


/* ===================================================================
   Chi Siamo — Page Styles
   =================================================================== */
/* ===================================================================
   Chi Siamo — Final styles (mix A + C)
   =================================================================== */

/* ---- Hero ---- */
.about-page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #020D18 0%, #06121F 60%, #041522 100%);
  padding: clamp(110px, 14vw, 160px) 0 clamp(70px, 9vw, 110px);
  text-align: center;
}
.about-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 22% 58%, rgba(5, 94, 126, 0.40) 0%, transparent 65%),
    radial-gradient(ellipse 45% 35% at 80% 42%, rgba(254, 192, 16, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.about-page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.about-page-hero .eyebrow { color: #7ec8e3; }
.about-page-hero__tagline {
  font-family: var(--ff-display);
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
}
.about-page-hero__tagline .about__tagline-word--black { color: #ffffff; -webkit-text-fill-color: #ffffff; }
.about-page-hero__tagline .about__tagline-word--white { color: #ffffff; -webkit-text-fill-color: #ffffff; }
.about-page-hero__tagline .about__tagline-word--yellow { color: var(--c-yellow-500); -webkit-text-fill-color: var(--c-yellow-500); }
.about-page-hero__tagline .about__tagline-word--red   { color: #e63946; -webkit-text-fill-color: #e63946; }
.about-page-hero__tagline .about__tagline-word--blue  { color: #4da6d0; -webkit-text-fill-color: #4da6d0; }
.about-page-hero__subtagline {
  font-family: var(--ff-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fec010;
  margin: 0;
}

/* ---- Stats Strip ---- */
.about-page-stats {
  background: linear-gradient(135deg, #055e7e 0%, #0a7ea8 100%);
  padding: 40px 0;
}
.about-page-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.about-stat__value {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: #fec010;
  line-height: 1;
}
.about-stat__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ---- Section base: shared layout ---- */
.about-page-section {
  padding: clamp(64px, 8vw, 100px) 0;
}
.about-page-section__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.about-page-section__header .eyebrow { margin-bottom: 16px; }
.about-page-section__title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

/* ---- Sezione CHI SIAMO + MISSION (chiara) ---- */
.about-page-section--light {
  background: linear-gradient(160deg, #ffffff 0%, #fff9f0 55%, #fdefd4 100%);
}
.about-page-section--light .eyebrow { color: #055e7e; }
.about-page-section--light .about-page-section__title { color: #0b1929; }
.about-page-section__text p {
  color: #4a5568;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-page-section__text p:last-child { margin-bottom: 0; }

/* Sotto-heading Mission dentro la sezione */
.about-mission-subheading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: #0b1929;
  margin: 36px 0 16px;
  padding-top: 36px;
  border-top: 1px solid rgba(5, 94, 126, 0.15);
}
.about-mission-subheading i { color: #055e7e; font-size: 17px; }

/* ---- Sezione ESPERIENZA (dark) ---- */
.about-page-section--dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #06121F 0%, #0a2540 100%);
}
.about-page-section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(5, 94, 126, 0.20) 0%, transparent 65%);
  pointer-events: none;
}
.about-page-section--dark .about-page-section__inner { position: relative; z-index: 1; }
.about-page-section--dark .eyebrow { color: #7ec8e3; }
.about-page-section--dark .about-page-section__title { color: #ffffff; }

/* Glass cards per esperienza */
.about-exp-cards { display: flex; flex-direction: column; gap: 20px; }
.about-exp-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 24px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.2s, border-color 0.2s;
}
.about-exp-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(254, 192, 16, 0.22);
}
.about-exp-card__icon { font-size: 24px; color: #fec010; min-width: 28px; margin-top: 3px; flex-shrink: 0; }
.about-exp-card__title { font-family: var(--ff-display); font-size: 17px; font-weight: 700; color: #ffffff; margin: 0 0 8px; }
.about-exp-card__desc { font-size: 14px; color: rgba(255, 255, 255, 0.65); margin: 0; line-height: 1.65; }

/* ---- Sezione GREEN PLANET (dark green) ---- */
.about-page-section--green {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #071a0c 0%, #1a4d28 100%);
}
.about-page-section--green::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 65% at 20% 55%, rgba(76, 175, 80, 0.15) 0%, transparent 65%);
  pointer-events: none;
}
.about-page-section--green .about-page-section__inner { position: relative; z-index: 1; }
.about-page-section--green .eyebrow { color: #81c784; }
.about-page-section--green .about-page-section__title { color: #ffffff; }
.about-page-section--green .about-page-section__text p { color: rgba(255, 255, 255, 0.72); }

.about-greenplanet__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #a5d6a7;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.about-greenplanet__link:hover { color: #ffffff; text-decoration: underline; }

.about-greenplanet__pillars {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-greenplanet__pillars li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.65;
}
.about-greenplanet__pillars li i { color: #81c784; font-size: 17px; min-width: 20px; margin-top: 4px; flex-shrink: 0; }
.about-greenplanet__pillars li strong { display: block; color: #ffffff; font-weight: 700; margin-bottom: 2px; }

.about-greenplanet__projects { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-greenplanet__project {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.about-greenplanet__project-title {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-greenplanet__project-title i { color: #81c784; }
.about-greenplanet__project p { color: rgba(255, 255, 255, 0.65) !important; font-size: 14px; line-height: 1.65; margin: 0 !important; }
.about-greenplanet__project a { color: #a5d6a7; font-weight: 600; text-decoration: none; }
.about-greenplanet__project a:hover { color: #ffffff; text-decoration: underline; }

/* ---- CTA ---- */
.about-page-cta {
  background: linear-gradient(135deg, #fec010 0%, #ff8f00 100%);
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}
.about-page-cta__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.about-page-cta__title {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #06121F;
  margin: 0;
}
.about-page-cta__desc {
  font-size: clamp(15px, 1.3vw, 17px);
  color: rgba(6, 18, 31, 0.70);
  max-width: 520px;
  margin: 0;
}
.about-page-cta .btn--yellow { background: #06121F; color: #fec010; border-color: #06121F; }
.about-page-cta .btn--yellow:hover { background: #0B1929; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .about-page-section__inner { grid-template-columns: 1fr; gap: 32px; }
  .about-page-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .about-greenplanet__projects { grid-template-columns: 1fr; }
  .about-mission-subheading { margin-top: 28px; padding-top: 24px; }
}

