﻿/* ===========================
   KV PAGINE INTERNE 2026
=========================== */



.kv-page {
 color: #10243a;
}

.kv-page-wrap {
 width: min(1280px, calc(100% - 40px));
 margin: auto;
}

.kv-page-section {
 padding: 90px 0;
}

.kv-page-section-light {
 background: #f7faf6;
}

/* HERO */

.kv-page-hero {
 padding: 90px 0;
 background: linear-gradient( 135deg, #ffffff 0%, #f7faf6 100% );
}

.kv-page-hero-grid {
 display: grid;
 grid-template-columns: 1.2fr .8fr;
 gap: 50px;
 align-items: center;
}

.kv-page-eyebrow {
 color: #4a982f;
 font-size: 13px;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: .08em;
 margin-bottom: 12px;
}

.kv-page-hero h1 {
 font-size: clamp(40px, 5vw, 68px);
 line-height: 1.02;
 margin-bottom: 24px;
 color: #0b2038;
}

.kv-page-hero p {
 font-size: 20px;
 color: #526174;
 line-height: 1.7;
}

.kv-page-actions {
 display: flex;
 flex-wrap: wrap;
 gap: 14px;
 margin-top: 30px;
}

.kv-page-btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 52px;
 padding: 14px 24px;
 border-radius: 10px;
 font-weight: 700;
 transition: .2s;
}

.kv-page-btn-primary {
 background: #4a982f;
 color: #fff;
}

 .kv-page-btn-primary:hover {
  background: #3d8127;
 }

.kv-page-btn-secondary {
 border: 1px solid #d9e1d5;
 background: #fff;
 color: #10243a;
}

 .kv-page-btn-secondary:hover {
  background: #f4f6f5;
 }

/* HERO CARD */

.kv-page-hero-card {
 background: #fff;
 padding: 34px;
 border-radius: 24px;
 box-shadow: 0 18px 45px rgba(16,36,58,.08);
 border: 1px solid #e7ece8;
}

 .kv-page-hero-card h2 {
  margin-bottom: 18px;
  color: #0b2038;
 }

 .kv-page-hero-card ul {
  list-style: none;
 }

 .kv-page-hero-card li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: #526174;
 }

  .kv-page-hero-card li::before {
   content: "✓";
   position: absolute;
   left: 0;
   top: 0;
   width: 20px;
   height: 20px;
   border-radius: 50%;
   background: #e7f5df;
   color: #4a982f;
   text-align: center;
   line-height: 20px;
   font-weight: 700;
  }

/* TITOLI */

.kv-page-title {
 text-align: center;
 max-width: 850px;
 margin: auto auto 50px;
}

 .kv-page-title h2 {
  font-size: clamp(32px,4vw,50px);
  line-height: 1.1;
  margin-bottom: 14px;
 }

 .kv-page-title p {
  color: #526174;
  font-size: 18px;
 }

/* DOMANDE */

.kv-question-grid {
 display: grid;
 grid-template-columns: repeat(4,1fr);
 gap: 24px;
}

.kv-question-card {
 background: #fff;
 border: 1px solid #e6ece8;
 border-radius: 20px;
 padding: 30px;
 text-align: center;
}

 .kv-question-card i {
  font-size: 42px;
  color: #4a982f;
  margin-bottom: 18px;
 }

 .kv-question-card h3 {
  margin-bottom: 12px;
 }

 .kv-question-card p {
  color: #526174;
  line-height: 1.6;
 }

/* SERVIZI */

.kv-service-grid {
 display: grid;
 grid-template-columns: repeat(3,1fr);
 gap: 26px;
}

.kv-service-card {
 background: #fff;
 border-radius: 22px;
 border: 1px solid #e4ebe6;
 padding: 32px;
 box-shadow: 0 14px 35px rgba(16,36,58,.05);
}

 .kv-service-card i {
  font-size: 42px;
  color: #4a982f;
  margin-bottom: 18px;
 }

 .kv-service-card h3 {
  margin-bottom: 12px;
  color: #0b2038;
 }

 .kv-service-card p {
  color: #526174;
  margin-bottom: 18px;
  line-height: 1.7;
 }

 .kv-service-card a {
  color: #4a982f;
  font-weight: 700;
 }

/* METODO */

.kv-method-page-grid {
 display: grid;
 grid-template-columns: .9fr 1.1fr;
 gap: 50px;
}

 .kv-method-page-grid h2 {
  font-size: clamp(34px,4vw,52px);
  line-height: 1.1;
  margin-bottom: 16px;
 }

 .kv-method-page-grid p {
  color: #526174;
  line-height: 1.7;
 }

.kv-method-list {
 display: grid;
 gap: 18px;
}

 .kv-method-list div {
  background: #fff;
  border: 1px solid #e5ebe7;
  border-radius: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-areas:
   "num title"
   "num text";
  column-gap: 18px;
  row-gap: 8px;
 }

 .kv-method-list span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #4a982f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  grid-area: num;
 }

 .kv-method-list strong {
  display: block;
  margin-bottom: 6px;
  grid-area: title;
 }
 .kv-method-list p {
  grid-area: text;
  margin: 0;
 }

/* CTA */

.kv-page-cta {
 background: linear-gradient( 135deg, #0b2038 0%, #143b5b 100% );
 color: #fff;
 padding: 70px 0;
}

.kv-page-cta-grid {
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 30px;
}

.kv-page-cta h2 {
 font-size: clamp(34px,4vw,50px);
 margin-bottom: 10px;
}

.kv-page-cta p {
 color: rgba(255,255,255,.75);
}

/* RESPONSIVE */

@media(max-width:1100px) {

 .kv-page-hero-grid,
 .kv-method-page-grid {
  grid-template-columns: 1fr;
 }

 .kv-question-grid {
  grid-template-columns: repeat(2,1fr);
 }

 .kv-service-grid {
  grid-template-columns: repeat(2,1fr);
 }
}

@media(max-width:760px) {

 .kv-page-section {
  padding: 60px 0;
 }

 .kv-question-grid,
 .kv-service-grid {
  grid-template-columns: 1fr;
 }

 .kv-page-cta-grid {
  flex-direction: column;
  align-items: flex-start;
 }

 .kv-page-hero h1 {
  font-size: 42px;
 }

 .kv-page-hero p {
  font-size: 17px;
 }
}
/* FOTO / TEAM */

.kv-photo-card {
 border-radius: 28px;
 overflow: hidden;
 box-shadow: 0 22px 55px rgba(16,36,58,.14);
 border: 1px solid #e5ebe7;
 background: #fff;
}


 .kv-photo-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
 }

.kv-team-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 34px;
}

.kv-team-card {
 background: #fff;
 border: 1px solid #e5ebe7;
 border-radius: 24px;
 overflow: hidden;
 box-shadow: 0 16px 40px rgba(16,36,58,.07);
}

 .kv-team-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
 }

 .kv-team-card div {
  padding: 30px;
 }

 .kv-team-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #0b2038;
 }

 .kv-team-card p {
  color: #526174;
  line-height: 1.7;
 }

@media(max-width:900px) {
 .kv-team-grid {
  grid-template-columns: 1fr;
 }

 .kv-photo-card img {
  height: 380px;
 }

 .kv-team-card img {
  height: 360px;
 }
}

/* HERO CHI SIAMO */

.kv-about-hero {
 position: relative;
 min-height: 680px;
 overflow: hidden;
 display: flex;
 align-items: center;
 background: #f7faf6;
}

.kv-about-hero-bg {
 position: absolute;
 inset: 0;
 background-image: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 34%, rgba(255,255,255,.18) 63%, rgba(255,255,255,0) 100%), url("../grafica/katia-valerio-consulenza.webp");
 background-size: cover;
 background-position: 100% 35%;
}

.kv-about-hero-content {
 position: relative;
 z-index: 2;
}

.kv-about-hero-box {
 max-width: 720px;
 padding: 54px 0;
}

 .kv-about-hero-box h1 {
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.02;
  color: #0b2038;
  margin-bottom: 24px;
 }

 .kv-about-hero-box > p {
  max-width: 650px;
  font-size: 20px;
  color: #34465b;
  line-height: 1.7;
 }

@media(max-width:900px) {
 .kv-about-hero {
  min-height: auto;
  padding: 70px 0 420px;
  align-items: flex-start;
 }

 .kv-about-hero-bg {
  background-image: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 45%, rgba(255,255,255,.15) 100%), url("../grafica/katia-valerio-consulenza.webp");
  background-position: center bottom;
 }

 .kv-about-hero-box h1 {
  font-size: 42px;
 }

 .kv-about-hero-box > p {
  font-size: 17px;
 }
}

/* PUNTO ENERGIA LISSONE */

.kv-local-hero {
 position: relative;
 min-height: 680px;
 overflow: hidden;
 display: flex;
 align-items: center;
 background: #f7faf6;
}

.kv-local-hero-bg {
 position: absolute;
 inset: 0;
 background-image: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.90) 36%, rgba(255,255,255,.25) 64%, rgba(255,255,255,0) 100%), url("../grafica/punto-energia-lissone-hero.webp");
 background-size: cover;
 background-position: center right;
}

.kv-local-hero-content {
 position: relative;
 z-index: 2;
}

.kv-local-hero-box {
 max-width: 680px;
 padding: 60px 0;
}

 .kv-local-hero-box h1 {
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.02;
  color: #0b2038;
  margin-bottom: 24px;
 }

 .kv-local-hero-box > p {
  max-width: 620px;
  font-size: 20px;
  color: #34465b;
  line-height: 1.7;
 }

@media(max-width:900px) {
 .kv-local-hero {
  min-height: auto;
  padding: 70px 0 420px;
  align-items: flex-start;
 }

 .kv-local-hero-bg {
  background-image: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 48%, rgba(255,255,255,.20) 100%), url("../grafica/punto-energia-lissone-hero.webp");
  background-position: center bottom;
 }

 .kv-local-hero-box h1 {
  font-size: 42px;
 }

 .kv-local-hero-box > p {
  font-size: 17px;
 }
}


.kv-photo-card-conversazione {
 aspect-ratio: 16 / 9;
}

 .kv-photo-card-conversazione img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 90% center;
 }


/* CASE HISTORY / LAVORI ESEGUITI */

.kv-case-image {
 max-width: 960px;
 margin: 0 auto 34px;
 border-radius: 26px;
 overflow: hidden;
 box-shadow: 0 20px 55px rgba(16,36,58,.12);
 border: 1px solid #e5ebe7;
 background: #fff;
}

 .kv-case-image img {
  width: 100%;
  display: block;
 }

.kv-case-highlight {
 max-width: 900px;
 margin: 0 auto;
 padding: 26px 30px;
 border-radius: 18px;
 background: #f7faf6;
 border: 1px solid #e3ebe0;
 color: #34465b;
 font-size: 20px;
 line-height: 1.7;
 text-align: center;
}

 .kv-case-highlight strong {
  color: #4a982f;
 }

/* CONTATTI */

.kv-contact-grid {
 display: grid;
 grid-template-columns: .85fr 1.15fr;
 gap: 42px;
 align-items: start;
}

.kv-contact-info,
.kv-contact-form {
 background: #ffffff;
 border: 1px solid #e5ebe7;
 border-radius: 26px;
 padding: 36px;
 box-shadow: 0 18px 45px rgba(16,36,58,.07);
}

 .kv-contact-info h2,
 .kv-contact-form h2 {
  font-size: 32px;
  color: #0b2038;
  margin-bottom: 14px;
 }

 .kv-contact-info > p,
 .kv-contact-form > p {
  color: #526174;
  line-height: 1.7;
  margin-bottom: 24px;
 }

.kv-contact-card {
 display: grid;
 grid-template-columns: 38px 1fr;
 gap: 16px;
 padding: 18px 0;
 border-bottom: 1px solid #edf1ef;
}

 .kv-contact-card i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e9f4e4;
  color: #4a982f;
  display: flex;
  align-items: center;
  justify-content: center;
 }

 .kv-contact-card strong {
  display: block;
  color: #0b2038;
  margin-bottom: 4px;
 }

 .kv-contact-card p {
  margin: 0;
  color: #526174;
 }

 .kv-contact-card a {
  color: #4a982f;
  font-weight: 700;
 }

.kv-contact-social {
 display: flex;
 flex-wrap: wrap;
 gap: 12px;
 margin: 24px 0;
}

 .kv-contact-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f7faf6;
  border: 1px solid #e3ebe0;
  color: #10243a;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
 }

.kv-map {
 overflow: hidden;
 border-radius: 18px;
 border: 1px solid #e5ebe7;
}

 .kv-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
 }

.kv-contact-form label {
 display: block;
 margin: 18px 0 8px;
 color: #0b2038;
 font-weight: 800;
}

.kv-contact-form input[type="text"],
.kv-contact-form input[type="email"],
.kv-contact-form textarea,
.kv-contact-form select {
 width: 100%;
 min-height: 50px;
 border: 1px solid #dce5dd;
 border-radius: 12px;
 padding: 12px 14px;
 font-family: Arial, Helvetica, sans-serif;
 font-size: 15px;
 color: #10243a;
 background: #ffffff;
}

.kv-contact-form textarea {
 min-height: 150px;
 resize: vertical;
}

.kv-form-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 18px;
}

.kv-upload-box {
 margin-top: 18px;
 padding: 20px;
 border-radius: 16px;
 background: #f7faf6;
 border: 1px dashed #cbd9c5;
}

 .kv-upload-box small {
  display: block;
  margin-top: 10px;
  color: #526174;
  line-height: 1.5;
 }

.kv-privacy {
 margin: 22px 0;
 color: #526174;
}

.kv-submit-btn {
 border: 0;
 cursor: pointer;
}

@media(max-width:1000px) {
 .kv-contact-grid,
 .kv-form-grid {
  grid-template-columns: 1fr;
 }
}