/* ---------- Tokens ---------- */
:root {
  --brand-primary: #0ea5e9;
  --brand-primary-dark: #0284c7;
  --brand-dark: #0f172a;
  --brand-soft: #f0f9ff;
  --brand-accent: #22c55e;
  --bg: #ffffff;
  --fg: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --secondary: #f8fafc;
  --radius: 1rem;
  --shadow-lg: 0 25px 50px -12px rgba(14, 165, 233, 0.18);
  --shadow-card: 0 10px 30px -10px rgba(15, 23, 42, 0.1);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1.05; }
.accent { color: var(--brand-primary); }
.muted { color: var(--muted); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 1.5rem; }
.eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-primary); }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 900px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

/* ---------- Buttons ---------- */
.btn { display: inline-block; padding: 1rem 2rem; border-radius: 1rem; font-weight: 700; transition: transform .2s, background .2s, color .2s; cursor: pointer; border: none; font-family: inherit; font-size: 1rem; }
.btn-sm { padding: .6rem 1.2rem; font-size: .875rem; border-radius: 999px; }
.btn-primary { background: var(--brand-primary); color: #fff; box-shadow: var(--shadow-lg); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-dark { background: var(--brand-dark); color: #fff; }
.btn-dark:hover { background: var(--brand-primary); }
.btn-light { background: #fff; color: var(--brand-dark); }
.btn-light:hover { background: var(--brand-primary); color: #fff; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- Navbar ---------- */
.navbar { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: .75rem 1.5rem; }
.brand img { height: 48px; width: auto; }
.nav-links { display: none; gap: 2.5rem; font-size: .8rem; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; }
.nav-links a:hover { color: var(--brand-primary); }
@media (min-width: 768px) { .nav-links { display: flex; } .brand img { height: 56px; } }

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; padding-top: 3rem; padding-bottom: 8rem; }
@media (min-width: 900px) { .hero { grid-template-columns: 1fr 1fr; padding-bottom: 10rem; } }
.hero-text { display: flex; flex-direction: column; gap: 1.75rem; }
.badge { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .85rem; border-radius: 999px; background: var(--brand-soft); border: 1px solid rgba(14,165,233,.2); color: var(--brand-primary); font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; width: max-content; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-primary); position: relative; }
.dot::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--brand-primary); opacity: .75; animation: ping 1.5s cubic-bezier(0,0,.2,1) infinite; }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; letter-spacing: -0.03em; }
.lead { font-size: 1.125rem; color: var(--muted); max-width: 30rem; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.link-cta { display: inline-flex; align-items: center; gap: .75rem; font-weight: 600; }
.circle { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; transition: border-color .2s; }
.circle::after { content: ''; width: 8px; height: 8px; background: var(--brand-dark); border-radius: 50%; }
.link-cta:hover .circle { border-color: var(--brand-primary); }

.hero-image-wrap { position: relative; }
.hero-image { aspect-ratio: 4/5; object-fit: cover; border-radius: 40px; outline: 1px solid rgba(0,0,0,.05); outline-offset: -1px; width: 100%; }
.floating-card { position: absolute; bottom: -2.5rem; left: 1rem; background: #fff; padding: 1.5rem 2rem; border-radius: 1.5rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); border: 1px solid #f1f5f9; max-width: 280px; animation: float 4s ease-in-out infinite; }
@media (min-width: 640px) { .floating-card { left: -2.5rem; } }
.floating-card .big { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: var(--brand-primary); }
.floating-card .small { font-size: .875rem; color: var(--muted); font-weight: 500; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---------- About ---------- */
.section h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin: 1rem 0 1.5rem; }
.section p.muted { font-size: 1.125rem; margin-bottom: 1rem; line-height: 1.7; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.stat { padding: 2rem; border-radius: 1.5rem; background: var(--brand-soft); border: 1px solid rgba(14,165,233,.1); }
.stat-v { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; color: var(--brand-dark); margin-bottom: .5rem; }
.stat-l { font-size: .875rem; color: var(--muted); font-weight: 500; }

/* ---------- Business ---------- */
.business { background: var(--brand-dark); color: #fff; padding: 6rem 0; overflow: hidden; }
.business h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin: 1rem 0 1.5rem; color: #fff; }
.business .muted { color: #94a3b8; font-size: 1.125rem; line-height: 1.7; margin-bottom: 2rem; }
.business strong { color: #fff; font-weight: 600; }
.business-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.business-images img { aspect-ratio: 1; object-fit: cover; border-radius: 1.5rem; outline: 1px solid rgba(255,255,255,.1); outline-offset: -1px; }
.business-images img.offset { margin-top: 3rem; }
.features { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.features li { display: flex; align-items: flex-start; gap: 1rem; }
.check { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: rgba(14,165,233,.2); border: 1px solid var(--brand-primary); color: var(--brand-primary); display: flex; align-items: center; justify-content: center; font-size: .75rem; margin-top: .25rem; }
.features strong { display: block; margin-bottom: .25rem; }
.features p { color: #94a3b8; font-size: .875rem; }

/* ---------- Services ---------- */
.section-head { text-align: center; margin-bottom: 4rem; }
.section-head .eyebrow { display: block; margin-bottom: 1rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { max-width: 42rem; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { padding: 2rem; border-radius: 2rem; border: 1px solid var(--border); background: var(--secondary); transition: all .3s; }
.service-card.highlight { background: var(--brand-soft); border-color: rgba(14,165,233,.1); }
.service-card:hover { background: #fff; box-shadow: var(--shadow-card); transform: translateY(-4px); }
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .75rem; }
.service-card p { color: var(--muted); margin-bottom: 1.5rem; }
.price { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; }
.ico { width: 56px; height: 56px; background: #fff; border-radius: 1rem; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.ico-ring { width: 24px; height: 24px; border: 4px solid var(--brand-primary); border-radius: 50%; }
.ico-sq { width: 24px; height: 24px; background: rgba(14,165,233,.3); border-radius: .5rem; }
.ico-dot { width: 24px; height: 24px; background: rgba(14,165,233,.4); border: 1px solid var(--brand-primary); border-radius: 50%; }
.ico-bar { width: 24px; height: 4px; background: var(--brand-primary); border-radius: 2px; }
.ico-spin { width: 24px; height: 24px; border-top: 4px solid var(--brand-primary); border-radius: 50%; animation: spin 2s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.ico-rot { width: 24px; height: 24px; background: var(--brand-primary); border-radius: .375rem; transform: rotate(45deg); }

/* ---------- Contact ---------- */
.contact-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-list li { display: flex; flex-direction: column; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.contact-list strong { font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; color: var(--brand-primary); margin-bottom: .25rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; padding: 2rem; background: var(--secondary); border-radius: 1.5rem; border: 1px solid var(--border); }
.contact-form label { display: flex; flex-direction: column; font-size: .875rem; font-weight: 600; gap: .5rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  padding: .85rem 1rem; border: 1px solid var(--border); border-radius: .75rem; font-family: inherit; font-size: 1rem; background: #fff; transition: border-color .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--brand-primary); }

/* ---------- Footer ---------- */
.footer { background: var(--secondary); padding: 5rem 0 2.5rem; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand img { height: 64px; width: auto; margin-bottom: 1.5rem; }
.footer-brand .muted { max-width: 24rem; margin-bottom: 1.5rem; }
.socials { display: flex; gap: .75rem; }
.socials a { width: 40px; height: 40px; background: #fff; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; transition: all .2s; }
.socials a:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.footer h4 { font-weight: 700; margin-bottom: 1.5rem; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; color: var(--muted); font-size: .875rem; }
.green { color: var(--brand-accent); font-weight: 700; }
.footer-bottom { padding-top: 2.5rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 1rem; justify-content: space-between; font-size: .75rem; color: var(--muted); }
.footer-bottom div { display: flex; gap: 1.5rem; }
.footer-bottom a:hover { color: var(--brand-primary); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; } }
