/* ═══════════════════════════════════════════════════════
   Ledgerly Bookkeeping Theme — Main Stylesheet
   ═══════════════════════════════════════════════════════ */

:root {
  --teal-dark:  #1a7a76;
  --teal-mid:   #2a9d97;
  --teal-light: #4fc8c2;
  --teal-pale:  #a8e8e5;
  --teal-ghost: #e8f9f8;
  --ink:        #0f2624;
  --ink-soft:   #2c4a48;
  --ink-muted:  #5a7a78;
  --cream:      #f7fafa;
  --white:      #ffffff;
  --border:     rgba(26,122,118,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--ink); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── WP Custom Logo ── */
.custom-logo-link img { height: 44px; width: auto; }
.footer-logo .custom-logo-link img { height: 40px; filter: brightness(0) invert(1); }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ════════════════════════════════
   NAVBAR
   ════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(26,122,118,0.08); }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: var(--teal-dark); }
.nav-logo-tag  { font-size: 0.68rem; color: var(--ink-muted); font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links li a { color: var(--ink-soft); font-size: 0.9rem; font-weight: 500; position: relative; padding-bottom: 2px; transition: color 0.2s; }
.nav-links li a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--teal-mid); transition: width 0.3s; }
.nav-links li a:hover { color: var(--teal-dark); }
.nav-links li a:hover::after { width: 100%; }

/* ── Nav two-button group ── */
.nav-buttons { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.nav-call-btn {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--teal-dark);
  padding: 9px 18px; border-radius: 8px;
  font-weight: 600; font-size: 0.88rem;
  border: 2px solid var(--teal-dark);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-call-btn:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-1px); }
.nav-cta {
  display: inline-flex; align-items: center;
  background: var(--teal-dark); color: var(--white) !important;
  padding: 10px 20px; border-radius: 8px;
  font-weight: 600 !important; font-size: 0.88rem !important;
  transition: background 0.2s, transform 0.2s !important;
  white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal-mid) !important; transform: translateY(-1px); }

/* ── Mobile call button ── */
.mob-call {
  display: block; font-size: 1rem !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600; color: var(--teal-dark) !important;
  padding: 14px 0 !important; border-bottom: 1px solid var(--border) !important;
  text-align: center;
}

/* ── Floating contact button ── */
.floating-contact-btn {
  position: fixed;
  bottom: 32px; right: 28px;
  z-index: 9000;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal-dark); color: var(--white);
  padding: 14px 22px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(26,122,118,0.35), 0 2px 8px rgba(0,0,0,0.1);
  text-decoration: none;
  transition: background 0.2s, transform 0.25s, box-shadow 0.25s;
  animation: floatIn 0.6s 1s ease both;
}
.floating-contact-btn:hover {
  background: var(--teal-mid);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(26,122,118,0.4);
  color: var(--white);
}
.floating-contact-btn svg { flex-shrink: 0; }

@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
  .floating-contact-btn { bottom: 20px; right: 16px; padding: 12px 18px; font-size: 0.85rem; }
  .nav-buttons { display: none; }
}

/* ── Keep nav-links-cta hidden (replaced by nav-buttons) ── */
.nav-links-cta { display: none; }


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

.mobile-menu { display: none; position: fixed; inset: 0; z-index: 999; background: var(--white); padding: 90px 5% 40px; flex-direction: column; gap: 4px; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu .mob-nav li a { display: block; font-size: 1.2rem; font-family: 'DM Serif Display', serif; color: var(--ink); padding: 14px 0; border-bottom: 1px solid var(--border); }
.mobile-menu .mob-nav { list-style: none; }
.mob-cta { background: var(--teal-dark); color: var(--white) !important; padding: 16px 24px !important; border-radius: 10px; text-align: center; font-family: 'DM Sans', sans-serif !important; font-size: 1rem !important; font-weight: 600; margin-top: 16px; border-bottom: none !important; }
.mob-close { position: absolute; top: 20px; right: 5%; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--ink); }

/* ════════════════════════════════
   HERO
   ════════════════════════════════ */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 5% 80px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(135deg, var(--teal-ghost) 0%, var(--white) 50%, #f0fbfa 100%); }
.hero-bg::before { content: ''; position: absolute; top: -100px; right: -80px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(79,200,194,.12) 0%, transparent 70%); }
.hero-bg::after  { content: ''; position: absolute; bottom: -80px; left: -60px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(26,122,118,.08) 0%, transparent 70%); }
.hero-grid { position: absolute; inset: 0; z-index: 0; opacity: .04; background-image: linear-gradient(var(--teal-dark) 1px,transparent 1px), linear-gradient(90deg,var(--teal-dark) 1px,transparent 1px); background-size: 60px 60px; }
.hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--teal-ghost); border: 1px solid var(--teal-pale); border-radius: 100px; padding: 6px 16px 6px 10px; font-size: .78rem; color: var(--teal-dark); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 20px; animation: fadeUp .6s ease both; }
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-mid); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.85)} }
.hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(2.4rem,5vw,3.8rem); line-height: 1.1; letter-spacing: -.02em; color: var(--ink); margin-bottom: 20px; animation: fadeUp .6s .1s ease both; }
.hero h1 em { font-style: italic; color: var(--teal-dark); }
.hero-sub { font-size: 1.05rem; color: var(--ink-muted); max-width: 460px; line-height: 1.7; margin-bottom: 36px; animation: fadeUp .6s .2s ease both; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .6s .3s ease both; }
.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 36px; animation: fadeUp .6s .4s ease both; }
.trust-faces { display: flex; }
.trust-face { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--white); margin-left: -8px; overflow: hidden; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; color: var(--teal-dark); }
.trust-face:first-child { margin-left: 0; }
.trust-text { font-size: .82rem; color: var(--ink-muted); }
.trust-text strong { color: var(--ink); }
.hero-visual { display: flex; justify-content: flex-end; align-items: center; animation: fadeLeft .8s .2s ease both; }
.hero-card { background: var(--white); border-radius: 20px; box-shadow: 0 20px 60px rgba(26,122,118,.12),0 4px 16px rgba(0,0,0,.04); padding: 32px; width: 100%; max-width: 380px; border: 1px solid var(--border); }
.hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero-card-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--teal-ghost); display: flex; align-items: center; justify-content: center; }
.hero-card-icon svg { width: 24px; height: 24px; color: var(--teal-dark); }
.hero-card-title { font-family: 'DM Serif Display', serif; font-size: 1rem; color: var(--ink); }
.hero-card-sub { font-size: .78rem; color: var(--ink-muted); }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.stat-box { background: var(--cream); border-radius: 12px; padding: 16px; border: 1px solid var(--border); }
.stat-box-num { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--teal-dark); line-height: 1; }
.stat-box-label { font-size: .75rem; color: var(--ink-muted); margin-top: 4px; }
.progress-label { display: flex; justify-content: space-between; font-size: .78rem; color: var(--ink-soft); margin-bottom: 6px; }
.progress-bar { height: 6px; background: var(--teal-ghost); border-radius: 99px; overflow: hidden; margin-bottom: 12px; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--teal-dark), var(--teal-light)); border-radius: 99px; animation: growBar 1.4s .8s ease both; }
@keyframes growBar { from { width: 0 !important; } }
.hero-card-badge { display: inline-flex; align-items: center; gap: 6px; background: #e8f9f0; color: #1a7a4a; font-size: .75rem; font-weight: 600; padding: 6px 12px; border-radius: 99px; margin-top: 4px; }

@keyframes fadeUp   { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeLeft { from{opacity:0;transform:translateX(32px)} to{opacity:1;transform:translateX(0)} }

/* ════════════════════════════════
   SECTION BASE
   ════════════════════════════════ */
section { padding: 96px 5%; }
.section-label { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-mid); display: block; margin-bottom: 12px; }
.section-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.9rem,3.5vw,2.8rem); line-height: 1.15; letter-spacing: -.02em; color: var(--ink); margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--teal-dark); }
.section-desc { font-size: 1rem; color: var(--ink-muted); max-width: 560px; line-height: 1.7; }

/* ════════════════════════════════
   BUTTONS
   ════════════════════════════════ */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--teal-dark); color: var(--white); padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: .95rem; border: none; cursor: pointer; transition: background .2s,transform .2s,box-shadow .2s; box-shadow: 0 4px 16px rgba(26,122,118,.25); }
.btn-primary:hover { background: var(--teal-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,122,118,.3); color: var(--white); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--teal-dark); padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: .95rem; border: 2px solid var(--teal-dark); transition: background .2s,color .2s,transform .2s; }
.btn-secondary:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-2px); }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--teal-dark); padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: .95rem; transition: transform .2s,box-shadow .2s; box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); color: var(--teal-dark); }
.btn-outline-white { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: .95rem; border: 2px solid rgba(255,255,255,.5); transition: border-color .2s,background .2s; }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); color: var(--white); }

/* ════════════════════════════════
   SERVICES
   ════════════════════════════════ */
#services { background: var(--cream); }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-desc { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 24px; }
.service-card { background: var(--white); border-radius: 16px; padding: 32px 28px; border: 1px solid var(--border); position: relative; overflow: hidden; transition: transform .3s,box-shadow .3s; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--teal-dark),var(--teal-light)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(26,122,118,.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--teal-ghost); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon svg { width: 28px; height: 28px; color: var(--teal-dark); }
.service-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--ink); margin-bottom: 10px; }
.service-card p  { font-size: .9rem; color: var(--ink-muted); line-height: 1.6; }

/* ════════════════════════════════
   ABOUT
   ════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-main { width: 100%; border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.about-float { position: absolute; bottom: -24px; right: -24px; background: var(--white); border-radius: 14px; padding: 18px 22px; box-shadow: 0 8px 32px rgba(0,0,0,.1); border: 1px solid var(--border); }
.about-float-num { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--teal-dark); line-height: 1; }
.about-float-text { font-size: .78rem; color: var(--ink-muted); margin-top: 2px; }
.about-content .section-desc { margin-bottom: 16px; max-width: 100%; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-size: .92rem; color: var(--ink-soft); line-height: 1.5; }
.about-check { width: 22px; height: 22px; border-radius: 50%; background: var(--teal-dark); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; font-size: .7rem; font-weight: 700; }

/* ════════════════════════════════
   WHY
   ════════════════════════════════ */
#why { background: var(--ink); }
#why .section-title { color: var(--white); }
#why .section-label { color: var(--teal-light); }
#why .section-desc { color: rgba(255,255,255,.6); }
.why-header { margin-bottom: 64px; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }
.why-card { background: rgba(255,255,255,.04); border-radius: 16px; padding: 32px 28px; border: 1px solid rgba(255,255,255,.08); transition: background .3s,border-color .3s; }
.why-card:hover { background: rgba(79,200,194,.08); border-color: rgba(79,200,194,.2); }
.why-num { font-family: 'DM Serif Display', serif; font-size: 2.4rem; color: rgba(79,200,194,.25); line-height: 1; margin-bottom: 16px; }
.why-card h3 { font-size: 1.05rem; color: var(--white); font-weight: 600; margin-bottom: 10px; }
.why-card p  { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ════════════════════════════════
   PROCESS
   ════════════════════════════════ */
#process { background: var(--cream); }
.process-header { text-align: center; margin-bottom: 64px; }
.process-header .section-desc { margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg,var(--teal-dark),var(--teal-light)); opacity: .2; }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; }
.step-bubble { width: 80px; height: 80px; border-radius: 50%; background: var(--white); border: 2px solid var(--teal-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; position: relative; z-index: 1; transition: background .3s,border-color .3s; }
.process-step:hover .step-bubble { background: var(--teal-dark); border-color: var(--teal-dark); }
.process-step:hover .step-bubble svg { color: var(--white); }
.step-bubble svg { width: 32px; height: 32px; color: var(--teal-dark); transition: color .3s; }
.process-step h3 { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.process-step p  { font-size: .85rem; color: var(--ink-muted); line-height: 1.6; }

/* ════════════════════════════════
   REVIEWS
   ════════════════════════════════ */
.reviews-header { margin-bottom: 64px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 24px; }
.review-card { background: var(--white); border-radius: 16px; padding: 28px; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 16px; transition: box-shadow .3s,transform .3s; }
.review-card:hover { box-shadow: 0 12px 36px rgba(26,122,118,.1); transform: translateY(-4px); }
.review-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.review-text { font-size: .9rem; color: var(--ink-soft); line-height: 1.65; font-style: italic; flex: 1; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-img { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--teal-ghost); flex-shrink: 0; }
.reviewer-img img { width: 100%; height: 100%; object-fit: cover; }
.reviewer-name { font-weight: 600; font-size: .88rem; color: var(--ink); }
.reviewer-role { font-size: .78rem; color: var(--ink-muted); }

/* ════════════════════════════════
   CTA STRIP
   ════════════════════════════════ */
.cta-strip { background: linear-gradient(135deg,var(--teal-dark) 0%,var(--teal-mid) 100%); padding: 80px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-strip-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-strip h2 { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem,4vw,2.6rem); color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.cta-strip p  { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 36px; line-height: 1.6; }
.cta-strip-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════
   CONTACT
   ════════════════════════════════ */
#contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info-items { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; background: var(--teal-ghost); display: flex; align-items: center; justify-content: center; }
.contact-item-icon svg { width: 20px; height: 20px; color: var(--teal-dark); }
.contact-item-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-muted); margin-bottom: 2px; }
.contact-item-val { font-size: .95rem; color: var(--ink); font-weight: 500; }
.contact-item-val a { color: var(--teal-dark); }
.contact-item-val a:hover { text-decoration: underline; }
.contact-form { background: var(--cream); border-radius: 20px; padding: 40px; border: 1px solid var(--border); }
.contact-form h3 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--ink); margin-bottom: 6px; }
.contact-form-sub { font-size: .88rem; color: var(--ink-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--ink-soft); }
.form-group input,.form-group select,.form-group textarea { padding: 12px 16px; border-radius: 8px; border: 1.5px solid var(--border); background: var(--white); font-family: 'DM Sans',sans-serif; font-size: .92rem; color: var(--ink); transition: border-color .2s,box-shadow .2s; outline: none; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color: var(--teal-mid); box-shadow: 0 0 0 3px rgba(42,157,151,.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 15px; }
.form-success { display: none; text-align: center; padding: 16px; background: #e8f9f0; border-radius: 10px; color: #1a7a4a; font-weight: 600; margin-top: 16px; }
.form-error   { display: none; text-align: center; padding: 16px; background: #fef2f2; border-radius: 10px; color: #dc2626; font-weight: 500; margin-top: 16px; }

/* ════════════════════════════════
   FAQ
   ════════════════════════════════ */
#faq { background: var(--cream); }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header .section-desc { margin: 0 auto; }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: 12px; border: 1px solid var(--border); overflow: hidden; }
.faq-q { width: 100%; padding: 20px 24px; text-align: left; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'DM Sans',sans-serif; font-size: .95rem; font-weight: 600; color: var(--ink); gap: 16px; }
.faq-q:hover { color: var(--teal-dark); }
.faq-arrow { width: 24px; height: 24px; border-radius: 50%; background: var(--teal-ghost); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: transform .3s,background .3s; font-size: .75rem; color: var(--teal-dark); font-weight: 700; }
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--teal-dark); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease,padding .3s; padding: 0 24px; font-size: .9rem; color: var(--ink-muted); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
footer { background: var(--ink); padding: 64px 5% 32px; color: rgba(255,255,255,.6); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-name { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--white); }
.footer-tagline { font-size: .85rem; line-height: 1.6; margin-bottom: 20px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: .9rem; transition: background .2s,color .2s; }
.social-btn:hover { background: var(--teal-dark); color: var(--white); }
.footer-col h4 { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--white); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.5); font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; gap: 12px; flex-wrap: wrap; }
.footer-bottom a { color: var(--teal-light); }
.footer-bottom a:hover { text-decoration: underline; }
.dev-credit { color: rgba(255,255,255,.35); }

/* ════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease,transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  nav { height: 64px; }
  .nav-links, .nav-links-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 72px 5%; }
  .form-row { grid-template-columns: 1fr; }
  .about-float { right: 0; bottom: -20px; }
  .hero-card { max-width: 100%; }
  .contact-form { padding: 28px 20px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; justify-content: center; }
  .cta-strip-actions { flex-direction: column; align-items: center; }
}

/* ── reCAPTCHA widget ── */
.recaptcha-wrap { margin-bottom: 4px; }
.recaptcha-wrap .g-recaptcha { display: inline-block; }
@media (max-width: 400px) {
  .recaptcha-wrap .g-recaptcha { transform: scale(0.9); transform-origin: left top; }
}

/* ═══ TRUST STRIP ══════════════════════════════════════════════ */
#trust-strip {
  background: #f8fffe;
  border-top: 1px solid rgba(26,122,118,.1);
  border-bottom: 1px solid rgba(26,122,118,.1);
  padding: 52px 0 60px;
}
.trust-strip-heading {
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  opacity: .65;
  margin-bottom: 36px;
}

/* Single logos image */
.trust-logos-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 860px;
  margin: 0 auto 52px;
}
.trust-logos-img {
  width: 100%;
  max-width: 780px;
  height: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply; /* makes black background transparent on light bg */
}

/* Testimonial quote */
.trust-quote {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 36px 40px;
  background: var(--white);
  border-radius: 16px;
  border: 1.5px solid rgba(26,122,118,.12);
  box-shadow: 0 4px 20px rgba(26,122,118,.07);
  position: relative;
}
.trust-quote-icon {
  width: 28px;
  height: 21px;
  color: var(--teal-light);
  opacity: .5;
  display: block;
  margin: 0 auto 18px;
}
.trust-quote-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
  margin: 0 0 20px;
}
.trust-quote-attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
}
.trust-quote-name {
  font-weight: 700;
  color: var(--teal-dark);
}
.trust-quote-role {
  color: var(--ink-soft);
}
.trust-quote-role::before {
  content: '·';
  margin-right: 8px;
  opacity: .4;
}

@media (max-width: 768px) {
  .trust-logos-wrap { padding: 16px 20px; border-radius: 12px; }
}
@media (max-width: 640px) {
  .trust-quote { padding: 28px 24px; }
  .trust-quote-text { font-size: 1.05rem; }
}
