/* FTD AUTO AND MORE LLC - Dark theme with sky blue + emerald gradient */
:root {
  --bg: #070d14;
  --bg-soft: #0c1420;
  --bg-card: #101b2b;
  --bg-card-hover: #15233a;
  --border: rgba(148, 163, 184, 0.14);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --accent-1: #38bdf8;
  --accent-2: #10b981;
  --accent-3: #22d3ee;
  --grad: linear-gradient(135deg, #38bdf8 0%, #22d3ee 50%, #10b981 100%);
  --grad-text: linear-gradient(135deg, #38bdf8, #22d3ee, #10b981);
  --radius: 14px;
  --maxw: 1180px;
  --shadow: 0 20px 60px rgba(2, 8, 18, 0.55);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  font-size: 16px;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

a { color: var(--accent-1); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent-2); }

/* ---------- NAV ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 13, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: 0.02em;
}
.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--grad);
  color: #04101a;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--text); background: rgba(148, 163, 184, 0.08); }
.nav-links a.active { color: var(--text); background: rgba(56, 189, 248, 0.12); }
.nav-links .contact-btn {
  background: var(--grad);
  color: #04101a;
  font-weight: 700;
  margin-left: 8px;
}
.nav-links .contact-btn:hover { filter: brightness(1.1); color: #04101a; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 120px 24px 90px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(56, 189, 248, 0.18), transparent),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(16, 185, 129, 0.14), transparent),
    var(--bg);
}
.hero-content { max-width: 840px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 40px;
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: var(--accent-1);
  background: rgba(56, 189, 248, 0.08);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero p {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 32px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--grad);
  color: #04101a;
}
.btn-primary:hover { filter: brightness(1.12); transform: translateY(-2px); color: #04101a; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent-1); color: var(--accent-1); transform: translateY(-2px); }

/* ---------- STATS ---------- */
.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.stats-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 44px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stat p { color: var(--text-muted); font-size: 0.92rem; margin-top: 4px; }

/* ---------- SECTIONS ---------- */
section { padding: 76px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- FEATURES ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: inline-block;
}
.feature-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- PROCESS ---------- */
.process { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  transition: all 0.3s ease;
}
.process-step:hover { border-color: rgba(16, 185, 129, 0.4); transform: translateY(-4px); }
.step-num {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--grad);
  color: #04101a;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.process-step h4 { margin-bottom: 8px; font-size: 1.02rem; }
.process-step p { color: var(--text-muted); font-size: 0.88rem; }

/* ---------- CTA BAND ---------- */
.cta-band {
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 120%, rgba(16, 185, 129, 0.15), transparent),
    var(--bg);
  padding: 84px 24px;
}
.cta-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; margin-bottom: 12px; }
.cta-band p { color: var(--text-muted); font-size: 1.08rem; margin-bottom: 28px; }

/* ---------- PAGE BANNER ---------- */
.page-banner {
  padding: 80px 24px 52px;
  text-align: center;
  background:
    radial-gradient(ellipse 55% 60% at 50% -20%, rgba(56, 189, 248, 0.16), transparent),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-banner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.page-banner p { color: var(--text-muted); font-size: 1.08rem; max-width: 680px; margin: 0 auto; }

/* ---------- CONTENT PAGES ---------- */
.content-page { padding: 60px 24px; }
.content-container { max-width: 880px; margin: 0 auto; }
.content-section { margin-bottom: 44px; }
.content-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  position: relative;
}
.content-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 64px;
  height: 2px;
  background: var(--grad);
}
.content-section p { color: var(--text-muted); margin-bottom: 14px; }
.content-section p strong { color: var(--text); }
.content-section ul { margin: 0 0 14px 22px; color: var(--text-muted); }
.content-section ul li { margin-bottom: 8px; }

/* ---------- SERVICE DETAIL ---------- */
.service-detail-grid { display: grid; gap: 26px; margin-bottom: 56px; }
.service-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: border-color 0.3s ease;
}
.service-detail-card:hover { border-color: rgba(56, 189, 248, 0.35); }
.service-detail-card h2 { font-size: 1.35rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.service-icon { font-size: 1.5rem; }
.card-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 30px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.service-detail-card p { color: var(--text-muted); margin-bottom: 12px; }
.service-detail-card ul { color: var(--text-muted); margin: 0 0 0 20px; }
.service-detail-card ul li { margin-bottom: 6px; }

/* ---------- DELIVERY MODEL ---------- */
.delivery-model { margin-bottom: 40px; }
.delivery-model h2 { text-align: center; font-size: 1.6rem; margin-bottom: 30px; }
.delivery-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.delivery-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}
.delivery-step h4 { margin-bottom: 8px; }
.delivery-step p { color: var(--text-muted); font-size: 0.85rem; }

/* ---------- TEAM PAGE ---------- */
.team-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.team-page-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  transition: all 0.3s ease;
}
.team-page-card:hover { border-color: rgba(16, 185, 129, 0.4); transform: translateY(-4px); }
.avatar {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.team-page-card h3 { font-size: 1.02rem; margin-bottom: 4px; }
.role {
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.desc { color: var(--text-muted); font-size: 0.87rem; }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-info-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.98rem; margin-bottom: 2px; }
.contact-info-item p { color: var(--text-muted); font-size: 0.92rem; }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.contact-form h2 { margin-bottom: 22px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 0.9rem; color: var(--text-muted); font-weight: 600; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-success { margin-top: 14px; color: var(--accent-2); font-weight: 600; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 56px 24px 0;
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.92rem; margin-top: 14px; max-width: 320px; }
.footer-links h4 {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul a { color: var(--text-muted); font-size: 0.92rem; }
.footer-links ul a:hover { color: var(--accent-1); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { color: var(--text-dim); font-size: 0.86rem; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: var(--text-dim); font-size: 0.86rem; }
.footer-bottom-links a:hover { color: var(--accent-1); }

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .team-page-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .delivery-steps { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .mobile-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 14px 20px 20px;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 12px 14px; }
  .nav-links .contact-btn { margin-left: 0; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .team-page-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .delivery-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 80px 20px 60px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
}
