:root {
  --bg: #eaf1f5;
  --soft: #d8e5ec;
  --panel: rgba(255,255,255,0.72);
  --primary: #d0a15c;
  --primary-deep: #a87332;
  --navy: #0d1d2b;
  --navy-2: #173447;
  --ink: #162a37;
  --muted: #53616a;
  --line: rgba(13,29,43,0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(1180px, calc(100% - 30px));
  margin: 0 auto;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: var(--navy);
  border-bottom: 1px solid rgba(210,172,105,0.24);
  animation: slide-down 0.7s ease both;
}
.nav {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-mark {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.brand-name {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}
.menu {
  display: flex;
  gap: 28px;
  align-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.menu a { color: #fff; }
.cta-btn, .secondary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
}
.cta-btn {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  color: #fff;
  box-shadow: 0 14px 28px rgba(142,102,52,0.16);
}
.intro-cappro {
  padding: 56px 0 62px;
  background: var(--bg);
}
.intro-cappro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 46px;
  align-items: center;
}
.intro-cappro-copy h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1;
}
.intro-cappro-copy p,
.intro-cappro-copy li {
  color: #294452;
}
.intro-lead {
  margin-bottom: 16px;
  color: var(--primary-deep) !important;
  font-size: 1.45rem !important;
}
.intro-tagline {
  font-size: 1.2rem !important;
}
.intro-cappro-copy ul {
  margin: 0 0 22px;
  padding-left: 28px;
}
.intro-cappro-copy li {
  margin-bottom: 4px;
  line-height: 1.45;
}
.intro-cappro-image {
  display: flex;
  justify-content: center;
  padding-top: 18px;
}
.intro-cappro-image img {
  width: min(100%, 470px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(16,45,61,0.12);
}
.secondary-btn {
  border: 1px solid rgba(16,45,61,0.24);
  color: var(--navy);
  background: rgba(255,255,255,0.2);
}
.hero {
  padding: 62px 0 82px;
}
.hero-cappro {
  background: linear-gradient(180deg, #0d1d2b 0%, #173447 100%);
  animation: fade-up 0.8s 0.12s ease both;
}
.hero-inner {
  display: flex;
  min-height: 420px;
  align-items: center;
  justify-content: center;
}
.hero-copy {
  max-width: 780px;
  text-align: center;
}
.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--primary);
}
h1, h2, h3, h4 {
  margin: 0 0 18px;
  line-height: 1.1;
}
h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 700;
  color: #fff;
}
h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.1rem, 3vw, 3rem);
  color: var(--navy);
}
p {
  margin: 0 0 18px;
  line-height: 1.7;
  font-size: 1.04rem;
  color: var(--muted);
}
.hero-copy p:not(.eyebrow) {
  color: rgba(255,255,255,0.82);
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.services {
  padding: 90px 0;
  background: #f4f8fa;
}
.pricing-section {
  padding: 30px 0 90px;
  background: linear-gradient(180deg, rgba(216,229,236,0.72), rgba(255,255,255,0.86));
  scroll-margin-top: 110px;
}
.section-head {
  margin-bottom: 28px;
}
.section-head h2 {
  margin-bottom: 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.price-card {
  overflow: hidden;
  background: rgba(255,255,255,0.58);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 32px rgba(15,35,45,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fade-up 0.7s ease both;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(15,35,45,0.12);
}
.price-card.featured {
  transform: translateY(-4px);
  border-color: rgba(175,125,66,0.45);
}
.price-card.featured:hover {
  transform: translateY(-10px);
}
.price-card:nth-child(2) { animation-delay: 0.1s; }
.price-card:nth-child(3) { animation-delay: 0.2s; }
.price-top {
  min-height: 126px;
  padding: 24px 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(210,172,105,0.38), rgba(72,123,163,0.16));
  border-bottom: 1px solid rgba(16,45,61,0.12);
}
.price-top span {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}
.price-top strong {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 800;
}
.price-card ul {
  margin: 0;
  padding: 22px 22px 24px 34px;
  color: var(--muted);
  line-height: 1.8;
}
.price-card li {
  margin-bottom: 8px;
}
.section-title {
  margin: 0 auto 38px;
  text-align: center;
  max-width: 740px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.info-card {
  background: rgba(255,255,255,0.56);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 18px 32px rgba(15,35,45,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fade-up 0.7s ease both;
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(15,35,45,0.12);
}
.num {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(16,45,61,0.08);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 18px;
}
.info-card h3 { font-size: 1.5rem; color: var(--navy); }
.info-card p { color: var(--muted); }
.propos p:not(.eyebrow) {
  color: var(--navy);
}
.section-alt {
  background: linear-gradient(180deg, rgba(216,229,236,0.72), rgba(255,255,255,0.86));
  padding: 90px 0;
}
.split-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}
.panel-box {
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--line);
  padding: 26px 22px;
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(16,45,61,0.06);
  animation: fade-up 0.8s 0.12s ease both;
}
.panel-box h3 { font-size: 2rem; color: var(--navy); }
.panel-box ul, .contact-list { margin: 0; padding-left: 18px; }
.panel-box li, .contact-list li { margin: 0 0 12px; color: var(--ink); }
.contact { padding: 90px 0 70px; }
.contact-box { max-width: 900px; }
.contact h2,
.contact-list li,
.contact-list strong {
  color: var(--navy);
}
.contact p:not(.eyebrow) {
  color: var(--primary-deep);
}
.footer {
  padding: 36px 0 18px;
}
.cappro-footer {
  color: #fff;
  background: var(--navy);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 24px;
  padding-bottom: 22px;
}
.cappro-footer h3,
.cappro-footer h4,
.cappro-footer p,
.cappro-footer a,
.cappro-footer .bottom-line {
  color: #fff;
}
.cappro-footer .footer-grid > div:first-child p {
  color: var(--primary-deep);
}
.cappro-footer h3, .cappro-footer h4 { margin: 0 0 12px; }
.cappro-footer a { display: block; margin: 0 0 10px; }
.bottom-line {
  border-top: 1px solid rgba(255,255,255,0.18);
  text-align: center;
  padding-top: 14px;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slide-down {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
@media (max-width: 980px) {
  .menu { display: none; }
  .cards-grid, .pricing-grid, .split-layout, .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .intro-cappro-grid { grid-template-columns: 1fr; }
  .intro-cappro-image { order: -1; padding-top: 0; }
  .cards-grid, .pricing-grid, .split-layout, .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .cta-btn, .secondary-btn { width: 100%; }
}
