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

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --border-color: #e2e8f0;
  --nav-height: 70px;
  --transition: all 0.3s ease;
  --box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
  --box-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main { flex: 1; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; color: var(--text-primary); }
h3 { font-size: 1.25rem; }
p { color: var(--text-secondary); margin-bottom: 1rem; }
.highlight { color: var(--accent); }
.text-center { text-align: center; }
.eyebrow-text { font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; margin-bottom: 0.5rem; }
.section-subtitle { max-width: 600px; margin: 0 auto 3rem; font-size: 1.1rem; }

/* Layout */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-gray { background-color: var(--bg-secondary); }
.service-row { margin-bottom: 4rem; align-items: center; }
@media(min-width: 768px) {
  .service-row { margin-bottom: 6rem; }
}

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media(min-width: 768px){
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .reverse-on-desktop { order: -1; }
}

@media(min-width: 1024px){
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Nav */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-height);
  background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color); box-shadow: var(--box-shadow-sm);
  z-index: 1000; display: flex; align-items: center;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--text-primary); display: flex; align-items: center; gap: 0.5rem; }
.logo-img{
  width: 100px;
}
.logo svg { color: var(--text-primary); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-weight: 500; font-size: 1rem; color: var(--text-secondary); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.menu-btn { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; }

/* Buttons */
.btn {
  display: inline-block; padding: 0.8rem 1.5rem; background-color: var(--accent);
  color: #fff; font-weight: 600; border-radius: 8px; border: 2px solid var(--accent);
  transition: var(--transition); cursor: pointer; text-align: center;
}
.btn:hover { background-color: var(--accent-hover); border-color: var(--accent-hover); }
.btn-outline { background-color: transparent; color: var(--accent); }
.btn-outline:hover { background-color: var(--accent); color: #fff; }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-white { background-color: #fff; color: var(--text-primary); border-color: #fff; }
.btn-white:hover { background-color: var(--bg-secondary); border-color: var(--bg-secondary); }
.btn-outline-white { background-color: transparent; color: #fff; border-color: #fff; }
.btn-outline-white:hover { background-color: #fff; color: var(--text-primary); }

/* Hero Long */
.hero-long { position: relative; padding-top: calc(var(--nav-height) + 6rem); padding-bottom: 6rem; overflow: hidden; }
.hero-background-elements { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; z-index: -1; }
.orb-1 { width: 500px; height: 500px; background-color: var(--accent); top: -100px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background-color: #8b5cf6; bottom: -100px; left: -100px; }

.hero-long-inner { display: flex; align-items: center; justify-content: space-between; gap: 4rem; }
.hero-text-content { flex: 1; max-width: 600px; }
.hero-text-content .eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--bg-secondary); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 1.5rem; border: 1px solid var(--border-color); }
.dot { width: 8px; height: 8px; background-color: var(--accent); border-radius: 50%; display: inline-block; }
.hero-actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-metrics { display: flex; gap: 2rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-color); }
.metric { display: flex; flex-direction: column; }
.metric-num { font-size: 2rem; font-weight: 700; color: var(--text-primary); line-height: 1; margin-bottom: 0.25rem; }
.metric-label { font-size: 0.9rem; color: var(--text-secondary); }

/* Dashboard Graphic */
.hero-visual { flex: 1; display: flex; justify-content: flex-end; perspective: 1000px; }
.dashboard-graphic {
  width: 100%; max-width: 500px; background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); border-radius: 16px; padding: 2rem;
  transform: rotateY(-5deg) rotateX(5deg); transition: transform 0.5s ease;
}
.dashboard-graphic:hover { transform: rotateY(0deg) rotateX(0deg) translateY(-10px); }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.dash-title { font-weight: 600; font-size: 1.1rem; color: var(--text-primary); }
.dash-live { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; color: #10b981; background: #d1fae5; padding: 0.25rem 0.75rem; border-radius: 20px; }
.dot.live { background-color: #10b981; animation: pulse 2s infinite; }
.dash-metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.dash-box { background: #fff; padding: 1.5rem; border-radius: 12px; box-shadow: var(--box-shadow-sm); border: 1px solid var(--border-color); }
.box-label { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.5rem; }
.box-val { font-size: 1.75rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.box-delta.positive { color: #10b981; font-size: 0.85rem; font-weight: 500; }
.dash-chart { background: #fff; padding: 1.5rem; border-radius: 12px; box-shadow: var(--box-shadow-sm); border: 1px solid var(--border-color); margin-bottom: 2rem; }
.chart-title { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 1.5rem; }
.bars { display: flex; align-items: flex-end; justify-content: space-between; height: 100px; gap: 10px; }
.bar { background-color: var(--bg-tertiary); width: 100%; border-radius: 4px 4px 0 0; transition: height 1s ease; }
.bar.highlight-bar { background-color: var(--accent); }
.h-40 { height: 40%; } .h-60 { height: 60%; } .h-70 { height: 70%; } .h-80 { height: 80%; } .h-90 { height: 90%; } .h-100 { height: 100%; }
.dash-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tag { font-size: 0.8rem; background: var(--bg-secondary); color: var(--text-secondary); padding: 0.3rem 0.8rem; border-radius: 20px; border: 1px solid var(--border-color); }

/* Trust Bar */
.trust-bar { background-color: var(--bg-primary); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 1.5rem 0; }
.trust-items { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.trust-item { font-size: 0.95rem; font-weight: 500; color: var(--text-secondary); display: flex; align-items: center; gap: 0.5rem; }

/* Cards */
.card { background-color: var(--bg-primary); padding: 2.5rem 2rem; border-radius: 12px; border: 1px solid var(--border-color); box-shadow: var(--box-shadow-sm); transition: var(--transition); height: 100%; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-5px); box-shadow: var(--box-shadow); border-color: var(--accent); }
.card-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 1.5rem; }
.card-link { margin-top: auto; padding-top: 1.5rem; color: var(--accent); font-weight: 600; display: inline-block; }
.card-link:hover { text-decoration: underline; }

.card-minimal { padding: 2rem; }
.card-minimal h3 { font-size: 1.25rem; }
.card-minimal .card-number { font-size: 3rem; font-weight: 700; color: var(--bg-tertiary); line-height: 1; margin-bottom: 1rem; font-family: monospace; }

/* Process */
.process-step { text-align: center; position: relative; }
.step-icon { width: 60px; height: 60px; background-color: var(--accent); color: #fff; font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 0 auto 1.5rem; position: relative; z-index: 2; box-shadow: 0 0 0 8px var(--bg-primary); }
.process-timeline { position: relative; }
@media(min-width: 1024px) {
  .process-timeline::before { content: ''; position: absolute; top: 30px; left: 10%; right: 10%; height: 2px; background-color: var(--border-color); z-index: 1; }
}

/* CTA Band */
.cta-band { background-color: var(--text-primary); padding: 5rem 0; color: #fff; text-align: center; }
.cta-band h2 { color: #fff; font-size: 2.5rem; }
.cta-band p { color: #94a3b8; font-size: 1.1rem; max-width: 600px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Forms & Std Pages */
.contact-form { max-width: 600px; margin: 0 auto; background-color: var(--bg-primary); padding: 2rem; border-radius: 12px; border: 1px solid var(--border-color); box-shadow: var(--box-shadow); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
.form-group input, .form-group textarea { width: 100%; padding: 0.8rem; border-radius: 8px; border: 1px solid var(--border-color); background-color: var(--bg-secondary); color: var(--text-primary); font-family: inherit; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); background-color: #fff; }
.page-header { padding-top: calc(var(--nav-height) + 4rem); padding-bottom: 3rem; text-align: center; background-color: var(--bg-secondary); border-bottom: 1px solid var(--border-color); }
.page-content { padding: 4rem 1rem; max-width: 800px; margin: 0 auto; }
.page-content ul { list-style-type: disc; padding-left: 1.5rem; margin-bottom: 1.5rem; color: var(--text-secondary); }
.page-content li { margin-bottom: 0.5rem; }
.page-content a { color: var(--accent); text-decoration: none; }
.page-content a:hover { text-decoration: underline; }
.page-content h2, .page-content h3 { margin-top: 2rem; margin-bottom: 1rem; }

/* Footer */
.footer { background-color: var(--bg-secondary); padding: 4rem 0 2rem; border-top: 1px solid var(--border-color); margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.footer-col h3 { font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--text-primary); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a { color: var(--text-secondary); transition: var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--border-color); color: var(--text-secondary); font-size: 0.9rem; }

/* Animations */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); } 70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; } .delay-4 { transition-delay: 0.4s; }

/* Mobile */
@media (max-width: 992px) {
  .hero-long-inner { flex-direction: column; text-align: center; }
  .hero-text-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-metrics { justify-content: center; }
  .dashboard-graphic { transform: none; max-width: 100%; }
  .dashboard-graphic:hover { transform: none; }
  .trust-items { justify-content: center; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; } h2 { font-size: 2rem; }
  .menu-btn { display: block; }
  .nav-links { position: fixed; top: var(--nav-height); left: 100%; width: 100%; height: calc(100vh - var(--nav-height)); background-color: var(--bg-primary); flex-direction: column; justify-content: center; gap: 2rem; transition: var(--transition); }
  .nav-links.active { left: 0; }
  .nav-links a { font-size: 1.5rem; }
  .hide-on-mobile { display: none !important; }
}
