/* Floriplus marketing landing – floriplus.online */

:root {
  --accent: #e11d48;
  --accent-dark: #be123c;
  --ink: #0f172a;
  --muted: #64748b;
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --card: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --radius: 14px;
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  z-index: 1000;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #2e7da6 0deg 90deg,
    #c2451a 90deg 180deg,
    #243b4a 180deg 270deg,
    #d4a017 270deg 360deg
  );
  mask: radial-gradient(circle at 50% 50%, transparent 38%, #000 39%);
  -webkit-mask: radial-gradient(circle at 50% 50%, transparent 38%, #000 39%);
}

.logo-text .logo-dot {
  color: var(--accent);
}

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

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
}

.nav a:hover {
  color: var(--accent);
}

.nav-muted {
  color: var(--muted) !important;
}

.nav-muted:hover {
  color: var(--accent) !important;
}

.btn-nav {
  margin-left: 0.25rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: #fff;
}

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

.btn-block {
  width: 100%;
}

.btn-on-dark {
  background: #fff;
  color: var(--accent-dark);
}

.btn-on-dark:hover {
  background: var(--bg-alt);
  color: var(--accent-dark);
}

/* Hero */
.hero {
  padding: 3.5rem 0 4.5rem;
  background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(225, 29, 72, 0.12), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
  }
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

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

.lead {
  font-size: 1.125rem;
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 36rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.trust-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
}

.trust-row li {
  position: relative;
  padding-left: 1.25rem;
}

.trust-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

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

.hero-card {
  width: 100%;
  max-width: 380px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #fafafa 0%, #f1f5f9 100%);
  border-bottom: 1px solid var(--border);
}

.pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.pill-success {
  background: rgba(21, 128, 61, 0.12);
  color: #15803d;
}

.mono {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--muted);
  font-size: 0.875rem;
}

.hero-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mock-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.9375rem;
}

.mock-label {
  color: var(--muted);
  font-weight: 600;
}

.mock-value {
  font-weight: 700;
  color: var(--ink);
}

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

.section-alt {
  background: var(--bg-alt);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 auto 1rem;
  max-width: 32rem;
}

.section-intro {
  text-align: center;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  font-size: 1.0625rem;
}

.section-intro.left {
  text-align: left;
  margin-left: 0;
  max-width: 40rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 700px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(225, 29, 72, 0.25);
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 800;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9875rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.split .section-title {
  text-align: left;
  margin-left: 0;
  max-width: none;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  font-weight: 600;
}

.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.fine-print {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 1.5rem 0 0;
  line-height: 1.5;
}

.highlight-box {
  background: var(--ink);
  color: #e2e8f0;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.highlight-title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.highlight-box p {
  margin: 0 0 1.5rem;
  color: #94a3b8;
  font-size: 0.9875rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

.audience-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.audience-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 800;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, #9f1239 100%);
  color: #fff;
  padding: 3.5rem 0;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-text {
  margin: 0;
  max-width: 36rem;
  opacity: 0.95;
  font-size: 1rem;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-tagline {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-links {
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-links a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-sep {
  margin: 0 0.35rem;
}

.footer-sep-wide {
  display: none;
}

@media (min-width: 640px) {
  .footer-sep-wide {
    display: inline;
  }
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0;
  justify-content: flex-end;
  max-width: 100%;
}

.footer-legal {
  display: inline;
}

.hero-access-hint {
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 38rem;
  line-height: 1.55;
}

.hero-access-hint strong {
  color: var(--ink);
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .access-grid {
    grid-template-columns: 1fr;
  }
}

.access-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.access-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 800;
}

.access-card p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.9875rem;
}

.access-card-accent {
  border-color: rgba(225, 29, 72, 0.35);
  background: linear-gradient(180deg, #fff 0%, rgba(225, 29, 72, 0.04) 100%);
}

.cta-actions-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

.btn-ghost-light {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff !important;
}

/* Legal subpages */
.legal-page {
  padding: 2.5rem 1rem 4rem;
  max-width: 720px;
}

.legal-page h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.legal-lead {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 2rem;
}

.legal-block {
  margin-bottom: 2rem;
}

.legal-block h2 {
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
}

.legal-block p,
.legal-block li {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink);
}

.legal-block p {
  margin: 0 0 0.75rem;
}

.legal-list {
  margin: 0;
  padding-left: 1.25rem;
}

.legal-list li {
  margin-bottom: 0.35rem;
}

.legal-note {
  font-size: 0.8125rem !important;
  color: var(--muted) !important;
  font-style: italic;
}

.legal-back {
  margin-top: 2.5rem;
  font-weight: 700;
}

.legal-back a {
  color: var(--accent);
  text-decoration: none;
}

.legal-back a:hover {
  text-decoration: underline;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.legal-table th,
.legal-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.legal-table th {
  background: var(--bg-alt);
  font-weight: 700;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.nav-legal {
  margin-left: auto;
}

@media (max-width: 768px) {
  .nav-legal {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    flex-direction: row;
    padding: 0;
    border: none;
    box-shadow: none;
    gap: 1rem;
  }

  .header-inner:has(.nav-legal) .menu-toggle {
    display: none;
  }
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    inset: 4rem 0 auto 0;
    background: #fff;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .btn-nav {
    margin-left: 0;
    width: 100%;
  }

  .menu-toggle {
    display: flex;
  }
}
