/* ============================================
   FAST SOLUTIONS INC — Website Styles
   ============================================ */

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

:root {
  --navy:       #0a1628;
  --navy-mid:   #112040;
  --navy-light: #1a2f54;
  --red:        #e82a2a;
  --red-hover:  #c51f1f;
  --white:      #ffffff;
  --off-white:  #f0f4f8;
  --muted:      #8a9bbf;
  --border:     rgba(255,255,255,0.08);
  --font:       'Inter', system-ui, sans-serif;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,0.35);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,42,42,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn-large { padding: 16px 32px; font-size: 1.05rem; }

.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3 { font-weight: 800; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.15rem; margin-bottom: 8px; }

.accent { color: var(--red); }

p { color: var(--muted); line-height: 1.7; }

/* ============ BADGES & LABELS ============ */
.badge {
  display: inline-block;
  background: rgba(232,42,42,0.15);
  color: var(--red);
  border: 1px solid rgba(232,42,42,0.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-label {
  display: inline-block;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10,22,40,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(10,22,40,0.98);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo { display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ============ HERO ============ */
.hero {
  padding: 140px 0 100px;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,42,42,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(26,47,84,0.6) 0%, transparent 50%),
              var(--navy);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-content { max-width: 560px; }

.hero-content h1 { margin-bottom: 20px; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
}

.response-badge .clock-icon { width: 28px; height: 28px; color: var(--red); flex-shrink: 0; }

.response-badge strong { display: block; font-size: 0.95rem; color: var(--white); }
.response-badge span { font-size: 0.78rem; color: var(--muted); }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.trust-item svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; }

/* ============ SECTIONS ============ */
.section { padding: 100px 0; }
.section-dark { background: var(--navy-mid); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* ============ HOW IT WORKS / STEPS ============ */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(232,42,42,0.12);
  line-height: 1;
  margin-bottom: -10px;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(232,42,42,0.12);
  border: 2px solid rgba(232,42,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon svg { width: 28px; height: 28px; color: var(--red); }

.step h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--white); }

.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(232,42,42,0.5), rgba(232,42,42,0.2));
  margin-top: 52px;
  align-self: center;
}

/* ============ FEATURES GRID ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  border-color: rgba(232,42,42,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.accent-bg { background: rgba(232,42,42,0.15); }
.feature-icon svg { width: 22px; height: 22px; color: var(--red); }

.feature-card h3 { color: var(--white); margin-bottom: 10px; }

/* ============ TWO COL ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col-content .section-label { margin-bottom: 12px; }
.two-col-content h2 { margin-bottom: 20px; }
.two-col-content p { margin-bottom: 28px; font-size: 1.05rem; }

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

.check-icon { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 2px; }

.two-col-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

/* ============ SERVICE AREA BAR ============ */
.section-accent-bar {
  padding: 64px 0;
  background: linear-gradient(135deg, rgba(232,42,42,0.12) 0%, rgba(10,22,40,1) 100%);
  border-top: 1px solid rgba(232,42,42,0.2);
  border-bottom: 1px solid rgba(232,42,42,0.2);
}

.service-area-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.service-area-inner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.service-area-inner p { margin-top: 10px; max-width: 500px; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.contact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.contact-card:hover {
  border-color: rgba(232,42,42,0.4);
  transform: translateY(-4px);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(232,42,42,0.12);
  border: 2px solid rgba(232,42,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon svg { width: 24px; height: 24px; color: var(--red); }

.contact-card h3 { color: var(--white); margin-bottom: 12px; }

.contact-link {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 6px;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--red); }

.contact-text { font-size: 0.9rem; }

/* ============ FOOTER ============ */
.footer {
  background: #060e1c;
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand { max-width: 260px; }
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}

.footer-contact a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--red); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(138,155,191,0.5); }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-card-img { max-width: 380px; }
  .hero { padding: 120px 0 80px; }

  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col-visual { grid-template-columns: repeat(4, 1fr); }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { text-align: left; }
}

@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }

  .nav-links.open + .nav-cta {
    display: none;
  }

  .hero-cta-group { flex-direction: column; }
  .btn-large { width: 100%; justify-content: center; }

  .step-connector { display: none; }
  .steps { flex-direction: column; align-items: center; }

  .two-col-visual { grid-template-columns: 1fr 1fr; }

  .service-area-inner { flex-direction: column; text-align: center; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-contact { text-align: left; }

  .trust-bar-inner { gap: 24px; justify-content: flex-start; }
}
