@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --ink:      #0b1a14;
  --forest:   #0d3a27;
  --forest2:  #145c3e;
  --teal:     #0e5c6e;
  --gold:     #c4a24a;
  --gold2:    #e8c96d;
  --cream:    #f8f5ee;
  --white:    #ffffff;
  --mist:     #f2f0ea;
  --border:   #e4dfd4;
  --gray:     #6b7280;
  --gray2:    #9ca3af;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Fraunces', serif; line-height: 1.15; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  padding: 0.4rem 0;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem; height: 76px;
  display: flex; align-items: center; justify-content: space-between;
}

/* ── LOGO INCORPORATION BADGE ── */
.nav-logo {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.35rem 1.1rem 0.35rem 0.5rem;
  border-radius: 40px;
  border: 1.5px solid var(--gold);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.nav-logo:hover {
  background: var(--white);
  box-shadow: 0 6px 24px rgba(196, 162, 74, 0.35);
  transform: translateY(-1px);
}
.nav-logo img {
  height: 48px; width: 48px;
  border-radius: 50%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text strong {
  font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 700;
  color: var(--forest); letter-spacing: 0.03em; line-height: 1.1;
}
.nav-logo-text span {
  font-size: 0.52rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--forest); font-weight: 700; margin-top: 3px; opacity: 0.9;
}

.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink); transition: color 0.2s;
}
.navbar:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.navbar:not(.scrolled) .nav-links a:hover,
.navbar:not(.scrolled) .nav-links a.active {
  color: var(--gold2);
}
.nav-links a:hover, .nav-links a.active { color: var(--forest2); }

.nav-btn {
  padding: 0.65rem 1.6rem; background: var(--gold) !important; color: var(--ink) !important;
  font-size: 0.68rem !important; font-weight: 700 !important;
  letter-spacing: 0.15em !important; text-transform: uppercase !important;
  transition: all 0.2s !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 15px rgba(196,162,74,0.3) !important;
  text-shadow: none !important;
}
.nav-btn:hover { background: var(--gold2) !important; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: rgba(255,255,255,0.9); border: 1px solid var(--gold);
  cursor: pointer; padding: 8px; border-radius: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--forest); transition: all 0.3s; }
.mob-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(13, 58, 39, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  flex-direction: column;
  align-items: stretch;
  padding: 0.8rem 0;
  z-index: 1000;
  animation: slideDownNav 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white);
  padding: 1rem 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
  display: flex; align-items: center; justify-content: space-between;
}
.mob-menu a:last-child {
  border-bottom: none;
  background: var(--gold);
  color: var(--ink);
  margin: 0.8rem 1.5rem 0.4rem;
  border-radius: 30px;
  justify-content: center;
  font-weight: 700;
}
.mob-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold2);
  padding-left: 2.2rem;
}
.mob-close { display: none; }

@keyframes slideDownNav {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--forest);
  display: grid; grid-template-rows: 1fr auto;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(14,92,110,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(196,162,74,0.15) 0%, transparent 50%);
}
.hero-grid-lines {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(var(--white) 1px, transparent 1px),
                    linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* PAGE HERO (PAGINI SECUNDARE & LEGALE) */
.page-hero {
  background: var(--forest);
  position: relative; overflow: hidden;
  padding: 9.5rem 2rem 4.5rem;
  color: white;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(14,92,110,0.4) 0%, transparent 70%);
}
.page-hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(var(--white) 1px, transparent 1px),
                    linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner {
  max-width: 1280px; margin: 0 auto; position: relative; z-index: 2;
  text-align: center;
}
.page-hero-inner h1 {
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  color: white; font-weight: 300; margin-bottom: 1rem;
  font-family: 'Fraunces', serif;
}
.page-hero-inner p {
  font-size: 1.05rem; color: rgba(255,255,255,0.75); font-weight: 300;
  max-width: 620px; margin: 0 auto; line-height: 1.7;
}

.hero-content {
  max-width: 1280px; margin: 0 auto; padding: 10rem 2rem 5rem;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold2); margin-bottom: 2rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.hero h1 {
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  color: var(--white); font-weight: 300; margin-bottom: 2rem;
}
.hero h1 em { color: inherit; font-style: normal; font-weight: inherit; }
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.7); font-weight: 300;
  line-height: 1.85; max-width: 480px; margin-bottom: 3rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-gold {
  display: inline-block; padding: 1rem 2.4rem;
  background: var(--gold); color: var(--ink);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 0.3s; box-shadow: 0 6px 30px rgba(196,162,74,0.35);
  border-radius: 2px;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 10px 35px rgba(196,162,74,0.5); }
.btn-ghost {
  display: inline-block; padding: 1rem 2.4rem;
  border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.85);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 0.3s; border-radius: 2px;
}
.btn-ghost:hover { border-color: white; color: white; background: rgba(255,255,255,0.07); }
.hero-trust {
  display: flex; gap: 2rem; margin-top: 3.5rem; padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-item { text-align: center; }
.trust-item .num {
  font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 600;
  color: white; line-height: 1;
}
.trust-item .num span { color: var(--gold2); }
.trust-item p { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.5); margin-top: 0.3rem; }

/* FLOATING HERO BADGES */
.hero-float-badge {
  position: absolute; display: flex; align-items: center; gap: 0.8rem;
  background: rgba(13, 58, 39, 0.85); border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px); padding: 0.75rem 1.2rem; border-radius: 40px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3); z-index: 3;
  animation: floatPulse 4s ease-in-out infinite alternate;
}
.hero-float-badge.b1 { top: 12%; right: 4%; }
.hero-float-badge.b2 { bottom: 18%; left: -3%; animation-delay: 2s; }
.badge-icon {
  width: 32px; height: 32px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--ink);
}
.badge-text strong { display: block; font-size: 0.75rem; color: white; font-weight: 600; }
.badge-text span { font-size: 0.62rem; color: var(--gold2); text-transform: uppercase; letter-spacing: 0.1em; }

@keyframes floatPulse {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* HERO ACTION CARD (REPLACEMENT FOR SIMULATOR) */
.hero-action-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  padding: 2.5rem; position: relative;
  border-radius: 6px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}
.hero-action-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-top-left-radius: 6px; border-top-right-radius: 6px;
}
.card-badge {
  display: inline-block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; background: rgba(196,162,74,0.22); color: var(--gold2);
  padding: 0.3rem 0.8rem; border-radius: 20px; margin-bottom: 1.2rem;
  border: 1px solid rgba(196,162,74,0.3);
}
.card-title {
  font-family: 'Fraunces', serif; font-size: 1.7rem; color: white; font-style: italic;
  margin-bottom: 0.5rem; line-height: 1.25;
}
.card-sub {
  font-size: 0.88rem; color: rgba(255,255,255,0.7); font-weight: 300;
  line-height: 1.6; margin-bottom: 1.8rem;
}
.card-highlights { display: grid; gap: 1.2rem; margin-bottom: 2rem; }
.highlight-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.chk-icon {
  width: 24px; height: 24px; border-radius: 50%; background: var(--gold);
  color: var(--ink); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.78rem; flex-shrink: 0; margin-top: 2px;
}
.highlight-item strong { display: block; font-size: 0.9rem; color: white; margin-bottom: 0.15rem; font-weight: 600; }
.highlight-item p { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.5; }
.card-cta-box { display: grid; gap: 0.7rem; text-align: center; }
.btn-full { width: 100%; text-align: center; border-radius: 4px; padding: 1.1rem; }
.card-guarantee { font-size: 0.72rem; color: rgba(255,255,255,0.45); font-style: italic; }

/* HERO BOTTOM BAR */
.hero-bar {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.2);
}
.hero-bar-inner {
  max-width: 1280px; margin: 0 auto; padding: 1.2rem 2rem;
  display: flex; gap: 3rem; align-items: center; flex-wrap: wrap; justify-content: space-between;
}
.hbar-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.hbar-item::before { content: '✓'; color: var(--gold); font-size: 0.8rem; }

/* ── SECTIONS ── */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--forest2); display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 1.2rem;
}
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: currentColor; }
.section-label.no-line::before { display: none !important; }
.section-title { font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--forest); margin-bottom: 1rem; font-weight: 600; }
.section-title em, h1 em, h2 em, h3 em, h4 em, h5 em, .card-title em {
  color: inherit !important;
  font-style: normal !important;
  font-family: inherit !important;
  font-weight: inherit !important;
}
.section-sub { font-size: 1rem; color: var(--gray); font-weight: 300; line-height: 1.8; max-width: 540px; }

/* VECTOR SVG ICON WRAPPERS */
.svg-icon-box {
  width: 54px; height: 54px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(13,58,39,0.08) 0%, rgba(14,92,110,0.12) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem; color: var(--forest); border: 1px solid rgba(13,58,39,0.15);
  transition: all 0.3s;
}
.svc-card:hover .svg-icon-box {
  background: var(--forest); color: var(--gold2); border-color: var(--forest);
  transform: scale(1.05);
}
.svg-icon-box svg { width: 26px; height: 26px; stroke-width: 1.7; }

/* SERVICES */
.services-section { background: var(--cream); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.svc-card {
  background: var(--cream); padding: 2.8rem 2.5rem;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s; cursor: default; position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--forest), var(--teal));
  transition: width 0.45s cubic-bezier(0.22,1,0.36,1);
}
.svc-card:hover { background: white; transform: translateY(-3px); box-shadow: 0 15px 35px rgba(13,58,39,0.08); z-index: 1; }
.svc-card:hover::after { width: 100%; }
.svc-num {
  font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 600;
  color: var(--border); line-height: 1; margin-bottom: 1.2rem; transition: color 0.3s;
}
.svc-card:hover .svc-num { color: var(--teal); }
.svc-card h3 { font-size: 1.35rem; color: var(--forest); margin-bottom: 0.8rem; }
.svc-card p { font-size: 0.88rem; color: var(--gray); font-weight: 300; line-height: 1.8; margin-bottom: 1.5rem; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.svc-tag {
  font-size: 0.62rem; padding: 0.25rem 0.6rem;
  border: 1px solid var(--border); color: var(--gray); background: white; border-radius: 2px;
}

/* ANAF TAX CALENDAR WIDGET */
.tax-cal-section { background: var(--mist); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tax-cal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.tax-cal-card {
  background: white; border: 1px solid var(--border); padding: 2rem; border-radius: 4px;
  position: relative; transition: all 0.3s;
}
.tax-cal-card:hover { transform: translateY(-3px); border-color: var(--teal); box-shadow: 0 12px 30px rgba(14,92,110,0.1); }
.tax-date-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Fraunces', serif; font-size: 1.8rem; font-weight: 700; color: var(--forest);
  margin-bottom: 0.8rem;
}
.tax-date-badge span { font-family: 'Outfit', sans-serif; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--teal); background: rgba(14,92,110,0.1); padding: 0.2rem 0.6rem; border-radius: 2px; }
.tax-cal-card h4 { font-size: 1.1rem; color: var(--forest); margin-bottom: 0.5rem; }
.tax-cal-card p { font-size: 0.85rem; color: var(--gray); font-weight: 300; line-height: 1.7; }

/* DIGITAL PORTAL SHOWCASE BANNER */
.portal-banner {
  background: linear-gradient(135deg, var(--forest) 0%, #061c13 100%);
  color: white; padding: 5rem 2rem; position: relative; overflow: hidden;
}
.portal-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.portal-flow { display: grid; gap: 1.2rem; }
.portal-flow-item {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  padding: 1.2rem 1.6rem; border-radius: 4px; display: flex; align-items: center; gap: 1.2rem;
  backdrop-filter: blur(8px);
}
.portal-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.portal-flow-item div strong { display: block; font-size: 0.95rem; color: white; margin-bottom: 0.2rem; }
.portal-flow-item div p { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 300; }

/* INTERACTIVE QUIZ WIZARD */
.quiz-section { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.quiz-box {
  background: var(--cream); border: 1px solid var(--border); padding: 3rem;
  border-radius: 4px; position: relative; margin-top: 2.5rem;
}
.quiz-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--gold));
}
.quiz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2rem; }
.quiz-q-title { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--forest); margin-bottom: 1rem; }
.quiz-opts { display: grid; gap: 0.6rem; }
.quiz-opt {
  padding: 0.8rem 1rem; background: white; border: 1px solid var(--border);
  font-size: 0.82rem; color: var(--ink); text-align: left; cursor: pointer;
  transition: all 0.2s; border-radius: 2px; font-family: 'Outfit', sans-serif;
}
.quiz-opt:hover { border-color: var(--teal); background: rgba(14,92,110,0.04); }
.quiz-opt.active { background: var(--forest); color: white; border-color: var(--forest); font-weight: 600; }
.quiz-result {
  background: white; border: 1px solid var(--border); padding: 1.8rem; border-radius: 3px;
  border-left: 4px solid var(--gold);
}
.quiz-res-title { font-size: 1.1rem; color: var(--forest); margin-bottom: 0.4rem; }
.quiz-res-desc { font-size: 0.88rem; color: var(--gray); font-weight: 300; line-height: 1.7; }

/* WHY US */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.why-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.why-card {
  background: var(--cream); padding: 2rem;
  border-left: 2px solid transparent; transition: border-color 0.3s, transform 0.3s;
  border-radius: 2px;
}
.why-card:hover { border-color: var(--teal); transform: translateY(-3px); }
.why-card .icon { font-size: 1.8rem; margin-bottom: 1rem; }
.why-card h4 { font-size: 1.1rem; color: var(--forest); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.82rem; color: var(--gray); font-weight: 300; line-height: 1.7; }
.why-quote {
  background: var(--forest); color: white; padding: 2.5rem;
  margin-top: 2rem; position: relative; border-radius: 3px;
}
.why-quote::before {
  content: '"'; font-family: 'Fraunces', serif; font-size: 6rem;
  color: rgba(255,255,255,0.08); position: absolute; top: -1rem; left: 1.5rem;
  line-height: 1;
}
.why-quote p { font-family: 'Fraunces', serif; font-size: 1.15rem; font-style: italic; line-height: 1.7; color: rgba(255,255,255,0.9); }
.why-quote cite { display: block; margin-top: 1.2rem; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold2); font-style: normal; }

/* TESTIMONIALS */
.testimonials-section { background: var(--ink); }
.testimonials-section .section-title { color: white; }
.testimonials-section .section-label { color: var(--gold2); }
.testimonials-section .section-label::before { background: var(--gold); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.testi-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem; transition: background 0.3s, transform 0.3s; border-radius: 3px;
}
.testi-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.testi-stars { color: var(--gold2); font-size: 0.85rem; margin-bottom: 1.2rem; letter-spacing: 0.1em; }
.testi-card blockquote {
  font-family: 'Fraunces', serif; font-size: 1.05rem; font-style: italic;
  color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 1.8rem;
}
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--forest2), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 1.1rem; color: white; font-style: italic;
}
.testi-info strong { display: block; font-size: 0.85rem; color: white; font-weight: 500; }
.testi-info span { font-size: 0.72rem; color: rgba(255,255,255,0.4); }

/* PROCESS */
.process-section { background: var(--mist); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3.5rem; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 2rem; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, var(--forest), var(--teal));
}
.proc-step { padding: 0 2rem 0 0; text-align: left; }
.proc-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--forest); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 1.1rem; font-style: italic;
  margin-bottom: 1.5rem; position: relative; z-index: 1;
  box-shadow: 0 0 0 4px var(--mist), 0 0 0 5px var(--border);
}
.proc-step h4 { font-size: 1.1rem; color: var(--forest); margin-bottom: 0.6rem; }
.proc-step p { font-size: 0.82rem; color: var(--gray); font-weight: 300; line-height: 1.7; }

/* LOCATION SWITCHER TABS */
.loc-switcher { margin-top: 3rem; background: var(--cream); border: 1px solid var(--border); padding: 2.5rem; border-radius: 4px; }
.loc-tabs { display: flex; gap: 1rem; margin-bottom: 2rem; border-bottom: 1px solid var(--border); padding-bottom: 1rem; }
.loc-tab-btn {
  padding: 0.6rem 1.4rem; background: transparent; border: 1px solid var(--border); cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gray); transition: all 0.2s; border-radius: 2px;
}
.loc-card-panel { display: none; }
.loc-card-panel.active { display: block; }
.loc-details h3 { font-size: 1.6rem; color: var(--forest); margin-bottom: 0.5rem; }
.loc-details p { font-size: 0.9rem; color: var(--gray); font-weight: 300; line-height: 1.8; margin-bottom: 1.2rem; }
.loc-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.btn-map {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.2rem;
  background: white; border: 1px solid var(--border); font-size: 0.72rem; font-weight: 600;
  color: var(--ink); transition: all 0.2s; border-radius: 2px;
}
.btn-map:hover { border-color: var(--teal); color: var(--teal); }

/* FAQ */
.faq-wrap { max-width: 760px; margin: 3.5rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; cursor: pointer; gap: 1rem;
}
.faq-q h4 { font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 500; color: var(--ink); }
.faq-q .arrow { font-size: 1.2rem; color: var(--forest2); transition: transform 0.3s; flex-shrink: 0; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.faq-a p { font-size: 0.88rem; color: var(--gray); font-weight: 300; line-height: 1.8; padding-bottom: 1.5rem; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-item.open .arrow { transform: rotate(45deg); }

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--forest) 0%, var(--teal) 100%);
  padding: 6rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: white; margin-bottom: 1rem; }
.cta-band p { font-size: 1rem; color: rgba(255,255,255,0.7); font-weight: 300; margin-bottom: 2.5rem; }

/* FOOTER LOGO INTEGRATION */
.footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 5rem 2rem 2.5rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1.3fr 1.1fr 1.2fr; gap: 2rem;
  padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2.5rem;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; opacity: 0.65; max-width: 290px; }
.footer-col h5 {
  font-family: 'Outfit', sans-serif; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold2);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; display: grid; gap: 0.7rem; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul a:hover { color: white; }
.footer-col address { font-style: normal; font-size: 0.85rem; line-height: 1.9; opacity: 0.55; }
.footer-col .contact-links { display: grid; gap: 0.7rem; }
.footer-col .contact-links a {
  font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s;
}
.footer-col .contact-links a:hover { color: white; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; opacity: 0.35; flex-wrap: wrap; gap: 0.5rem;
}

/* SCROLL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: none; }

/* UTILITIES */
.btn-primary {
  display: inline-block; padding: 1rem 2.4rem;
  background: var(--forest); color: white;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 0.3s; border-radius: 2px;
}
.btn-primary:hover { background: var(--forest2); transform: translateY(-2px); }
.btn-outline {
  display: inline-block; padding: 1rem 2.4rem;
  border: 1.5px solid var(--border); color: var(--forest);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 0.3s; border-radius: 2px;
}
.btn-outline:hover { border-color: var(--forest); background: var(--cream); }

/* SIMPLE EXTRA SERVICES (VERDE LOGO & DESIGN CURAT) */
.extra-simple-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2rem;
}
.extra-simple-card {
  background: var(--cream); border: 1px solid var(--border); padding: 1.8rem 1.4rem;
  border-radius: 4px; transition: all 0.25s ease;
}
.extra-simple-card:hover {
  border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}
.extra-simple-title {
  font-family: 'Fraunces', serif; font-size: 1.08rem; color: var(--forest);
  margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.extra-simple-list {
  list-style: none; display: grid; gap: 0.6rem;
}
.extra-simple-list li {
  font-size: 0.84rem; color: var(--gray); font-weight: 300; line-height: 1.45;
  position: relative; padding-left: 1rem;
}
.extra-simple-list li::before {
  content: '•'; color: var(--forest); font-weight: 700; position: absolute; left: 0;
}

/* INACTIVE SIMPLE BAR */
.inactive-simple-bar {
  background: white; border: 1.5px solid var(--gold); padding: 1.4rem 2rem;
  border-radius: 4px; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; margin-top: 1.5rem; box-shadow: 0 4px 15px rgba(196,162,74,0.12);
}
.inactive-simple-tag {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--forest); color: white; padding: 0.25rem 0.6rem; border-radius: 2px;
  margin-right: 0.8rem; display: inline-block;
}
.inactive-simple-left strong {
  font-family: 'Fraunces', serif; font-size: 1.2rem; color: var(--forest); margin-right: 0.8rem;
}
.inactive-simple-left span {
  font-size: 0.84rem; color: var(--gray); font-weight: 300;
}
.inactive-simple-right .price-green {
  font-family: 'Fraunces', serif; font-size: 1.45rem; color: var(--forest); font-weight: 700;
  white-space: nowrap;
}

/* ── RESPONSIVE MEDIA QUERIES (DESKTOP, TABLET & MOBILE) ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; padding-top: 8rem; gap: 3rem; }
  .sim-card { max-width: 540px; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
  .quiz-grid { grid-template-columns: 1fr; }
  .loc-card-panel { grid-template-columns: 1fr; }
  .tax-cal-grid { grid-template-columns: 1fr; }
  .portal-inner { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .extra-simple-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-big { grid-template-columns: 1fr; }
  .svc-big-left { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem; }
  .svc-big-body { padding: 2rem; }
}

@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
  .nav-inner { padding: 0 1rem; height: 72px; }
  .nav-logo { padding: 0.3rem 0.8rem 0.3rem 0.4rem; max-width: 80%; }
  .nav-logo img { height: 42px; width: 42px; flex-shrink: 0; }
  .nav-logo-text strong { font-size: 0.9rem; }
  .nav-logo-text span { font-size: 0.48rem; letter-spacing: 0.08em; }
}

@media (max-width: 768px) {
  .hero-float-badge { display: none !important; }
  .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.12em; line-height: 1.5; text-align: center; justify-content: center; }
  #typewriter-el { font-size: 2.2rem !important; min-height: 4.5rem !important; text-align: center; }
  .hero-desc { text-align: center; font-size: 0.92rem; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; flex-wrap: wrap; gap: 1.2rem; }
  .hero-action-card { padding: 1.6rem 1.2rem; }
  .hero-action-card .card-title { font-size: 1.35rem; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-checks { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .loc-switcher { padding: 1.2rem; }
  .loc-tabs { flex-direction: column; }
  .loc-tab-btn { width: 100%; text-align: center; }
  .story { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 480px) {
  .nav-logo-text span { display: block; font-size: 0.44rem; }
  .nav-logo-text strong { font-size: 0.85rem; }
  .nav-inner { padding: 0 0.6rem; }
/* ── CONTACT PAGE STYLES ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start;
}
.info-block {
  margin-bottom: 2.2rem; padding-bottom: 2.2rem; border-bottom: 1px solid var(--border);
}
.info-block:last-child { border: none; margin-bottom: 0; padding-bottom: 0; }
.info-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.7rem;
}
.info-block h3 { font-size: 1.4rem; color: var(--forest); margin-bottom: 0.5rem; }
.info-block p { font-size: 0.9rem; color: var(--gray); font-weight: 300; line-height: 1.8; }
.direct-btn {
  display: inline-flex; align-items: center; gap: 0.8rem; padding: 0.85rem 1.2rem;
  background: var(--cream); border: 1px solid var(--border); font-size: 0.88rem;
  color: var(--ink); transition: all 0.2s; margin-bottom: 0.7rem; text-decoration: none; border-radius: 2px;
}
.direct-btn:hover { background: white; border-color: var(--teal); color: var(--teal); }

/* FORM CARD */
.form-card {
  background: var(--cream); border: 1px solid var(--border); padding: 3rem 2.5rem;
  position: relative; border-radius: 6px; box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--teal));
  border-top-left-radius: 6px; border-top-right-radius: 6px;
}
.form-card h2 { font-size: 1.8rem; color: var(--forest); margin-bottom: 0.4rem; font-family: 'Fraunces', serif; }
.form-card .sub { font-size: 0.88rem; color: var(--gray); margin-bottom: 2rem; font-weight: 300; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.fg { margin-bottom: 1.3rem; }
.fg label {
  display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 0.5rem;
}
.fg input, .fg textarea, .fg select {
  width: 100%; background: white; border: 1px solid var(--border); padding: 0.85rem 1rem;
  font-size: 0.92rem; font-family: 'Outfit', sans-serif; color: var(--ink); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; border-radius: 3px; -webkit-appearance: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,92,110,0.1);
}
.fg textarea { resize: vertical; min-height: 120px; }

/* CHECKBOXES ON MOBILE */
.svc-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 0.4rem; margin-bottom: 0.4rem; }
.chk {
  display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--ink);
  cursor: pointer; user-select: none; background: white; padding: 0.6rem 0.8rem;
  border: 1px solid var(--border); border-radius: 3px; transition: border-color 0.2s;
}
.chk:hover { border-color: var(--teal); }
.chk input { accent-color: var(--forest); width: 16px; height: 16px; flex-shrink: 0; }

.btn-submit {
  width: 100%; padding: 1.1rem; background: var(--forest); color: white;
  border: none; font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: all 0.3s;
  border-radius: 3px; box-shadow: 0 4px 15px rgba(13,58,39,0.2);
}
.btn-submit:hover { background: var(--forest2); transform: translateY(-1px); }
.form-note { font-size: 0.75rem; color: var(--gray); margin-top: 1.2rem; text-align: center; font-weight: 300; }
.success {
  display: none; background: #f0fdf4; border: 1px solid #86efac; padding: 1.2rem;
  text-align: center; color: #166534; font-size: 0.9rem; margin-top: 1.2rem; border-radius: 4px;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-card { padding: 1.8rem 1.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .svc-checks { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nav-logo-text span { display: block; font-size: 0.44rem; }
  .nav-logo-text strong { font-size: 0.85rem; }
  .nav-inner { padding: 0 0.6rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .extra-simple-grid { grid-template-columns: 1fr; }
  .inactive-simple-bar { flex-direction: column; text-align: center; align-items: center; }
  .inactive-simple-left { text-align: center; margin-bottom: 0.5rem; }
  .hero-trust .trust-item { min-width: 45%; }
  .page-hero { padding: 8rem 1rem 3rem; }
  .page-hero-inner h1 { font-size: 1.9rem; }
  .form-card { padding: 1.6rem 1rem; }
}
