/* ==========================================================================
   Flinova — site.css
   Design system: Blue #0B3FD1 · Orange #FA4506 · Navy #0A1023
   Headings: Space Grotesk · Body: Inter
   ========================================================================== */

:root {
  --blue: #0B3FD1;
  --blue-dark: #082C93;
  --blue-soft: #E8EEFF;
  --orange: #FA4506;
  --orange-dark: #D63700;
  --orange-soft: #FFEDE6;
  --navy: #0A1023;
  --navy-2: #111A33;
  --ink: #101828;
  --ink-2: #344054;
  --muted: #667085;
  --line: #E4E7EC;
  --bg: #FFFFFF;
  --bg-soft: #F6F8FC;
  --green: #25D366;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .08);
  --shadow: 0 8px 24px rgba(10, 16, 35, .08);
  --shadow-lg: 0 24px 48px -12px rgba(10, 16, 35, .18);
  --font-head: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
:focus-visible { outline: 3px solid rgba(11, 63, 209, .45); outline-offset: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.1rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 600; color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow svg { width: 14px; height: 14px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: var(--blue-soft); color: var(--blue); font-size: .85rem; font-weight: 600;
}

/* Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 1rem; line-height: 1; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(250, 69, 6, .28); }
.btn-orange:hover { background: var(--orange-dark); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(11, 63, 209, .25); }
.btn-blue:hover { background: var(--blue-dark); }
.btn-white { background: #fff; color: var(--blue); }
.btn-outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--ink); }
.btn-outline-light { border-color: rgba(255, 255, 255, .35); color: #fff; background: transparent; }
.btn-outline-light:hover { border-color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: .9rem; }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

/* Top bar ------------------------------------------------------------- */
.topbar { background: #EEF2FA; color: var(--ink-2); font-size: .85rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 40px; }
.topbar-left, .topbar-mid, .topbar-social { display: flex; align-items: center; gap: 22px; }
.topbar a { color: inherit; display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 15px; height: 15px; color: var(--ink); }
.topbar-social a { width: 26px; height: 26px; border-radius: 50%; justify-content: center; }
.topbar-social a:hover { background: #fff; }
@media (max-width: 900px) { .topbar-left, .topbar-mid { display: none; } .topbar .container { justify-content: center; } .topbar-social { gap: 12px; } .topbar-social .hide-m { display: none; } }

/* Header --------------------------------------------------------------- */
.header { position: sticky; top: 0; z-index: 60; background: rgba(255, 255, 255, .95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header .container { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 24px; }
.brand img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav .nav-mobile-cta { display: none; }
.nav a { color: var(--ink); font-weight: 600; font-size: .95rem; position: relative; padding: 6px 0; white-space: nowrap; }
.nav a:hover { text-decoration: none; color: var(--blue); }
.nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 3px; border-radius: 3px; background: var(--blue); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(250, 69, 6, .28); }
.header-cta .btn:hover { background: var(--orange-dark); }
.header-cta .cart-link { position: relative; display: inline-flex; width: 42px; height: 42px; border-radius: 50%; align-items: center; justify-content: center; color: var(--ink); border: 1px solid var(--line); }
.header-cta .cart-link svg { width: 20px; height: 20px; }
.cart-count { position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 10px; background: var(--orange); color: #fff; font-size: .72rem; font-weight: 700; display: none; align-items: center; justify-content: center; }
.cart-count.show { display: inline-flex; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 10px; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; }
@media (max-width: 1000px) {
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 20px 20px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav a.active::after { display: none; }
  .nav .nav-mobile-cta { display: inline-flex; margin-top: 14px; border: 0; white-space: normal; }
  .nav-toggle { display: inline-flex; }
  .header-cta .btn-getconnected { display: none; }
  .brand img { height: 40px; }
}

/* Hero ----------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: var(--navy);
  background-image:
    radial-gradient(1000px 700px at -5% 115%, rgba(250, 69, 6, .75), transparent 62%),
    radial-gradient(1000px 800px at 105% -15%, rgba(11, 63, 209, .95), transparent 62%),
    linear-gradient(180deg, #0A1023 0%, #0C1533 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .2));
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; padding: 72px 0 130px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: var(--radius-pill); background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14); font-size: .9rem; font-weight: 500; margin-bottom: 26px; }
.hero-badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); display: inline-block; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.2vw, 3.4rem); margin-bottom: 22px; line-height: 1.1; }
.hero h1 .t2 { color: var(--orange); display: block; }
.hero h1 .t1 { color: #fff; display: block; }
.hero-sub { font-size: 1.15rem; color: rgba(255, 255, 255, .82); max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; max-width: 520px; color: rgba(255, 255, 255, .9); font-size: .95rem; }
.hero-checks li { display: flex; align-items: center; gap: 10px; }
.hero-checks svg { width: 18px; height: 18px; color: #5EE3B0; flex: none; }

.quote-card { background: #fff; color: var(--ink); border-radius: 28px; padding: 36px 36px 30px; box-shadow: var(--shadow-lg); }
.quote-card h3 { font-size: 1.6rem; margin-bottom: 4px; }
.quote-card .lead { color: var(--muted); margin-bottom: 22px; font-size: .95rem; }
.form-line { display: grid; gap: 4px; }
.form-line + .form-line { margin-top: 10px; }
.form-line input, .form-line select, .form-line textarea {
  width: 100%; border: 0; border-bottom: 1.5px solid var(--line); padding: 14px 4px; background: transparent; color: var(--ink);
  transition: border-color .15s;
}
.form-line select { appearance: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23101828' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 6px center; padding-right: 30px; }
.form-line input:focus, .form-line select:focus, .form-line textarea:focus { outline: none; border-color: var(--blue); }
.form-line label { font-size: .8rem; color: var(--muted); }
.quote-card .btn { margin-top: 22px; }
.form-note { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .82rem; color: var(--muted); margin-top: 14px; flex-wrap: wrap; }
.form-note a { color: var(--orange); font-weight: 600; }
.form-note svg { width: 14px; height: 14px; }
.form-msg { margin-top: 12px; font-size: .9rem; border-radius: 10px; padding: 10px 14px; display: none; }
.form-msg.ok { display: block; background: #ECFDF3; color: #027A48; }
.form-msg.err { display: block; background: #FEF3F2; color: #B42318; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; gap: 36px; padding: 48px 0 110px; }
  .quote-card { padding: 28px 22px 24px; border-radius: 22px; }
  .hero-checks { grid-template-columns: 1fr; }
}

/* Marquee + stats ----------------------------------------------------- */
.marquee-wrap { background: var(--navy); background-image: linear-gradient(90deg, rgba(250,69,6,.25), transparent 40%, rgba(11,63,209,.35)); color: rgba(255, 255, 255, .8); overflow: hidden; padding: 22px 0 96px; margin-top: -60px; position: relative; }
.marquee { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee ul { display: flex; gap: 0; }
.marquee li { display: flex; align-items: center; gap: 38px; padding: 0 22px; font-size: .95rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; white-space: nowrap; }
.marquee li::after { content: "✦"; color: var(--orange); letter-spacing: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; } }

.stats { position: relative; margin-top: -80px; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: #fff; border-radius: 22px; box-shadow: var(--shadow-lg); overflow: hidden; }
.stat { padding: 40px 20px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--orange); font-weight: 700; line-height: 1; margin-bottom: 12px; }
.stat span { font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); font-weight: 500; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: 1fr; } .stat { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 20px; } .stat:last-child { border-bottom: 0; } }

/* Dashboard demo ------------------------------------------------------- */
.demo-switch { display: inline-flex; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 4px; margin: 0 auto 28px; gap: 4px; }
.demo-switch button { border: 0; background: transparent; padding: 8px 18px; border-radius: var(--radius-pill); font-weight: 600; color: var(--muted); }
.demo-switch button.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.demo-panel { display: none; }
.demo-panel.active { display: block; }

.dash { background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); overflow: hidden; }
.dash-top { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid var(--line); gap: 16px; flex-wrap: wrap; }
.dash-biz { display: flex; align-items: center; gap: 12px; }
.dash-biz .ico { width: 40px; height: 40px; border-radius: 12px; background: var(--orange-soft); color: var(--orange); display: grid; place-items: center; }
.dash-biz .ico svg { width: 20px; height: 20px; }
.dash-biz b { display: block; font-family: var(--font-head); }
.dash-biz span { font-size: .85rem; color: var(--muted); }
.dash-live { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--ink-2); }
.dash-live i { width: 8px; height: 8px; border-radius: 50%; background: #12B76A; box-shadow: 0 0 0 4px rgba(18, 183, 106, .18); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 0 rgba(18, 183, 106, .1); } }
.dash-body { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; }
.dash-col { padding: 22px 24px; }
.dash-col + .dash-col { border-left: 1px solid var(--line); background: var(--bg-soft); }
.dash-col-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.dash-col-head b { font-family: var(--font-head); font-size: 1.05rem; }
.tag { display: inline-flex; padding: 3px 10px; border-radius: var(--radius-pill); font-size: .75rem; font-weight: 600; }
.tag-green { background: #ECFDF3; color: #027A48; }
.tag-blue { background: var(--blue-soft); color: var(--blue); }
.tag-orange { background: var(--orange-soft); color: var(--orange-dark); }
.feed { height: 380px; overflow: hidden; display: flex; flex-direction: column; gap: 10px; position: relative; }
.feed::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 60px; background: linear-gradient(transparent, #fff); pointer-events: none; }
.feed-item { border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; background: #fff; font-size: .9rem; animation: feedin .4s ease both; }
.feed-item .fi-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.feed-item .fi-head b { display: flex; align-items: center; gap: 8px; }
.feed-item .fi-head span { font-size: .75rem; color: var(--muted); }
.feed-item p { margin: 0; color: var(--ink-2); font-size: .88rem; }
.feed-item.order { border-color: #A6F4C5; background: #F6FEF9; }
.feed-item.lead { border-color: #B2CCFF; background: #F5F8FF; }
.feed-item.booking { border-color: #FEC8A0; background: #FFF8F3; }
.feed-item.visit { border-color: var(--line); }
@keyframes feedin { from { opacity: 0; transform: translateY(-8px); } }
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.kpi { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; }
.kpi span { font-size: .75rem; color: var(--muted); display: block; }
.kpi b { font-family: var(--font-head); font-size: 1.35rem; display: block; }
.kpi small { color: #027A48; font-weight: 600; font-size: .75rem; }
.bars { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px; margin-bottom: 16px; }
.bars h5 { margin: 0 0 10px; font-size: .85rem; font-weight: 600; }
.bar { display: grid; grid-template-columns: 110px 1fr 46px; align-items: center; gap: 10px; font-size: .82rem; margin: 6px 0; }
.bar i { height: 8px; border-radius: 4px; background: var(--line); display: block; overflow: hidden; }
.bar i::after { content: ""; display: block; height: 100%; width: var(--w, 50%); background: linear-gradient(90deg, var(--blue), var(--orange)); border-radius: 4px; transition: width 1s ease; }
.bar em { font-style: normal; text-align: right; color: var(--muted); }
.quick { display: grid; gap: 8px; }
.quick .btn { padding: 11px; font-size: .9rem; border-radius: 10px; }
.dash-foot { padding: 12px 24px; border-top: 1px solid var(--line); font-size: .82rem; color: var(--muted); text-align: center; }
.shots { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.shot { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; }
.shot .ph { aspect-ratio: 16/10; background: repeating-linear-gradient(135deg, #F2F4F7 0 12px, #E9ECF3 12px 24px); display: grid; place-items: center; color: var(--muted); font-size: .85rem; text-align: center; padding: 20px; }
.shot figcaption { padding: 12px 16px; font-size: .9rem; font-weight: 600; }
@media (max-width: 860px) { .dash-body { grid-template-columns: 1fr; } .dash-col + .dash-col { border-left: 0; border-top: 1px solid var(--line); } .feed { height: 300px; } .kpis { grid-template-columns: 1fr 1fr; } }

/* Growth support cards ------------------------------------------------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 30px 28px; }
.card .ico { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; margin-bottom: 20px; }
.card .ico.orange { background: var(--orange-soft); color: var(--orange); }
.card .ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.25rem; }
.card p { color: var(--ink-2); margin: 0; }
.card ul { margin-top: 14px; display: grid; gap: 8px; color: var(--ink-2); font-size: .93rem; }
.card ul li { display: flex; gap: 8px; }
.card ul li::before { content: "✓"; color: var(--orange); font-weight: 700; }
@media (max-width: 900px) { .cards-3 { grid-template-columns: 1fr; } }

/* Monetization tabs (SuperProfile-style) ------------------------------ */
.mono-head { text-align: center; margin-bottom: 30px; }
.mono-head .script { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; font-size: clamp(2.4rem, 4.6vw, 3.4rem); line-height: 1; display: block; letter-spacing: -.01em; }
.mono-head .plain { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.3rem, 2.4vw, 1.75rem); display: block; margin-top: 6px; }
.tabs { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; }
.tabs button { border: 0; background: transparent; padding: 8px 16px; border-radius: var(--radius-pill); font-weight: 600; color: var(--muted); font-size: .98rem; }
.tabs button.active { color: var(--ink); background: var(--bg-soft); }
.slider { position: relative; }
.track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 20px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.track::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 min(100%, 860px); scroll-snap-align: center; border-radius: 26px; color: #fff; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; min-height: 360px; padding: 44px 44px 44px 48px; overflow: hidden; transition: opacity .3s; }
.slide.dim { opacity: .55; }
.slide h3 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.slide p { color: rgba(255, 255, 255, .88); max-width: 380px; }
.slide .btn { background: #fff; color: var(--ink); align-self: start; }
.slide-text { display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.slide-text .btn { margin-top: 10px; }
.slide-art { border-radius: 18px; background: rgba(255, 255, 255, .14); display: grid; place-items: center; padding: 20px; }
.bg-green { background: linear-gradient(135deg, #0B4A5C, #147A8C); }
.bg-blue { background: linear-gradient(135deg, #1B2E7A, #5236C7); }
.bg-orange { background: linear-gradient(135deg, #C2410C, #FA4506); }
.bg-plum { background: linear-gradient(135deg, #8A1152, #D6247A); }
.slider-nav { display: flex; justify-content: center; gap: 10px; margin-top: 4px; }
.slider-nav button { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; }
.slider-nav svg { width: 18px; height: 18px; }
/* mini phone mock inside slides */
.phone { width: 190px; background: #111; border-radius: 26px; padding: 10px; box-shadow: 0 20px 40px rgba(0, 0, 0, .3); }
.phone .scr { background: #fff; border-radius: 18px; padding: 14px 12px; color: var(--ink); font-size: .68rem; min-height: 250px; display: grid; gap: 8px; align-content: start; }
.phone .scr b { font-size: .8rem; font-family: var(--font-head); }
.phone .row { background: var(--bg-soft); border-radius: 8px; padding: 8px; display: flex; justify-content: space-between; }
.phone .cta { background: var(--ink); color: #fff; border-radius: 8px; padding: 8px; text-align: center; font-weight: 600; }
.phone .cta.wa { background: var(--green); }
.phone .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.phone .grid i { display: block; aspect-ratio: 1; border-radius: 6px; background: var(--blue-soft); }
.phone .grid i:nth-child(2) { background: var(--orange-soft); }
.phone .grid i:nth-child(3) { background: #ECFDF3; }
.phone .slot { border: 1px solid var(--line); border-radius: 6px; padding: 6px; text-align: center; }
.phone .slot.on { background: var(--blue); color: #fff; border-color: var(--blue); }
@media (max-width: 760px) {
  .slide { grid-template-columns: 1fr; padding: 24px; min-height: 0; }
  .slide-art { order: -1; padding: 20px 12px; }
  .slide p { max-width: none; }
  .track { gap: 16px; }
  .slide { flex-basis: 92%; }
}

/* Solution consoles — original Flinova layout ------------------------- */
.solution-section { padding-top: 104px; }
.kit-section { background: #F7F8FC; }
.solution-console { max-width: 1180px; }
.console-intro { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(260px, .65fr); align-items: end; gap: 48px; margin: 0 0 36px; }
.eyebrow { display: inline-block; margin-bottom: 12px; color: var(--blue); font-family: var(--font-head); font-size: .72rem; font-weight: 700; letter-spacing: .13em; }
.console-intro h2 { margin: 0; max-width: 630px; font-size: clamp(2.35rem, 4.6vw, 4.35rem); line-height: .98; letter-spacing: -.055em; }
.console-intro h2 em { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; letter-spacing: -.025em; }
.console-intro p { margin: 0 0 5px; color: var(--muted); font-size: 1.02rem; line-height: 1.65; }
.console-shell { display: grid; grid-template-columns: 282px minmax(0, 1fr); border: 1px solid #D9DDEA; border-radius: 24px; overflow: hidden; background: #fff; box-shadow: 0 20px 65px rgba(16, 27, 63, .08); }
.console-tabs { display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; margin: 0; padding: 25px 16px; background: #F4F6FB; border-right: 1px solid #D9DDEA; }
.console-kicker { padding: 0 11px 16px; color: #68738B; font-family: var(--font-head); font-size: .7rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.console-tabs button { width: 100%; display: grid; grid-template-columns: 28px minmax(0, 1fr) 17px; gap: 9px; align-items: start; padding: 13px 11px; border: 0; border-radius: 12px; background: transparent; color: #556078; font: inherit; text-align: left; cursor: pointer; transition: background .2s, color .2s, transform .2s; }
.console-tabs button:hover { background: #EAEDF7; color: var(--ink); }
.console-tabs button.active { background: var(--ink); color: #fff; box-shadow: 0 10px 20px rgba(10, 16, 35, .16); }
.console-tabs button b { color: #8B95AB; font-family: var(--font-head); font-size: .72rem; line-height: 1.8; }
.console-tabs button.active b { color: #A8BBFF; }
.console-tabs button span { min-width: 0; font-family: var(--font-head); font-size: .9rem; font-weight: 600; line-height: 1.2; }
.console-tabs button small { display: block; margin-top: 4px; color: #7A8499; font-family: var(--font-body); font-size: .72rem; font-weight: 400; line-height: 1.32; }
.console-tabs button.active small { color: #C6D0E9; }
.console-tabs button i { font-style: normal; font-size: .88rem; line-height: 1.35; opacity: 0; transition: opacity .2s; }
.console-tabs button.active i { opacity: 1; }
.console-slider { position: relative; min-width: 0; background: #0A1023; }
.console-slider .track { gap: 0; padding: 0; }
.console-slide { position: relative; isolation: isolate; flex: 0 0 100%; scroll-snap-align: start; display: grid; grid-template-columns: minmax(0, 1fr) minmax(295px, .78fr); gap: 30px; min-height: 484px; padding: 55px 54px 52px; border-radius: 0; color: #fff; overflow: hidden; transition: opacity .3s; }
.console-slide::before { content: ""; position: absolute; z-index: -1; width: 480px; height: 480px; right: -195px; bottom: -265px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); box-shadow: 0 0 0 55px rgba(255,255,255,.04), 0 0 0 110px rgba(255,255,255,.025); }
.console-slide.dim { opacity: .62; }
.tone-teal { background: linear-gradient(125deg, #042E39 0%, #075E66 100%); }
.tone-coral { background: linear-gradient(125deg, #6A251C 0%, #D65A32 100%); }
.tone-indigo { background: linear-gradient(125deg, #17265C 0%, #4759AA 100%); }
.tone-plum { background: linear-gradient(125deg, #561541 0%, #B5306E 100%); }
.tone-berry { background: linear-gradient(125deg, #4A173F 0%, #963E70 100%); }
.tone-navy { background: linear-gradient(125deg, #10233C 0%, #235071 100%); }
.tone-forest { background: linear-gradient(125deg, #123B36 0%, #2D7162 100%); }
.console-slide .slide-text { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 0; }
.slide-label { margin-bottom: 17px; color: rgba(255,255,255,.69); font-family: var(--font-head); font-size: .73rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.console-slide h3 { max-width: 430px; margin: 0; color: #fff; font-size: clamp(2rem, 3.1vw, 3rem); line-height: 1; letter-spacing: -.045em; }
.console-slide p { max-width: 420px; margin: 17px 0 0; color: rgba(255,255,255,.84); font-size: .98rem; line-height: 1.68; }
.slide-foot { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.console-slide .btn { padding: 13px 18px; background: #fff; color: var(--ink); }
.console-slide .btn span { margin-left: 8px; font-size: 1.1em; }
.slide-foot > span { color: rgba(255,255,255,.64); font-size: .74rem; }
.console-slide .slide-art { position: relative; display: grid; place-items: center; min-width: 0; order: 0; border-radius: 17px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16); padding: 22px; }
.mini-site { width: min(100%, 300px); color: #17203A; background: #FCFCFE; border: 7px solid rgba(255,255,255,.92); border-radius: 9px; box-shadow: 0 20px 34px rgba(0,0,0,.24); overflow: hidden; transform: rotate(2deg); }
.mini-top { display: flex; align-items: center; gap: 4px; height: 30px; padding: 0 10px; border-bottom: 1px solid #E5E8F1; background: #F7F8FB; font-size: .46rem; letter-spacing: .08em; }
.mini-top span { width: 5px; height: 5px; border-radius: 50%; background: #C8CFDE; }
.mini-top b { margin-left: 5px; font-size: .49rem; }
.mini-cover, .event-poster, .book-cover, .product-image { position: relative; min-height: 136px; margin: 11px; padding: 16px; overflow: hidden; }
.mini-cover { display: flex; align-items: end; gap: 13px; background: #D5E6DD; }
.mini-cover::after { content: ""; position: absolute; right: -10px; top: -45px; width: 145px; height: 145px; border: 18px solid #5B9A92; border-radius: 50%; opacity: .7; }
.mini-cover span { z-index: 1; color: #1D635C; font-family: var(--font-head); font-size: 4rem; font-weight: 700; line-height: .75; letter-spacing: -.08em; }
.mini-cover em { z-index: 1; font-family: 'Instrument Serif', Georgia, serif; font-size: 1.1rem; line-height: .92; }
.mini-info { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 0 13px 11px; font-size: .63rem; }
.mini-info b, .mini-info strong { display: block; font-family: var(--font-head); font-size: .7rem; }
.mini-info small { display: block; margin-top: 3px; color: #778196; font-size: .57rem; }
.mini-action { display: flex; justify-content: space-between; align-items: center; margin: 0 11px 11px; padding: 10px 11px; border-radius: 4px; background: #151D34; color: #fff; font-family: var(--font-head); font-size: .62rem; font-weight: 600; }
.cart-site { transform: rotate(-2deg); }
.cart-title, .booking-title, .brief-heading { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 13px 9px; font-size: .67rem; }
.cart-title b, .booking-title b, .brief-heading b { font-family: var(--font-head); font-size: .82rem; }
.cart-title span, .booking-title span, .brief-heading span { color: #778196; font-size: .58rem; }
.cart-row { display: flex; justify-content: space-between; gap: 9px; margin: 0 11px 6px; padding: 8px; border-radius: 4px; background: #F4F5F8; font-size: .58rem; }
.cart-row b { font-size: .59rem; }
.wa-action { background: #167B5E; }
.calendar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; padding: 8px 12px 14px; }
.calendar span { padding: 8px 2px; border: 1px solid #D8DDEA; border-radius: 3px; color: #667086; font-size: .57rem; text-align: center; }
.calendar .chosen { border-color: #465FC4; background: #465FC4; color: #fff; }
.event-site { transform: rotate(2deg); }
.event-poster { display: flex; flex-direction: column; justify-content: space-between; background: #F7D2DE; color: #642249; }
.event-poster::after { content: ""; position: absolute; width: 115px; height: 115px; right: -32px; bottom: -32px; border-radius: 50%; background: #C95484; }
.event-poster small, .event-poster span { z-index: 1; font-family: var(--font-head); font-size: .51rem; letter-spacing: .1em; }
.event-poster b { z-index: 1; font-family: 'Instrument Serif', Georgia, serif; font-size: 2.1rem; line-height: .72; }
.author-site { transform: rotate(-2deg); }
.book-cover { display: flex; flex-direction: column; justify-content: space-between; background: #E8C7DB; color: #561743; }
.book-cover::after { content: ""; position: absolute; top: -25px; right: 18px; width: 60px; height: 60px; border: 2px solid #98628A; border-radius: 50%; box-shadow: 13px 7px 0 -1px #E8C7DB; }
.book-cover small { font-size: .5rem; letter-spacing: .14em; }
.book-cover b { font-family: 'Instrument Serif', Georgia, serif; font-size: 2.35rem; font-weight: 400; line-height: .62; }
.book-cover span { font-size: .56rem; }
.brief-site { transform: rotate(2deg); }
.brief-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; padding: 5px 11px 13px; }
.brief-grid span { padding: 9px; background: #F1F5F7; color: #748195; font-size: .55rem; }
.brief-grid b { display: block; margin-top: 3px; color: #182B42; font-family: var(--font-head); font-size: .68rem; }
.product-image { display: flex; flex-direction: column; justify-content: flex-end; background: #D8E6D3; color: #275348; }
.product-image::after { content: ""; position: absolute; top: 15px; right: 30px; width: 55px; height: 72px; border-radius: 50% 50% 42% 42%; background: #3D7564; box-shadow: 0 6px 0 -2px #E8F0E3, 0 13px 0 -4px #3D7564; }
.product-image span { position: absolute; top: 13px; left: 13px; font-size: .49rem; font-weight: 700; letter-spacing: .1em; }
.product-image b { font-family: 'Instrument Serif', Georgia, serif; font-size: 2.35rem; font-weight: 400; line-height: .65; }
.console-slider .slider-nav { display: flex; gap: 7px; position: absolute; right: 23px; bottom: 21px; z-index: 2; margin: 0; }
.console-slider .slider-nav button { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: transparent; color: #fff; display: grid; place-items: center; }
.console-slider .slider-nav button:hover { background: #fff; color: var(--ink); }
.console-slider .slider-nav svg { width: 16px; height: 16px; }
.kit-console .eyebrow { color: #A23870; }
.kit-console .console-tabs button.active { background: #6B2758; }
@media (max-width: 840px) { .console-intro { grid-template-columns: 1fr; gap: 17px; } .console-shell { grid-template-columns: 1fr; overflow: visible; border-radius: 18px; } .console-tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 13px; border-right: 0; border-bottom: 1px solid #D9DDEA; } .console-kicker { grid-column: 1 / -1; padding: 0 7px 10px; } .console-tabs button { grid-template-columns: 22px minmax(0, 1fr); padding: 10px 8px; } .console-tabs button i { display: none; } .console-tabs button small { display: none; } .console-slide { min-height: 430px; padding: 40px 36px 55px; } }
@media (max-width: 600px) { .solution-section { padding-top: 74px; } .console-intro h2 { font-size: 2.55rem; } .console-tabs { grid-template-columns: 1fr; } .console-slide { grid-template-columns: 1fr; gap: 25px; min-height: 0; padding: 34px 22px 59px; } .console-slide h3 { font-size: 2.2rem; } .console-slide p { font-size: .92rem; } .console-slide .slide-art { min-height: 290px; padding: 19px; } .mini-site { width: 278px; } .console-slider .slider-nav { right: 17px; bottom: 16px; } }

/* Workflow diagram ----------------------------------------------------- */
.workflow { background: linear-gradient(165deg, #FFF3EA 0%, #FFDFC2 100%); position: relative; overflow: hidden; }
.workflow::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .6;
  background-image: radial-gradient(650px 340px at 6% 0%, rgba(11, 63, 209, .08), transparent 60%), radial-gradient(650px 340px at 100% 100%, rgba(250, 69, 6, .1), transparent 60%);
}
.workflow .container { position: relative; }
.workflow .section-head h2 { font-family: var(--font-head); }
.workflow .section-head h2 em { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; }
.flow { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; align-items: center; margin: 0 auto 60px; max-width: 1040px; }
.flow-col { display: flex; flex-direction: column; align-items: center; gap: 14px; position: relative; padding: 20px 10px; }
.flow-col .node { background: #fff; border: 1px solid #B8C6F8; color: var(--ink); border-radius: var(--radius-pill); padding: 12px 26px; font-weight: 600; font-size: .98rem; box-shadow: var(--shadow-sm); min-width: 220px; text-align: center; }
.flow-col .cap { font-size: .85rem; color: #4B5B8C; margin-top: 4px; text-align: center; }
.flow-col.mid .node { border-color: var(--blue); }
.flow-col.right .node { border-color: #FEC8A0; }
.flow-line { position: absolute; top: 50%; height: 2px; background: #8CA3F2; width: 40px; }
.flow-col.left .flow-line { right: -20px; }
.flow-col.mid .flow-line { right: -20px; }
.flow-col.mid::before, .flow-col.right::before { content: ""; position: absolute; left: -22px; top: 25%; bottom: 25%; width: 2px; background: #8CA3F2; border-radius: 2px; }
.flow-col.right::before { top: 12%; bottom: 12%; }
.flow-col.mid::before { top: 22%; bottom: 22%; }
.flow-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; max-width: 1040px; margin: 0 auto; }
.flow-bottom h3 { font-size: 1.5rem; }
.flow-bottom p { color: #33416B; margin: 0; }
.flow-stat { background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%); color: #fff; border-radius: 22px; padding: 30px 34px; display: flex; align-items: center; gap: 26px; box-shadow: var(--shadow-lg); }
.flow-stat b { font-family: var(--font-head); font-size: clamp(3rem, 6vw, 4.6rem); line-height: 1; letter-spacing: -.03em; }
.flow-stat span { font-weight: 600; font-size: 1.05rem; }
@media (max-width: 860px) {
  .flow { grid-template-columns: 1fr; gap: 6px; }
  .flow-col::before, .flow-line { display: none !important; }
  .flow-col { padding: 14px 0; }
  .flow-col .cap { order: -1; background: #fff; border-radius: 10px; padding: 8px 16px; width: 100%; max-width: 360px; margin: 0 0 8px; font-weight: 600; color: var(--ink-2); }
  .flow-col .node { width: 100%; max-width: 360px; }
  .flow-bottom { grid-template-columns: 1fr; }
  .flow-stat { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* Growth loop — original Flinova workflow layout ---------------------- */
.workflow { background: #EEF3F5; }
.workflow::before { opacity: 1; background-image: radial-gradient(560px 300px at 4% 0%, rgba(32, 113, 127, .12), transparent 63%), radial-gradient(590px 330px at 100% 100%, rgba(244, 118, 67, .12), transparent 62%); }
.workflow-heading { display: grid; grid-template-columns: minmax(0, .9fr) minmax(280px, .7fr); gap: 45px; align-items: end; max-width: 1060px; margin: 0 auto 36px; }
.workflow-heading .eyebrow { margin-bottom: 11px; color: #2A7481; }
.workflow-heading h2 { margin: 0; font-size: clamp(2.35rem, 4.4vw, 4.15rem); line-height: .98; letter-spacing: -.055em; }
.workflow-heading h2 em { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; letter-spacing: -.025em; }
.workflow-heading p { margin: 0 0 4px; color: #52626B; font-size: 1rem; line-height: 1.65; }
.growth-loop { max-width: 1060px; margin: 0 auto 42px; overflow: hidden; border: 1px solid #D5E0E2; border-radius: 20px; background: #fff; box-shadow: 0 18px 50px rgba(24, 58, 67, .09); }
.loop-step { display: grid; grid-template-columns: 88px minmax(250px, 1.25fr) minmax(250px, .9fr); gap: 28px; align-items: center; padding: 29px 34px; border-bottom: 1px solid #E3EAEB; }
.loop-step:last-of-type { border-bottom: 0; }
.capture-step { background: linear-gradient(90deg, #F7FBFB 0%, #FFFFFF 57%); }
.nurture-step { background: linear-gradient(90deg, #FAFAFE 0%, #FFFFFF 57%); }
.convert-step { background: linear-gradient(90deg, #FFF9F6 0%, #FFFFFF 57%); }
.step-count { display: flex; flex-direction: column; gap: 12px; color: #2A7481; font-family: var(--font-head); font-weight: 700; }
.step-count span { font-size: 2rem; letter-spacing: -.06em; line-height: 1; }
.step-count i { display: block; width: 38px; height: 3px; background: currentColor; }
.nurture-step .step-count { color: #4C5AA8; }
.convert-step .step-count { color: #D25B3D; }
.step-copy .step-label { display: block; margin-bottom: 7px; color: #77858C; font-family: var(--font-head); font-size: .67rem; font-weight: 700; letter-spacing: .12em; }
.step-copy h3 { margin: 0; color: var(--ink); font-size: 1.28rem; letter-spacing: -.025em; }
.step-copy p { margin: 7px 0 0; color: #5B6A71; font-size: .88rem; line-height: 1.52; }
.tool-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
.tool-list span { display: flex; min-height: 43px; align-items: center; padding: 8px 11px; border-left: 3px solid #6FAFAD; background: #F0F7F6; color: #285E62; font-family: var(--font-head); font-size: .75rem; font-weight: 600; line-height: 1.25; }
.nurture-step .tool-list span { border-color: #8391D3; background: #F1F3FC; color: #44528C; }
.convert-step .tool-list span { border-color: #E59177; background: #FFF1EB; color: #9A472E; }
.loop-result { display: flex; align-items: center; gap: 16px; padding: 21px 34px; background: #102A32; color: #fff; }
.result-dot { flex: 0 0 auto; width: 11px; height: 11px; border-radius: 50%; background: #69D4BD; box-shadow: 0 0 0 5px rgba(105,212,189,.15); }
.loop-result small { display: block; margin-bottom: 4px; color: #9BB5B5; font-family: var(--font-head); font-size: .64rem; font-weight: 700; letter-spacing: .13em; }
.loop-result strong { font-family: var(--font-head); font-size: .96rem; font-weight: 600; }
.loop-result b { margin-left: auto; color: #69D4BD; font-size: 1.3rem; }
.workflow .flow-bottom { max-width: 1060px; gap: 58px; }
.workflow .flow-bottom h3 { max-width: 470px; font-size: 1.58rem; line-height: 1.12; }
.workflow .flow-bottom p { max-width: 520px; color: #465A62; }
.workflow .flow-stat { border-radius: 14px; background: #fff; color: var(--ink); border: 1px solid #D5E0E2; box-shadow: none; padding: 25px 27px; }
.workflow .flow-stat b { color: #D25B3D; }
.workflow .flow-stat span { font-size: .98rem; }
@media (max-width: 860px) { .workflow-heading { grid-template-columns: 1fr; gap: 15px; } .loop-step { grid-template-columns: 68px minmax(0, 1fr); gap: 18px; padding: 25px 22px; } .tool-list { grid-column: 2; } .workflow .flow-bottom { gap: 30px; } }
@media (max-width: 540px) { .workflow-heading h2 { font-size: 2.55rem; } .growth-loop { border-radius: 14px; } .loop-step { grid-template-columns: 53px minmax(0, 1fr); gap: 12px; padding: 23px 16px; } .step-count span { font-size: 1.55rem; } .step-count i { width: 27px; } .step-copy h3 { font-size: 1.13rem; } .step-copy p { font-size: .82rem; } .tool-list { grid-template-columns: 1fr; gap: 6px; } .tool-list span { min-height: 38px; font-size: .72rem; } .loop-result { align-items: flex-start; padding: 19px 16px; } .loop-result strong { font-size: .87rem; line-height: 1.35; } .workflow .flow-stat { padding: 21px; } }

/* Visual pipeline — concise workflow overview ------------------------- */
.workflow { background: linear-gradient(155deg, #FFF6F0 0%, #FDE5D2 100%); }
.workflow::before { background-image: radial-gradient(440px 270px at 3% 10%, rgba(55, 92, 180, .08), transparent 65%), radial-gradient(510px 310px at 100% 85%, rgba(217, 89, 52, .08), transparent 65%); }
.workflow-heading { display: block; max-width: 760px; margin: 0 auto 42px; text-align: center; }
.workflow-heading .eyebrow { display: none; }
.workflow-heading h2 { font-family: var(--font-head); font-size: clamp(2.25rem, 4.2vw, 3.5rem); }
.pipeline { display: grid; grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr) 48px minmax(0, 1fr); align-items: center; max-width: 1080px; margin: 0 auto 58px; }
.pipeline-stage { position: relative; min-height: 276px; padding: 25px 23px 20px; overflow: hidden; border: 1px solid rgba(29, 49, 80, .12); border-radius: 18px; background: rgba(255,255,255,.88); box-shadow: 0 14px 30px rgba(77, 51, 36, .09); }
.pipeline-stage::after { content: ""; position: absolute; right: -22px; top: -22px; width: 80px; height: 80px; border: 16px solid currentColor; border-radius: 50%; opacity: .09; }
.stage-capture { color: #24717B; transform: translateY(20px); }
.stage-nurture { color: #3E54A8; transform: translateY(-15px); }
.stage-convert { color: #C6543A; transform: translateY(20px); }
.stage-meta { display: flex; align-items: center; gap: 9px; margin-bottom: 17px; font-family: var(--font-head); font-weight: 700; }
.stage-meta b { display: grid; width: 29px; height: 29px; place-items: center; background: currentColor; color: #fff; font-size: .7rem; }
.stage-meta span { font-size: .68rem; letter-spacing: .14em; }
.pipeline-stage h3 { margin: 0 0 15px; color: var(--ink); font-size: 1.45rem; letter-spacing: -.035em; }
.pipeline-tools { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
.stage-capture .pipeline-tools { grid-template-columns: 1fr; gap: 5px; }
.stage-capture .pipeline-tools span { min-height: 35px; }
.pipeline-tools span { display: flex; align-items: center; min-height: 42px; padding: 8px 10px; border: 1px solid currentColor; background: rgba(255,255,255,.65); color: #27384C; font-family: var(--font-head); font-size: .72rem; font-weight: 600; line-height: 1.28; }
.pipeline-stage > p { position: absolute; right: 23px; bottom: 18px; left: 23px; margin: 0; padding-top: 13px; border-top: 1px solid rgba(29, 49, 80, .13); color: #4C5D69; font-size: .78rem; line-height: 1.3; }
.pipeline-arrow { display: grid; place-items: center; width: 32px; height: 32px; justify-self: center; border: 1px solid #C9A794; border-radius: 50%; background: #FFF9F5; color: #5F647A; font-family: var(--font-head); font-size: 1.1rem; }
.workflow .flow-bottom { max-width: 1040px; margin: 0 auto; gap: 48px; }
.workflow .flow-bottom h3 { max-width: 480px; }
.workflow .flow-stat { border: 0; border-radius: 18px; background: linear-gradient(115deg, #263FCA 0%, #6A4A8E 48%, #EC400F 100%); color: #fff; box-shadow: 0 15px 25px rgba(82, 44, 68, .14); }
.workflow .flow-stat b { color: #fff; }
@media (max-width: 880px) { .pipeline { grid-template-columns: 1fr; gap: 13px; max-width: 520px; } .pipeline-stage, .stage-capture, .stage-nurture, .stage-convert { transform: none; } .pipeline-arrow { transform: rotate(90deg); } }
@media (max-width: 540px) { .workflow-heading { margin-bottom: 30px; } .pipeline { margin-bottom: 40px; } .pipeline-stage { min-height: 0; padding: 21px 17px 63px; } .pipeline-stage > p { right: 17px; bottom: 17px; left: 17px; } .pipeline-tools span { min-height: 39px; font-size: .7rem; } }

/* Portfolio ------------------------------------------------------------ */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work { border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.work img, .work .ph { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.work .ph { background: linear-gradient(135deg, var(--blue-soft), #fff); display: grid; place-items: center; color: var(--muted); font-size: .9rem; }
.work-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.work-body h3 { margin: 4px 0 0; font-size: 1.15rem; }
.work-body p { color: var(--ink-2); font-size: .95rem; margin: 0; flex: 1; }
.work-body .tags { font-size: .82rem; color: var(--muted); }
.work-body .link { color: var(--orange); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.work-body .link svg { width: 14px; height: 14px; }
@media (max-width: 900px) { .work-grid { grid-template-columns: 1fr; } }

/* Pricing -------------------------------------------------------------- */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1000px; margin: 0 auto; }
.plan { position: relative; border: 1px solid var(--line); border-radius: 22px; padding: 34px 32px; background: #fff; display: flex; flex-direction: column; }
.plan.featured { border: 2px solid var(--orange); }
.plan .ribbon { position: absolute; top: -16px; left: 28px; background: var(--orange); color: #fff; font-size: .78rem; font-weight: 700; padding: 6px 14px; border-radius: var(--radius-pill); }
.plan h3 { font-size: 1.25rem; margin-bottom: 4px; }
.plan .desc { color: var(--muted); font-size: .95rem; margin-bottom: 20px; }
.plan .price { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 22px; }
.plan ul { display: grid; gap: 12px; margin-bottom: 32px; flex: 1; }
.plan li { display: flex; gap: 10px; font-size: .95rem; color: var(--ink-2); }
.plan li svg { width: 16px; height: 16px; color: var(--orange); flex: none; margin-top: 4px; }
.price-note { max-width: 1000px; margin: 22px auto 0; background: var(--blue-soft); color: var(--blue-dark); padding: 14px 20px; border-radius: 12px; font-size: .92rem; }
@media (max-width: 820px) { .price-grid { grid-template-columns: 1fr; } }

/* Kits ---------------------------------------------------------------- */
.kit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.kit { border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.kit-art { aspect-ratio: 16/10; display: grid; place-items: center; padding: 24px; color: #fff; }
.kit-art .phone { transform: scale(.85); }
.kit-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.kit-body h3 { font-size: 1.15rem; margin: 0; }
.kit-body p { color: var(--ink-2); font-size: .95rem; margin: 0; flex: 1; }
.kit-price { display: flex; gap: 14px; font-size: .9rem; color: var(--muted); }
.kit-price b { color: var(--ink); }
.kit-body .btn { align-self: flex-start; margin-top: 6px; }
@media (max-width: 900px) { .kit-grid { grid-template-columns: 1fr; } }

/* FAQ ------------------------------------------------------------------ */
.faq-wrap { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq { border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-weight: 500; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 18px; height: 18px; flex: none; transition: transform .2s; }
.faq[open] summary svg { transform: rotate(180deg); }
.faq .faq-a { padding: 0 22px 20px; color: var(--ink-2); font-size: .95rem; }
.faq-mail { text-align: center; margin-top: 28px; color: var(--ink-2); font-size: .95rem; display: flex; justify-content: center; align-items: center; gap: 8px; }
.faq-mail svg { width: 18px; height: 18px; }

/* Big CTA -------------------------------------------------------------- */
.cta-big { background: linear-gradient(120deg, #1E5BFF 0%, var(--blue) 40%, #5A2EBE 100%); color: #fff; text-align: center; padding: 96px 0; }
.cta-big h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); max-width: 760px; margin: 0 auto 18px; }
.cta-big h2 .u { border-bottom: 4px solid rgba(255, 255, 255, .35); color: #9EC1FF; }
.cta-big p { max-width: 640px; margin: 0 auto 32px; color: rgba(255, 255, 255, .9); font-size: 1.1rem; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.cta-actions .btn { border-radius: 12px; }
.cta-trust { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; font-size: .88rem; color: rgba(255, 255, 255, .85); }
.cta-trust li { display: flex; align-items: center; gap: 8px; }
.cta-trust svg { width: 16px; height: 16px; }

/* Footer --------------------------------------------------------------- */
.footer { background: var(--navy); color: #C9D0E3; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.3fr; gap: 40px; padding: 72px 0 40px; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 18px; }
.footer ul { display: grid; gap: 12px; font-size: .92rem; }
.footer a { color: #C9D0E3; }
.footer a:hover { color: #fff; }
.footer-brand img { height: 30px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: .92rem; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .18); display: grid; place-items: center; }
.footer-social svg { width: 16px; height: 16px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--orange); flex: none; margin-top: 4px; }
.footer-form { margin-top: 40px; max-width: 320px; }
.footer-form h4 { margin-bottom: 14px; }
.footer-form input, .footer-form textarea { width: 100%; background: #111A33; border: 1px solid rgba(255, 255, 255, .1); color: #fff; border-radius: 10px; padding: 12px 14px; margin-bottom: 10px; font-size: .92rem; }
.footer-form textarea { min-height: 88px; resize: vertical; }
.footer-form input::placeholder, .footer-form textarea::placeholder { color: #6E7A9C; }
.footer-form .btn { border-radius: 10px; width: 100%; background: var(--orange); color: #fff; padding: 13px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .85rem; }
.footer-bottom ul { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-mark { font-family: var(--font-head); font-weight: 700; font-size: clamp(6rem, 22vw, 20rem); line-height: .8; color: rgba(255, 255, 255, .04); text-align: center; margin: 20px 0 -0.14em; letter-spacing: -.04em; user-select: none; pointer-events: none; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-top: 50px; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* Floating buttons ----------------------------------------------------- */
.float { position: fixed; right: 22px; bottom: 22px; z-index: 70; display: flex; flex-direction: column; gap: 12px; }
.float a { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 12px 30px rgba(0, 0, 0, .25); }
.float a svg { width: 28px; height: 28px; }
.float .wa { background: var(--green); animation: waPulse 2.4s infinite; }
.float .call { background: var(--orange); }
.float .call svg { width: 22px; height: 22px; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); } 70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
@media (prefers-reduced-motion: reduce) { .float .wa { animation: none; } }

/* Popup ---------------------------------------------------------------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(10, 16, 35, .6); backdrop-filter: blur(3px); }
.modal.open { display: flex; }
.modal-box { background: #fff; border-radius: 22px; width: min(100%, 440px); padding: 34px 30px 26px; position: relative; text-align: center; box-shadow: var(--shadow-lg); animation: pop .25s ease; }
@keyframes pop { from { transform: scale(.95); opacity: 0; } }
.modal-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; border: 0; background: var(--bg-soft); display: grid; place-items: center; }
.modal-close svg { width: 16px; height: 16px; }
.modal-ico { width: 56px; height: 56px; border-radius: 16px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; margin: 0 auto 16px; }
.modal-ico svg { width: 26px; height: 26px; }
.modal-box h3 { font-size: 1.35rem; }
.modal-box .lead { color: var(--ink-2); font-size: .92rem; margin-bottom: 18px; }
.modal-box .lead b { color: var(--ink); }
.modal-box input, .modal-box select { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; margin-bottom: 10px; }
.modal-box .btn { border-radius: 10px; width: 100%; }
.modal-box .tiny { font-size: .78rem; color: var(--muted); margin-top: 10px; display: flex; justify-content: center; gap: 6px; align-items: center; }
.modal-box .tiny svg { width: 13px; height: 13px; color: #12B76A; }
.modal-box .later { display: block; margin-top: 12px; font-size: .82rem; color: var(--muted); text-decoration: underline; background: none; border: 0; }

/* Inner pages ---------------------------------------------------------- */
.page-hero { background: var(--navy); color: #fff; padding: 64px 0; background-image: radial-gradient(700px 400px at 100% 0%, rgba(11, 63, 209, .6), transparent 60%), radial-gradient(600px 400px at 0% 100%, rgba(250, 69, 6, .4), transparent 60%); }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255, 255, 255, .82); max-width: 680px; font-size: 1.1rem; }
.crumbs { font-size: .85rem; color: rgba(255, 255, 255, .7); margin-bottom: 18px; }
.crumbs a { color: rgba(255, 255, 255, .85); }
.prose { max-width: 800px; }
.prose h2 { font-size: 1.5rem; margin-top: 2em; }
.prose h3 { font-size: 1.15rem; margin-top: 1.6em; }
.prose ul { list-style: disc; padding-left: 22px; display: grid; gap: 6px; margin-bottom: 1em; }
.prose p, .prose li { color: var(--ink-2); }
.legal-updated { font-size: .85rem; color: var(--muted); }

/* Kit detail ----------------------------------------------------------- */
.kit-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.kit-hero .kit-art { border-radius: 24px; aspect-ratio: 4/3; }
.kit-bullets { display: grid; gap: 10px; margin-top: 18px; }
.kit-bullets li { display: flex; gap: 10px; color: rgba(255, 255, 255, .9); }
.buy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: -40px auto 0; position: relative; z-index: 2; }
.buy { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 8px; }
.buy.hl { border: 2px solid var(--orange); }
.buy h3 { margin: 0; font-size: 1.15rem; }
.buy .sub { color: var(--muted); font-size: .9rem; }
.buy .price { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; margin: 6px 0 10px; }
.buy .btn { margin-top: auto; border-radius: 12px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; margin-bottom: 12px; }
.qty button { width: 38px; height: 38px; border: 0; background: var(--bg-soft); font-size: 1.1rem; }
.qty span { width: 44px; text-align: center; font-weight: 600; }
.kit-nav { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 28px; margin-top: 48px; font-weight: 600; }
@media (max-width: 860px) { .kit-hero .container { grid-template-columns: 1fr; } .buy-grid { grid-template-columns: 1fr; margin-top: 24px; } }

/* Cart / checkout ------------------------------------------------------ */
.cart-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; }
.cart-items { border: 1px solid var(--line); border-radius: 18px; background: #fff; overflow: hidden; }
.cart-row { display: grid; grid-template-columns: 1fr auto auto auto; align-items: center; gap: 16px; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.cart-row:last-child { border-bottom: 0; }
.cart-row h4 { margin: 0; }
.cart-row small { color: var(--muted); }
.cart-row .rm { border: 0; background: none; color: var(--muted); text-decoration: underline; font-size: .85rem; }
.cart-empty { padding: 48px 22px; text-align: center; color: var(--muted); }
.checkout { border: 1px solid var(--line); border-radius: 18px; background: #fff; padding: 26px; position: sticky; top: 110px; }
.checkout input { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; margin-bottom: 12px; }
.checkout label { font-size: .85rem; font-weight: 600; display: block; margin-bottom: 6px; }
.totals { display: flex; justify-content: space-between; font-weight: 600; padding: 14px 0; border-top: 1px solid var(--line); margin: 6px 0 16px; font-size: 1.1rem; }
.success { max-width: 620px; margin: 0 auto; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 44px 32px; }
.success .ico { width: 70px; height: 70px; border-radius: 50%; background: #ECFDF3; color: #12B76A; display: grid; place-items: center; margin: 0 auto 20px; }
.success .ico svg { width: 36px; height: 36px; }
.downloads { display: grid; gap: 10px; margin: 24px 0; text-align: left; }
.downloads a { display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; font-weight: 600; }
@media (max-width: 860px) { .cart-layout { grid-template-columns: 1fr; } .checkout { position: static; } .cart-row { grid-template-columns: 1fr auto; } }

/* Contact page --------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 32px; }
.contact-card input, .contact-card select, .contact-card textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; margin-bottom: 12px; }
.contact-card textarea { min-height: 120px; }
.contact-card label { font-size: .85rem; font-weight: 600; display: block; margin-bottom: 6px; }
.contact-info li { display: flex; gap: 12px; margin-bottom: 18px; align-items: flex-start; }
.contact-info svg { width: 20px; height: 20px; color: var(--orange); flex: none; margin-top: 3px; }
.contact-info b { display: block; }
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 8px; margin: 12px 0 16px; }
.slots button { border: 1px solid var(--line); background: #fff; border-radius: 10px; padding: 10px; font-weight: 600; font-size: .9rem; }
.slots button.on { background: var(--blue); color: #fff; border-color: var(--blue); }
.slots button[disabled] { opacity: .35; cursor: not-allowed; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 800px) { .grid-2 { grid-template-columns: 1fr; } }
.center { text-align: center; }
.mt-32 { margin-top: 32px; }
.muted { color: var(--muted); }
