/* AlbaniaClinic - Stylesheet v2.1 . Brand Book v2 . April 2026 */
/* Essence: A quiet hand on a foreign shoulder. */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&family=Inter+Tight:wght@300;400;500;600&display=swap');

:root {
  /* Primary - the three that do the work */
  --ocean: #0B2340;
  --burgundy: #6B1E2E;
  --bone: #F4F1EC;

  /* Secondary */
  --mist: #E6E9EF;
  --midnight: #061628;
  --claret: #A44256;
  --sand: #EDE7DD;      /* warmer tone of bone for alt sections */
  --ocean-soft: #1A3454; /* ocean lifted a shade */

  /* Functional */
  --success: #3A6B52;
  --warning: #B68432;
  --error: #A44256;
  --info: #355C8C;

  /* Ink scale */
  --ink: #0B2340;
  --ink-2: #2F3E52;
  --ink-3: #5B6A7D;
  --ink-4: #8A94A3;

  /* Legacy aliases so older pages inherit */
  --gold: #B68432;
  --bg: var(--bone);
  --card: #FFFFFF;

  /* Rhythm */
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-1: 0 1px 2px rgba(11,35,64,0.06), 0 2px 8px rgba(11,35,64,0.04);
  --shadow-2: 0 2px 6px rgba(11,35,64,0.08), 0 12px 28px rgba(11,35,64,0.08);
  --shadow-hover: 0 6px 14px rgba(11,35,64,0.10), 0 20px 44px rgba(11,35,64,0.12);
  --transition: 220ms cubic-bezier(.2,.7,.2,1);

  /* Display type */
  --ff-display: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --ff-body: 'Inter Tight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* =========================== Base =========================== */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--ocean);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2rem, 4.2vw, 3.25rem); line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); }
h4 { font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-2); }

p { margin: 0 0 1em; color: var(--ink-2); }
small { color: var(--ink-3); font-size: .88rem; }

a { color: var(--burgundy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--claret); text-decoration: underline; text-underline-offset: 3px; }

img, svg { max-width: 100%; height: auto; display: block; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ocean); color: var(--bone); padding: .5rem 1rem;
  border-radius: var(--radius-sm); z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* =========================== Layout =========================== */

.lp-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.lp-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.lp-section-alt {
  background: var(--sand);
  position: relative;
}
.lp-section-alt::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,35,64,.10), transparent);
}

.lp-section-form {
  background: var(--ocean);
  color: var(--bone);
}
.lp-section-form h2,
.lp-section-form .lp-lead { color: var(--bone); }
.lp-section-form p { color: rgba(244,241,236,.82); }

.lp-lead { font-size: 1.125rem; color: var(--ink-2); max-width: 58ch; margin-bottom: 2rem; }
.lp-center { text-align: center; margin-top: 2rem; }
.lp-meta { color: var(--ink-3); font-size: .95rem; margin-bottom: 1rem; }

.lp-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.lp-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 820px) {
  .lp-two-col { grid-template-columns: 1.3fr 1fr; gap: 4rem; }
}

/* =========================== Nav =========================== */

.lp-nav {
  background: var(--bone);
  border-bottom: 1px solid rgba(11,35,64,.08);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(1.1);
}
.lp-nav-inner {
  max-width: 1140px; margin: 0 auto; padding: .9rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem;
}
.lp-logo {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--ocean); text-decoration: none;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.08rem;
  letter-spacing: -0.01em;
}
.lp-logo:hover { text-decoration: none; color: var(--ocean); }
.lp-logo img { width: 36px; height: 36px; }
.lp-logo-wordmark { white-space: nowrap; }

.lp-nav-links {
  display: flex; align-items: center; gap: 1.6rem;
  font-size: .95rem;
}
.lp-nav-links a {
  color: var(--ink-2);
  position: relative;
  padding: .25rem 0;
  transition: color var(--transition);
}
.lp-nav-links a:hover { color: var(--ocean); text-decoration: none; }
.lp-nav-links a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1.5px; background: var(--burgundy); border-radius: 2px;
}
.lp-nav-links a[aria-current="page"] { color: var(--ocean); font-weight: 500; }
.lp-nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1.5px; background: var(--burgundy); border-radius: 2px;
}

.lp-nav-links .lp-cta {
  background: var(--burgundy); color: var(--bone);
  padding: .55rem 1.1rem; border-radius: 999px;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}
.lp-nav-links .lp-cta::after { display: none !important; }
.lp-nav-links .lp-cta:hover {
  background: var(--claret); color: var(--bone);
  transform: translateY(-1px);
  text-decoration: none;
}

@media (max-width: 780px) {
  .lp-nav-links { gap: 1rem; font-size: .88rem; }
  .lp-nav-links a:not(.lp-cta) { display: none; }
  .lp-nav-links a:first-of-type { display: inline-block; }
  .lp-nav-links a[hreflang="en"], .lp-nav-links a[hreflang="it"] { display: inline-block; }
}

/* =========================== Hero =========================== */

.lp-hero {
  position: relative;
  background:
    radial-gradient(ellipse 900px 500px at 15% 110%, rgba(107,30,46,.28), transparent 60%),
    radial-gradient(ellipse 700px 500px at 110% -10%, rgba(53,92,140,.20), transparent 60%),
    linear-gradient(180deg, var(--ocean) 0%, var(--midnight) 100%);
  color: var(--bone);
  padding: clamp(3.5rem, 8vw, 6.5rem) 1.5rem clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.lp-hero::before {
  /* seal watermark, soft */
  content: "";
  position: absolute;
  right: -80px; top: 50%;
  width: 520px; height: 520px;
  transform: translateY(-50%);
  background: url('/images/ac-seal.svg') center/contain no-repeat;
  opacity: .06;
  filter: brightness(2.2);
  pointer-events: none;
}
.lp-hero::after {
  /* soft bottom fade into page */
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,241,236,.18), transparent);
}
.lp-hero-inner {
  max-width: 1140px; margin: 0 auto;
  position: relative; z-index: 1;
}
.lp-hero-eyebrow {
  font-family: var(--ff-display);
  font-size: .92rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(244,241,236,.72);
  margin: 0 0 1.25rem;
  display: inline-flex; align-items: center; gap: .7rem;
}
.lp-hero-eyebrow::before {
  content: ""; width: 28px; height: 1.5px;
  background: var(--burgundy); border-radius: 2px;
  display: inline-block;
}
.lp-hero h1 {
  color: var(--bone);
  font-weight: 600;
  max-width: 18ch;
  margin-bottom: 1.25rem;
}
.lp-hero-sub {
  color: rgba(244,241,236,.82);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  max-width: 55ch;
  margin-bottom: 2rem;
  line-height: 1.55;
}
.lp-hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 1.5rem;
}
.lp-hero-trust {
  color: rgba(244,241,236,.62);
  margin-top: .5rem;
}
.lp-hero-trust small { color: inherit; }

.lp-hero-compact { padding-top: clamp(2.5rem, 5vw, 3.5rem); padding-bottom: clamp(2rem, 4vw, 3rem); }
.lp-hero-compact h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); }

/* =========================== Buttons =========================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: var(--ff-body); font-weight: 500;
  font-size: 1rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  letter-spacing: .005em;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--burgundy); color: var(--bone);
  box-shadow: 0 4px 14px rgba(107,30,46,.28);
}
.btn-primary:hover {
  background: var(--claret); color: var(--bone);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107,30,46,.36);
}

.btn-ghost {
  background: transparent; color: var(--bone);
  border-color: rgba(244,241,236,.4);
}
.btn-ghost:hover {
  background: rgba(244,241,236,.1);
  border-color: rgba(244,241,236,.7);
  color: var(--bone);
}
/* ghost on light sections */
.lp-section .btn-ghost,
.lp-section-alt .btn-ghost {
  color: var(--ocean);
  border-color: rgba(11,35,64,.25);
}
.lp-section .btn-ghost:hover,
.lp-section-alt .btn-ghost:hover {
  background: rgba(11,35,64,.06);
  border-color: var(--ocean);
  color: var(--ocean);
}

.btn-block { width: 100%; }

/* =========================== Cards =========================== */

.lp-card, .partner-card {
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: var(--shadow-1);
  border: 1px solid rgba(11,35,64,.06);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.lp-card::before, .partner-card::before {
  content: "";
  position: absolute;
  left: 1.75rem; top: 0;
  width: 36px; height: 3px;
  background: var(--burgundy);
  border-radius: 0 0 3px 3px;
}
.lp-card:hover, .partner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(11,35,64,.10);
}
.lp-card h3, .partner-card h3 {
  margin-top: .25rem;
  color: var(--ocean);
}
.lp-card p, .partner-card p {
  color: var(--ink-2);
  font-size: .98rem;
}

.partner-card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
}

.partner-full {
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 2rem 2rem 1.75rem;
  box-shadow: var(--shadow-1);
  border: 1px solid rgba(11,35,64,.06);
}
.partner-full h2 { margin-bottom: .35rem; color: var(--ocean); font-size: 2rem; }
.partner-full ul { padding-left: 1.25rem; margin: .5rem 0 1.25rem; }
.partner-full li { margin: .3rem 0; color: var(--ink-2); }

/* =========================== Steps =========================== */

.lp-steps {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  counter-reset: stepcount;
}
@media (min-width: 720px) {
  .lp-steps { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}
.lp-steps li {
  background: #FFFFFF;
  padding: 1.5rem 1.5rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(11,35,64,.07);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.lp-steps li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.lp-steps h3 {
  color: var(--ocean);
  font-size: 1.1rem;
  margin-bottom: .5rem;
  font-family: var(--ff-display);
}
.lp-steps p { font-size: .95rem; color: var(--ink-2); margin: 0; }

/* =========================== Stats =========================== */

.lp-stats {
  list-style: none; padding: 0; margin: 1rem 0 0;
  display: grid; gap: .8rem;
}
.lp-stats li {
  background: #FFFFFF;
  padding: .85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(11,35,64,.07);
  color: var(--ink-2);
  font-size: .98rem;
}
.lp-stats strong {
  display: inline-block; min-width: 4.5rem;
  color: var(--burgundy);
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.15rem;
  margin-right: .4rem;
}

/* =========================== Callout =========================== */

.callout {
  background: var(--sand);
  border-left: 3px solid var(--burgundy);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
}
.callout h3 {
  margin: 0 0 .5rem;
  font-size: 1rem;
  font-family: var(--ff-display);
  color: var(--ocean);
}
.callout p { margin: 0; color: var(--ink-2); }

/* =========================== FAQ (details) =========================== */

details {
  background: #FFFFFF;
  border: 1px solid rgba(11,35,64,.08);
  border-radius: var(--radius-sm);
  padding: 0;
  margin: .75rem 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}
details[open] {
  border-color: rgba(11,35,64,.18);
  box-shadow: var(--shadow-1);
}
details summary {
  cursor: pointer;
  padding: 1.1rem 1.3rem;
  font-weight: 500;
  color: var(--ocean);
  font-family: var(--ff-display);
  list-style: none;
  position: relative;
  padding-right: 3rem;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  position: absolute; right: 1.3rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--burgundy); font-weight: 400;
  line-height: 1;
  transition: transform var(--transition);
}
details[open] summary::after { content: "\2013"; }
details p {
  padding: 0 1.3rem 1.2rem;
  margin: 0;
  color: var(--ink-2);
}

/* =========================== Breadcrumb =========================== */

.lp-breadcrumb {
  padding: 1rem 0;
  font-size: .9rem;
  border-bottom: 1px solid rgba(11,35,64,.06);
  background: var(--bone);
}
.lp-breadcrumb ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .4rem;
  color: var(--ink-3);
}
.lp-breadcrumb li + li::before {
  content: "\203A"; margin-right: .4rem; color: var(--ink-4);
}
.lp-breadcrumb a { color: var(--ink-2); }
.lp-breadcrumb a:hover { color: var(--burgundy); }
.lp-breadcrumb [aria-current="page"] { color: var(--ocean); font-weight: 500; }

/* =========================== Form =========================== */

.lp-container-form { max-width: 680px; }

.lp-form {
  background: rgba(244,241,236,.06);
  backdrop-filter: blur(2px);
  padding: 2rem 1.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(244,241,236,.12);
  margin-top: 1.5rem;
}
.lp-form-row { margin-bottom: 1.1rem; }
.lp-form label {
  display: block;
  font-weight: 500;
  font-size: .92rem;
  margin-bottom: .35rem;
  color: var(--bone);
}
.lp-form input,
.lp-form select,
.lp-form textarea {
  width: 100%;
  font-family: var(--ff-body);
  font-size: 1rem;
  padding: .8rem 1rem;
  border: 1px solid rgba(244,241,236,.2);
  background: rgba(244,241,236,.92);
  color: var(--ocean);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.lp-form input:focus,
.lp-form select:focus,
.lp-form textarea:focus {
  outline: none;
  background: var(--bone);
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(107,30,46,.22);
}
.lp-form textarea { resize: vertical; min-height: 100px; }
.lp-form .btn-primary { margin-top: .5rem; }
.lp-form-micro { margin-top: .8rem; color: rgba(244,241,236,.65); }
.lp-form-micro small { color: inherit; }

.lp-alt-contact {
  color: rgba(244,241,236,.82);
  font-size: .98rem;
  margin-top: 1.25rem;
}
.lp-alt-contact a { color: var(--bone); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(244,241,236,.4); }
.lp-alt-contact a:hover { color: var(--bone); text-decoration-color: var(--bone); }

/* =========================== Footer =========================== */

.lp-footer {
  background: var(--midnight);
  color: rgba(244,241,236,.72);
  padding: 3rem 0 1.5rem;
  font-size: .92rem;
}
.lp-footer a { color: rgba(244,241,236,.86); }
.lp-footer a:hover { color: var(--bone); text-decoration: underline; text-underline-offset: 3px; }
.lp-footer-inner {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .lp-footer-inner { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; }
}
.lp-footer .lp-logo { color: var(--bone); margin-bottom: .75rem; }
.lp-footer .lp-logo img { filter: brightness(1.6); }
.lp-footer h4 { color: var(--bone); margin-bottom: .75rem; font-size: .82rem; }
.lp-footer ul { list-style: none; padding: 0; margin: 0; }
.lp-footer li { margin: .35rem 0; }
.lp-footer address { font-style: normal; line-height: 1.7; }
.lp-footer-tag {
  font-family: var(--ff-display);
  color: rgba(244,241,236,.55);
  font-size: .92rem;
  font-style: italic;
  max-width: 22ch;
}
.lp-footer-legal {
  border-top: 1px solid rgba(244,241,236,.12);
  margin-top: 2.5rem; padding-top: 1.25rem;
  text-align: center;
  color: rgba(244,241,236,.5);
}
.lp-footer-legal small { color: inherit; }

/* =========================== WhatsApp float =========================== */

.whatsapp-float {
  position: fixed; bottom: 22px; right: 22px;
  width: 58px; height: 58px;
  background: #25D366; color: #FFFFFF;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
  transition: transform var(--transition), box-shadow var(--transition);
  z-index: 40;
}
.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
  color: #FFFFFF;
}

/* =========================== Utility =========================== */

.lp-section table {
  width: 100%;
  border-collapse: separate; border-spacing: 0;
  background: #FFFFFF;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  margin: 1rem 0;
}
.lp-section th, .lp-section td {
  padding: .9rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(11,35,64,.08);
}
.lp-section th {
  background: var(--sand);
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--ocean);
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.lp-section tr:last-child td { border-bottom: none; }

/* =========================== Responsive =========================== */

@media (max-width: 640px) {
  body { font-size: 16px; }
  .lp-hero::before { right: -180px; width: 380px; height: 380px; opacity: .04; }
  .lp-hero { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .lp-logo-wordmark { display: none; }
  .lp-nav-inner { padding: .7rem 1rem; }
  .lp-section { padding: 2.5rem 0; }
  .lp-card, .partner-card { padding: 1.5rem 1.25rem 1.25rem; }
  .partner-full { padding: 1.5rem 1.25rem; }
}

/* Print */
@media print {
  .lp-nav, .whatsapp-float, .lp-section-form { display: none; }
  .lp-hero { background: #FFFFFF; color: var(--ocean); }
  .lp-hero h1, .lp-hero-sub, .lp-hero-eyebrow, .lp-hero-trust { color: var(--ocean); }
}


/* ============================================================
   Additions 2026-04-21 — brand styling for .topnav / .tldr /
   .vedi-anche-pillars / .price-table / .meta-updated / .faq
   used by translated pillars + chi-siamo + come-funziona
   ============================================================ */

.topnav {
  background: var(--bone, #F4F1EC);
  border-bottom: 1px solid rgba(11,35,64,.1);
  position: sticky; top: 0; z-index: 50;
  padding: .9rem 0;
  font-family: var(--ff-body, 'Inter Tight'), system-ui, sans-serif;
}
.topnav .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topnav .brand {
  font-family: var(--ff-display, 'Archivo'), system-ui, sans-serif;
  font-weight: 700; color: var(--ocean, #0B2340); text-decoration: none; font-size: 1.2rem; letter-spacing: -0.01em;
}
.topnav .navlinks { list-style: none; display: flex; gap: 1.25rem; margin: 0; padding: 0; flex-wrap: wrap; }
.topnav .navlinks a {
  color: var(--ocean, #0B2340); text-decoration: none; font-weight: 500; font-size: .95rem;
  transition: color .2s;
}
.topnav .navlinks a:hover { color: var(--burgundy, #6B1E2E); }
@media (max-width: 640px) {
  .topnav { padding: .7rem 0; }
  .topnav .navlinks { gap: .6rem; font-size: .82rem; }
  .topnav .navlinks a { font-size: .82rem; }
}

body { font-family: var(--ff-body, 'Inter Tight'), system-ui, -apple-system, sans-serif; color: #1A2E42; line-height: 1.6; margin: 0; }
main.container, main { max-width: 900px; margin: 0 auto; padding: 1.5rem 1.5rem 3rem; }
@media (max-width: 640px) { main.container, main { padding: 1rem 1rem 2.5rem; } }

article { max-width: 780px; margin: 0 auto; }
article h1 {
  font-family: var(--ff-display, 'Archivo'), system-ui, sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem); line-height: 1.15;
  margin: 1.5rem 0 .5rem; color: var(--ocean, #0B2340);
  font-weight: 700; letter-spacing: -0.015em;
}
article h2 {
  font-family: var(--ff-display, 'Archivo'), system-ui, sans-serif;
  font-size: clamp(1.3rem, 2.8vw, 1.7rem); margin: 2.25rem 0 .85rem; color: var(--ocean, #0B2340);
  font-weight: 600; letter-spacing: -0.01em; padding-top: 1.25rem;
  border-top: 1px solid rgba(11,35,64,.08);
}
article h2:first-of-type { border-top: none; padding-top: 0; margin-top: 1.5rem; }
article h3 { font-family: var(--ff-display, 'Archivo'), system-ui, sans-serif; font-size: 1.2rem; margin: 1.5rem 0 .5rem; color: var(--ocean, #0B2340); font-weight: 600; }
article p, article li { font-family: var(--ff-body, 'Inter Tight'), system-ui, sans-serif; font-size: 1.02rem; line-height: 1.7; color: #1A2E42; }
article ul, article ol { margin: 1rem 0 1rem 1.5rem; padding-left: 0; }
article li { margin: .55rem 0; }
article a { color: var(--burgundy, #6B1E2E); text-decoration: underline; text-underline-offset: 2px; }
article a:hover { color: var(--ocean, #0B2340); }

nav.breadcrumb {
  font-family: var(--ff-body, 'Inter Tight'), system-ui, sans-serif;
  font-size: .85rem; color: #7A8598; margin: 1rem 0 .5rem;
}
nav.breadcrumb a { color: #7A8598; text-decoration: none; }
nav.breadcrumb a:hover { color: var(--burgundy, #6B1E2E); text-decoration: underline; }

.tldr {
  background: var(--bone, #F4F1EC);
  border-left: 4px solid var(--burgundy, #6B1E2E);
  padding: 1.1rem 1.35rem; margin: 1.5rem 0; border-radius: 4px;
  font-family: var(--ff-body, 'Inter Tight'), system-ui, sans-serif; line-height: 1.65;
}
.tldr strong:first-child { color: var(--burgundy, #6B1E2E); font-weight: 700; }

.meta-updated {
  color: #7A8598; font-size: .9rem; margin: .5rem 0 1.5rem;
  font-family: var(--ff-body, 'Inter Tight'), system-ui, sans-serif;
}

.vedi-anche-pillars {
  margin: 2.5rem 0; padding: 1.35rem 1.5rem;
  background: var(--bone, #F4F1EC); border-radius: 6px;
  border: 1px solid rgba(11,35,64,.06);
}
.vedi-anche-pillars h3 { margin-top: 0; color: var(--ocean, #0B2340); font-size: 1.15rem; font-weight: 600; }
.vedi-anche-pillars ul { list-style: none; margin: 0; padding: 0; }
.vedi-anche-pillars li { margin: .5rem 0; padding-left: 1rem; position: relative; }
.vedi-anche-pillars li::before { content: '→'; position: absolute; left: 0; color: var(--burgundy, #6B1E2E); font-weight: 700; }
.vedi-anche-pillars a { color: var(--burgundy, #6B1E2E); font-weight: 500; text-decoration: none; }
.vedi-anche-pillars a:hover { text-decoration: underline; }

.price-table { overflow-x: auto; margin: 1.5rem 0; }
.price-table table {
  width: 100%; min-width: 480px; border-collapse: collapse;
  font-family: var(--ff-body, 'Inter Tight'), system-ui, sans-serif; font-size: .95rem;
}
.price-table th {
  text-align: left; padding: .8rem .65rem;
  border-bottom: 2px solid var(--ocean, #0B2340);
  background: var(--bone, #F4F1EC); color: var(--ocean, #0B2340); font-weight: 600;
}
.price-table td {
  padding: .7rem .65rem; border-bottom: 1px solid rgba(11,35,64,.08);
  vertical-align: top;
}
.price-table tr:nth-child(even) td { background: rgba(244,241,236,.4); }
.price-table strong { color: var(--ocean, #0B2340); font-weight: 600; }

.faq { margin: 1rem 0; }
details {
  border: 1px solid rgba(11,35,64,.1); border-radius: 6px; margin: .5rem 0;
  padding: 0; background: #FFFFFF;
  font-family: var(--ff-body, 'Inter Tight'), system-ui, sans-serif;
}
details[open] { box-shadow: 0 2px 8px rgba(11,35,64,.06); }
details summary {
  cursor: pointer; padding: .95rem 2.5rem .95rem 1.1rem; font-weight: 600; color: var(--ocean, #0B2340);
  list-style: none; position: relative; line-height: 1.4;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+'; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  color: var(--burgundy, #6B1E2E); font-size: 1.35rem; font-weight: 700; transition: transform .2s;
  line-height: 1;
}
details[open] summary::after { content: '−'; }
details p { padding: 0 1.1rem 1.1rem; margin: 0; color: #1A2E42; line-height: 1.65; }

a.cta {
  display: inline-block;
  background: var(--burgundy, #6B1E2E); color: var(--bone, #F4F1EC) !important;
  padding: .9rem 1.6rem; border-radius: 6px; text-decoration: none;
  font-weight: 600; font-family: var(--ff-body, 'Inter Tight'), system-ui, sans-serif;
  font-size: 1rem; letter-spacing: .01em;
  transition: background .2s, transform .2s, box-shadow .2s;
  margin: 1.25rem 0;
  box-shadow: 0 2px 6px rgba(107,30,46,.2);
}
a.cta:hover { background: var(--ocean, #0B2340); transform: translateY(-1px); text-decoration: none; box-shadow: 0 4px 12px rgba(11,35,64,.2); }

footer {
  background: var(--ocean, #0B2340); color: var(--bone, #F4F1EC);
  padding: 2rem 0; margin-top: 3rem;
  font-family: var(--ff-body, 'Inter Tight'), system-ui, sans-serif;
}
footer .container { padding: 0 1.5rem; }
footer p { margin: .3rem 0; font-size: .92rem; color: var(--bone, #F4F1EC); }
footer a { color: var(--bone, #F4F1EC); text-decoration: underline; }
footer a:hover { opacity: .85; }

a.wa {
  position: fixed; bottom: 20px; right: 20px; background: #25D366;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.2); z-index: 100;
  transition: transform .2s, box-shadow .2s;
}
a.wa:hover { transform: scale(1.08); box-shadow: 0 4px 14px rgba(0,0,0,.25); }
a.wa svg { width: 30px; height: 30px; }
