/* ============================================================
   SMILE VIAGGI — LANDING PAGE STYLES
   Colors: Navy #1C2E5A | Gold #C9A435 | Blue #2B6CA8 | Cream #F7F3EB
   Fonts: Playfair Display (headings) | Inter (body)
   ============================================================ */

:root {
  --navy:        #1C2E5A;
  --navy-light:  #243974;
  --navy-dark:   #131F3E;
  --gold:        #C9A435;
  --gold-light:  #E4C76B;
  --gold-dark:   #9E7E22;
  --blue:        #2B6CA8;
  --cream:       #F7F3EB;
  --cream-dark:  #EDE6D6;
  --white:       #FFFFFF;
  --dark:        #111827;
  --text:        #2D3142;
  --text-muted:  #6B7280;
  --border:      rgba(201,164,53,.18);

  --font-h: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-b: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1240px;
  --pad:   clamp(1rem, 4vw, 2rem);

  --ease:  cubic-bezier(.4,0,.2,1);
  --r:     16px;
  --r-sm:  8px;
  --r-lg:  24px;

  --sh-sm: 0 2px 12px rgba(28,46,90,.08);
  --sh-md: 0 8px 32px rgba(28,46,90,.14);
  --sh-lg: 0 16px 64px rgba(28,46,90,.20);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body.page-template-template-landing {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Hide default theme header / footer on landing */
body.page-template-template-landing #masthead,
body.page-template-template-landing #colophon,
body.page-template-template-landing .site-header,
body.page-template-template-landing .site-footer { display: none !important; }

body.page-template-template-landing #page { all: unset; display: block; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: var(--font-b); cursor: pointer; }

/* ── Container ── */
.lp-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── Typography helpers ── */
.lp-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .875rem;
}
.lp-h2 {
  font-family: var(--font-h);
  font-size: clamp(1.9rem, 3.8vw, 3.25rem);
  font-weight: 700;
  line-height: 1.13;
  color: var(--navy);
}
.lp-h2.light  { color: var(--white); }
.lp-h2.gold   { color: var(--gold-light); }

.lp-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 620px;
}
.lp-lead.light { color: rgba(255,255,255,.78); }

/* Gold rule */
.lp-rule {
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1.125rem 0;
}
.lp-rule.center { margin: 1.125rem auto; }

/* ── Buttons ── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  border: none;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .2s;
  white-space: nowrap;
}
.lp-btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
}
.lp-btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(201,164,53,.42); }

.lp-btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.38);
}
.lp-btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }

.lp-btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
}
.lp-btn-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,.42); }

.lp-btn-navy {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
}
.lp-btn-navy:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(28,46,90,.38); }

.lp-btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* ================================================================
   NAVBAR
   ================================================================ */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(28,46,90,.08);
  transition: padding .4s, box-shadow .4s;
}
.lp-nav.scrolled {
  background: var(--white);
  padding: .75rem 0;
  box-shadow: 0 4px 24px rgba(28,46,90,.16);
}
.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.lp-nav-logo img {
  height: 50px; width: auto;
}
.lp-nav-links {
  display: flex; align-items: center; gap: 2.25rem; flex: 1; justify-content: center;
}
.lp-nav-links a {
  font-size: .875rem; font-weight: 500;
  color: var(--navy);
  position: relative;
  transition: color .2s;
}
.lp-nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--blue);
  transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.lp-nav-links a:hover { color: var(--blue); }
.lp-nav-links a:hover::after { transform: scaleX(1); }

.lp-nav-wa {
  display: flex; align-items: center; gap: .5rem;
  padding: .575rem 1.25rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white) !important;
  border-radius: 50px;
  font-size: .82rem; font-weight: 700;
  transition: transform .25s, box-shadow .25s;
}
.lp-nav-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }
.lp-nav-wa i { font-size: .95rem; }

/* Hamburger */
.lp-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
  background: none; border: none;
}
.lp-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.lp-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.lp-hamburger.open span:nth-child(2) { opacity: 0; }
.lp-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.lp-mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999;
  background: rgba(19,31,62,.98);
  backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
}
.lp-mobile-menu.open { display: flex; }
.lp-mobile-menu a {
  font-size: 1.5rem; font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.lp-mobile-menu a:hover { color: var(--gold-light); }

/* ================================================================
   HERO
   ================================================================ */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

/* Animated gradient background */
.lp-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 80% at 0% 50%, rgba(43,108,168,.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 100% 0%,  rgba(201,164,53,.12) 0%, transparent 55%),
    linear-gradient(145deg, var(--navy-dark) 0%, #1a2a50 55%, #0e1a35 100%);
  animation: heroBgShift 12s ease-in-out infinite alternate;
}
@keyframes heroBgShift {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}

/* Hero image (right side) */
.lp-hero-img-wrap {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48%;
  overflow: hidden;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.lp-hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  opacity: .55;
  transform: scale(1.06);
  transition: transform 10s ease;
}
.lp-hero-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy-dark) 0%, rgba(19,31,62,.6) 50%, rgba(19,31,62,.15) 100%);
}

/* Gold decorative lines */
.lp-hero-decor {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.lp-hero-decor svg {
  position: absolute; right: 5%; bottom: 10%;
  width: 420px; opacity: .18;
}

/* Particles */
.lp-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.lp-particle {
  position: absolute;
  background: rgba(201,164,53,.7);
  border-radius: 50%;
  animation: particleRise linear infinite;
}
@keyframes particleRise {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10px) scale(1); opacity: 0; }
}

/* Content */
.lp-hero-content {
  position: relative; z-index: 2;
  padding: 8rem 0 5rem;
  width: 100%;
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3.5rem;
  align-items: center;
}

/* Left column */
.lp-hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem 1rem;
  background: rgba(201,164,53,.13);
  border: 1px solid rgba(201,164,53,.38);
  border-radius: 50px;
  color: var(--gold-light);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}
.lp-hero-h1 {
  font-family: var(--font-h);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.lp-hero-h1 .line { display: block; overflow: hidden; }
.lp-hero-h1 .line span { display: block; }
.lp-hero-h1 .gold  { color: var(--gold-light); }

.lp-hero-sub {
  font-size: 1.15rem; line-height: 1.7;
  color: rgba(255,255,255,.8);
  margin-bottom: .75rem;
}
.lp-hero-tag {
  font-size: .95rem; color: rgba(255,255,255,.55);
  margin-bottom: 2.5rem; line-height: 1.6;
}
.lp-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Right glass card */
.lp-hero-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(201,164,53,.22);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  position: relative; overflow: hidden;
}
.lp-hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}
.lp-hero-card-title {
  font-family: var(--font-h); font-size: 1.45rem; font-weight: 700;
  color: var(--white); margin-bottom: .4rem; line-height: 1.3;
}
.lp-hero-card-body { color: rgba(255,255,255,.68); font-size: .92rem; line-height: 1.65; margin-bottom: 1.5rem; }
.lp-hero-card-hr { height: 1px; background: rgba(201,164,53,.2); margin-bottom: 1.25rem; }
.lp-hero-card-tag {
  font-size: .85rem; color: rgba(255,255,255,.55); font-style: italic;
  line-height: 1.6; margin-bottom: 2rem;
}
.lp-hero-trust { display: flex; align-items: center; gap: .875rem; }
.lp-hero-trust-ico {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem;
}
.lp-hero-trust-text { font-size: .78rem; line-height: 1.45; color: rgba(255,255,255,.55); }
.lp-hero-trust-text strong { display: block; color: var(--gold-light); font-size: .92rem; }

/* Scroll cue */
.lp-scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.4); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em;
  animation: scueBounce 2.2s ease-in-out infinite;
}
.lp-scroll-cue i { font-size: 1.2rem; }
@keyframes scueBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ================================================================
   STATS BAR
   ================================================================ */
.lp-stats {
  background: var(--navy);
  padding: 3.5rem 0;
  position: relative; overflow: hidden;
}
.lp-stats::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,164,53,.07) 0%, transparent 70%);
}
.lp-stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  position: relative; z-index: 1;
}
.lp-stat {
  text-align: center; padding: 1.75rem 1rem;
  position: relative;
}
.lp-stat + .lp-stat::before {
  content: ''; position: absolute; left: 0; top: 20%; height: 60%;
  width: 1px; background: rgba(201,164,53,.2);
}
.lp-stat-num {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block; margin-bottom: .4rem;
}
.lp-stat-lbl {
  font-size: .82rem; font-weight: 500;
  color: rgba(255,255,255,.65);
  text-transform: uppercase; letter-spacing: .06em; line-height: 1.45;
}

/* ================================================================
   PROBLEM / SOLUTION
   ================================================================ */
.lp-ps {
  padding: 7rem 0;
  background: var(--cream);
  position: relative; overflow: hidden;
}
/* Decorative "30+" watermark */
.lp-ps::before {
  content: '30+';
  position: absolute; top: -.1em; right: -.04em;
  font-family: var(--font-h); font-size: clamp(10rem,20vw,18rem);
  font-weight: 900; line-height: 1;
  color: rgba(28,46,90,.04);
  pointer-events: none; user-select: none;
}
/* Decorative curved gold lines */
.lp-ps-decor-svg {
  position: absolute; left: -40px; bottom: 40px;
  width: 300px; opacity: .2; pointer-events: none;
}
.lp-ps-hd { text-align: center; margin-bottom: 4rem; position: relative; z-index: 1; }
.lp-ps-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  position: relative; z-index: 1;
}
.lp-ps-card {
  background: var(--white); border-radius: var(--r); padding: 2.5rem;
  box-shadow: var(--sh-sm);
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.lp-ps-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.lp-ps-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.lp-ps-card.prob::before { background: linear-gradient(90deg,#e05555,#f08080); }
.lp-ps-card.sol::before  { background: linear-gradient(90deg, var(--navy), var(--blue)); }

.lp-ps-ico {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1.125rem;
}
.prob .lp-ps-ico { background: rgba(224,85,85,.1); color: #e05555; }
.sol  .lp-ps-ico { background: rgba(28,46,90,.08);  color: var(--navy); }

.lp-ps-lbl {
  font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  margin-bottom: .625rem;
}
.prob .lp-ps-lbl { color: #e05555; }
.sol  .lp-ps-lbl { color: var(--navy); }

.lp-ps-title {
  font-family: var(--font-h); font-size: 1.45rem; font-weight: 700;
  color: var(--navy); margin-bottom: .875rem; line-height: 1.3;
}
.lp-ps-body { color: var(--text-muted); line-height: 1.75; font-size: .95rem; }

/* ================================================================
   TARGET AUDIENCE
   ================================================================ */
.lp-target { padding: 7rem 0; background: var(--white); }
.lp-target-hd { text-align: center; margin-bottom: 4rem; }
.lp-target-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.lp-target-card {
  background: var(--cream); border-radius: var(--r); padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.lp-target-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.lp-target-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: rgba(201,164,53,.4); }
.lp-target-card:hover::after { transform: scaleX(1); }

.lp-target-ico-wrap {
  width: 74px; height: 74px; margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--gold-light);
  position: relative;
  box-shadow: 0 6px 24px rgba(28,46,90,.22);
}
.lp-target-ico-wrap::after {
  content: ''; position: absolute; inset: -5px;
  border: 1px solid rgba(201,164,53,.22); border-radius: 25px;
}
.lp-target-card-title {
  font-family: var(--font-h); font-size: 1.25rem; font-weight: 700;
  color: var(--navy); margin-bottom: .75rem; line-height: 1.3;
}
.lp-target-card-body { color: var(--text-muted); font-size: .88rem; line-height: 1.72; margin-bottom: 1.125rem; }
.lp-target-tag {
  display: inline-block; padding: .35rem 1rem;
  background: rgba(28,46,90,.07); border-radius: 50px;
  font-size: .76rem; font-weight: 600; color: var(--navy);
}

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.lp-howto {
  padding: 7rem 0;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.lp-howto::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 15% 50%, rgba(43,108,168,.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 50%, rgba(201,164,53,.07) 0%, transparent 60%);
}
.lp-howto-hd { text-align: center; margin-bottom: 4rem; position: relative; z-index: 1; }

.lp-steps {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 1.25rem;
  position: relative; z-index: 1;
}
/* Connecting line */
.lp-steps::before {
  content: ''; position: absolute;
  top: 2.625rem; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,164,53,.3) 20%, rgba(201,164,53,.3) 80%, transparent);
  z-index: 0;
}
.lp-step { text-align: center; position: relative; z-index: 1; }
.lp-step-num {
  width: 54px; height: 54px; margin: 0 auto 1.375rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.2rem; font-weight: 700;
  color: var(--navy-dark);
  box-shadow: 0 0 0 7px rgba(201,164,53,.13);
}
.lp-step-icon { color: rgba(255,255,255,.42); font-size: 1rem; margin-bottom: .875rem; display: block; }
.lp-step-title {
  font-family: var(--font-h); font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: .5rem; line-height: 1.3;
}
.lp-step-body { font-size: .82rem; color: rgba(255,255,255,.58); line-height: 1.65; }

/* ================================================================
   DIY RISKS
   ================================================================ */
.lp-diy { padding: 7rem 0; background: var(--cream); overflow: hidden; }
.lp-diy-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.lp-diy-warning {
  background: var(--navy); border-radius: var(--r); padding: 1.75rem;
  display: flex; gap: 1.125rem; align-items: flex-start; margin-bottom: 1.75rem;
}
.lp-diy-warn-ico {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,164,53,.15); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 1.2rem;
}
.lp-diy-warn-text { color: rgba(255,255,255,.82); font-size: .9rem; line-height: 1.65; }
.lp-diy-warn-text strong { display: block; color: var(--white); font-size: .975rem; margin-bottom: .2rem; }

.lp-risks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.lp-risk-item {
  display: flex; align-items: flex-start; gap: .625rem;
  font-size: .875rem; color: var(--text); line-height: 1.5;
}
.lp-risk-item i { color: #e05555; font-size: .75rem; margin-top: .2rem; flex-shrink: 0; }

/* Iceberg visual */
.lp-iceberg {
  border-radius: var(--r-lg); overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #dbeeff 0%, #9ecfef 30%, #1C2E5A 55%, #0e1a35 100%);
  min-height: 500px;
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.lp-iceberg-tag {
  display: inline-block; padding: .3rem .875rem;
  background: rgba(255,255,255,.88); border-radius: 50px;
  font-size: .75rem; font-weight: 700; color: var(--navy);
  margin-bottom: .5rem;
}
.lp-iceberg-tag.danger { background: var(--navy); color: var(--gold-light); }
.lp-iceberg-visible-txt { font-size: .875rem; color: var(--navy-dark); font-weight: 500; }
.lp-iceberg-tip {
  text-align: center;
  /* Triangle SVG shape */
}
.lp-iceberg-sep {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,164,53,.4), transparent);
}
.lp-iceberg-hidden {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}
.lp-ih-item {
  background: rgba(255,255,255,.07); border-radius: 8px;
  padding: .75rem; font-size: .78rem;
  color: rgba(255,255,255,.85);
  display: flex; align-items: flex-start; gap: .5rem; line-height: 1.5;
}
.lp-ih-item i { color: var(--gold-light); font-size: .7rem; margin-top: .15rem; flex-shrink: 0; }

/* ================================================================
   EXCELLENCE FILTER
   ================================================================ */
.lp-excellence { padding: 7rem 0; background: var(--white); }
.lp-excellence-hd { text-align: center; margin-bottom: 4rem; }
.lp-excellence-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.625rem;
  max-width: 880px; margin: 0 auto;
}
.lp-ex-card {
  display: flex; gap: 1.125rem; align-items: flex-start;
  padding: 1.75rem; background: var(--cream); border-radius: var(--r);
  border: 1px solid var(--border);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
}
.lp-ex-card:hover { transform: translateY(-3px); box-shadow: var(--sh-sm); border-color: rgba(201,164,53,.38); }
.lp-ex-ico {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 1.2rem;
}
.lp-ex-title {
  font-family: var(--font-h); font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: .35rem;
}
.lp-ex-body { font-size: .845rem; color: var(--text-muted); line-height: 1.65; }
.lp-ex-badge {
  text-align: center; margin-top: 3.5rem; padding-top: 3.5rem;
  border-top: 1px solid var(--border);
}
.lp-ex-badge-inner {
  display: inline-flex; align-items: center; gap: 1.125rem;
  background: var(--cream); border: 1.5px solid var(--gold);
  border-radius: var(--r); padding: 1.25rem 2rem;
}
.lp-ex-badge-ico {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.3rem;
}
.lp-ex-badge-txt { text-align: left; }
.lp-ex-badge-txt strong { display: block; color: var(--navy); font-size: 1rem; margin-bottom: .15rem; }
.lp-ex-badge-txt span { font-size: .82rem; color: var(--text-muted); }

/* ================================================================
   GALLERY
   ================================================================ */
.lp-gallery { padding: 5.5rem 0; background: var(--cream); overflow: hidden; }
.lp-gallery-hd { text-align: center; margin-bottom: 3rem; }
.lp-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 1rem;
}
.lp-gal-item {
  border-radius: var(--r); overflow: hidden; position: relative;
  background: var(--navy);
}
.lp-gal-item:first-child { grid-row: span 2; }
.lp-gal-item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .6s var(--ease); }
.lp-gal-item:hover img { transform: scale(1.06); }
.lp-gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(28,46,90,.55) 0%, transparent 50%);
  opacity: 0; transition: opacity .3s;
}
.lp-gal-item:hover .lp-gal-overlay { opacity: 1; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.lp-testi {
  padding: 7rem 0; background: var(--navy);
  position: relative; overflow: hidden;
}
.lp-testi::before {
  content: '\201C';
  position: absolute; top: -.15em; left: -.02em;
  font-family: var(--font-h); font-size: clamp(18rem,32vw,28rem);
  font-weight: 900; line-height: 1;
  color: rgba(201,164,53,.04);
  pointer-events: none; user-select: none;
}
.lp-testi-hd { text-align: center; margin-bottom: 4rem; position: relative; z-index: 1; }
.lp-testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem;
  position: relative; z-index: 1;
}
.lp-testi-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,164,53,.18);
  border-radius: var(--r); padding: 2rem;
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.lp-testi-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.09);
  border-color: rgba(201,164,53,.4);
}
.lp-stars { color: var(--gold); font-size: .82rem; letter-spacing: 2px; margin-bottom: 1rem; }
.lp-testi-txt {
  font-size: .9rem; color: rgba(255,255,255,.78);
  line-height: 1.75; font-style: italic; margin-bottom: 1.5rem;
}
.lp-testi-author { display: flex; align-items: center; gap: .875rem; }
.lp-testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--white);
}
.lp-testi-name { font-weight: 600; color: var(--white); font-size: .88rem; margin-bottom: .1rem; }
.lp-testi-loc  { font-size: .78rem; color: rgba(255,255,255,.45); }

/* ================================================================
   CONTACT / CTA
   ================================================================ */
.lp-contact {
  padding: 7rem 0; background: var(--cream);
  position: relative; overflow: hidden;
}
.lp-contact::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(201,164,53,.07) 0%, transparent 70%);
  pointer-events: none;
}
.lp-contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.lp-contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.875rem;
}
.lp-ci-ico {
  width: 46px; height: 46px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 1rem;
}
.lp-ci-lbl { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: .15rem; }
.lp-ci-val { color: var(--text); font-size: .95rem; font-weight: 500; }

.lp-wa-big {
  display: inline-flex; align-items: center; gap: .875rem;
  padding: 1.125rem 2rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white) !important;
  border-radius: var(--r); font-size: 1.05rem; font-weight: 700;
  margin-top: 2rem;
  box-shadow: 0 8px 32px rgba(37,211,102,.3);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.lp-wa-big:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(37,211,102,.45); }
.lp-wa-big i { font-size: 1.5rem; }

/* Contact form */
.lp-cform {
  background: var(--white); border-radius: var(--r-lg); padding: 2.5rem;
  box-shadow: var(--sh-md); border: 1px solid var(--border);
}
.lp-cform-title {
  font-family: var(--font-h); font-size: 1.5rem; font-weight: 700;
  color: var(--navy); margin-bottom: .35rem;
}
.lp-cform-sub { font-size: .875rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.55; }
.lp-frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.lp-fgroup { margin-bottom: 1rem; }
.lp-flabel {
  display: block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--navy); margin-bottom: .375rem;
}
.lp-finput, .lp-fselect, .lp-ftextarea {
  width: 100%; padding: .8rem 1rem;
  border: 1.5px solid #E5E7EB; border-radius: var(--r-sm);
  font-family: var(--font-b); font-size: .875rem; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.lp-finput:focus, .lp-fselect:focus, .lp-ftextarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28,46,90,.09);
}
.lp-ftextarea { height: 110px; resize: vertical; }
.lp-fsubmit {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white); border: none; border-radius: var(--r-sm);
  font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin-top: .25rem;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.lp-fsubmit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(28,46,90,.38); }
.lp-fprivacy {
  text-align: center; font-size: .72rem;
  color: var(--text-muted); margin-top: .75rem; line-height: 1.55;
}
.lp-form-msg { display: none; padding: .75rem 1rem; border-radius: var(--r-sm); margin-top: .75rem; font-size: .875rem; font-weight: 600; text-align: center; }
.lp-form-msg.success { display: block; background: rgba(37,211,102,.12); color: #128C7E; border: 1px solid rgba(37,211,102,.3); }
.lp-form-msg.error   { display: block; background: rgba(224,85,85,.1);   color: #c0392b;  border: 1px solid rgba(224,85,85,.25); }

/* ================================================================
   FOOTER
   ================================================================ */
.lp-footer {
  background: var(--white); padding: 4rem 0 2rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(28,46,90,.08);
}
.lp-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(28,46,90,.09);
  margin-bottom: 2rem;
}
.lp-footer-logo { height: 44px; width: auto; margin-bottom: 1.125rem; }
.lp-footer-brand-txt { font-size: .82rem; line-height: 1.7; max-width: 270px; margin-bottom: 1.375rem; color: var(--text-muted); }
.lp-socials { display: flex; gap: .625rem; }
.lp-social {
  width: 34px; height: 34px; border: 1px solid rgba(28,46,90,.15); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: .82rem;
  transition: background .2s, border-color .2s, color .2s;
}
.lp-social:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.lp-footer-col-title {
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--navy); margin-bottom: 1.125rem;
}
.lp-footer-links { display: flex; flex-direction: column; gap: .55rem; }
.lp-footer-links a {
  font-size: .82rem; color: var(--text-muted);
  transition: color .2s, padding-left .2s;
}
.lp-footer-links a:hover { color: var(--blue); padding-left: 5px; }
.lp-footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .76rem; flex-wrap: wrap; gap: .75rem;
  color: var(--text-muted);
}
.lp-footer-bottom-links { display: flex; gap: 1.375rem; }
.lp-footer-bottom-links a { color: var(--text-muted); transition: color .2s; }
.lp-footer-bottom-links a:hover { color: var(--blue); }

/* Floating WhatsApp */
.lp-float-wa {
  position: fixed; bottom: 1.875rem; right: 1.875rem; z-index: 998;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white) !important; font-size: 1.55rem;
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
  animation: waPulse 3s ease-in-out infinite;
  transition: transform .25s;
}
.lp-float-wa:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 28px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 6px 28px rgba(37,211,102,.5), 0 0 0 14px rgba(37,211,102,.1); }
}

/* ================================================================
   CHI SIAMO (ABOUT)
   ================================================================ */
.lp-about {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.lp-about::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--gold));
}
.lp-about-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}
.lp-about-img-col { position: relative; }
.lp-about-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sh-lg);
}
.lp-about-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform .6s var(--ease);
}
.lp-about-img-wrap:hover img { transform: scale(1.04); }
.lp-about-img-badge {
  position: absolute; bottom: 2.5rem; left: -1.5rem;
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1rem 1.75rem;
  box-shadow: var(--sh-lg);
  min-width: 220px;
}
.lp-about-img-badge strong {
  display: block;
  font-family: var(--font-h); font-size: 2rem; font-weight: 800;
  color: var(--navy); line-height: 1;
}
.lp-about-img-badge span { font-size: .8rem; color: var(--text-muted); line-height: 1.4; }
.lp-about-lead { font-size: 1rem; line-height: 1.8; color: var(--text); }
.lp-about-values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .875rem; margin-top: 2rem;
}
.lp-about-val {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: 1rem 1.125rem;
  background: var(--cream);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--gold);
  transition: box-shadow .22s, transform .22s;
}
.lp-about-val:hover { box-shadow: var(--sh-sm); transform: translateY(-2px); }
.lp-about-val-ico { color: var(--navy); font-size: 1.05rem; margin-top: 3px; flex-shrink: 0; }
.lp-about-val-txt strong {
  display: block; font-size: .88rem; color: var(--navy); font-weight: 700; margin-bottom: .2rem;
}
.lp-about-val-txt span { font-size: .8rem; color: var(--text-muted); line-height: 1.45; }

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.lp-faq { padding: 6rem 0; background: var(--cream); }
.lp-faq-hd { text-align: center; margin-bottom: 3.5rem; }
.lp-faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: .75rem;
}
.lp-faq-item {
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .25s, border-color .25s;
}
.lp-faq-item.open {
  box-shadow: var(--sh-md);
  border-color: rgba(201,164,53,.35);
}
.lp-faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer; user-select: none;
  font-weight: 600; color: var(--navy); font-size: .94rem;
  background: none; border: none; width: 100%; text-align: left;
  font-family: var(--font-b); line-height: 1.45;
  transition: background .2s;
}
.lp-faq-q:hover { background: rgba(247,243,235,.7); }
.lp-faq-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  background: var(--cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: .75rem;
  transition: transform .3s var(--ease), background .2s, color .2s;
}
.lp-faq-item.open .lp-faq-icon {
  transform: rotate(45deg);
  background: var(--gold); color: var(--white);
}
.lp-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .38s ease, padding .3s;
  padding: 0 1.5rem;
  color: var(--text); font-size: .93rem; line-height: 1.78;
}
.lp-faq-item.open .lp-faq-a { max-height: 340px; padding: 0 1.5rem 1.5rem; }

/* ================================================================
   ANIMATION INITIAL STATES (GSAP)
   ================================================================ */
.g-fade-up    { opacity: 0; transform: translateY(38px); }
.g-fade-left  { opacity: 0; transform: translateX(-38px); }
.g-fade-right { opacity: 0; transform: translateX(38px); }
.g-fade-in    { opacity: 0; }
.g-scale      { opacity: 0; transform: scale(.9); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .lp-hero-grid    { grid-template-columns: 1fr; }
  .lp-hero-img-wrap { width: 55%; clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%); }
  .lp-hero-card    { max-width: 480px; }
  .lp-steps        { grid-template-columns: repeat(3,1fr); }
  .lp-steps::before{ display: none; }
  .lp-footer-grid  { grid-template-columns: 1fr 1fr; }
  .lp-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .lp-gal-item:first-child { grid-row: span 1; }
}
@media (max-width: 1100px) {
  .lp-about-inner { gap: 3rem; }
  .lp-about-img-badge { left: 0; }
}
@media (max-width: 768px) {
  .lp-about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .lp-about-img-col { order: -1; }
  .lp-about-img-badge { left: 1rem; bottom: 1.5rem; min-width: unset; }
  .lp-about-values { grid-template-columns: 1fr; }
  .lp-faq-q { font-size: .88rem; padding: 1rem 1.25rem; }
  .lp-faq-a { font-size: .88rem; }
}

@media (max-width: 768px) {
  .lp-nav-links  { display: none; }
  .lp-hamburger  { display: flex; }
  .lp-nav-wa span{ display: none; }

  .lp-hero-img-wrap { display: none; }
  .lp-hero-h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  .lp-stats-grid   { grid-template-columns: repeat(2,1fr); }
  .lp-stat:nth-child(2)::before { display: none; }
  .lp-ps-grid      { grid-template-columns: 1fr; }
  .lp-target-grid  { grid-template-columns: 1fr; }
  .lp-steps        { grid-template-columns: 1fr 1fr; }
  .lp-diy-inner    { grid-template-columns: 1fr; gap: 3rem; }
  .lp-excellence-grid { grid-template-columns: 1fr; max-width: 100%; }
  .lp-gallery-grid { grid-template-columns: 1fr 1fr; }
  .lp-testi-grid   { grid-template-columns: 1fr; }
  .lp-contact-inner{ grid-template-columns: 1fr; gap: 3rem; }
  .lp-footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .lp-frow         { grid-template-columns: 1fr; }
  .lp-risks-grid   { grid-template-columns: 1fr; }
  .lp-iceberg-hidden { grid-template-columns: 1fr; }
  .lp-hero-ctas    { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .lp-steps   { grid-template-columns: 1fr; }
  .lp-gallery-grid { grid-template-columns: 1fr; }
  .lp-stats-grid   { grid-template-columns: repeat(2,1fr); }
  .lp-ex-badge-inner { flex-direction: column; text-align: center; }
  .lp-ex-badge-txt { text-align: center; }
}
