:root {
  --vc-blue: #0076A8;
  --vc-blue-dark: #005a82;
  --vc-blue-light: #0098DA;
  --vc-blue-pale: #E6F4FA;
  --vc-green: #94C005;
  --vc-green-dark: #7ba304;
  --vc-green-pale: #F0F7D6;
  --vc-gray: #727376;
  --vc-gray-light: #A8A9AC;
  --vc-paper: #FFFFFF;
  --vc-cream: #FAFAF7;
  --vc-line: #E8E6E0;
  --vc-ink: #1A2733;
  --display: Georgia, 'Times New Roman', serif;
  --body: Calibri, 'Segoe UI', Arial, sans-serif;
  --mono: 'Courier New', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--vc-paper);
  color: var(--vc-ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--vc-blue); text-decoration: none; }
button {
  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}


.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid transparent;
  transition: height .3s, background .3s, border-color .3s, box-shadow .3s;
}
.nav.scrolled {
  border-bottom-color: var(--vc-line);
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
}
.nav.nav-on-photo:not(.scrolled):not(.menu-open) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.nav.nav-on-photo:not(.scrolled):not(.menu-open) .nav-links a {
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .45);
}
.nav.nav-on-photo:not(.scrolled):not(.menu-open) .nav-links a:hover,
.nav.nav-on-photo:not(.scrolled):not(.menu-open) .nav-links a.active { color: var(--vc-green); }
.nav.nav-on-photo:not(.scrolled):not(.menu-open) .mobile-menu-btn {
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
}
.nav.menu-open {
  background: #fff;
  border-bottom-color: var(--vc-line);
  box-shadow: 0 8px 24px rgba(26, 39, 51, .08);
}
.nav-logo {
  display: flex; align-items: center;
  padding: 10px 0;
  text-decoration: none;
}
.nav-logo-img { height: 38px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; align-items: center; flex-wrap: nowrap; flex-shrink: 0; }
.nav-links a {
  color: var(--vc-ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  transition: color .2s;
}
.nav-links a:hover { color: var(--vc-blue); }
.nav-links a.active { color: var(--vc-blue); }
.nav-login { font-weight: 600; }
.nav-cta {
  background: var(--vc-green);
  color: white !important;
  border: 0;
  padding: 11px 22px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 12px rgba(148, 192, 5, 0.3);
}
.nav-cta:hover {
  background: var(--vc-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(148, 192, 5, 0.4);
}
.mobile-menu-btn {
  display: none;
  background: none; border: none;
  font-size: 28px; color: var(--vc-blue);
  cursor: pointer;
}
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(5, 18, 28, .9);
}
.image-lightbox.open { display: flex; }
.image-lightbox img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}
.image-lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: white;
  color: var(--vc-ink);
  font: 32px/1 Arial, sans-serif;
  cursor: pointer;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all .25s;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: var(--vc-green);
  color: white;
  box-shadow: 0 6px 18px rgba(148, 192, 5, 0.35);
}
.btn-primary:hover {
  background: var(--vc-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(148, 192, 5, 0.45);
}
.btn-blue {
  background: var(--vc-blue);
  color: white;
  box-shadow: 0 6px 18px rgba(0, 118, 168, 0.3);
}
.btn-blue:hover {
  background: var(--vc-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 118, 168, 0.4);
}
.btn-ghost {
  border-color: var(--vc-blue);
  color: var(--vc-blue);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--vc-blue);
  color: white;
}
.btn-white {
  background: white;
  color: var(--vc-blue);
}
.btn-white:hover {
  background: var(--vc-cream);
  transform: translateY(-2px);
}
.btn .arrow { transition: transform .2s; display: inline-block; }
.btn:hover .arrow { transform: translateX(5px); }


.section {
  padding: 110px 40px;
}
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-eyebrow {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--vc-blue);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--vc-green);
}
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--vc-ink);
  line-height: 1.15;
}
h1 { font-size: clamp(40px, 6vw, 80px); }
h2 { font-size: clamp(32px, 4.5vw, 56px); }
h3 { font-size: clamp(24px, 3vw, 36px); }
h4 { font-size: 20px; }
.lead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--vc-gray);
  max-width: 680px;
}
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head h2 { margin-bottom: 18px; }
.section-head .lead { margin: 0 auto; }
em.accent-blue { color: var(--vc-blue); font-style: italic; font-weight: 700; }
em.accent-green { color: var(--vc-green-dark); font-style: italic; font-weight: 700; }
.highlight-bar {
  position: relative;
  display: inline-block;
}
.highlight-bar::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0.05em;
  width: 100%; height: 0.22em;
  background: var(--vc-green);
  z-index: -1;
  opacity: 0.5;
}


.page-hero {
  padding: 160px 40px 90px;
  background: linear-gradient(135deg, var(--vc-blue-pale) 0%, white 50%, #FAFFF0 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(148, 192, 5, 0.15), transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0, 152, 218, 0.18), transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-hero h1 { margin-bottom: 24px; }
.page-hero .lead { font-size: 19px; margin-bottom: 32px; }
.page-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}


.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.img-placeholder.tone-blue {
  background: linear-gradient(135deg, var(--vc-blue) 0%, var(--vc-blue-light) 100%);
}
.img-placeholder.tone-green {
  background: linear-gradient(135deg, var(--vc-green) 0%, #b3dd25 100%);
}
.img-placeholder.tone-mixed {
  background: linear-gradient(135deg, var(--vc-blue) 0%, var(--vc-blue-light) 50%, var(--vc-green) 100%);
}
.img-placeholder.tone-light {
  background: linear-gradient(135deg, var(--vc-blue-pale) 0%, var(--vc-green-pale) 100%);
  color: var(--vc-blue);
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 40%);
}
.img-placeholder .ph-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.6;
  position: relative;
  z-index: 1;
}
.img-placeholder .ph-text {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  text-align: center;
  padding: 0 30px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  font-weight: 600;
}
.img-placeholder .ph-sub {
  font-size: 12px;
  margin-top: 8px;
  opacity: 0.7;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}


.cta-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, #FCE8E7 0%, #F8D9D7 100%);
  color: #351817;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(185, 65, 55, 0.14), transparent 60%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%; left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(185, 65, 55, 0.10), transparent 60%);
  pointer-events: none;
}
.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  color: #351817;
  margin-bottom: 20px;
}
.cta-section h2 em.accent-green {
  color: var(--vc-green);
}
.cta-section p {
  font-size: 19px;
  margin-bottom: 36px;
  color: #5C302D;
  opacity: 1;
}


.footer {
  background: var(--vc-blue);
  color: white;
  padding: 70px 40px 30px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vc-green) 0%, var(--vc-blue-light) 50%, var(--vc-green) 100%);
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 25px;
}
.footer-brand h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.25;
  color: white;
  margin-bottom: 14px;
}
.footer-brand h3 em { color: var(--vc-green); font-style: italic; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  max-width: 320px;
  line-height: 1.6;
}
.footer-col h5 {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vc-green);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--vc-green); }
.footer-legal {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  flex-wrap: wrap;
  gap: 16px;
}


.faq-section {
  padding: 110px 40px;
  background: var(--vc-cream);
}
.faq-inner { max-width: 880px; margin: 0 auto; }
.faq-list { margin-top: 50px; }
.faq-item {
  border-bottom: 1px solid var(--vc-line);
  padding: 26px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--vc-ink);
  gap: 20px;
  transition: color .2s;
}
.faq-q:hover { color: var(--vc-blue); }
.faq-q:focus-visible { outline: 3px solid var(--vc-blue); outline-offset: 4px; }
.faq-q .toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--vc-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s, background .3s;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--body);
}
.faq-item.open .toggle { transform: rotate(45deg); background: var(--vc-blue); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  font-size: 16px;
  color: var(--vc-gray);
  line-height: 1.7;
  padding-right: 50px;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding-top: 18px;
}
.faq-a strong { color: var(--vc-ink); }


form.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vc-gray);
}
.form-field input, .form-field select, .form-field textarea {
  padding: 14px 16px;
  border: 2px solid var(--vc-line);
  background: white;
  font-family: var(--body);
  font-size: 16px;
  color: var(--vc-ink);
  border-radius: 8px;
  transition: border-color .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--vc-blue);
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}


.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


@media (max-width: 960px) {
  .nav { padding: 14px 22px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: white;
    padding: 28px;
    gap: 18px;
    border-bottom: 1px solid var(--vc-line);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }
  .section { padding: 80px 22px; }
  .page-hero { padding: 130px 22px 70px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-image { max-width: 480px; margin: 0 auto; }
  .footer { padding: 60px 22px 30px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-section { padding: 80px 22px; }
}
@media (max-width: 580px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bot { flex-direction: column; align-items: flex-start; }
}
