:root {
  --background: #ffffff;
  --foreground: #1a1f36;
  --primary: #1e3a8a;
  --primary-foreground: #ffffff;
  --muted: #f8fafc;
  --muted-foreground: #64748b;
  --accent: #ea580c;
  --border: rgba(0, 0, 0, 0.1);
  --card: #ffffff;
  --radius: 0.5rem;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 6px 18px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 35px rgba(15, 23, 42, 0.13);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--background); color: var(--foreground); font-size: 16px; line-height: 1.5; }
button, input, textarea { font: inherit; }
button { cursor: pointer; border: 0; background: none; }
img { display: block; max-width: 100%; }

.container { width: min(100% - 2rem, 1200px); margin: 0 auto; }
.narrow { max-width: 900px; }
.text-center { text-align: center; }
.mt-12 { margin-top: 3rem; }
.bg-white { background: #fff; }
.bg-muted { background: var(--muted); }
.muted-text { color: var(--muted-foreground); margin-bottom: 2rem; }

.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.topbar { background: var(--primary); color: var(--primary-foreground); }
.topbar-inner { min-height: 38px; display: flex; align-items: center; gap: 1.5rem; font-size: 0.875rem; }
.topbar-item { display: inline-flex; align-items: center; gap: 0.5rem; }
.topbar svg, .footer-line svg { width: 1rem; height: 1rem; }
.nav-wrap { height: 4rem; display: flex; align-items: center; justify-content: space-between; }
.logo-btn { display: flex; align-items: center; padding: 0; transition: opacity .2s ease; }
.logo-btn:hover { opacity: .8; }
.logo-btn img { height: 3rem; width: auto; }
.desktop-nav { display: flex; align-items: center; gap: 2rem; }
.nav-link { color: var(--foreground); font-size: .875rem; font-weight: 600; transition: color .2s ease; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.mobile-toggle { display: none; padding: .5rem; border-radius: .375rem; color: var(--foreground); }
.mobile-toggle:hover { background: var(--muted); }
.mobile-toggle svg { width: 1.5rem; height: 1.5rem; }
.mobile-panel { display: none; border-top: 1px solid var(--border); padding: 1rem 0; }
.mobile-panel.open { display: block; }
.mobile-nav { display: flex; flex-direction: column; gap: .5rem; }
.mobile-link { text-align: left; padding: .65rem 1rem; border-radius: .5rem; color: var(--foreground); }
.mobile-link:hover { background: var(--muted); }
.mobile-link.active { background: var(--primary); color: #fff; }

.main-content { flex: 1; }
.page { display: none; }
.page.active { display: block; }
.hero, .page-hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, #0f172a 0%, var(--primary) 52%, #1e293b 100%); }
.hero-home { min-height: 560px; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(15,23,42,.9), rgba(30,58,138,.88)), url('https://images.unsplash.com/photo-1763950865873-41f63536825b?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxpbmR1c3RyaWFsJTIwc3RlZWwlMjBwaXBlcyUyMHdhcmVob3VzZXxlbnwxfHx8fDE3NzkzNDc3MTB8MA&ixlib=rb-4.1.0&q=80&w=1080&utm_source=figma&utm_medium=referral'); background-size: cover; background-position: center; opacity: .95; }
.hero-content { position: relative; z-index: 1; padding: 5rem 0; }
.hero-copy { max-width: 760px; }
.hero h1, .page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.08; margin: 0 0 1.5rem; font-weight: 800; letter-spacing: -0.03em; }
.hero p, .page-hero p { color: #e2e8f0; font-size: clamp(1.05rem, 1.7vw, 1.25rem); margin: 0 0 2rem; max-width: 760px; }
.page-hero { padding: 4rem 0 5rem; }
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 1rem; }

.section { padding: clamp(4rem, 7vw, 6rem) 0; }
.intro-section .lead { margin-bottom: 2rem; }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
h2 { color: var(--primary); font-size: clamp(1.9rem, 3vw, 2.5rem); line-height: 1.2; margin: 0 0 1rem; font-weight: 800; letter-spacing: -0.02em; }
h3 { margin: 0; }
.section-heading p, .lead, .prose p { color: var(--muted-foreground); font-size: 1.125rem; line-height: 1.75; }
.prose p { margin: 0 0 1.5rem; }

.grid { display: grid; gap: 1.5rem; }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 1000px; margin: 0 auto; gap: 2rem; }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { background: var(--card); border: 1px solid var(--border); border-radius: .75rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-body { padding: 1.5rem; }
.card-large .card-body { padding: 2rem; }
.icon-box { width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; border-radius: .65rem; background: rgba(30,58,138,.1); color: var(--primary); margin-bottom: 1rem; }
.icon-box.large { width: 4rem; height: 4rem; border-radius: .8rem; margin-bottom: 1.5rem; }
.icon-box.accent { background: rgba(234,88,12,.1); color: var(--accent); }
.icon-box svg { width: 1.7rem; height: 1.7rem; }
.icon-box.large svg { width: 2rem; height: 2rem; }
.card h3 { color: var(--primary); font-size: 1.15rem; margin-bottom: .65rem; font-weight: 700; }
.card-large h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.card p { color: var(--muted-foreground); margin: 0; font-size: .95rem; line-height: 1.65; }
.card-large p { font-size: 1rem; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; min-height: 2.75rem; padding: .7rem 1.25rem; border-radius: .5rem; font-weight: 700; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 1.1rem; height: 1.1rem; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #172f75; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #c94707; }
.btn-outline { border: 1px solid var(--border); color: var(--foreground); background: #fff; }
.btn-outline:hover { background: var(--muted); }
.btn-outline-light { border: 1px solid rgba(255,255,255,.85); color: #fff; background: rgba(255,255,255,.1); backdrop-filter: blur(8px); }
.btn-outline-light:hover { background: #fff; color: var(--primary); }
.button-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.full-width { width: 100%; }

.cta-primary { background: var(--primary); color: #fff; }
.cta-primary h2, .cta-primary p { color: #fff; }
.cta-primary p { color: #e2e8f0; font-size: 1.125rem; margin: 0 auto 2rem; }
.rounded-cta { border-radius: 1rem; padding: clamp(2rem, 5vw, 3rem); text-align: center; color: #fff; background: linear-gradient(135deg, var(--primary), #1e293b); }
.rounded-cta h2 { color: #fff; }
.rounded-cta p { color: #e2e8f0; font-size: 1.125rem; margin: 0 auto 2rem; }

.industries, .approach { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; max-width: 900px; margin: 0 auto; }
.industry-item { display: flex; align-items: center; gap: .75rem; background: #fff; padding: 1rem; border-radius: .65rem; box-shadow: var(--shadow-sm); }
.industry-item svg { width: 1.25rem; height: 1.25rem; color: var(--accent); flex: none; }
.approach { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 780px; gap: 1.5rem; }
.approach-item { display: flex; align-items: flex-start; gap: 1rem; background: #fff; padding: 1.5rem; border-radius: .75rem; box-shadow: var(--shadow-sm); font-size: 1.05rem; }
.approach-icon { width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center; flex: none; border-radius: 999px; color: #fff; background: var(--accent); margin-top: .1rem; }
.approach-icon svg { width: 1.15rem; height: 1.15rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1120px; }
.contact-list { display: grid; gap: 1.5rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item > span { width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; flex: none; border-radius: .65rem; background: rgba(30,58,138,.1); color: var(--primary); }
.contact-item svg { width: 1.5rem; height: 1.5rem; }
.contact-item h3 { font-size: 1rem; margin-bottom: .25rem; }
.contact-item p { margin: 0; color: var(--muted-foreground); }
.store-image { border-radius: .75rem; overflow: hidden; box-shadow: var(--shadow-lg); margin-top: 2rem; }
.store-image img { width: 100%; height: 16rem; object-fit: cover; }
.form-card { padding: 2rem; }
.form-card:hover { transform: none; }
form { display: grid; gap: 1.25rem; }
label { display: grid; gap: .5rem; font-size: .9rem; font-weight: 600; color: var(--foreground); }
input, textarea { width: 100%; border: 1px solid var(--border); border-radius: .45rem; padding: .75rem .9rem; background: #fff; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
input:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30,58,138,.15); }
textarea { resize: vertical; min-height: 130px; }
.form-note { margin: 0; color: var(--muted-foreground); font-size: .9rem; }

.site-footer { background: #0f172a; color: #cbd5e1; padding: 3rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; }
.footer-logo { height: 2.5rem; width: auto; margin-bottom: 1rem; }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.site-footer p, .site-footer li { color: #94a3b8; font-size: .9rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.site-footer button { color: #94a3b8; padding: 0; text-align: left; }
.site-footer button:hover { color: var(--accent); }
.footer-line { display: flex; align-items: flex-start; gap: .5rem; }
.footer-line svg { color: var(--accent); flex: none; margin-top: .15rem; }
.copyright { border-top: 1px solid #1e293b; text-align: center; padding: 2rem 0; color: #94a3b8; font-size: .875rem; }

@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .mobile-toggle { display: inline-flex; }
  .cards-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industries { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .hide-sm { display: none; }
  .topbar-inner { justify-content: center; }
  .hero-home { min-height: auto; }
  .hero-content { padding: 4rem 0; }
  .cards-2, .cards-3, .cards-4, .industries, .approach, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { gap: 2rem; }
  .section { padding: 3.5rem 0; }
  .page-hero { padding: 3rem 0 3.5rem; }
  .button-row .btn { width: 100%; }
}

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; pointer-events: none; }


/* Google reCAPTCHA */
.captcha-wrap {
  margin: 0.75rem 0 1rem;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 420px) {
  .captcha-wrap {
    transform: scale(0.88);
    transform-origin: left center;
  }
}
