*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:   #3D8A28;
  --green-lt:#5DBE3A;
  --ink:     #1D1D1F;
  --ink-2:   #6E6E73;
  --ink-3:   #A1A1A6;
  --bg:      #F5F5F7;
  --border:  #D2D2D7;
  --white:   #FFFFFF;
  --dark:    #0D1F3C;
  --gold:    #F0A500;
  --r:       8px;
  --r-lg:    14px;
  --shadow:  0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.09), 0 2px 6px rgba(0,0,0,0.04);
  --ease:    all 0.22s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; font-size: 16px; line-height: 1.65; color: var(--ink); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }

.display { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.028em; }
.h2 { font-size: clamp(1.6rem, 2.6vw, 2.25rem); font-weight: 700; line-height: 1.18; letter-spacing: -0.022em; }
.h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; line-height: 1.25; letter-spacing: -0.018em; }
.lead { font-size: 1.05rem; line-height: 1.75; color: var(--ink-2); }
.label { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 12px; }
.label-lt { color: rgba(255,255,255,0.45); }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 8px; font-size: 0.93rem; font-weight: 600; cursor: pointer; border: 1.5px solid transparent; transition: var(--ease); white-space: nowrap; }
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: #2f6d1e; border-color: #2f6d1e; }
.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: #162d50; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--ink); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.7); }
.btn-lg { padding: 15px 32px; font-size: 1rem; border-radius: 10px; }
.btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.section-head { margin-bottom: 48px; }
.section-head h2 { margin-top: 8px; }
.section-head > p { color: var(--ink-2); margin-top: 10px; max-width: 540px; }
.section-head.centered { text-align: center; }
.section-head.centered p { margin: 10px auto 0; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); transition: box-shadow 0.25s ease; }
.nav.scrolled { box-shadow: 0 1px 16px rgba(0,0,0,0.07); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 148px; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--ink-2); font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-tel { display: flex; align-items: center; gap: 7px; color: var(--ink-2); font-size: 0.87rem; font-weight: 500; transition: color 0.2s; }
.nav-tel:hover { color: var(--ink); }
.nav-tel svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--ease); }

.mobile-menu { display: none; position: fixed; top: 148px; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 99; padding: 24px; flex-direction: column; gap: 4px; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a { display: block; padding: 14px 0; font-size: 1rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--border); }
.mobile-cta { margin-top: 20px; border-bottom: none !important; justify-content: center; }

/* PAGE HEADER (replaces hero for subpages) */
.page-header { background: var(--bg); padding: 64px 0 56px; margin-top: 148px; border-bottom: 1px solid var(--border); }
.page-header-inner { max-width: 700px; }
.breadcrumb-nav { display: flex; align-items: center; gap: 6px; margin-bottom: 20px; font-size: 0.8rem; color: var(--ink-3); }
.breadcrumb-nav a { color: var(--ink-3); transition: color 0.2s; }
.breadcrumb-nav a:hover { color: var(--ink); }
.breadcrumb-nav span { color: var(--border); }

/* CONTENT SECTIONS */
.content-section { padding: 80px 0; }
.content-section.alt { background: var(--bg); }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.content-grid.reverse .content-visual { order: -1; }
.content-visual { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.content-visual img { width: 100%; height: 420px; object-fit: cover; }

/* FEATURE LIST */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; }
.feature-list li::before { content: ''; width: 16px; height: 16px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 4px; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='3 8 6.5 11.5 13 5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 12px; }
.feature-list li strong { display: block; font-size: 0.93rem; font-weight: 600; color: var(--ink); }
.feature-list li span { font-size: 0.84rem; color: var(--ink-2); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 0; cursor: pointer; font-size: 0.96rem; font-weight: 600; color: var(--ink); }
.faq-q svg { width: 18px; height: 18px; stroke: var(--ink-3); fill: none; stroke-width: 2; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 20px; font-size: 0.9rem; color: var(--ink-2); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* CTA BAND */
.cta-band { background: var(--dark); padding: 80px 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.55); margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* STATS */
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; margin-top: 40px; }
.stat-box { background: var(--white); padding: 28px 20px; text-align: center; }
.stat-box .val { font-size: 1.9rem; font-weight: 700; color: var(--ink); line-height: 1; }
.stat-box .val em { color: var(--green); font-style: normal; }
.stat-box .lbl { font-size: 0.75rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 6px; }

/* FOOTER */
footer { background: #111318; color: rgba(255,255,255,0.45); }
.footer-top { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo img { height: 120px; }
.footer-brand p { font-size: 0.84rem; line-height: 1.8; margin-top: 16px; max-width: 240px; }
footer h4 { color: rgba(255,255,255,0.7); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 0.84rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.76rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.76rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* FLOAT CTA */
.float-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-top: 1px solid var(--border); padding: 12px 16px; gap: 10px; }
.float-cta .btn { flex: 1; justify-content: center; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .content-grid { gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-tel { display: none; }
  .hamburger { display: flex; }
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .content-grid.reverse .content-visual { order: 0; }
  .content-visual img { height: 260px; }
  .stats-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .float-cta { display: flex; }
}
