/* =========================
   G POINT — STYLE SYSTEM
========================= */

:root {
  --white: #ffffff;
  --black: #111111;
  --text: #1b1b1b;
  --text-soft: #676767;
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.14);
  --bg: #ffffff;
  --bg-soft: #f7f4ef;
  --bg-soft-2: #f4efe7;
  --bg-dark: #141414;
  --shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.06);
  --shadow-img: 0 12px 36px rgba(0, 0, 0, 0.08);
  --gpoint-red: #E10600;
  --radius-card: 2px;
  --container: 1240px;
  --container-narrow: 820px;
  --header-padding-y: 24px;
  --header-padding-x: 34px;
  --transition: 0.35s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

main {
  display: block;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.container.narrow,
.narrow {
  width: min(calc(100% - 48px), var(--container-narrow));
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 108px 0;
}

.section.alt {
  background: var(--bg-soft);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

h1,
h2,
h3 {
  margin: 0 0 18px;
  font-family: 'Playfair Display', serif;
  color: var(--black);
  font-weight: 600;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.06;
}

h3 {
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.12;
}

p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.78;
}

p:last-child {
  margin-bottom: 0;
}

.section-intro {
  text-align: center;
  margin-bottom: 54px;
}

.section-intro h2 {
  margin-bottom: 16px;
}

.section-intro p {
  max-width: 760px;
  margin: 0 auto;
}

.page-kicker,
.method-hero-kicker,
.gpoint-kicker,
.gallery-label,
.prima-dopo-card p,
.identity p,
.method-number,
.gpoint-step-number {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.page-kicker,
.method-hero-kicker,
.gpoint-kicker {
  color: var(--text-soft);
  margin-bottom: 18px;
}

.gallery-label,
.prima-dopo-card p,
.identity p {
  color: var(--text-soft);
}

.method-number,
.gpoint-step-number {
  color: var(--gpoint-red);
  margin-bottom: 18px;
}

.btn,
.btn-dark,
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}

.btn {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.36);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.btn-dark:hover {
  background: var(--gpoint-red);
  border-color: var(--gpoint-red);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.16);
}

.btn-outline-dark:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* =========================
   HEADER / NAV
========================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--header-padding-y) var(--header-padding-x);
  background: transparent;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(17, 17, 17, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  padding: 16px var(--header-padding-x);
}

.site-header .logo {
  position: relative;
  z-index: 1100;
}

.logo img {
  height: 82px;
  width: auto;
  transition: height var(--transition);
}

.site-header.scrolled .logo img {
  height: 68px;
}

.menu-toggle {
  position: relative;
  z-index: 1100;
  font-size: 30px;
  line-height: 1;
  color: var(--white);
  padding: 4px;
  transition: color var(--transition), transform var(--transition);
}

.menu-toggle:hover {
  color: var(--gpoint-red);
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(92vw, 420px);
  height: 100vh;
  padding: 110px 34px 34px;
  background: rgba(17, 17, 17, 0.97);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1050;
}

.mobile-menu.active {
  transform: translateX(0);
}

.close-menu {
  position: absolute;
  top: 30px;
  right: 28px;
  font-size: 30px;
  line-height: 1;
  color: var(--white);
}

.mobile-menu a {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  transition: color var(--transition), transform var(--transition);
}

.mobile-menu a:hover {
  color: var(--gpoint-red);
  transform: translateX(4px);
}

.mobile-menu a.menu-active {
  color: var(--gpoint-red) !important;
}

body.menu-open {
  overflow: hidden;
}

/* Header chiaro dedicato alla pagina G Point */
.site-header-dark {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header-dark .menu-toggle {
  color: var(--black);
}

.site-header-dark.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.site-header-dark.scrolled .menu-toggle {
  color: var(--black);
}

.site-header-dark .logo img,
.site-header-dark.scrolled .logo img {
  height: 72px;
}

/* =========================
   HOME
========================= */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 180px 0 110px;
  display: flex;
  align-items: end;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.46)),
    url("images/hero.jpg") center center / cover no-repeat;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.34) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), 1240px);
  margin: 0 auto;
}

.hero-title {
  max-width: 920px;
  font-size: clamp(54px, 8vw, 98px);
  line-height: 0.94;
  color: var(--white);
  margin-bottom: 18px;
}

.hero-text {
  max-width: 620px;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
}

.hero-buttons,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.identity {
  background: var(--bg-dark);
  padding: 22px 0;
  text-align: center;
}

.identity p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.about {
  background: var(--white);
  text-align: center;
}

.about p {
  max-width: 760px;
  margin: 0 auto;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.method-card,
.gpoint-step-card,
.gpoint-audience-card,
.gpoint-target-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 34px 28px 30px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.method-card:hover,
.gpoint-step-card:hover,
.gpoint-audience-card:hover,
.gpoint-target-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--line-strong);
}

.method-card h3,
.gpoint-step-card h3,
.gpoint-audience-card h3,
.gpoint-target-card h3,
.gpoint-principle h3 {
  margin-bottom: 14px;
}

.method-card p,
.gpoint-step-card p,
.gpoint-audience-card p,
.gpoint-target-card p,
.gpoint-principle p {
  font-size: 17px;
  line-height: 1.76;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: #ece7de;
}

.gallery-item::before {
  content: "";
  display: block;
  padding-top: 125%;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 22px 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
  color: var(--white);
}

.gallery-caption h3 {
  color: var(--white);
  font-size: 24px;
  margin: 6px 0 0;
}

.gallery-label {
  color: rgba(255, 255, 255, 0.78);
}

.invest,
.contact {
  text-align: center;
}

.invest p,
.contact p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.contact-list p {
  margin-bottom: 10px;
}

.contact-list strong {
  color: var(--black);
}

.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.76);
  padding: 48px 0 40px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.social-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}

.social-icon:hover {
  background: var(--gpoint-red);
  border-color: var(--gpoint-red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 26px;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-grid strong {
  color: var(--white);
}

/* =========================
   LIGHTBOX
========================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 1200;
}

.lightbox.open {
  display: flex;
}

#lightbox-img {
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  object-fit: contain;
}

/* =========================
   PAGINA METODO
========================= */

.method-hero {
  padding-top: 190px;
  padding-bottom: 110px;
  text-align: center;
  background:
    linear-gradient(to bottom, #f5f1eb 0%, #f8f5f0 62%, #ffffff 100%);
}

.method-hero h1 {
  font-size: clamp(52px, 6vw, 84px);
  line-height: 0.98;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.method-hero p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.method-story-grid,
.prima-dopo-grid,
.method-cta-grid,
.gpoint-hero-grid,
.gpoint-approach-grid,
.gpoint-invest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: start;
}

.method-story-text,
.method-cta-text,
.gpoint-hero-right,
.gpoint-invest-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.method-story-text p,
.method-cta-text p,
.gpoint-invest-content p {
  margin: 0;
}

.method-image-card {
  overflow: hidden;
  background: #ece7de;
}

.method-image-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.method-image-card:hover img {
  transform: scale(1.03);
}

.prima-dopo-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 20px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.prima-dopo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--line-strong);
}

.prima-dopo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 18px;
}

.prima-dopo-card p {
  margin-bottom: 8px;
}

.prima-dopo-card h3 {
  margin-bottom: 0;
}

.method-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.method-step-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 34px 28px 30px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.method-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--line-strong);
}

.method-step-card h3 {
  margin-bottom: 14px;
}

.method-step-card p {
  font-size: 17px;
  line-height: 1.76;
}

.method-cta {
  background: linear-gradient(to bottom, #f7f4ef 0%, #f2ece3 100%);
}

.method-cta-grid {
  align-items: center;
}

.method-cta-actions,
.gpoint-hero-actions,
.gpoint-invest-actions,
.gpoint-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

/* =========================
   PAGINA G POINT
========================= */

.gpoint-hero {
  padding: 190px 0 110px;
  background:
    linear-gradient(to bottom, #f6f2ec 0%, #f8f5f0 62%, #ffffff 100%);
}

.gpoint-hero-grid {
  align-items: end;
}

.gpoint-hero-title {
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.96;
  margin: 0;
}

.gpoint-lead {
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.8;
  color: var(--text-soft);
  margin: 0;
}

.gpoint-manifesto {
  text-align: center;
}

.gpoint-manifesto-text {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.24;
  color: var(--black);
  max-width: 980px;
  margin: 0 auto;
}

.gpoint-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.gpoint-approach-title h2,
.gpoint-invest h2,
.method-cta-text h2 {
  margin-bottom: 0;
}

.gpoint-principles {
  display: grid;
  gap: 26px;
}

.gpoint-principle {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-strong);
}

.gpoint-principle:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.gpoint-quote {
  background: var(--bg-dark);
  text-align: center;
}

.gpoint-quote blockquote {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #f4f0e8;
}

.gpoint-target-grid,
.gpoint-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gpoint-final-cta,
.gpoint-cta {
  text-align: center;
}

.gpoint-final-cta p,
.gpoint-cta-text {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.gpoint-final-actions {
  justify-content: center;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1180px) {
  .method-grid,
  .method-steps-grid,
  .gpoint-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .method-story-grid,
  .prima-dopo-grid,
  .method-cta-grid,
  .gpoint-hero-grid,
  .gpoint-approach-grid,
  .gpoint-invest-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .gpoint-target-grid,
  .gpoint-audience-grid {
    grid-template-columns: 1fr;
  }

  .method-image-card img {
    min-height: 420px;
  }
}

@media (max-width: 700px) {
  .container,
  .container.narrow,
  .narrow {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 84px 0;
  }

  .site-header {
    padding: 18px 18px;
  }

  .site-header.scrolled {
    padding: 12px 18px;
  }

  .logo img {
    height: 64px;
  }

  .site-header.scrolled .logo img {
    height: 54px;
  }

  .site-header-dark .logo img,
  .site-header-dark.scrolled .logo img {
    height: 58px;
  }

  .menu-toggle {
    font-size: 28px;
  }

  .mobile-menu {
    width: 100%;
    padding: 100px 24px 24px;
  }

  .mobile-menu a {
    font-size: 28px;
  }

  .hero {
    min-height: 88vh;
    padding: 150px 0 84px;
  }

  .hero-title {
    font-size: 48px;
    line-height: 1.02;
  }

  .hero-text {
    font-size: 18px;
    line-height: 1.7;
  }

  .method-hero,
  .gpoint-hero {
    padding-top: 150px;
    padding-bottom: 84px;
  }

  .method-hero h1,
  .gpoint-hero-title {
    font-size: 46px;
    line-height: 1.02;
  }

  h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  h3 {
    font-size: 24px;
    line-height: 1.14;
  }

  p,
  .method-card p,
  .method-step-card p,
  .gpoint-step-card p,
  .gpoint-audience-card p,
  .gpoint-target-card p,
  .gpoint-principle p,
  .prima-dopo-card p {
    font-size: 17px;
    line-height: 1.74;
  }

  .gpoint-manifesto-text,
  .gpoint-quote blockquote {
    font-size: 30px;
    line-height: 1.28;
  }

  .method-grid,
  .method-steps-grid,
  .gallery-grid,
  .gpoint-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .method-card,
  .method-step-card,
  .gpoint-step-card,
  .gpoint-audience-card,
  .gpoint-target-card,
  .prima-dopo-card {
    padding: 26px 22px;
  }

  .method-image-card img {
    min-height: 300px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-buttons,
  .hero-actions,
  .method-cta-actions,
  .gpoint-hero-actions,
  .gpoint-invest-actions,
  .gpoint-final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-dark,
  .btn-outline-dark {
    width: 100%;
  }
}
/* Header G Point: trasparente all'inizio, scuro allo scroll */
.site-header-gpoint {
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header-gpoint .menu-toggle {
  color: var(--black);
}

.site-header-gpoint.scrolled {
  background: rgba(17, 17, 17, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  padding: 16px var(--header-padding-x);
}

.site-header-gpoint.scrolled .menu-toggle {
  color: var(--white);
}

.site-header-gpoint .logo img {
  height: 72px;
}

.site-header-gpoint.scrolled .logo img {
  height: 64px;
}
.gpoint-hero-wrap {
  position: relative;
}

.gpoint-hero {
  overflow: hidden;
}

.gpoint-hero-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.gpoint-hero-right {
  max-width: 620px;
  margin-left: auto;
}

.gpoint-hero-visual {
  position: absolute;
  top: 10px;
  right: -120px;
  width: min(52vw, 760px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.28;
}
.gpoint-hero-visual {
  position: absolute;
  top: 10px;
  right: -120px;
  width: min(52vw, 760px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.28;
}

.gpoint-hero-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
}

.gpoint-kicker {
  margin: 0;
  line-height: 1;
}

.gpoint-hero-micro {
  margin: 0;
  line-height: 1;
}

.gpoint-hero-micro {
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-soft);
}

.gpoint-hero-title {
  max-width: 620px;
  font-size: clamp(46px, 5.6vw, 74px);
  line-height: 1.02;
}

@media (max-width: 980px) {
  .gpoint-hero-visual {
    top: 140px;
    right: -30px;
    width: min(42vw, 360px);
    opacity: 0.16;
  }

  .gpoint-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .gpoint-hero-right {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 700px) {
  .gpoint-hero-visual {
    display: none;
  }

  .gpoint-hero-topline {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 22px;
  }

  .gpoint-hero-title {
    font-size: 44px;
  }
}
/* =========================
   APPROACH ACCENT
========================= */

.approach-accent {
  margin-top: 34px;
  max-width: 320px;
}
.approach-accent p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-soft);
  margin: 0;
}

@media (max-width: 900px) {
  .approach-accent {
  margin-top: 28px;
  max-width: 320px;
}

  .approach-line {
    height: 56px;
  }
}
.section-white {
  background: #ffffff;
}
.section-white {
  background: #ffffff;
}

.invest.alt {
  background: #efe9e1;
}

.contact.section-white {
  background: #ffffff;
}
.section-white {
  background: #ffffff;
}

.invest.alt {
  background: #e8dfd3;
}

.contact.section-white {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);

}
.invest,
.gpoint-invest {
  background: #f3efe9;
}

.contact {
  background: #ffffff;
}
/* CENTRATURA CARD INVESTIRE */

.gpoint-steps{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
justify-items:center;
}

.gpoint-step-card{
max-width:360px;
width:100%;
}