* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #f8fafc;
  color: #0f172a;
}

.topbar {
  height: 78px;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 23px;
  font-weight: 900;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2563eb, #0f172a);
  color: white;
}

.topbar nav a {
  margin-left: 26px;
  color: #334155;
  font-weight: 800;
  text-decoration: none;
}

.nav-btn {
  background: #2563eb;
  color: white !important;
  padding: 11px 18px;
  border-radius: 999px;
}

.hero {
  min-height: calc(100vh - 78px);
  padding: 80px 7%;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 55px;
  align-items: center;
  background:
    radial-gradient(circle at top left, #dbeafe, transparent 34%),
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.eyebrow {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 900;
  margin-bottom: 24px;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(46px, 6vw, 78px);
  line-height: .94;
  letter-spacing: -3px;
}

.hero-sub {
  max-width: 720px;
  margin-top: 28px;
  color: #475569;
  font-size: 21px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  display: inline-block;
  border-radius: 999px;
  padding: 16px 25px;
  font-weight: 900;
  text-decoration: none;
}

.primary-btn {
  background: #2563eb;
  color: white;
  box-shadow: 0 12px 30px rgba(37,99,235,.28);
}

.secondary-btn {
  border: 2px solid #cbd5e1;
  color: #0f172a;
  background: white;
}

.trust-row {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  color: #64748b;
}

.trust-row strong {
  background: white;
  border: 1px solid #e5e7eb;
  padding: 8px 12px;
  border-radius: 999px;
  color: #0f172a;
}

.automation-card {
  background: #0f172a;
  color: white;
  border-radius: 30px;
  padding: 24px;
  box-shadow: 0 35px 90px rgba(15,23,42,.3);
  overflow: hidden;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.red { background: #ef4444; }
.yellow { background: #facc15; }
.green { background: #22c55e; }

.card-title {
  margin-left: 10px;
  color: #cbd5e1;
  font-weight: 800;
}

.file-row {
  margin-top: 22px;
  border-radius: 20px;
  padding: 20px;
}

.file-row span {
  display: block;
  color: #94a3b8;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.file-row strong {
  display: block;
  line-height: 1.5;
}

.muted {
  background: rgba(255,255,255,.06);
}

.success {
  background: rgba(37,99,235,.25);
  border: 1px solid rgba(96,165,250,.45);
}

.processing {
  margin-top: 22px;
  background: rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 22px;
  position: relative;
}

.processing p {
  margin-top: 0;
  font-weight: 900;
}

.processing ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: #dbeafe;
  line-height: 2;
}

.scan-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, #60a5fa, transparent);
  animation: scan 2.3s infinite;
}

@keyframes scan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.section {
  padding: 90px 7%;
}

.light {
  background: white;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-heading span {
  color: #2563eb;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.section-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -1.5px;
}

.steps,
.feature-grid,
.pricing-grid {
  display: grid;
  gap: 24px;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid,
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step,
.feature-card,
.price-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 14px 38px rgba(15,23,42,.07);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #2563eb;
  color: white;
  font-weight: 900;
}

.step h3,
.feature-card h3,
.price-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.step p,
.feature-card p,
.price-card p {
  color: #475569;
  line-height: 1.6;
}

.before-after {
  padding: 90px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: #f1f5f9;
}

.before-after h2 {
  font-size: 36px;
}

.file-list {
  border-radius: 26px;
  padding: 24px;
  background: white;
  box-shadow: 0 14px 38px rgba(15,23,42,.08);
}

.file-list p {
  padding: 16px;
  border-radius: 14px;
  font-weight: 800;
}

.file-list.bad p {
  background: #fee2e2;
  color: #991b1b;
}

.file-list.good p {
  background: #dcfce7;
  color: #166534;
}

.price-card {
  position: relative;
}

.price-card.featured {
  border: 3px solid #2563eb;
  transform: scale(1.04);
}

.popular {
  position: absolute;
  top: -16px;
  right: 24px;
  background: #2563eb;
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
}

.price {
  font-size: 46px;
  font-weight: 900;
  color: #2563eb;
}

.cta {
  margin: 70px 7%;
  padding: 80px 30px;
  text-align: center;
  border-radius: 38px;
  color: white;
  background: linear-gradient(135deg, #2563eb, #0f172a);
}

.cta h2 {
  font-size: clamp(34px, 4vw, 54px);
  margin: 0 0 16px;
}

.cta p {
  color: #dbeafe;
  font-size: 20px;
  margin-bottom: 30px;
}

.primary-btn.white {
  background: white;
  color: #1d4ed8;
}

footer {
  padding: 45px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
}

.footer-brand {
  color: #0f172a;
}

@media (max-width: 980px) {
  .hero,
  .steps,
  .feature-grid,
  .pricing-grid,
  .before-after {
    grid-template-columns: 1fr;
  }

  .topbar nav a:not(.nav-btn) {
    display: none;
  }

  .hero {
    padding-top: 50px;
  }

  footer {
    flex-direction: column;
    gap: 18px;
  }
}
/*  Dashboard Css  */
.dashboard{

background:white;

border-radius:28px;

padding:30px;

box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.dash-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:25px;

}

.dash-title{

font-size:24px;

font-weight:900;

}

.online{

display:flex;

align-items:center;

gap:8px;

font-size:13px;

font-weight:800;

color:#16a34a;

}

.pulse{

width:10px;

height:10px;

border-radius:50%;

background:#22c55e;

animation:pulse 1.5s infinite;

}

@keyframes pulse{

0%{transform:scale(1);opacity:1;}

50%{transform:scale(1.6);opacity:.3;}

100%{transform:scale(1);opacity:1;}

}

.status-card{

background:#eff6ff;

padding:20px;

border-radius:18px;

margin-bottom:25px;

}

.status-title{

font-size:12px;

font-weight:800;

color:#64748b;

text-transform:uppercase;

margin-bottom:10px;

}

#statusText{

font-size:22px;

font-weight:900;

margin-bottom:18px;

}

.progress{

height:8px;

background:#dbeafe;

border-radius:999px;

overflow:hidden;

}

#progressBar{

width:0%;

height:100%;

background:#2563eb;

transition:.6s;

}

.results{

display:grid;

grid-template-columns:1fr 1fr;

gap:15px;

}

.result{

background:#f8fafc;

padding:18px;

border-radius:14px;

}

.result label{

display:block;

font-size:11px;

font-weight:800;

color:#64748b;

margin-bottom:6px;

}

.result div{

font-weight:900;

font-size:17px;

}
/* Google Drive Demo  */


.drive-demo {
  padding: 90px 7%;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center;
  background: #0f172a;
  color: white;
}

.section-label {
  color: #93c5fd;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.drive-left h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
}

.drive-left p {
  color: #cbd5e1;
  font-size: 20px;
  line-height: 1.7;
}

.drive-board {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.drive-column {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  padding: 24px;
}

.drive-column h3 {
  margin-top: 0;
  color: #dbeafe;
}

.drive-file {
  padding: 15px;
  border-radius: 14px;
  margin-bottom: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.bad-file {
  background: rgba(239,68,68,.18);
  color: #fecaca;
}

.good-file {
  background: rgba(34,197,94,.18);
  color: #bbf7d0;
}

.drive-arrow {
  font-size: 36px;
  font-weight: 900;
  color: #60a5fa;
}

@media (max-width: 980px) {
  .drive-demo,
  .drive-board {
    grid-template-columns: 1fr;
  }

  .drive-arrow {
    transform: rotate(90deg);
    text-align: center;
  }
}
