/* Smartquiler marketing — static landing (sites/www) */

:root {
  --sq-navy: #0b1f33;
  --sq-navy-soft: #122a42;
  --sq-teal: #14b8a6;
  --sq-teal-dim: #0d9488;
  --sq-cream: #f4f7fa;
  --sq-muted: #64748b;
  --sq-border: rgba(255, 255, 255, 0.08);
  --sq-glow: rgba(20, 184, 166, 0.35);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: #e2e8f0;
  background: var(--sq-navy);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Nav ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--sq-teal), var(--sq-teal-dim));
  color: #042f2e;
  box-shadow: 0 4px 24px var(--sq-glow);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px var(--sq-glow);
}

.btn-ghost {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid var(--sq-border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

/* ── Hero ── */
.hero {
  padding: 4rem 0 5rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.25);
  color: #5eead4;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.7s ease both;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2dd4bf;
  box-shadow: 0 0 8px #2dd4bf;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin: 0 auto 1.25rem;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #5eead4, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  color: #94a3b8;
  max-width: 42ch;
  margin: 0 auto 2.25rem;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #64748b;
  animation: fadeUp 0.7s ease 0.4s both;
}

/* ── Sections ── */
.section {
  padding: 4.5rem 0;
}

.section-light {
  background: var(--sq-cream);
  color: var(--sq-navy);
  border-radius: 2rem 2rem 0 0;
  margin-top: 2rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 0.75rem;
}

.section-sub {
  text-align: center;
  color: var(--sq-muted);
  max-width: 50ch;
  margin: 0 auto 3rem;
}

.section-light .section-sub {
  color: #475569;
}

/* ── Cards ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 1.75rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--sq-border);
  transition: border-color 0.25s, transform 0.25s;
}

.section-light .card {
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(11, 31, 51, 0.06);
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 184, 166, 0.35);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.15);
  color: #2dd4bf;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.section-light .card-icon {
  background: rgba(20, 184, 166, 0.12);
  color: var(--sq-teal-dim);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.section-light .card h3 {
  color: var(--sq-navy);
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: #94a3b8;
}

.section-light .card p {
  color: #64748b;
}

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.step {
  text-align: center;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(20, 184, 166, 0.25);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section-light .step-num {
  color: rgba(13, 148, 136, 0.2);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  color: var(--sq-navy);
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
}

/* ── Proof ── */
.proof {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, var(--sq-navy-soft), var(--sq-navy));
  border: 1px solid var(--sq-border);
}

.proof-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.proof-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  max-width: 36ch;
  margin: 0 auto 1rem;
  line-height: 1.35;
}

.proof-meta {
  font-size: 0.9rem;
  color: var(--sq-teal);
  font-weight: 600;
}

/* ── Contact ── */
.contact {
  text-align: center;
  padding-bottom: 2rem;
}

.contact a.email {
  color: var(--sq-teal-dim);
  font-weight: 600;
  text-decoration: none;
}

.contact a.email:hover {
  text-decoration: underline;
}

/* ── Footer ── */
.footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: #64748b;
}

.footer a {
  color: #475569;
  text-decoration: none;
}

.footer a:hover {
  color: var(--sq-teal-dim);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .nav-links a:not(.btn) {
    display: none;
  }

  .hero {
    padding-top: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
