/* ═══════════════════════════════════════
   White Florist — Kurumsal Çiçek Aboneliği
   ═══════════════════════════════════════ */

:root {
  interpolate-size: allow-keywords;
  --bg: #F0F4F8;
  --surface: #FFFFFF;
  --surface-2: #E8EDF3;
  --ink: #1A2B4A;
  --ink-soft: #4A5B7A;
  --accent: #0066FF;
  --accent-2: #00C2A8;
  --line: rgba(26,43,74,0.12);
  --line-strong: rgba(26,43,74,0.24);
  --header-h: 72px;
  --container-max: 1240px;
  --container-pad: clamp(1rem,3.5vw,2.5rem);
  --radius: 2px;
  --font-heading: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'Cascadia Code', monospace;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--ink); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── Skip link ── */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--accent); color: #fff; padding: 8px 18px;
  z-index: 9999; border-radius: var(--radius);
  font-weight: 600; font-size: 14px;
}
.skip-link:focus { top: 8px; }

/* ── Focus ring ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
.eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.mono-tag {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--surface);
  padding: 14px 32px; border-radius: var(--radius);
  font-family: var(--font-heading); font-weight: 700;
  font-size: 15px; letter-spacing: 0.02em;
  transition: background 240ms cubic-bezier(.4,0,.2,1),
              color 240ms cubic-bezier(.4,0,.2,1),
              transform 180ms cubic-bezier(.2,.7,.2,1),
              box-shadow 240ms cubic-bezier(.4,0,.2,1);
  position: relative;
}
.btn-primary::after {
  content: '→'; transition: transform 240ms cubic-bezier(.2,.7,.2,1);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(0,102,255,0.35);
}
.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  padding: 14px 32px; border-radius: var(--radius);
  border: 1.5px solid var(--line-strong);
  font-family: var(--font-heading); font-weight: 700;
  font-size: 15px; letter-spacing: 0.02em;
  transition: background 240ms cubic-bezier(.4,0,.2,1),
              color 240ms cubic-bezier(.4,0,.2,1),
              border-color 240ms cubic-bezier(.4,0,.2,1),
              transform 180ms cubic-bezier(.2,.7,.2,1);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(240,244,248,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 240ms ease,
              box-shadow 240ms ease,
              height 240ms ease;
}
.site-header.scrolled {
  background: #F0F4F8;
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  height: 62px;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 22px;
  color: var(--ink); white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
  z-index: 1100;
}
.logo svg { flex-shrink: 0; }
.logo span { color: var(--accent-2); }

/* ── Nav desktop ── */
.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-desktop a {
  position: relative;
  font-family: var(--font-body);
  font-weight: 500; font-size: 14px;
  color: var(--ink); padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop .nav-cta {
  background: var(--ink); color: var(--surface);
  padding: 10px 22px; border-radius: var(--radius);
  font-family: var(--font-heading); font-weight: 700;
  transition: background 240ms cubic-bezier(.4,0,.2,1),
              color 240ms cubic-bezier(.4,0,.2,1),
              transform 180ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: var(--accent); color: var(--surface);
  transform: translateY(-2px);
}

@media (max-width: 1024px) { .nav-desktop { display: none; } }

/* ── Hamburger ── */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative; z-index: 1100;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px;
  background: var(--ink);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1),
              opacity 240ms ease;
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
}

/* ── Mobile drawer ── */
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 32px 40px;
  display: flex; flex-direction: column; gap: 6px;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a {
  display: block; padding: 14px 0;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 18px; color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 240ms cubic-bezier(.4,0,.2,1),
              padding-left 240ms cubic-bezier(.4,0,.2,1);
}
.mobile-drawer a:hover,
.mobile-drawer a.is-active { color: var(--accent); padding-left: 8px; }
.mobile-drawer .nav-cta {
  margin-top: 16px;
  background: var(--ink); color: var(--surface);
  text-align: center; padding: 16px;
  border-radius: var(--radius); border-bottom: none;
}
.mobile-drawer .nav-cta:hover { background: var(--accent); color: var(--surface); }

.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0; pointer-events: none;
  transition: opacity 240ms ease;
}
.drawer-backdrop.is-visible {
  opacity: 1; pointer-events: auto;
}

/* ── Main offset ── */
main { padding-top: var(--header-h); }

/* ── Section spacing ── */
.section { padding: clamp(60px, 10vw, 120px) 0; }
.section-dark {
  background: var(--ink);
  color: var(--surface);
}
.section-dark h1, .section-dark h2, .section-dark h3,
.section-dark .eyebrow { color: var(--surface); }
.section-dark .eyebrow { color: var(--accent-2); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-header p { color: var(--ink-soft); font-size: 17px; margin-top: 12px; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: clamp(520px, 80vh, 800px);
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--surface);
}
.hero-video {
  position: absolute; inset: 0;
  background: var(--ink) url('/assets/images/hero-office.jpg') center/cover no-repeat;
  opacity: 0.35;
}
.hero-video::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,43,74,0.5) 0%, rgba(26,43,74,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
}
.hero h1 { color: var(--surface); margin-bottom: 20px; }
.hero h1 .char {
  display: inline-block;
  opacity: 0; transform: translateY(20px);
  animation: charReveal 500ms cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes charReveal {
  to { opacity: 1; transform: none; }
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.6;
}
.hero .btn-primary {
  background: var(--accent); color: var(--surface);
}
.hero .btn-primary:hover {
  background: var(--accent-2); color: var(--surface);
  box-shadow: 0 8px 28px -8px rgba(0,194,168,0.4);
}

/* hero trust strip */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 28px;
}
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-weight: 500;
  font-size: 12px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.72);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
}
.trust-badge svg { width: 14px; height: 14px; stroke: var(--accent-2); flex-shrink: 0; }

/* hero counters */
.hero-counters {
  position: absolute; bottom: 40px; right: var(--container-pad);
  display: flex; gap: 40px; z-index: 2;
}
.hero-counter {
  text-align: center;
}
.hero-counter .counter-val {
  font-family: var(--font-mono); font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--accent-2);
}
.hero-counter .counter-label {
  font-size: 12px; color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
@media (max-width: 768px) {
  .hero {
    flex-wrap: wrap;
    align-content: center;
  }
  .hero-content {
    flex-basis: 100%;
  }
  .hero > .container:not(.hero-content) {
    display: none;
  }
  .hero-counters {
    position: relative; bottom: auto; right: auto;
    margin-top: 24px; gap: 16px 32px;
    flex-wrap: wrap; justify-content: center;
    width: 100%;
  }
}

/* ── Petal drift (niche ambient animation) ── */
.petal-container {
  position: absolute; inset: 0; pointer-events: none;
  overflow: hidden; z-index: 1;
}
.petal {
  position: absolute; top: -30px;
  width: 12px; height: 12px;
  opacity: 0;
  animation: petalDrift var(--dur, 12s) var(--delay, 0s) infinite;
}
.petal svg { width: 100%; height: 100%; }
@keyframes petalDrift {
  0% { transform: translate(0, -20px) rotate(0deg) scale(0.8); opacity: 0; }
  8% { opacity: 0.55; }
  85% { opacity: 0.4; }
  100% { transform: translate(calc(var(--drift, 60px)), calc(80vh)) rotate(calc(var(--spin, 300deg))) scale(0.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .petal { display: none; }
}

/* ── Marquee ── */
.marquee-wrap {
  background: var(--ink);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 0 28px;
  flex-shrink: 0;
}
.marquee-track span::before {
  content: '✿';
  margin-right: 20px;
  color: var(--accent-2);
  opacity: 0.6;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ── Configurator ── */
.configurator {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px,5vw,48px);
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.config-steps {
  display: flex; gap: 12px;
  margin-bottom: 32px;
}
.config-step-indicator {
  flex: 1;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  transition: background 360ms cubic-bezier(.4,0,.2,1);
}
.config-step-indicator.active,
.config-step-indicator.done { background: var(--accent); }
.config-step-indicator.done { background: var(--accent-2); }

.config-panel {
  display: none;
  animation: configSlideIn 400ms cubic-bezier(.2,.7,.2,1);
}
.config-panel.active { display: block; }
@keyframes configSlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: none; }
}

.config-panel h3 {
  margin-bottom: 8px;
}
.config-panel p {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 24px;
}

.config-field label {
  display: block;
  font-weight: 500; font-size: 14px;
  margin-bottom: 8px;
  color: var(--ink-soft);
}
.config-field input[type="number"],
.config-field input[type="range"] {
  width: 100%;
}
.config-field input[type="number"] {
  padding: 12px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: var(--font-mono); font-weight: 500;
  font-size: 18px;
  background: var(--bg);
  transition: border-color 240ms cubic-bezier(.4,0,.2,1);
  color: var(--ink);
}
.config-field input[type="number"]:focus {
  border-color: var(--accent);
  outline: none;
}
.config-field input[type="range"] {
  -webkit-appearance: none;
  height: 6px;
  background: var(--line);
  border-radius: 3px;
  margin-top: 12px;
}
.config-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 50%;
  cursor: grab;
  border: 3px solid var(--surface);
  box-shadow: 0 2px 8px rgba(0,102,255,0.3);
}

/* style radio options */
.config-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.config-option {
  position: relative;
}
.config-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.config-option label {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  padding: 18px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 500; font-size: 14px;
  text-align: center;
  transition: border-color 240ms cubic-bezier(.4,0,.2,1),
              background 240ms cubic-bezier(.4,0,.2,1),
              transform 180ms cubic-bezier(.2,.7,.2,1);
}
.config-option label:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.config-option input:checked + label {
  border-color: var(--accent);
  background: rgba(0,102,255,0.06);
}
.config-option label svg {
  width: 32px; height: 32px;
  stroke: var(--accent);
}

.config-nav {
  display: flex; justify-content: space-between;
  margin-top: 32px;
  gap: 12px;
}

/* flower icon grid */
.flower-grid {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 20px;
  min-height: 40px;
}
.flower-icon {
  width: 28px; height: 28px;
  opacity: 0;
  transform: scale(0) rotate(-45deg);
  animation: bloomIn 400ms cubic-bezier(.2,.7,.2,1) forwards;
}
.flower-icon svg { width: 100%; height: 100%; }
@keyframes bloomIn {
  0% { opacity: 0; transform: scale(0) rotate(-45deg); }
  60% { transform: scale(1.15) rotate(5deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* price display */
.config-result {
  text-align: center;
  padding: 32px 0 8px;
}
.config-price {
  font-family: var(--font-mono); font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--accent);
}
.config-price-sub {
  font-size: 14px; color: var(--ink-soft);
  margin-top: 4px;
}
.config-disclaimer {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 11px; color: var(--ink-soft);
  margin-top: 12px;
  opacity: 0.7;
}

/* ── Pricing cards ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1),
              box-shadow 280ms cubic-bezier(.2,.7,.2,1),
              border-color 280ms cubic-bezier(.2,.7,.2,1);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -16px rgba(0,102,255,0.18);
  border-color: var(--accent);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(0,102,255,0.03) 0%, var(--surface) 100%);
}
.pricing-card.featured::before {
  content: 'Popüler';
  position: absolute; top: -1px; right: 20px;
  background: var(--accent); color: var(--surface);
  font-family: var(--font-mono); font-weight: 500;
  font-size: 11px; letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 0 0 var(--radius) var(--radius);
}
.pricing-card h3 { margin-bottom: 8px; }
.pricing-card .price-tag {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 28px; color: var(--accent);
  margin-bottom: 4px;
}
.pricing-card .price-period {
  font-size: 13px; color: var(--ink-soft);
  margin-bottom: 20px;
}
.pricing-card .price-list {
  margin-bottom: 20px;
}
.pricing-card .price-list li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-soft);
  display: flex; align-items: flex-start; gap: 8px;
}
.pricing-card .price-list li::before {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2300C2A8' stroke-width='1.5'%3E%3Cpath d='M3 8l3.5 3.5L13 5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.pricing-card .price-list.excluded li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%234A5B7A' stroke-width='1.5' opacity='0.5'%3E%3Cpath d='M4 4l8 8M12 4l-8 8'/%3E%3C/svg%3E");
}
.pricing-card .price-list.excluded li {
  opacity: 0.6;
}

/* ── Metric cards ── */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 430px) {
  .metrics-grid { grid-template-columns: 1fr; }
}
.metric-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1),
              box-shadow 280ms cubic-bezier(.2,.7,.2,1);
  position: relative;
  overflow: hidden;
}
.metric-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.metric-card:hover::before { transform: scaleX(1); }
.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -12px rgba(0,102,255,0.15);
}
.metric-card .metric-icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  color: var(--accent);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), color 240ms;
}
.metric-card:hover .metric-icon {
  transform: scale(1.08);
  color: var(--accent-2);
}
.metric-card .metric-val {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 28px; color: var(--accent);
  margin-bottom: 4px;
}
.metric-card .metric-label {
  font-size: 14px; color: var(--ink-soft);
}

/* ── Process timeline ── */
.timeline {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute; left: 24px; top: 0; bottom: 0;
  width: 2px;
  background: var(--line);
}
.timeline-item {
  position: relative;
  padding-left: 64px;
  padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: 14px; top: 4px;
  width: 22px; height: 22px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: var(--surface);
  z-index: 1;
  transition: background 300ms, transform 300ms;
}
.timeline-item:hover .timeline-dot {
  background: var(--accent);
  transform: scale(1.2);
}
.timeline-item .timeline-day {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 12px; color: var(--accent-2);
  margin-bottom: 4px;
}
.timeline-item h3 { font-size: 18px; margin-bottom: 8px; }
.timeline-item p { font-size: 14px; color: var(--ink-soft); }

/* stem grow decoration */
.timeline-item .stem-deco {
  position: absolute; left: 50px; top: 0;
  width: 24px; height: 60px;
  opacity: 0.15;
}
.timeline-item .stem-deco path {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  transition: stroke-dashoffset 800ms cubic-bezier(.2,.7,.2,1);
}
.timeline-item:hover .stem-deco path {
  stroke-dashoffset: 0;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.testimonials-grid .testimonial-card:first-child {
  grid-row: span 2;
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:first-child { grid-row: auto; }
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1),
              box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -12px rgba(0,0,0,0.1);
}
.testimonial-card blockquote {
  font-size: 15px; line-height: 1.7;
  color: var(--ink-soft);
  flex: 1;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}
.testimonial-card .testimonial-author {
  margin-top: 20px;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 14px; color: var(--ink);
}
.testimonial-card .testimonial-meta {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 12px; color: var(--ink-soft);
  margin-top: 2px;
}

/* logo strip */
.logo-strip {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 32px;
  margin-bottom: 48px;
  padding: 24px 0;
}
.logo-strip-item {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 16px; color: var(--ink);
  opacity: 0.55;
}
.logo-strip-item:hover { opacity: 0.9; transition: opacity 300ms; }

/* ── FAQ accordion ── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 16px; cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary .faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  transition:transform 520ms cubic-bezier(.16,1,.3,1);
  stroke: var(--ink-soft);
}
.faq-item[open] summary .faq-chevron {
  transform: rotate(180deg);
}
.faq-item .faq-body {
  height: 0;
  padding: 0 clamp(18px,3vw,28px);
  overflow: hidden;
  transition:height 520ms cubic-bezier(.16,1,.3,1),padding-block-end 520ms cubic-bezier(.16,1,.3,1);
}
.faq-item[open] .faq-body {
  height: auto;
  padding-block-end: 26px;
}
.faq-item .faq-body p {
  font-size: 15px; color: var(--ink-soft);
  line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item .faq-body { transition: none; }
}

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: clamp(48px,8vw,80px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 430px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .logo { color: var(--surface); margin-bottom: 16px; }
.footer-brand .logo span { color: var(--accent-2); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 14px; color: var(--surface);
  margin-bottom: 16px;
}
.footer-col a {
  display: block; padding: 4px 0;
  font-size: 14px; color: rgba(255,255,255,0.55);
  transition: color 240ms cubic-bezier(.4,0,.2,1), padding-left 240ms;
}
.footer-col a:hover { color: var(--accent-2); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 12px;
  font-size: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--accent-2); }

.footer-contact-line {
  font-size: 13px;
  margin-top: 12px;
}
.footer-contact-line a { color: rgba(255,255,255,0.55); }
.footer-contact-line a:hover { color: var(--accent-2); }

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 12px 40px -12px rgba(0,0,0,0.22);
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1),
              opacity 240ms;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner h3 {
  font-size: 15px;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner p a { text-decoration: underline; }
.cookie-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cookie-actions button {
  padding: 10px 18px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700; font-size: 13px;
  min-height: 44px;
  transition: background 240ms cubic-bezier(.4,0,.2,1),
              color 240ms cubic-bezier(.4,0,.2,1),
              transform 180ms cubic-bezier(.2,.7,.2,1);
}
.cookie-actions .cookie-accept {
  background: var(--accent);
  color: var(--surface);
}
.cookie-actions .cookie-accept:hover {
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-2px);
}
.cookie-actions .cookie-reject {
  background: var(--surface-2);
  color: var(--ink);
  min-height: 44px;
  border: 1.5px solid var(--line-strong);
}
.cookie-actions .cookie-reject:hover {
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-2px);
}
.cookie-actions .cookie-settings {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  min-height: 44px;
}
.cookie-actions .cookie-settings:hover {
  background: var(--surface-2);
  color: var(--ink);
  transform: translateY(-2px);
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1),
              transform 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ── Niche-specific animations ── */
/* 1. Leaf unfurl on card hover */
.leaf-deco {
  position: absolute; top: -8px; right: -8px;
  width: 32px; height: 32px;
  opacity: 0; pointer-events: none;
  transition: opacity 320ms cubic-bezier(.2,.7,.2,1),
              transform 320ms cubic-bezier(.2,.7,.2,1);
  transform: rotate(-30deg) scale(0.7);
}
.metric-card:hover .leaf-deco,
.pricing-card:hover .leaf-deco {
  opacity: 0.4;
  transform: rotate(0deg) scale(1);
}

/* 2. Stem line grow on section divider */
.section-stem {
  display: block;
  width: 2px; height: 60px;
  margin: 0 auto;
  background: var(--accent-2);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 800ms cubic-bezier(.2,.7,.2,1);
}
.section-stem.is-in { transform: scaleY(1); }

/* 3. Bloom pulse on CTA active */
@keyframes bloomPulse {
  0% { box-shadow: 0 0 0 0 rgba(0,102,255,0.35); }
  70% { box-shadow: 0 0 0 14px rgba(0,102,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,102,255,0); }
}
.btn-primary:active {
  animation: bloomPulse 500ms cubic-bezier(.2,.7,.2,1);
}

/* 4. Breathing vase in hero (cinemagraph feel) */
@keyframes vaseBreathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.02); }
}
.hero-vase-deco {
  position: absolute; bottom: 60px; left: 8%;
  width: 80px; height: 120px;
  opacity: 0.12;
  animation: vaseBreathe 8s cubic-bezier(.4,0,.2,1) infinite;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hero-vase-deco { animation: none; }
}

/* 5. Petal burst on config result */
@keyframes petalBurst {
  0% { transform: translate(0,0) rotate(0) scale(1); opacity: 1; }
  100% { transform: translate(var(--bx,40px), var(--by,-60px)) rotate(var(--br,180deg)) scale(0.3); opacity: 0; }
}
.petal-burst {
  position: absolute; pointer-events: none;
}
.petal-burst span {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50% 0;
  background: var(--accent-2);
  opacity: 0;
}
.petal-burst.fire span {
  animation: petalBurst 700ms cubic-bezier(.2,.7,.2,1) forwards;
}

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-channels { display: flex; flex-direction: column; gap: 0; }
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 12px;
  border-radius: var(--radius);
  transition: background 240ms cubic-bezier(.4,0,.2,1),
              transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-row:hover {
  background: var(--surface-2);
  transform: translateX(4px);
}
.contact-row svg {
  width: 20px; height: 20px;
  stroke: var(--ink-soft);
  flex-shrink: 0;
  margin-top: 2px;
  transition: color 240ms cubic-bezier(.4,0,.2,1),
              stroke 240ms cubic-bezier(.4,0,.2,1),
              transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-row:hover svg {
  stroke: var(--accent);
  transform: scale(1.08);
}
.contact-label {
  font-weight: 600; font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.contact-value {
  font-size: 15px;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-value a { color: var(--ink); }
.contact-value a:hover { color: var(--accent); }

/* ── Form ── */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px,4vw,40px);
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-weight: 500; font-size: 14px;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 240ms cubic-bezier(.4,0,.2,1),
              box-shadow 240ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }
.field .field-error {
  font-size: 13px; color: #D32F2F;
  margin-top: 4px; display: none;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #D32F2F;
}
.field.has-error .field-error { display: block; }

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.field-checkbox {
  display: flex; align-items: flex-start; gap: 10px;
}
.field-checkbox label {
  font-size: 13px; line-height: 1.5;
  margin-bottom: 0;
}

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

.form-success,
.form-error {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 20px;
  display: none;
}
.form-success {
  background: rgba(0,194,168,0.1);
  border: 1px solid var(--accent-2);
  color: #006B5E;
}
.form-error {
  background: rgba(211,47,47,0.08);
  border: 1px solid #D32F2F;
  color: #D32F2F;
}
.form-success.show,
.form-error.show { display: block; }

/* ── Table scroll ── */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  border-collapse: collapse; width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
th {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 13px;
  background: var(--bg);
  color: var(--ink);
}

/* ── Policy pages ── */
.policy-content {
  max-width: 780px;
  margin: 0 auto;
}
.policy-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
}
.policy-content h3 {
  margin-top: 28px;
  margin-bottom: 10px;
}
.policy-content p {
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}
.policy-content ul {
  margin-bottom: 16px;
  padding-left: 20px;
}
.policy-content ul li {
  list-style: disc;
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 6px;
  line-height: 1.65;
}

/* ── About page ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1),
              box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -16px rgba(0,102,255,0.12);
}
.team-photo {
  width: 100%; aspect-ratio: 4/5;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-size: 14px;
}
.team-info {
  padding: 24px;
}
.team-info h3 { margin-bottom: 4px; }
.team-info .team-role {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 12px; color: var(--accent);
  margin-bottom: 12px;
}
.team-info p {
  font-size: 14px; color: var(--ink-soft);
  line-height: 1.65;
}

/* ── 404 page ── */
.error-page {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.error-page h1 {
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--line);
  line-height: 1;
}
.error-page p {
  font-size: 18px; color: var(--ink-soft);
  margin: 16px 0 32px;
}

/* ── Sitemap page ── */
.sitemap-list a {
  display: block; padding: 8px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
}
.sitemap-list a:hover { padding-left: 8px; }

/* ── Parallax sub-layer ── */
.parallax-layer {
  will-change: transform;
  transition: transform 60ms linear;
}

/* ── Dot-grid decoration ── */
.dot-pattern {
  position: absolute;
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, var(--line-strong) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.4;
  pointer-events: none;
}

/* ── Section divider decoration ── */
.gold-rule {
  width: 48px; height: 2px;
  background: var(--accent-2);
  margin: 0 auto 32px;
}

/* ── Manifesto / quote block ── */
.manifesto-block {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 0;
}
.manifesto-block blockquote {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  line-height: 1.3;
  color: var(--ink);
  position: relative;
}
.manifesto-block cite {
  display: block;
  font-family: var(--font-mono); font-weight: 500;
  font-size: 13px; color: var(--ink-soft);
  font-style: normal;
  margin-top: 20px;
}

/* ── Counter animation helper ── */
.count-up { display: inline-block; }

/* ── Enhanced florist micro-effects ── */
.timeline-item:hover .timeline-dot {
  box-shadow: 0 0 0 6px rgba(0,194,168,0.15);
}
.testimonial-card blockquote {
  transition: border-color 360ms cubic-bezier(.2,.7,.2,1);
}
.testimonial-card:hover blockquote {
  border-color: var(--accent-2);
}
.faq-item summary {
  position: relative;
}
.faq-item summary::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent-2);
  transition: width 360ms cubic-bezier(.2,.7,.2,1);
}
.faq-item summary:hover::after {
  width: 40px;
}
.metric-card:hover .metric-icon {
  filter: drop-shadow(0 0 8px rgba(0,194,168,0.3));
}
.contact-row:hover svg {
  filter: drop-shadow(0 0 6px rgba(0,102,255,0.25));
}
.logo-strip-item {
  transition: opacity 300ms cubic-bezier(.2,.7,.2,1),
              transform 300ms cubic-bezier(.2,.7,.2,1);
}
.logo-strip-item:hover {
  transform: translateY(-2px);
}
.config-option input:checked + label {
  box-shadow: 0 0 0 3px rgba(0,102,255,0.08);
}
.trust-badge {
  transition: border-color 240ms cubic-bezier(.2,.7,.2,1),
              background 240ms cubic-bezier(.2,.7,.2,1);
}
.trust-badge:hover {
  border-color: rgba(0,194,168,0.4);
  background: rgba(0,194,168,0.06);
}
.section-stem {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}
.pricing-card.featured::before {
  animation: badgePulse 3s ease-in-out infinite;
}
.pricing-card:hover {
  box-shadow: 0 16px 40px -16px rgba(0,194,168,0.22);
}
.team-card:hover {
  box-shadow: 0 16px 40px -16px rgba(0,194,168,0.18);
}
.footer-col a {
  transition: color 240ms cubic-bezier(.4,0,.2,1),
              padding-left 240ms cubic-bezier(.2,.7,.2,1);
}
@media (prefers-reduced-motion: reduce) {
  .pricing-card.featured::before { animation: none; }
  .metric-card:hover .metric-icon { filter: none; }
  .contact-row:hover svg { filter: none; }
  .timeline-item:hover .timeline-dot { box-shadow: none; }
}

/* ── Drawer close button ── */
.drawer-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; line-height: 1;
  color: var(--ink); background: none; border: none; cursor: pointer;
  z-index: 1;
  transition: color 240ms cubic-bezier(.4,0,.2,1),
              transform 180ms cubic-bezier(.2,.7,.2,1);
}
.drawer-close:hover {
  color: var(--accent);
  transform: scale(1.15);
}

/* ── Scroll progress bar ── */
.scroll-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px;
  background: var(--accent-2);
  width: 0;
  z-index: 1;
  pointer-events: none;
}

/* ── Print ── */
@media print {
  .site-header, .mobile-drawer, .drawer-backdrop,
  .cookie-banner, .nav-toggle { display: none !important; }
  main { padding-top: 0 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
  .hero { min-height: auto; background: #eee; }
}
