/* ═══════════════════════════════════════════════════════════════
   Pricer — Main Stylesheet v2
   Colors: SaaS blue/purple theme — based on Pencil design
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg:           #ffffff;
  --bg-card:      #ffffff;
  --bg-secondary: #f4f7fc;
  --fg:           #14358a;
  --fg-muted:     #5a6b8a;
  --border:       #e2e8f4;
  --primary:      #1b45b4;
  --primary-fg:   #ffffff;
  --accent:       #0097fe;
  --accent-light: rgba(0,151,254,.10);
  --accent-mid:   rgba(0,151,254,.20);
  --gradient-hero: linear-gradient(135deg, #1b45b4 0%, #1c2792 100%);
  --gradient-btn:  linear-gradient(135deg, #6a36ff 0%, #ac5fe6 100%);
  --gradient-footer: linear-gradient(135deg, #1b45b4 0%, #1c2792 100%);
  --radius:       0.625rem;
  --shadow:       0 4px 24px rgba(20,53,138,.08);
  --shadow-lg:    0 8px 40px rgba(20,53,138,.12);
  --shadow-xl:    0 20px 60px rgba(20,53,138,.16);
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: #f8faff; color: var(--fg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.4rem; border-radius: var(--radius);
  font-size: .9rem; font-weight: 600; transition: all .18s ease;
  white-space: nowrap; cursor: pointer; border: none;
}
.btn-primary  { background: var(--gradient-btn); color: #fff; }
.btn-primary:hover { opacity: .9; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline  { background: transparent; color: var(--fg); border: 1.5px solid var(--border); }
.btn-outline:hover { background: var(--bg-secondary); border-color: var(--accent); }
.btn-accent   { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #0080d9; transform: translateY(-1px); }
.btn-lg { padding: .85rem 1.8rem; font-size: 1rem; }
.btn-ghost { background: transparent; color: var(--fg); }
.btn-ghost:hover { background: var(--bg-secondary); }
.btn-secondary-white { background: var(--gradient-btn); color: #fff; font-weight: 600; }
.btn-secondary-white:hover { opacity: .9; transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline-white:hover { background: rgba(27,69,180,.06); }

/* ─── Utilities ──────────────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: .85rem; }
.check-list li { display: flex; align-items: flex-start; gap: .75rem; }
.check-icon { width: 22px; height: 22px; min-width: 22px; margin-top: .1rem; border-radius: 50%; background: var(--accent-light); display: flex; align-items: center; justify-content: center; }
.check-icon svg { width: 12px; height: 12px; }
.check-icon-filled { background: var(--accent); }
.check-icon-filled svg { color: #fff; }

.section-tag { display: inline-flex; align-items: center; gap: .5rem; font-size: .85rem; font-weight: 600; color: var(--accent); margin-bottom: 1rem; }
.section-tag-line { display: inline-block; width: 32px; height: 3px; background: var(--accent); border-radius: 99px; }

.pill { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem 1rem; border-radius: 99px; background: rgba(255,255,255,.15); font-size: .8rem; color: #fff; margin-bottom: 1.25rem; }
.ping { position: relative; display: inline-flex; }
.ping-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.ping-ripple { position: absolute; inset: 0; border-radius: 50%; background: #fff; opacity: .5; animation: ping 1.4s cubic-bezier(0,0,.2,1) infinite; }
@keyframes ping { 75%,100% { transform: scale(2); opacity: 0; } }

.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 1rem; }
.badge-active { font-size:.73rem; padding:.2rem .6rem; border-radius:99px; background:var(--accent-light); color:var(--accent); font-weight:600; }
.badge-paused { font-size:.73rem; padding:.2rem .6rem; border-radius:99px; background:var(--bg-secondary); color:var(--fg-muted); font-weight:600; }

/* ─── Header ─────────────────────────────────────────────────── */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.header-left  { display: flex; align-items: center; gap: 2rem; }
.logo { display: flex; align-items: center; gap: .55rem; font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; }
.logo-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--primary); display: flex; align-items: center; justify-content: center; color: var(--primary-fg); font-size: .85rem; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: .2rem; list-style: none; }
.nav-links li { list-style: none; }
.nav-links a { font-size: .875rem; color: var(--fg-muted); transition: color .15s, background .15s; padding: .4rem .75rem; border-radius: .5rem; }
.nav-links a:hover { color: var(--primary); background: var(--bg-secondary); }
.nav-links a.active, .nav-links .current-menu-item a { color: var(--accent); font-weight: 600; background: rgba(0,151,254,.08); }
.header-right { display: flex; align-items: center; gap: .75rem; }
.menu-toggle { display: none; padding: .5rem; color: var(--fg); }
.mobile-nav { display: none; flex-direction: column; gap: .2rem; padding: 1rem 0; border-top: 1px solid var(--border); }
.mobile-nav.open { display: flex; }
.mobile-nav li { list-style: none; }
.mobile-nav a { font-size: .9rem; color: var(--fg-muted); padding: .5rem .75rem; border-radius: .5rem; display: block; }
.mobile-nav a:hover, .mobile-nav a.active, .mobile-nav .current-menu-item a { color: var(--fg); background: var(--bg-secondary); }
.mobile-nav-btns { display: flex; flex-direction: column; gap: .5rem; padding-top: .75rem; border-top: 1px solid var(--border); margin-top: .5rem; }

/* ─── Hero (homepage) ────────────────────────────────────────── */
.hero { padding: 9rem 0 8rem; position: relative; overflow: visible; background: transparent; }
.hero-deco { position: absolute; top: 0; left: -5%; right: -5%; bottom: -2rem; background: var(--gradient-hero); clip-path: polygon(0 0, 100% 0, 100% 82%, 0% 100%); pointer-events: none; z-index: 0; overflow: hidden; }
.hero-deco::before { content: ''; position: absolute; top: -100px; right: -80px; width: 500px; height: 500px; background: radial-gradient(ellipse, rgba(5,137,240,.4) 0%, transparent 70%); filter: blur(50px); }
.hero-deco::after { content: ''; position: absolute; top: -50px; left: -50px; width: 400px; height: 400px; background: radial-gradient(ellipse, rgba(177,78,223,.2) 0%, transparent 70%); filter: blur(40px); }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 3rem; }
.hero-content { display: flex; flex-direction: column; align-items: center; max-width: 720px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 1.25rem; color: #fff; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 560px; margin-bottom: 2.5rem; line-height: 1.7; text-align: center; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-mockup { width: 100%; max-width: 960px; position: relative; z-index: 3; }
.hero-mockup-browser { background: var(--bg-card); border: 1px solid rgba(255,255,255,.15); border-radius: 1rem; box-shadow: 0 30px 80px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.05); overflow: hidden; }
.browser-bar { display: flex; align-items: center; gap: .6rem; padding: .75rem 1rem; background: #f4f7fc; border-bottom: 1px solid var(--border); }
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-dot:nth-child(1) { background: #fc5c57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }
.browser-url { flex: 1; margin-left: .5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: .35rem; padding: .25rem .75rem; font-size: .75rem; color: var(--fg-muted); font-family: 'DM Mono', monospace; }
.browser-screenshot { width: 100%; display: block; }

/* ─── Page hero (inner pages) ────────────────────────────────── */
.page-hero { padding: 6.5rem 0 5rem; position: relative; overflow: visible; background: transparent; }
.page-hero-bg { position: absolute; top: 0; left: -5%; right: -5%; bottom: -1rem; background: var(--gradient-hero); clip-path: polygon(0 0, 100% 0, 100% 78%, 0% 100%); pointer-events: none; z-index: 0; overflow: hidden; }
.page-hero-bg::before { content: ''; position: absolute; top: -80px; right: -80px; width: 500px; height: 500px; background: radial-gradient(ellipse, rgba(5,137,240,.3) 0%, transparent 70%); filter: blur(30px); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.75); }
.page-hero .section-tag { color: rgba(255,255,255,.9); }
.page-hero .section-tag-line { background: rgba(255,255,255,.5); }
.page-hero-inner { max-width: 720px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 1.25rem; color: #fff; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.75); line-height: 1.7; max-width: 580px; }

/* ─── Sections ───────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-alt { background: #f4f7fc; }
.section-heading { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.section-heading h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -.02em; margin-bottom: .75rem; }
.section-heading p { font-size: 1.05rem; color: var(--fg-muted); line-height: 1.7; }

/* ─── Homepage preview cards ─────────────────────────────────── */
.preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; padding: 3rem 0 5rem; }
.preview-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 1rem; padding: 1.75rem;
  color: var(--fg); transition: border-color .2s, transform .2s, box-shadow .2s;
  display: flex; flex-direction: column; gap: .75rem;
}
.preview-card:hover { border-color: rgba(0,151,254,.4); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.preview-card-icon { width: 46px; height: 46px; border-radius: .75rem; background: var(--accent-light); display: flex; align-items: center; justify-content: center; }
.preview-card-icon svg { width: 22px; height: 22px; color: var(--accent); }
.preview-card h3 { font-weight: 600; font-size: 1rem; }
.preview-card p { font-size: .875rem; color: var(--fg-muted); line-height: 1.6; flex: 1; }
.preview-card-link { display: inline-flex; align-items: center; gap: .35rem; font-size: .8rem; font-weight: 600; color: var(--accent); margin-top: .25rem; }

/* ─── Benefits ───────────────────────────────────────────────── */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.benefit-card { padding: 1.75rem; border-radius: .9rem; background: var(--bg-card); border: 1px solid var(--border); transition: border-color .2s, transform .2s; }
.benefit-card:hover { border-color: rgba(0,151,254,.4); transform: translateY(-2px); }
.benefit-icon { width: 48px; height: 48px; border-radius: .75rem; background: var(--accent-light); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: background .2s; }
.benefit-card:hover .benefit-icon { background: var(--accent-mid); }
.benefit-icon svg { width: 22px; height: 22px; color: var(--accent); }
.benefit-card h3 { font-weight: 600; font-size: 1rem; margin-bottom: .5rem; }
.benefit-card p { font-size: .9rem; color: var(--fg-muted); line-height: 1.65; }

/* Benefits page stats */
.benefits-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; }
.benefits-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: .875rem; padding: 1.5rem; }
.stat-card-num { font-size: 2.2rem; font-weight: 700; font-family: 'DM Mono', monospace; line-height: 1; margin-bottom: .3rem; }
.stat-card-label { font-size: .825rem; color: var(--fg-muted); }
.stat-card.accent-card { background: var(--accent); border-color: var(--accent); }
.stat-card.accent-card .stat-card-num { color: #fff; }
.stat-card.accent-card .stat-card-label { color: rgba(255,255,255,.8); }

/* ─── Features ───────────────────────────────────────────────── */
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }
.feature-block:last-child { margin-bottom: 0; }
.feature-block.reverse .feature-content { order: 2; }
.feature-block.reverse .feature-visual  { order: 1; }
.feature-content h3 { font-size: clamp(1.5rem, 2.5vw, 1.9rem); font-weight: 700; letter-spacing: -.02em; margin-bottom: 1rem; }
.feature-content p { font-size: .975rem; color: var(--fg-muted); line-height: 1.75; margin-bottom: 1.5rem; }
.feature-visual { position: relative; }
.screenshot-frame { border-radius: 1rem; border: 1px solid var(--border); box-shadow: var(--shadow-xl); overflow: hidden; transform: perspective(1000px) rotateY(-4deg) rotateX(2deg); transition: transform .3s ease; }
.screenshot-frame:hover { transform: perspective(1000px) rotateY(-1deg) rotateX(0deg); }
.screenshot-frame.tilt-right { transform: perspective(1000px) rotateY(4deg) rotateX(2deg); }
.screenshot-frame.tilt-right:hover { transform: perspective(1000px) rotateY(1deg) rotateX(0deg); }
.screenshot-frame.flat { transform: none; }
.screenshot-frame.flat:hover { transform: none; }
.screenshot-frame img { width: 100%; display: block; }

/* ─── Dashboard showcase ─────────────────────────────────────── */
.dashboard-showcase { position: relative; padding: 0 0 3rem; }
.dashboard-browser { background: var(--bg-card); border: 1px solid var(--border); border-radius: 1rem; box-shadow: var(--shadow-xl); overflow: hidden; }
.dashboard-float-cards { display: flex; gap: 1.25rem; margin-top: -2rem; padding: 0 2rem; position: relative; z-index: 10; flex-wrap: wrap; }
.float-card { flex: 1; min-width: 160px; background: var(--bg-card); border: 1px solid var(--border); border-radius: .875rem; padding: 1.1rem 1.25rem; box-shadow: var(--shadow); }
.float-card-label { font-size: .75rem; color: var(--fg-muted); margin-bottom: .25rem; }
.float-card-value { font-size: 1.5rem; font-weight: 700; font-family: 'DM Mono', monospace; }
.float-card-sub { font-size: .75rem; color: var(--accent); margin-top: .15rem; }

/* Dashboard detail features */
.dashboard-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.dashboard-feature { padding: 1.75rem; border-radius: .9rem; background: var(--bg-card); border: 1px solid var(--border); }
.dashboard-feature-num { font-size: 2rem; font-weight: 700; color: var(--accent); font-family: 'DM Mono', monospace; line-height: 1; margin-bottom: .75rem; }
.dashboard-feature h3 { font-weight: 600; font-size: .975rem; margin-bottom: .5rem; }
.dashboard-feature p { font-size: .875rem; color: var(--fg-muted); line-height: 1.65; }

/* ─── Target audience ────────────────────────────────────────── */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.audience-content h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -.02em; margin-bottom: 1rem; }
.audience-content > p { font-size: 1rem; color: var(--fg-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.audience-content .lead { font-weight: 600; margin-bottom: 1rem; }
.audience-card { padding: 2.5rem; box-shadow: var(--shadow-lg); }
.audience-card-title { text-align: center; margin-bottom: 2rem; }
.audience-card-title p { font-size: .85rem; color: var(--fg-muted); margin-bottom: .25rem; }
.audience-card-title .big { font-size: 1.6rem; font-weight: 700; line-height: 1.2; }
.advantage-row { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; border-radius: .75rem; background: var(--accent-light); border: 1px solid rgba(0,151,254,.15); margin-bottom: .75rem; font-weight: 600; font-size: .95rem; }
.advantage-row span:last-child { color: var(--accent); }
.audience-note { text-align: center; font-size: .85rem; color: var(--fg-muted); margin-top: 1.5rem; }

/* Audience type cards */
.audience-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.audience-type-card { padding: 2rem; border-radius: 1rem; background: var(--bg-card); border: 1px solid var(--border); transition: border-color .2s, transform .2s; }
.audience-type-card:hover { border-color: rgba(0,151,254,.4); transform: translateY(-3px); }
.audience-type-icon { width: 52px; height: 52px; border-radius: .875rem; background: var(--accent-light); margin-bottom: 1.25rem; display: flex; align-items: center; justify-content: center; }
.audience-type-icon svg { width: 24px; height: 24px; color: var(--accent); }
.audience-type-card h3 { font-weight: 700; font-size: 1.05rem; margin-bottom: .5rem; }
.audience-type-card p { font-size: .875rem; color: var(--fg-muted); line-height: 1.65; }

/* Quote block */
.quote-block { background: var(--gradient-hero); border-radius: 1.25rem; padding: 3rem; position: relative; overflow: hidden; }
.quote-block::before { content: '"'; position: absolute; top: -.5rem; left: 1.5rem; font-size: 8rem; font-weight: 700; color: rgba(255,255,255,.06); line-height: 1; }
.quote-text { font-size: 1.15rem; color: rgba(255,255,255,.9); line-height: 1.65; margin-bottom: 1.5rem; font-style: italic; }
.quote-author { font-size: .875rem; color: rgba(255,255,255,.5); }
.quote-author strong { color: rgba(255,255,255,.85); }

/* ─── CTA ────────────────────────────────────────────────────── */
.cta { background: transparent; padding: 6rem 0 7rem; position: relative; overflow: visible; }
.cta::before { content: ''; position: absolute; top: -2rem; left: -5%; right: -5%; bottom: -2rem; background: #ebf7ff; clip-path: polygon(0 12%, 100% 0%, 100% 88%, 0% 100%); pointer-events: none; z-index: 0; }
.cta-inner { text-align: center; max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }
.cta h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--fg); letter-spacing: -.02em; margin-bottom: 1rem; }
.cta p { font-size: 1.05rem; color: var(--fg-muted); line-height: 1.7; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer { background: transparent; border-top: none; padding: 6rem 0 3.5rem; color: #fff; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: -5%; right: -5%; bottom: 0; background: var(--gradient-footer); clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%); z-index: 0; }
.footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { margin-bottom: 1rem; color: #fff; }
.footer-brand .logo-icon { background: rgba(255,255,255,.2); color: #fff; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.7); max-width: 360px; line-height: 1.65; }
.footer-col h4 { font-weight: 600; margin-bottom: 1.25rem; font-size: .9rem; color: #fff; }
.footer-col ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.7); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.15); font-size: .825rem; color: rgba(255,255,255,.5); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.5); transition: color .15s; }
.footer-legal a:hover { color: #fff; }

/* ─── Contact page ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; padding-bottom: 5rem; }
.contact-channels { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-channel { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: .875rem; transition: border-color .2s; }
.contact-channel:hover { border-color: rgba(0,151,254,.4); }
.contact-channel-icon { width: 44px; height: 44px; min-width: 44px; border-radius: .625rem; background: var(--accent-light); display: flex; align-items: center; justify-content: center; }
.contact-channel-icon svg { width: 20px; height: 20px; color: var(--accent); }
.contact-channel-label { font-size: .8rem; color: var(--fg-muted); }
.contact-channel-value { font-weight: 600; font-size: .95rem; margin-top: .1rem; }
.contact-form-card { padding: 2.5rem; box-shadow: var(--shadow-lg); }
.contact-form-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form-label { font-size: .85rem; font-weight: 600; }
.form-input, .form-textarea, .form-select { width: 100%; padding: .75rem 1rem; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--fg); transition: border-color .15s, box-shadow .15s; outline: none; }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,151,254,.12); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--fg-muted); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { appearance: none; cursor: pointer; }

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { animation: fadeUp .55s ease both; }
.hero-content > *:nth-child(1) { animation-delay: .05s; }
.hero-content > *:nth-child(2) { animation-delay: .15s; }
.hero-content > *:nth-child(3) { animation-delay: .25s; }
.hero-content > *:nth-child(4) { animation-delay: .35s; }
.hero-mockup { animation: fadeUp .55s .3s ease both; }
.page-hero-inner > * { animation: fadeUp .5s ease both; }
.page-hero-inner > *:nth-child(2) { animation-delay: .1s; }
.page-hero-inner > *:nth-child(3) { animation-delay: .2s; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-types { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .screenshot-frame, .screenshot-frame.tilt-right { transform: none; }
  .screenshot-frame:hover, .screenshot-frame.tilt-right:hover { transform: none; }
  .benefits-intro { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .feature-block, .audience-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-block.reverse .feature-content { order: 1; }
  .feature-block.reverse .feature-visual  { order: 2; }
  .hero { padding: 8rem 0 5rem; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .dashboard-float-cards { flex-wrap: wrap; margin-top: 1.5rem; }
}
@media (max-width: 768px) {
  .nav-links, .header-right { display: none; }
  .menu-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .preview-grid, .audience-types { grid-template-columns: 1fr; }
  .benefits-grid, .dashboard-features { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .float-card { min-width: calc(50% - .625rem); }
}

/* ─── Pricing Cards ──────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.pricing-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: calc(var(--radius) * 2); padding: 2rem; display: flex; flex-direction: column; gap: 0; position: relative; transition: box-shadow .2s, border-color .2s; }
.pricing-card:hover { box-shadow: 0 8px 32px rgba(0,151,254,.12); border-color: var(--accent); }
.pricing-card.pricing-featured { border-color: var(--accent); box-shadow: 0 4px 24px rgba(0,151,254,.18); background: #f8fbff; }
.pricing-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .9rem; border-radius: 99px; white-space: nowrap; }
.pricing-tier { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: .75rem; }
.pricing-price { display: flex; align-items: flex-end; gap: .25rem; margin-bottom: .25rem; }
.pricing-price-amount { font-size: 3rem; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.pricing-price-currency { font-size: 1.25rem; font-weight: 600; line-height: 1; padding-bottom: .35rem; color: var(--fg-muted); }
.pricing-price-period { font-size: .875rem; color: var(--fg-muted); padding-bottom: .35rem; }
.pricing-limit { font-size: .85rem; color: var(--fg-muted); margin-bottom: 1.5rem; }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 1.75rem; display: flex; flex-direction: column; gap: .6rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: .6rem; font-size: .875rem; color: var(--fg-muted); line-height: 1.45; }
.pricing-features li .pf-icon { flex-shrink: 0; width: 16px; height: 16px; background: rgba(0,151,254,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.pricing-features li .pf-icon svg { width: 9px; height: 9px; stroke: var(--accent); }
.pricing-cta { margin-top: auto; }
.pricing-note { font-size: .78rem; color: var(--fg-muted); text-align: center; margin-top: 2rem; }
.pricing-unlimited { display: inline-flex; align-items: center; gap: .4rem; background: rgba(0,151,254,.07); color: var(--accent); font-size: .78rem; font-weight: 600; padding: .3rem .75rem; border-radius: 99px; margin-bottom: 1rem; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* ─── FAQ Accordion ──────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg); }
.faq-item.open { border-color: var(--accent); }
.faq-question { width: 100%; background: none; border: none; padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 600; color: var(--fg); text-align: left; }
.faq-question:hover { color: var(--accent); }
.faq-chevron { flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 1.5rem; font-size: .9rem; color: var(--fg-muted); line-height: 1.7; }
.faq-item.open .faq-answer { padding-bottom: 1.2rem; }

/* ─── Features Page ──────────────────────────────────────────── */
.feat-core-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feat-core-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: calc(var(--radius)*2); padding: 1.75rem; transition: box-shadow .2s, border-color .2s; }
.feat-core-card:hover { box-shadow: 0 6px 24px rgba(0,151,254,.1); border-color: var(--accent); }
.feat-core-icon { width: 52px; height: 52px; background: rgba(0,151,254,.08); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--accent); }
.feat-core-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.feat-core-card p { font-size: .875rem; color: var(--fg-muted); line-height: 1.65; margin: 0; }
.feat-list { display: flex; flex-direction: column; gap: .75rem; }
.feat-list-item { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; background: var(--bg); border: 1.5px solid var(--border); border-radius: calc(var(--radius)*1.5); text-decoration: none; color: var(--fg); transition: box-shadow .2s, border-color .2s; }
.feat-list-item:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(0,151,254,.08); }
.feat-list-icon { flex-shrink: 0; width: 44px; height: 44px; background: rgba(0,151,254,.07); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.feat-list-text { flex: 1; display: flex; flex-direction: column; gap: .2rem; }
.feat-list-text strong { font-size: .95rem; font-weight: 600; }
.feat-list-text span { font-size: .82rem; color: var(--fg-muted); line-height: 1.5; }
.feat-list-arrow { flex-shrink: 0; color: var(--fg-muted); transition: transform .2s; }
.feat-list-item:hover .feat-list-arrow { transform: translateX(4px); color: var(--accent); }
@media (max-width: 900px) { .feat-core-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feat-core-grid { grid-template-columns: 1fr; } .feat-list-text span { display: none; } }

/* ─── Dashboard graphs two-column grid ──────────────────────── */
.dashboard-graphs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
.dashboard-graphs-grid .dashboard-browser { margin: 0; }
@media (max-width: 768px) { .dashboard-graphs-grid { grid-template-columns: 1fr; } }
