/* ===== Design tokens ===== */
:root {
  --navy-950: #060f1f;
  --navy-900: #0b2545;
  --navy-800: #123566;
  --navy-700: #1a4780;
  --water-600: #1b6fa8;
  --water-500: #2b86c5;
  --water-400: #5fa8db;
  --emerald-600: #0e9e6d;
  --emerald-500: #17b57e;
  --earth-600: #b97a3c;
  --earth-500: #c68a4e;
  --paper-0: #ffffff;
  --paper-50: #f6f8fa;
  --paper-100: #eef2f6;
  --ink-900: #101820;
  --ink-700: #2c3742;
  --ink-500: #5b6774;
  --ink-300: #9aa5b1;
  --line: #e2e8ee;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper-0);
  line-height: 1.5;
}
h1, h2, h3, h4, .font-display { font-family: var(--font-display); margin: 0; }
p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--emerald-500); color: #fff; }
:focus-visible { outline: 2px solid var(--emerald-500); outline-offset: 3px; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

.section { padding: 96px 0; }
@media (max-width: 640px) { .section { padding: 64px 0; } }
.section-alt { background: var(--paper-50); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); background: rgba(43,134,197,.06);
  color: var(--water-600); font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; padding: 6px 14px;
  border-radius: 999px; margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--emerald-500); }
.eyebrow.light { border-color: rgba(255,255,255,.2); color: var(--water-400); }

.section-title { font-size: 2rem; font-weight: 800; line-height: 1.1; color: var(--navy-900); letter-spacing: -0.02em; }
@media (min-width: 640px) { .section-title { font-size: 2.5rem; } }
.section-title.light { color: #fff; }
.section-desc { margin-top: 16px; color: var(--ink-500); font-size: 1.0625rem; line-height: 1.6; max-width: 640px; }
.section-desc.light { color: rgba(255,255,255,.7); }
.section-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 24px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; font-weight: 700; font-size: .9375rem;
  padding: 12px 24px; transition: all .2s ease; border: none; cursor: pointer;
}
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-primary { background: var(--emerald-600); color: #fff; box-shadow: 0 10px 25px -8px rgba(14,158,109,.4); }
.btn-primary:hover { background: var(--emerald-500); }
.btn-secondary { background: var(--navy-900); color: #fff; }
.btn-secondary:hover { background: var(--navy-800); }
.btn-outline { border: 1px solid rgba(255,255,255,.4); color: #fff; background: rgba(255,255,255,.06); }
.btn-outline:hover { background: rgba(255,255,255,.14); }
.btn-ghost { color: var(--navy-900); background: transparent; }
.btn-ghost:hover { background: var(--paper-100); }

/* Navbar */
.navbar { position: fixed; inset: 0 0 auto 0; z-index: 50; transition: all .25s ease; }
.navbar.solid { background: rgba(255,255,255,.94); backdrop-filter: blur(8px); box-shadow: 0 1px 0 var(--line); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: 1280px; margin: 0 auto; }
@media (min-width: 1024px) { .navbar-inner { padding: 16px 40px; } }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; background: var(--navy-900); }
.navbar:not(.solid) .brand-mark { background: rgba(255,255,255,.15); }
.brand-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
  background: radial-gradient(circle, #f8fafc 60%, rgba(248,250,252,0) 76%);
  border-radius: 50%;
  padding: 3px;
  box-sizing: content-box;
}
@media (max-width: 480px) {
  .brand-logo-img { width: 38px; height: 38px; }
  .brand-name { font-size: 1.0625rem; }
}
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.3125rem; letter-spacing: -0.01em; line-height: 1.1; color: var(--navy-900); }
.navbar:not(.solid) .brand-name { color: #fff; }
.brand-sub { display: block; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--emerald-500); margin-top: 2px; }
.nav-links { display: none; align-items: center; gap: 32px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a { font-size: .9375rem; font-weight: 500; color: var(--ink-500); position: relative; }
.navbar:not(.solid) .nav-links a { color: rgba(255,255,255,.8); }
.nav-links a.active { color: var(--navy-900); }
.navbar:not(.solid) .nav-links a.active { color: #fff; }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--emerald-500); border-radius: 2px; }
.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: block; } }
.lang-switcher { display: none; }
@media (min-width: 1024px) { .lang-switcher { display: block; margin-left: 4px; } }
.lang-switcher select {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 10px;
  background: #fff;
  cursor: pointer;
}
.lang-switcher-mobile { display: block; margin-top: 12px; }
.lang-switcher-mobile select { width: 100%; padding: 10px 12px; }
.nav-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: none; border: none; color: var(--navy-900); }
.navbar:not(.solid) .nav-toggle { color: #fff; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.mobile-menu { display: none; border-top: 1px solid var(--line); background: #fff; }
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding: 16px 24px; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { padding: 12px; border-radius: 8px; font-size: .9375rem; font-weight: 500; color: var(--ink-700); }
.mobile-menu a.active { background: rgba(23,181,126,.1); color: var(--emerald-600); }

/* Hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background: var(--navy-950); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy-950) 0%, rgba(6,15,31,.78) 42%, rgba(6,15,31,.22) 100%); }
.hero-overlay-2 { position: absolute; inset: 0; background: linear-gradient(0deg, var(--navy-950) 0%, transparent 30%, rgba(6,15,31,.38) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 640px; padding-top: 110px; }
.hero-title { font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1.08; letter-spacing: -0.02em; margin-top: 20px; }
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.6rem; } }
.hero-title .accent { color: var(--water-400); }
.hero-desc { margin-top: 24px; max-width: 560px; color: rgba(255,255,255,.72); font-size: 1.125rem; line-height: 1.6; }
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.5); z-index: 2; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,8px);} }
.depth-rail { position: absolute; inset: 0 auto 0 0; width: 80px; display: none; flex-direction: column; align-items: center; justify-content: center; border-right: 1px solid rgba(255,255,255,.1); z-index: 2; }
@media (min-width: 768px) { .depth-rail { display: flex; } }
.depth-rail-inner { position: relative; height: 60%; display: flex; flex-direction: column; justify-content: space-between; }
.depth-mark { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.35); font-size: 10px; font-family: var(--font-display); }
.depth-mark::before { content: ""; width: 12px; height: 1px; background: rgba(255,255,255,.25); }

/* Trust stats */
.stats-strip { position: relative; margin-top: -64px; z-index: 10; }
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); border-radius: 20px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 25px 50px -20px rgba(11,37,69,.15); gap: 1px; background: var(--line); }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat-cell { background: #fff; padding: 28px; }
.stat-value { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--navy-900); }
.stat-label { margin-top: 6px; font-size: .8125rem; font-weight: 500; color: var(--ink-500); text-transform: uppercase; letter-spacing: .02em; }

/* Trusted-by client logo strip */
.trusted-by-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-500);
  margin-bottom: 24px;
}
.trusted-by-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 56px;
}
.trusted-by-strip img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter .2s ease;
}
.trusted-by-strip a:hover img,
.trusted-by-strip img:hover { filter: grayscale(0) opacity(1); }

/* About */
.about-grid { display: grid; gap: 56px; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-media { position: relative; }
.about-media img { border-radius: 24px; aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.about-badge { position: absolute; bottom: -24px; right: -16px; width: 190px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px; box-shadow: 0 20px 40px -20px rgba(11,37,69,.2); }
@media (min-width: 640px) { .about-badge { right: -32px; width: 220px; } }
.about-badge .big { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--navy-900); }
.about-badge .small { margin-top: 4px; font-size: 12px; color: var(--ink-500); }
.check-list { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-700); }
.check-list svg { color: var(--emerald-500); flex-shrink: 0; margin-top: 2px; }

/* Cards / grids */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 56px; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3,1fr); } }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 56px; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4,1fr); } }

.card { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: all .3s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 25px 50px -20px rgba(11,37,69,.15); }
.card-media { position: relative; height: 176px; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card-media.no-image { display: flex; align-items: center; justify-content: center; background: var(--paper-100); color: var(--ink-300); }
.card:hover .card-media img { transform: scale(1.1); }
.card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,15,31,.65), transparent 55%); }
.card-icon { position: absolute; left: 16px; bottom: 12px; z-index: 2; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.96); display: flex; align-items: center; justify-content: center; color: var(--emerald-600); box-shadow: 0 8px 16px rgba(0,0,0,.15); }
.card-body { padding: 24px; }
.card-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 800; color: var(--navy-900); }
.card-text { margin-top: 8px; font-size: .9375rem; color: var(--ink-500); line-height: 1.55; }
.card-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-size: .875rem; font-weight: 700; color: var(--emerald-600); }

.feature-card { border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); border-radius: 18px; padding: 24px; transition: all .25s ease; }
.feature-card:hover { border-color: rgba(23,181,126,.4); background: rgba(255,255,255,.07); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(23,181,126,.12); color: var(--water-400); display: flex; align-items: center; justify-content: center; }
.feature-card .card-title { color: #fff; margin-top: 20px; font-size: 1rem; }
.feature-card .card-text { color: rgba(255,255,255,.6); }

/* Why choose us section (dark) */
.dark-section { position: relative; background: var(--navy-950); overflow: hidden; }

/* Process timeline */
.timeline { position: relative; margin-top: 60px; }
.timeline-rail { position: absolute; left: 27px; top: 0; bottom: 0; width: 1px; background: var(--line); display: none; }
@media (min-width: 640px) { .timeline-rail { display: block; } }
.timeline-item { position: relative; display: flex; gap: 24px; padding: 20px 0; }
.timeline-dot { position: relative; z-index: 2; flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--emerald-500); background: #fff; display: flex; align-items: center; justify-content: center; }
.timeline-dot span { font-family: var(--font-display); font-size: 10px; font-weight: 800; color: var(--emerald-600); }
.timeline-body h3 { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 800; color: var(--navy-900); }
.timeline-body p { margin-top: 6px; color: var(--ink-500); font-size: .9375rem; max-width: 560px; }

/* Testimonials */
.testimonial-card { max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 40px 32px; text-align: center; }
.testimonial-quote { margin-top: 16px; font-size: 1.125rem; color: var(--ink-700); line-height: 1.6; }
.testimonial-stars { margin-top: 20px; display: flex; justify-content: center; gap: 3px; color: var(--earth-500); }
.testimonial-person { margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-person img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-person .name { font-size: .875rem; font-weight: 700; color: var(--navy-900); }
.testimonial-person .role { font-size: .75rem; color: var(--ink-500); }
.carousel-nav { margin-top: 28px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.carousel-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: #fff; display: flex; align-items: center; justify-content: center; color: var(--ink-700); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--line); border: none; padding: 0; transition: all .2s; }
.carousel-dot.active { width: 24px; background: var(--emerald-500); }

/* FAQ */
.faq-list { margin-top: 48px; border: 1px solid var(--line); border-radius: 18px; background: #fff; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: none; border: none; text-align: left; font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: 1rem; }
.faq-toggle { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--paper-100); color: var(--navy-900); display: flex; align-items: center; justify-content: center; transition: all .25s; }
.faq-item.open .faq-toggle { background: var(--emerald-500); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 24px 20px; color: var(--ink-500); font-size: .9375rem; line-height: 1.6; }

/* CTA */
.cta-box { position: relative; overflow: hidden; border-radius: 32px; background: var(--navy-900); padding: 64px 32px; text-align: center; }
@media (min-width: 640px) { .cta-box { padding: 72px 64px; } }
.cta-box h2 { font-size: 2rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
@media (min-width: 640px) { .cta-box h2 { font-size: 2.75rem; } }
.cta-box p { margin: 20px auto 0; max-width: 560px; color: rgba(255,255,255,.7); font-size: 1.0625rem; }
.cta-actions { margin-top: 36px; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* Footer */
.footer { background: var(--navy-950); color: #fff; }
.footer-top { position: relative; height: 1px; background: linear-gradient(90deg, transparent, rgba(23,181,126,.5), transparent); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; padding: 64px 0; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; } }
.footer-desc { margin-top: 20px; max-width: 300px; font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.social-row { margin-top: 24px; display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: all .2s; }
.social-btn:hover { border-color: var(--emerald-500); color: var(--emerald-500); }
.footer h3 { font-family: var(--font-display); font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.5); }
.footer-links { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.7); }
.footer-links a:hover { color: var(--emerald-500); }
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; font-size: .875rem; color: rgba(255,255,255,.7); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--emerald-500); }
.footer-bottom { display: flex; flex-direction: column; gap: 16px; border-top: 1px solid rgba(255,255,255,.1); padding: 28px 0; font-size: 12px; color: rgba(255,255,255,.5); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--emerald-500); }

/* Floating buttons */
.fab-whatsapp { position: fixed; bottom: 24px; left: 24px; z-index: 40; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 15px 30px rgba(0,0,0,.2); }
.fab-top { position: fixed; bottom: 24px; right: 24px; z-index: 40; width: 48px; height: 48px; border-radius: 50%; background: var(--navy-900); color: #fff; display: none; align-items: center; justify-content: center; box-shadow: 0 15px 30px rgba(0,0,0,.2); border: none; }
.fab-top.show { display: flex; }

/* Mobile sticky bar */
.mobile-sticky { position: fixed; inset: auto 0 0 0; z-index: 40; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); background: rgba(255,255,255,.97); backdrop-filter: blur(6px); }
@media (min-width: 1024px) { .mobile-sticky { display: none; } }
.mobile-sticky a { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 10px 0; font-size: 11px; font-weight: 600; color: var(--navy-900); border-right: 1px solid var(--line); }
.mobile-sticky a:last-child { border-right: none; }
.mobile-sticky a.whatsapp { color: var(--emerald-600); }
.mobile-sticky a.quote { color: var(--water-600); }
body { padding-bottom: 56px; }
@media (min-width: 1024px) { body { padding-bottom: 0; } }

/* Cookie banner */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 50; max-width: 420px; margin: 0 auto; background: rgba(255,255,255,.97); border: 1px solid var(--line); border-radius: 18px; padding: 20px; box-shadow: 0 25px 50px -20px rgba(11,37,69,.2); display: none; }
@media (min-width: 640px) { .cookie-banner { left: auto; right: 24px; bottom: 24px; margin: 0; } }
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 12px; color: var(--ink-500); line-height: 1.5; margin-top: 4px; }
.cookie-banner .row { display: flex; gap: 8px; margin-top: 12px; }
.cookie-banner button { border-radius: 999px; padding: 7px 16px; font-size: 12px; font-weight: 700; border: 1px solid var(--line); background: #fff; }
.cookie-banner button.accept { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

/* Page hero (inner pages) */
.page-hero { position: relative; padding: 160px 0 80px; background: var(--navy-950); overflow: hidden; text-align: center; }
.page-hero-bg { position: absolute; inset: 0; opacity: .25; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,15,31,.6), rgba(6,15,31,.85) 60%, var(--navy-950)); }
.page-hero-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 { font-size: 2rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
@media (min-width: 640px) { .page-hero h1 { font-size: 2.75rem; } }
.page-hero p { margin-top: 16px; color: rgba(255,255,255,.7); font-size: 1.0625rem; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: .85fr 1.15fr; } }
.contact-info-item { display: flex; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: rgba(23,181,126,.1); color: var(--emerald-600); display: flex; align-items: center; justify-content: center; }
.contact-info-item h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-500); }
.contact-info-item p, .contact-info-item a { margin-top: 4px; font-size: .9375rem; font-weight: 600; color: var(--navy-900); display: block; }
.map-embed { margin-top: 24px; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 32px; }
@media (min-width: 640px) { .form-card { padding: 40px; } }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
@media (min-width: 640px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--ink-700); margin-bottom: 6px; }
.form-input, textarea.form-input, select.form-input {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 11px 16px;
  font: inherit; font-size: .9375rem; color: var(--ink-900); background: #fff; transition: border-color .2s;
}
.form-input:focus { outline: none; border-color: var(--emerald-500); }
.form-error { margin-top: 6px; font-size: 12px; font-weight: 600; color: #dc2626; }
.form-success { display: flex; align-items: center; gap: 10px; background: rgba(23,181,126,.08); border: 1px solid rgba(23,181,126,.25); color: var(--emerald-600); border-radius: 14px; padding: 16px 20px; font-size: .9375rem; font-weight: 600; }
.alert { border-radius: 12px; padding: 14px 18px; font-size: .875rem; margin-bottom: 20px; }
.alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }

/* Projects filters + lightbox */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.filter-btn { border-radius: 999px; padding: 8px 18px; font-size: .875rem; font-weight: 600; border: 1px solid var(--line); background: #fff; color: var(--ink-700); }
.filter-btn.active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.project-meta { display: flex; gap: 16px; margin-top: 10px; font-size: 12px; color: var(--ink-500); }
.project-meta span { display: flex; align-items: center; gap: 4px; }

/* Simple text pages */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: 1.25rem; font-weight: 800; color: var(--navy-900); margin-top: 32px; }
.prose p, .prose li { color: var(--ink-500); font-size: .9375rem; line-height: 1.7; margin-top: 12px; }
.prose ul { padding-left: 20px; list-style: disc; }

/* Utility */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.hidden { display: none !important; }
[x-cloak] { display: none !important; }

/* 404 page */
.error-page { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; }
.error-page .code { font-family: var(--font-display); font-size: 5rem; font-weight: 800; color: var(--water-500); }
