@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --blue:       #185FA5;
  --blue-deep:  #0C447C;
  --blue-light: #E6F1FB;
  --green:      #22c55e;
  --amber:      #f59e0b;
  --red:        #ef4444;
  --ink:        #0f172a;
  --slate:      #334155;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --surface:    #f8fafc;
  --white:      #ffffff;
  --grad-nav:   linear-gradient(135deg, #185FA5, #0C447C);
  --ff-head:    'Plus Jakarta Sans', sans-serif;
  --ff-body:    'DM Sans', sans-serif;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md:  0 4px 16px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
  --shadow-lg:  0 20px 48px rgba(15,23,42,0.10), 0 8px 16px rgba(15,23,42,0.06);
  --shadow-xl:  0 32px 80px rgba(15,23,42,0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--slate);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
  padding: 0 5%;
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 40px;
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-head); font-weight: 800;
  font-size: 20px; color: var(--blue);
  letter-spacing: -0.5px; flex-shrink: 0;
}
.nav-logo img { height: 36px; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; flex: 1;
}
.nav-links a {
  padding: 6px 12px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color .15s, background .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: var(--surface); }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-login {
  font-size: 14px; font-weight: 500; color: var(--muted);
  padding: 6px 14px; border-radius: var(--radius-sm);
  transition: color .15s;
}
.nav-login:hover { color: var(--ink); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 700; font-size: 15px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; transition: all .15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: #fff;
}
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(24,95,165,0.3); }
.btn-outline {
  background: transparent; color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover { background: var(--blue-light); }
.btn-white {
  background: #fff; color: var(--blue);
}
.btn-white:hover { background: var(--blue-light); transform: translateY(-1px); }
.btn-lg { font-size: 16px; padding: 16px 32px; border-radius: 10px; }
.btn-sm { font-size: 13px; padding: 8px 18px; }

/* ── SECTIONS ── */
section { padding: 96px 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-light);
  padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
}
h1 {
  font-family: var(--ff-head); font-weight: 900;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.08; letter-spacing: -2px; color: var(--ink);
}
h2 {
  font-family: var(--ff-head); font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.15; letter-spacing: -1px; color: var(--ink);
}
h3 {
  font-family: var(--ff-head); font-weight: 700;
  font-size: 22px; line-height: 1.3; color: var(--ink);
}
.lead {
  font-size: clamp(17px, 2vw, 20px); font-weight: 300;
  color: var(--muted); line-height: 1.7; max-width: 560px;
}
.text-center { text-align: center; }
.text-center .lead { margin: 0 auto; }

/* ── HERO ── */
.hero {
  min-height: 100vh; padding-top: 68px;
  display: flex; align-items: center;
  background: var(--white);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(24,95,165,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light); border: 1px solid rgba(24,95,165,0.2);
  border-radius: 20px; padding: 6px 14px; margin-bottom: 24px;
  font-size: 13px; font-weight: 600; color: var(--blue);
}
.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero .lead { margin-bottom: 36px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.hero-trust-label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.hero-trust-items { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.trust-item { font-size: 13px; font-weight: 500; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.trust-item::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ── ANIMATED JOB CARD ── */
.hero-visual { position: relative; }
.app-frame {
  background: #0d1119;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}
.app-frame-bar {
  display: flex; align-items: center; gap: 6px; margin-bottom: 16px;
}
.app-frame-dot { width: 10px; height: 10px; border-radius: 50%; }
.app-frame-dot:nth-child(1) { background: #f43f5e; }
.app-frame-dot:nth-child(2) { background: #f59e0b; }
.app-frame-dot:nth-child(3) { background: #22c55e; }
.app-frame-title { font-size: 12px; color: #3d5470; font-family: var(--ff-body); margin-left: auto; }
.app-kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.app-kpi {
  background: #101620; border: 1px solid #161f2e;
  border-radius: 10px; padding: 12px;
}
.app-kpi-label { font-size: 9px; color: #3d5470; text-transform: uppercase; letter-spacing: .08em; margin-bottom:4px; }
.app-kpi-val { font-size: 20px; font-weight: 800; color: #dde8f8; font-family: var(--ff-head); }
.app-kpi-val.green { color: #22c55e; }
.app-kpi-val.blue  { color: #185FA5; }
.app-jobs { display: flex; flex-direction: column; gap: 8px; }
.app-job {
  background: #101620; border: 1px solid #161f2e;
  border-radius: 10px; padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
  transition: border-color .3s;
}
.app-job.active { border-color: #f59e0b44; }
.app-job.done   { border-color: #22c55e44; }
.app-job-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.app-job-dot.scheduled { background: #185FA5; }
.app-job-dot.active    { background: #f59e0b; animation: pulse 1.5s infinite; }
.app-job-dot.done      { background: #22c55e; }
.app-job-info { flex: 1; }
.app-job-name { font-size: 12px; font-weight: 600; color: #dde8f8; margin-bottom: 2px; }
.app-job-sub  { font-size: 10px; color: #3d5470; }
.app-job-amt  { font-size: 13px; font-weight: 700; color: #22c55e; font-family: var(--ff-head); }
.app-job-pill {
  font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .05em;
}
.pill-scheduled { background: rgba(24,95,165,.15); color: #185FA5; }
.pill-active    { background: rgba(245,158,11,.15); color: #f59e0b; }
.pill-done      { background: rgba(34,197,94,.15); color: #22c55e; }

/* floating notification */
.app-notif {
  position: absolute; bottom: -20px; right: -24px;
  background: #fff; border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  min-width: 220px;
  animation: floatUp 3s ease-in-out infinite;
}
@keyframes floatUp { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.notif-icon { font-size: 22px; }
.notif-title { font-size: 12px; font-weight: 700; color: var(--ink); }
.notif-sub   { font-size: 11px; color: var(--muted); }

/* ── LOGOS / SOCIAL PROOF ── */
.logos {
  padding: 40px 5%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logos-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}
.logos-label { font-size: 13px; color: var(--muted); font-weight: 500; white-space: nowrap; }
.logo-tag {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px 20px;
  font-size: 14px; font-weight: 600; color: var(--muted);
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 64px;
}
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(24,95,165,0.2);
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 10px; font-size: 18px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── HOW IT WORKS ── */
.steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 32px; margin-top: 64px; position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 28px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}
.step { text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 800; font-size: 20px;
  margin: 0 auto 20px; position: relative; z-index: 1;
  box-shadow: 0 0 0 8px var(--blue-light);
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 64px;
}
.testimonial {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
}
.testimonial-stars { color: var(--amber); font-size: 16px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; line-height: 1.75; color: var(--slate); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue-light); border: 2px solid rgba(24,95,165,0.2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: var(--blue);
  font-family: var(--ff-head);
}
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.testimonial-role { font-size: 13px; color: var(--muted); }

/* ── PRICING ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 64px; align-items: start;
}
.pricing-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  position: relative;
}
.pricing-card.featured {
  background: var(--blue); border-color: var(--blue);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 20px;
}
.pricing-name {
  font-family: var(--ff-head); font-weight: 800; font-size: 16px;
  color: var(--ink); margin-bottom: 8px;
}
.pricing-card.featured .pricing-name { color: rgba(255,255,255,0.8); }
.pricing-price {
  font-family: var(--ff-head); font-weight: 900; font-size: 48px;
  color: var(--ink); line-height: 1; margin-bottom: 4px;
}
.pricing-card.featured .pricing-price { color: #fff; }
.pricing-period { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.6); }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.pricing-card.featured .pricing-divider { border-color: rgba(255,255,255,0.15); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li {
  font-size: 14px; color: var(--slate);
  display: flex; align-items: center; gap: 10px;
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.pricing-card.featured .pricing-features li::before { color: rgba(255,255,255,0.9); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--grad-nav);
  padding: 96px 5%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -50%; left: -10%; width: 500px; height: 500px;
  border-radius: 50%; background: rgba(255,255,255,0.04);
}
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 18px; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band .hero-trust { border-color: rgba(255,255,255,0.15); justify-content: center; }
.cta-band .hero-trust-label { color: rgba(255,255,255,0.5); }
.cta-band .trust-item { color: rgba(255,255,255,0.7); }
.cta-band .trust-item::before { color: var(--green); }

/* ── FOOTER ── */
footer {
  background: var(--ink); color: rgba(255,255,255,0.6);
  padding: 64px 5% 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand { }
.footer-logo {
  font-family: var(--ff-head); font-weight: 800; font-size: 22px;
  color: #fff; margin-bottom: 12px;
}
.footer-tagline { font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-family: var(--ff-head); font-weight: 700; font-size: 13px;
  color: #fff; text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; transition: color .15s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { font-size: 13px; transition: color .15s; }
.footer-social a:hover { color: #fff; }

/* ── INNER PAGE HERO ── */
.page-hero {
  background: var(--surface); padding: 140px 5% 80px;
  border-bottom: 1px solid var(--border); text-align: center;
}
.page-hero h1 { font-size: clamp(32px, 4vw, 56px); margin-bottom: 16px; }
.page-hero .lead { margin: 0 auto; }

/* ── BLOG ── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px; margin-top: 64px;
}
.blog-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-img {
  height: 200px; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.blog-card-body { padding: 24px; }
.blog-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 10px; display: block;
}
.blog-card h3 { font-size: 18px; margin-bottom: 10px; }
.blog-card h3 a:hover { color: var(--blue); }
.blog-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.blog-meta { font-size: 12px; color: var(--muted); }

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start; margin-top: 64px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600; color: var(--ink);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--ff-body);
  font-size: 15px; color: var(--ink); outline: none;
  transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── ABOUT ── */
.team-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px; margin-top: 48px;
}
.team-card { text-align: center; }
.team-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--blue-light); border: 3px solid rgba(24,95,165,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; margin: 0 auto 16px;
  font-family: var(--ff-head); font-weight: 800; color: var(--blue);
}
.team-card h3 { font-size: 16px; margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--muted); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .steps::before { display: none; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  section { padding: 64px 5%; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  h1 { letter-spacing: -1px; }
}
