/* ==========================================================================
   Cloudkaro — "Bright Work" design system
   Inspired by the bold, colorful, playful language of modern work-platform
   sites (monday.com and similar): white canvas, big rounded sans-serif
   headlines, and a deliberate multi-color "rainbow" palette used across
   icons, avatars, and stats — not just one or two accent hues.
   This is an original design; no logos, illustrations, or copy were copied
   from any other site.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #FFFFFF;
  --bg-elevated: #F8F9FC;
  --surface: #FFFFFF;
  --surface-2: #F5F6FB;
  --border: rgba(26,26,26,0.09);
  --border-strong: rgba(26,26,26,0.16);
  --ink: #1A1A1A;
  --ink-muted: #5F6169;
  --ink-faint: #9496A1;

  /* Rainbow palette — used deliberately across feature icons, avatars,
     stats and chips so different elements get their own identity color,
     the way status/priority colors work in an actual work tool. */
  --c-coral: #FF4D6D;
  --c-orange: #FF8A3D;
  --c-yellow: #FFC93C;
  --c-green: #00C875;
  --c-blue: #2E7DE1;
  --c-purple: #8B5CF6;

  --accent1: #8B5CF6;      /* purple — default icon/link accent */
  --accent2: #2E7DE1;      /* blue */
  --accent3: #FF8A3D;      /* orange — hierarchy highlight */
  --success: #00C875;
  --success-tint: rgba(0,200,117,0.1);
  --danger: #E5484D;
  --danger-tint: rgba(229,72,77,0.08);

  --gradient: linear-gradient(135deg, #FF4D6D, #FF8A3D);
  --gradient-text: linear-gradient(100deg, #FF4D6D, #8B5CF6);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(26,26,26,0.06);
  --shadow-md: 0 10px 26px rgba(26,26,26,0.09);
  --shadow-lg: 0 26px 60px rgba(26,26,26,0.13);
  --shadow-glow: 0 0 0 1px rgba(255,77,109,0.18), 0 10px 28px rgba(255,77,109,0.16);

  --ease: cubic-bezier(.22,1,.36,1);
  --ease-snap: cubic-bezier(.4,0,.2,1);
  --ease-settle: cubic-bezier(.16,1,.3,1);
  --dur-fast: .15s;
  --dur: .25s;
  --dur-slow: .5s;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.12;
}
a { color: inherit; text-decoration: none; }
.mono { font-family: 'JetBrains Mono', monospace; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; }

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

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,77,109,0.22), 0 0 0 1.5px var(--c-coral);
  border-radius: 4px;
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px;
  border-radius: 100px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-snap), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.97); }
.btn-gradient { background: var(--gradient); color: #fff; }
.btn-gradient:hover { box-shadow: 0 12px 26px rgba(255,77,109,0.35); }
.btn-ghost { background: var(--surface-2); color: var(--ink); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--bg-elevated); border-color: var(--ink-faint); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--c-coral); color: var(--c-coral); }
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 40px; padding: 16px 32px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 20px; }
.brand-mark {
  width: 30px; height: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  flex-shrink: 0;
}
.brand-mark span { border-radius: 4px; }
.brand-mark span:nth-child(1) { background: var(--c-coral); }
.brand-mark span:nth-child(2) { background: var(--c-orange); }
.brand-mark span:nth-child(3) { background: var(--c-blue); }
.brand-mark span:nth-child(4) { background: var(--c-purple); }
.nav-links { display: flex; gap: 32px; flex: 1; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--ink-muted); transition: color var(--dur) var(--ease); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -19px; height: 3px;
  border-radius: 2px;
  background: var(--gradient);
}
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-cta .btn-outline { display: inline-flex; }
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 22px; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.hamburger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(255,255,255,0.99);
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column;
  padding: 24px 32px;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-settle);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 50px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav-links a { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 30px; font-weight: 800; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--ink); }
.mobile-nav-foot { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }
.close-x { background: none; border: none; color: var(--ink); font-size: 28px; cursor: pointer; line-height: 1; padding: 6px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 84px 0 66px; overflow: hidden; }
.hero .glow.g1 { width: 460px; height: 460px; top: -200px; left: -160px; background: var(--c-coral); opacity: 0.16; }
.hero .glow.g2 { width: 420px; height: 420px; bottom: -180px; right: -140px; background: var(--c-blue); opacity: 0.14; }
.hero .glow.g3 { width: 300px; height: 300px; top: 30%; right: 8%; background: var(--c-yellow); opacity: 0.18; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px; font-weight: 500;
  color: #C2185B;
  background: rgba(255,77,109,0.08);
  border: 1px solid rgba(255,77,109,0.24);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--c-coral); box-shadow: 0 0 8px var(--c-coral); }
.hero h1 { font-size: clamp(38px, 4.8vw, 60px); margin-bottom: 22px; }
.hero-sub { font-size: 18px; color: var(--ink-muted); max-width: 500px; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-fineprint { font-size: 13px; color: var(--ink-faint); display: flex; align-items: center; gap: 8px; }
.hero-fineprint b { color: var(--ink-muted); }

/* ---------- Hierarchy chain visual ---------- */
.chain-wrap { position: relative; z-index: 1; }
.chain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.chain-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--c-coral), var(--c-orange), var(--c-yellow), var(--c-green), var(--c-blue), var(--c-purple));
}
.chain-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; padding-top: 6px; }
.chain-head span { font-family: 'JetBrains Mono', monospace; font-size: 11.5px; color: var(--ink-faint); }
.chain-badge { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 4px 10px; border-radius: 100px; background: rgba(255,138,61,0.12); color: #B4530E; border: 1px solid rgba(255,138,61,0.3); }

.chain-list { display: flex; flex-direction: column; align-items: center; position: relative; }
.chain-node {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: 100px;
  padding: 8px 16px 8px 8px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  width: 100%;
  max-width: 260px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur) var(--ease);
  animation: node-in .6s var(--ease-settle) backwards;
}
.chain-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.chain-node .lvl { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; font-weight: 500; color: var(--ink-faint); }
.chain-connector { width: 2px; height: 22px; background: linear-gradient(180deg, var(--c-coral), var(--c-purple)); border-radius: 2px; position: relative; margin: 0 auto; }
.chain-connector .pulse {
  position: absolute; left: 50%; top: -3px; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-yellow); box-shadow: 0 0 10px var(--c-yellow);
  animation: travel 2.4s linear infinite;
}
.chain-more {
  margin-top: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-faint);
  display: flex; align-items: center; gap: 8px;
}
.chain-more::before, .chain-more::after { content: ''; width: 24px; height: 1px; background: var(--border-strong); }

@keyframes node-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes travel { from { top: -3px; } to { top: calc(100% - 3px); } }

.float-chip {
  position: absolute;
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: var(--shadow-md);
  font-size: 12.5px;
  font-weight: 600;
  display: flex; align-items: center; gap: 9px;
  animation: float 5s var(--ease) infinite;
  z-index: 2;
}
.float-chip.chat { top: -6%; right: -8%; animation-delay: .3s; }
.float-chip.cal { bottom: 4%; left: -10%; animation-delay: 1.1s; }
.float-chip .fc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-green); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- Trust strip ---------- */
.trust { padding: 34px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 26px; }
.trust-item { display: flex; flex-direction: column; gap: 3px; }
.trust-item .num { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 30px; }
.trust-item .num.n-coral { color: var(--c-coral); }
.trust-item .num.n-blue { color: var(--c-blue); }
.trust-item .num.n-green { color: var(--c-green); }
.trust-item .num.n-purple { color: var(--c-purple); }
.trust-item .lbl { font-size: 12.5px; color: var(--ink-faint); }

/* ---------- Sections ---------- */
.section { padding: 92px 0; position: relative; }
.section-alt { background: var(--surface-2); }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow { font-family:'JetBrains Mono',monospace; font-size: 12.5px; color: #C2185B; font-weight: 500; margin-bottom: 12px; display:block; }
.section-head h2 { font-size: clamp(30px, 3.4vw, 42px); margin-bottom: 16px; }
.section-head p { color: var(--ink-muted); font-size: 17px; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* ---------- Feature bento ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.feature-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-settle);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.feature-card.hero-feature { grid-column: span 3; grid-row: span 2; }
.feature-card.big { grid-column: span 3; }
.feature-card.small { grid-column: span 2; }
.feature-icon {
  width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: rgba(139,92,246,0.12);
  color: var(--c-purple);
}
.feature-icon.ic-cyan { background: rgba(46,125,225,0.12); color: var(--c-blue); }
.feature-icon.ic-amber { background: rgba(255,138,61,0.14); color: #B4530E; }
.feature-icon.ic-green { background: rgba(0,200,117,0.12); color: #08965B; }
.feature-icon.ic-pink { background: rgba(255,77,109,0.12); color: var(--c-coral); }
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 19px; margin-bottom: 10px; font-weight: 700; }
.feature-card p { color: var(--ink-muted); font-size: 14.5px; line-height: 1.65; }

.mini-chain { margin-top: 22px; display: flex; flex-direction: column; gap: 0; }
.mini-chain-row { display: flex; align-items: center; gap: 10px; padding: 7px 0; }
.mini-chain-row .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.mini-chain-row .line { flex: 1; height: 1px; background: var(--border-strong); }
.mini-chain-row .tag { font-family: 'JetBrains Mono',monospace; font-size: 10.5px; color: var(--ink-faint); }
.mini-chain-indent-1 { padding-left: 18px; }
.mini-chain-indent-2 { padding-left: 36px; }

/* ---------- How it works / process ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { position: relative; padding: 28px 24px; border: 1.5px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 800;
  color: #fff;
  background: var(--gradient);
  width: 36px; height: 36px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step:nth-child(2) .step-num { background: linear-gradient(135deg, var(--c-blue), var(--c-purple)); }
.step:nth-child(3) .step-num { background: linear-gradient(135deg, var(--c-green), var(--c-blue)); }
.step h3 { font-size: 18px; margin-bottom: 8px; font-weight: 700; }
.step p { color: var(--ink-muted); font-size: 14.5px; }

/* ---------- Use cases ---------- */
.usecase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.usecase-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  border-top: 4px solid var(--c-coral);
}
.usecase-card:nth-child(2) { border-top-color: var(--c-orange); }
.usecase-card:nth-child(3) { border-top-color: var(--c-blue); }
.usecase-card:nth-child(4) { border-top-color: var(--c-purple); }
.usecase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.usecase-tag {
  display: inline-block; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500;
  color: var(--ink-muted); background: var(--surface-2); padding: 4px 10px; border-radius: 100px; margin-bottom: 14px;
}
.usecase-card h3 { font-size: 16.5px; margin-bottom: 8px; font-weight: 700; }
.usecase-card p { color: var(--ink-muted); font-size: 13.5px; }

/* ---------- Comparison table ---------- */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); }
.compare-table { width: 100%; border-collapse: collapse; background: var(--surface); min-width: 620px; }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.compare-table thead th { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-faint); font-weight: 700; background: var(--surface-2); }
.compare-table thead th.hl { color: var(--c-coral); }
.compare-table tbody td:first-child { color: var(--ink); font-weight: 600; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--surface-2); }
.compare-icon { width: 18px; height: 18px; }
.compare-icon.yes { color: var(--c-green); }
.compare-icon.no { color: var(--ink-faint); opacity: 0.5; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.testimonial-quote-mark { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 44px; font-weight: 800; color: var(--c-coral); opacity: 0.3; line-height: 1; margin-bottom: 4px; }
.testimonial-card p.quote { font-size: 15px; color: var(--ink); line-height: 1.65; margin-bottom: 22px; }
.testimonial-foot { display: flex; align-items: center; gap: 11px; }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.testimonial-foot strong { display: block; font-size: 13.5px; }
.testimonial-foot span { font-size: 12px; color: var(--ink-faint); }

/* ---------- FAQ (native details/summary accordion) ---------- */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.faq-item .faq-icon::before, .faq-item .faq-icon::after {
  content: ''; position: absolute; background: var(--ink-muted); transition: opacity var(--dur) var(--ease);
}
.faq-item .faq-icon::before { width: 10px; height: 2px; border-radius: 2px; }
.faq-item .faq-icon::after { width: 2px; height: 10px; border-radius: 2px; }
.faq-item[open] .faq-icon { border-color: var(--c-coral); background: rgba(255,77,109,0.08); }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after { background: var(--c-coral); }
.faq-item[open] .faq-icon::after { opacity: 0; }
.faq-item p.faq-answer { color: var(--ink-muted); font-size: 14.5px; padding: 0 4px 24px; max-width: 620px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.featured {
  border: 2px solid transparent;
  background: linear-gradient(var(--surface), var(--surface)) padding-box, var(--gradient) border-box;
  box-shadow: var(--shadow-glow);
}
.price-tag {
  position: absolute; top: -14px; left: 28px;
  background: var(--gradient); color: #fff;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em;
  padding: 6px 14px; border-radius: 100px;
}
.price-card h3 { font-size: 14px; color: var(--ink-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px; font-family: 'Inter',sans-serif; }
.price-amount { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 42px; font-weight: 800; margin-bottom: 6px; }
.price-amount span { font-size: 14px; color: var(--ink-faint); font-weight: 500; font-family: 'Inter',sans-serif; }
.price-desc { color: var(--ink-muted); font-size: 13.5px; margin-bottom: 26px; }
.price-list { list-style: none; margin-bottom: 28px; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin-bottom: 13px; color: var(--ink); }
.price-list svg { width: 16px; height: 16px; color: var(--c-green); flex-shrink: 0; margin-top: 2px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 64px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band .glow.gc1 { width: 380px; height: 380px; background: var(--c-coral); opacity: 0.35; top: -160px; left: -60px; }
.cta-band .glow.gc2 { width: 320px; height: 320px; background: var(--c-purple); opacity: 0.3; bottom: -140px; right: -40px; }
.cta-band h2 { color: #fff; font-size: clamp(28px,3.2vw,38px); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-band p { color: rgba(255,255,255,0.7); margin-bottom: 30px; font-size: 16.5px; position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }

/* ---------- Footer ---------- */
footer { padding: 56px 0 44px; border-top: 1px solid var(--border); }
.foot-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.foot-brand p { color: var(--ink-faint); font-size: 13.5px; max-width: 280px; margin-top: 14px; }
.foot-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.foot-col h4 { font-family: 'Plus Jakarta Sans',sans-serif; font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-faint); margin-bottom: 16px; }
.foot-col a { display: block; font-size: 14px; color: var(--ink-muted); margin-bottom: 11px; }
.foot-col a:hover { color: var(--ink); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 26px; border-top: 1px solid var(--border); }
.foot-copy { font-size: 12.5px; color: var(--ink-faint); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 54px; align-items: start; }
.contact-info-card {
  background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; margin-bottom: 16px;
  border-left: 4px solid var(--c-coral);
}
.contact-info-card:nth-of-type(2) { border-left-color: var(--c-blue); }
.contact-info-card:nth-of-type(3) { border-left-color: var(--c-purple); }
.contact-info-card h3 { font-size: 16px; margin-bottom: 6px; font-weight: 700; }
.contact-info-card p { color: var(--ink-muted); font-size: 14px; }
.contact-form { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 13px; font-weight: 700; color: var(--ink-muted); margin-bottom: 7px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  font-family: inherit;
  font-size: 14.5px;
  padding: 12px 14px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  color: var(--ink);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-field textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--c-coral); box-shadow: 0 0 0 3px rgba(255,77,109,0.14);
}
.form-alert {
  padding: 14px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.form-alert.success { background: var(--success-tint); color: #08965B; border: 1px solid rgba(0,200,117,0.3); }
.form-alert.error { background: var(--danger-tint); color: var(--danger); border: 1px solid rgba(229,72,77,0.3); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .chain-wrap { max-width: 440px; margin: 0 auto; }
  .nav-links, .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .feature-card.hero-feature { grid-column: span 4; grid-row: span 1; }
  .feature-card.big { grid-column: span 4; }
  .feature-card.small { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-inner { justify-content: space-between; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; }
  .hero { padding: 50px 0 40px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .feature-card.hero-feature, .feature-card.big, .feature-card.small { grid-column: span 2; }
  .steps { grid-template-columns: 1fr; }
  .usecase-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .cta-band { padding: 44px 26px; }
  .foot-top { flex-direction: column; gap: 30px; }
  .foot-cols { gap: 34px; }
  .float-chip { display: none; }
  .compare-table th, .compare-table td { padding: 13px 14px; font-size: 13.5px; }
}
@media (max-width: 460px) {
  .hero h1 { font-size: 32px; }
  .bento { grid-template-columns: 1fr; }
  .feature-card.hero-feature, .feature-card.big, .feature-card.small { grid-column: span 1; }
  .trust-inner { gap: 20px 34px; }
  .faq-item summary { font-size: 15px; }
}
