/* ============================================
   UpStatuts — Main Stylesheet
   Palette: Emerald Green + Deep Navy
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── RESET & ROOT ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --green:       #10B981;
  --green-light: #34D399;
  --green-dark:  #059669;
  --navy:        #0A1F1A;
  --navy-mid:    #0F2D24;
  --navy-light:  #163D30;
  --cream:       #F0FDF8;
  --cream-dark:  #D1FAE5;
  --text:        #0A1F1A;
  --text-muted:  #3D6B5A;
  --white:       #FFFFFF;
  --border:      rgba(16,185,129,0.2);
  --shadow:      0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.12);
  --radius:      12px;
  --radius-sm:   8px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Outfit', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem; border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.2s; text-decoration: none;
}
.btn-primary {
  background: var(--green); color: var(--navy);
  box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(16,185,129,0.35); color: var(--navy); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-white {
  background: var(--white); color: var(--navy); font-weight: 700;
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); color: var(--navy); }

/* ── SECTION TAGS ── */
.section-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-dark);
  border-bottom: 2px solid var(--green); padding-bottom: 3px; margin-bottom: 0.75rem;
}
.section-tag.light { color: var(--green-light); }

/* ── NAVBAR ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,31,26,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16,185,129,0.3); height: 65px;
}
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  height: 65px;
}
.nav-logo {
  font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800;
  color: var(--green); text-decoration: none; letter-spacing: -0.02em;
}
.nav-logo span { color: rgba(255,255,255,0.5); font-weight: 300; }
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-menu a {
  color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 500;
  padding: 0.4rem 0.8rem; border-radius: 6px; transition: all 0.15s;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.nav-menu a:hover { color: var(--green-light); background: rgba(255,255,255,0.05); }
.nav-cta {
  background: var(--green) !important; color: var(--navy) !important;
  padding: 0.5rem 1.1rem !important; border-radius: 8px !important;
  font-weight: 700 !important; margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--green-light) !important; }
.nav-lang { display: flex; gap: 0.35rem; margin-left: 0.75rem; }
.nav-lang a {
  font-size: 0.75rem; font-weight: 700; padding: 0.3rem 0.6rem;
  border-radius: 100px; border: 1px solid rgba(16,185,129,0.25);
  color: rgba(255,255,255,0.4);
}
.nav-lang a:hover, .nav-lang a.active { border-color: var(--green); color: var(--green); background: rgba(16,185,129,0.1); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: all 0.2s; }

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--navy); padding: 8rem 0 5rem;
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(var(--green) 1px,transparent 1px), linear-gradient(90deg,var(--green) 1px,transparent 1px);
  background-size: 60px 60px;
}
.hero::after {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
}
.hero-content { max-width: 780px; text-align: center; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.35);
  color: var(--green-light); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 1.75rem;
}
.hero-badge::before { content: '●'; font-size: 0.45rem; color: var(--green); }
.hero h1 {
  font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 800; color: var(--white);
  letter-spacing: -0.03em; margin-bottom: 1.25rem; line-height: 1.15;
}
.hero h1 em { color: var(--green); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,0.55); font-size: 1.05rem; line-height: 1.8;
  max-width: 580px; margin: 0 auto 2rem; font-weight: 300;
}
.hero-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.trust-row { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.trust-item svg { color: var(--green); }
.hero-stats {
  display: flex; justify-content: center; gap: 3rem; margin-top: 3.5rem;
  padding-top: 3rem; border-top: 1px solid rgba(16,185,129,0.2); flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num { font-family: 'Outfit',sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--green); }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* ── SECTIONS ── */
.section { padding: 5rem 0; }
.section-dark { background: var(--navy); }
.section-dark .section-tag { color: var(--green-light); }
.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.55); }
.section-cream { background: var(--cream); }
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-p { margin: 0 auto; }
.section-h { font-size: clamp(1.8rem,3.5vw,2.5rem); font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.section-p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; max-width: 540px; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 1.25rem; }
.service-card {
  background: var(--white); border: 1.5px solid rgba(16,185,129,0.15);
  border-radius: var(--radius); padding: 1.75rem;
  transition: all 0.25s; display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.service-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(16,185,129,0.12); }
.service-icon { width: 48px; height: 48px; background: rgba(16,185,129,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem; }
.service-card h3 { font-family: 'Outfit',sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.35; }
.service-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.service-delay {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.75rem; font-weight: 600; color: var(--green-dark);
  background: rgba(16,185,129,0.08); padding: 0.3rem 0.75rem; border-radius: 100px;
}

/* ── SERVICE SINGLE ── */
.service-single { padding: 5rem 0; background: var(--cream); }
.service-hero { background: var(--navy); padding: 7rem 0 4rem; }
.service-hero h1 { color: var(--white); font-size: 2.5rem; font-weight: 800; margin-bottom: 0.75rem; }
.service-body { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.service-panel { border-radius: var(--radius); padding: 2rem; }
.service-panel.dark { background: var(--navy); border: 1px solid rgba(16,185,129,0.2); }
.service-panel.light { background: var(--white); border: 1.5px solid rgba(16,185,129,0.15); }
.service-panel h3 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(16,185,129,0.2); }
.service-panel.dark h3 { color: var(--green); }
.service-panel.light h3 { color: var(--green-dark); }
.steps-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.step-item { display: flex; gap: 0.85rem; align-items: flex-start; color: rgba(255,255,255,0.75); font-size: 0.87rem; line-height: 1.65; }
.step-num { flex-shrink: 0; width: 24px; height: 24px; background: rgba(16,185,129,0.2); border: 1px solid rgba(16,185,129,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 700; color: var(--green); margin-top: 2px; }
.docs-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.doc-item { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.87rem; color: var(--text-muted); line-height: 1.55; }
.doc-item::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.service-cta-bar { background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%); border-radius: var(--radius); padding: 2rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.delay-info .label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; color: rgba(10,31,26,0.5); letter-spacing: 0.07em; }
.delay-info .value { font-family: 'Outfit',sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--white); }

/* ── PROCESS ── */
.process-steps { display: flex; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: rgba(16,185,129,0.2); }
.process-step { flex: 1; text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.step-circle { width: 56px; height: 56px; border-radius: 50%; background: var(--navy-mid); border: 2px solid var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-family: 'Outfit',sans-serif; font-weight: 800; font-size: 1rem; color: var(--green); }
.process-step h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.35rem; }
.process-step p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* ── ABOUT / WHY ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 1.5rem; }
.why-feat { display: flex; gap: 1rem; align-items: flex-start; }
.why-feat-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(16,185,129,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.why-feat h4 { font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.25rem; }
.why-feat p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.why-visual { background: var(--navy); border-radius: 20px; padding: 2.5rem; border: 1px solid rgba(16,185,129,0.2); position: relative; }
.why-visual::before { content: ''; position: absolute; top: 0; left: 2.5rem; right: 2.5rem; height: 2px; background: linear-gradient(90deg, var(--green), var(--green-light)); border-radius: 100px; }
.cert-title { font-family: 'Outfit',sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--white); margin-bottom: 1.5rem; line-height: 1.3; }
.cert-items { display: flex; flex-direction: column; gap: 0.85rem; }
.cert-item { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.cert-item::before { content: '✓'; width: 22px; height: 22px; background: rgba(16,185,129,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; color: var(--green); flex-shrink: 0; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.testi-card { background: var(--navy-mid); border: 1px solid rgba(16,185,129,0.15); border-radius: var(--radius); padding: 1.75rem; }
.testi-stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testi-text { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(16,185,129,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 700; color: var(--green); flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 0.85rem; color: var(--white); }
.testi-role { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1.5px solid rgba(16,185,129,0.15); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item.open { border-color: var(--green); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 1.5rem; cursor: pointer; }
.faq-q-text { font-weight: 600; font-size: 0.95rem; color: var(--navy); }
.faq-toggle { color: var(--green); font-size: 1.3rem; font-weight: 300; transition: transform 0.2s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.5rem; }
.blog-card { background: var(--white); border: 1.5px solid rgba(16,185,129,0.12); border-radius: var(--radius); overflow: hidden; transition: all 0.2s; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.blog-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-thumb { height: 180px; background: linear-gradient(135deg, var(--cream), var(--cream-dark)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.blog-cat { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; color: var(--green-dark); background: rgba(16,185,129,0.08); padding: 0.25rem 0.65rem; border-radius: 100px; }
.blog-time { font-size: 0.75rem; color: var(--text-muted); }
.blog-card h3 { font-family: 'Outfit',sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.4; flex: 1; }
.blog-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.blog-link { color: var(--green); font-size: 0.82rem; font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: var(--white); border: 1.5px solid rgba(16,185,129,0.15); border-radius: var(--radius-sm); transition: border-color 0.15s; }
.ci-item:hover { border-color: var(--green); }
.ci-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(16,185,129,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.ci-label { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.ci-value { font-size: 0.95rem; color: var(--navy); font-weight: 500; margin-top: 0.15rem; }
.contact-form-card { background: var(--navy); border-radius: var(--radius); padding: 2rem; border: 1px solid rgba(16,185,129,0.2); }
.form-title { font-family: 'Outfit',sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--white); margin-bottom: 0.25rem; }
.form-sub { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-sm); color: white; font-family: 'Inter',sans-serif;
  font-size: 0.9rem; padding: 0.7rem 1rem; outline: none; transition: border-color 0.15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(16,185,129,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group select option { background: var(--navy-mid); }
.form-group textarea { resize: vertical; min-height: 90px; }
.captcha-box { background: rgba(16,185,129,0.05); border: 1px solid rgba(16,185,129,0.2); border-radius: var(--radius-sm); padding: 0.85rem 1rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.captcha-q { font-size: 0.85rem; color: rgba(255,255,255,0.65); font-weight: 500; flex: 1; }
.captcha-q strong { color: var(--green); }
.captcha-box input { width: 70px !important; text-align: center; font-weight: 700; padding: 0.5rem !important; }
.captcha-refresh { background: none; border: 1px solid rgba(16,185,129,0.2); border-radius: 6px; color: rgba(16,185,129,0.7); cursor: pointer; padding: 0.4rem 0.65rem; font-size: 0.8rem; transition: all 0.15s; }
.captcha-refresh:hover { border-color: var(--green); color: var(--green); }
.captcha-err { color: #f87171; font-size: 0.8rem; display: none; }
.hp-field { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.submit-btn { width: 100%; background: var(--green); color: var(--navy); border: none; border-radius: var(--radius-sm); padding: 0.9rem; font-family: 'Inter',sans-serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.submit-btn:hover { background: var(--green-light); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.spam-notice { font-size: 0.72rem; color: rgba(255,255,255,0.2); text-align: center; margin-top: 0.5rem; }
.form-success { display: none; text-align: center; padding: 2rem; color: var(--white); }
.form-success .s-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.form-success h3 { font-family: 'Outfit',sans-serif; color: var(--green); font-size: 1.3rem; margin-bottom: 0.4rem; }
.form-success p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, var(--green) 0%, #2ecc8f 100%); padding: 5rem 0; text-align: center; }
.cta-band h2 { font-family: 'Outfit',sans-serif; font-weight: 800; font-size: clamp(1.8rem,4vw,2.6rem); color: var(--white); letter-spacing: -0.02em; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer { background: #060F0C; color: rgba(255,255,255,0.35); padding: 3rem 0 1.5rem; border-top: 1px solid rgba(16,185,129,0.1); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 2fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo { font-family: 'Outfit',sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--green); margin-bottom: 0.75rem; }
.footer-logo span { color: rgba(255,255,255,0.35); font-weight: 300; }
.footer-desc { font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-contact-info { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.82rem; }
.footer-col h4 { font-family: 'Outfit',sans-serif; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { font-size: 0.78rem; }
.footer-bottom strong { color: var(--green); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: color 0.15s; }
.footer-legal a:hover { color: var(--green); }

/* ── PAGE HERO ── */
.page-hero { background: var(--navy); padding: 7rem 0 4rem; }
.page-hero .section-tag { color: var(--green-light); }
.page-hero h1 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 540px; }

/* ── BACK LINK ── */
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--green); font-size: 0.88rem; font-weight: 500; margin-bottom: 1.5rem; transition: gap 0.15s; }
.back-link:hover { gap: 0.25rem; }

/* ── PROSE (blog content) ── */
.prose { max-width: 720px; }
.prose h2 { font-family: 'Outfit',sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin: 2rem 0 0.75rem; }
.prose h3 { font-family: 'Outfit',sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--navy); margin: 1.5rem 0 0.5rem; }
.prose p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { color: var(--text-muted); line-height: 1.8; margin-bottom: 0.25rem; }
.prose strong { color: var(--navy); font-weight: 600; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-body { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; gap: 1.5rem; }
  .process-steps::before { display: none; }
}
@media (max-width: 640px) {
  .nav-menu { display: none; }
  .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 65px; left: 0; right: 0; background: var(--navy); padding: 1rem; border-top: 1px solid rgba(16,185,129,0.2); gap: 0.25rem; box-shadow: var(--shadow-lg); }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 2rem; }
  .cta-btns { flex-direction: column; align-items: center; }
}
