/* === DOCS === */
.docs-layout { display: grid; grid-template-columns: 220px 1fr; gap: 56px; max-width: 1100px; margin: 60px auto; padding: 0 40px 100px; align-items: start; }
.docs-layout h1 { font-family: 'Unbounded', sans-serif; font-weight: 600; letter-spacing: -0.02em; font-size: 36px; line-height: 1.15; margin-bottom: 40px; }
.docs-sidebar { position: sticky; top: 80px; }
.docs-nav ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.docs-nav a { display: block; font-size: 13px; color: var(--ink-2); text-decoration: none; padding: 5px 10px; border-radius: 6px; line-height: 1.4; transition: background 0.15s, color 0.15s; }
.docs-nav a:hover, .docs-nav a.is-active { background: var(--green-soft); color: var(--green-dark); }
.docs-content { min-width: 0; }
.docs-content section { padding-top: 16px; margin-bottom: 48px; border-top: 1.5px solid var(--line); }
.docs-content section:first-of-type { border-top: none; padding-top: 0; }
.docs-content h2 { font-family: 'Unbounded', sans-serif; font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 16px; }
.docs-content h3 { font-size: 16px; font-weight: 700; margin: 24px 0 10px; }
.docs-content p { font-size: 16px; line-height: 1.65; margin-bottom: 14px; color: var(--ink); }
.docs-content ul, .docs-content ol { font-size: 16px; line-height: 1.65; margin: 0 0 14px 22px; }
.docs-content li { margin-bottom: 6px; }
.docs-content ol { counter-reset: none; }
.docs-content blockquote { background: var(--bg-2); border-left: 3px solid var(--green); border-radius: 0 8px 8px 0; padding: 14px 18px; margin: 0 0 14px; font-size: 15px; line-height: 1.6; color: var(--ink-2); }
.docs-notice { background: #FFF8E7; border: 1.5px solid var(--yellow); border-radius: 8px; padding: 12px 16px; font-size: 15px; }
.docs-content table { width: 100%; border-collapse: collapse; margin-bottom: 14px; font-size: 15px; }
.docs-content th { text-align: left; font-weight: 600; padding: 10px 14px; background: var(--bg-2); border-bottom: 1.5px solid var(--line); }
.docs-content td { padding: 10px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.docs-content dl { font-size: 16px; line-height: 1.65; }
.docs-content dt { font-weight: 700; margin-top: 16px; }
.docs-content dd { margin-left: 0; color: var(--ink-2); }

/* === CONNECT === */
.connect-wrap { display: flex; align-items: center; justify-content: center; min-height: calc(100vh - 200px); padding: 40px 20px; }
.connect-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 48px 40px; max-width: 400px; width: 100%; }
.connect-owl { margin-bottom: 20px; }
.connect-title { font-family: 'Unbounded', sans-serif; font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 10px; }
.connect-sub { font-size: 15px; color: var(--ink-2); line-height: 1.55; margin-bottom: 28px; }
.connect-buttons { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.connect-btn { display: block; width: 100%; padding: 16px; border-radius: 14px; font-size: 17px; font-weight: 600; color: #fff; text-decoration: none; transition: transform 0.15s, box-shadow 0.15s; }
.connect-btn:hover { transform: translateY(-2px); }
.connect-btn:active { transform: translateY(2px); box-shadow: none !important; }

/* === TOKENS === */
:root {
  --bg:         #FBF6E8;
  --bg-2:       #F4ECD7;
  --surface:    #FFFFFF;
  --ink:        #1E2A1A;
  --ink-2:      #5C6B52;
  --green:      #4FA13A;
  --green-dark: #1F4D2C;
  --green-soft: #E8F2D9;
  --yellow:     #F5C518;
  --orange:     #E76F3F;
  --blue:       #2A4D8E;
  --line:       rgba(31,77,44,0.10);
}

/* === RESET / BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Onest', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--ink); background: var(--bg); font-size: 16px; line-height: 1.5; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* === UTILITY === */
.h { font-family: 'Unbounded', sans-serif; font-weight: 600; letter-spacing: -0.02em; }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--green-soft); color: var(--green-dark);
  font-size: 13px; font-weight: 500;
}
.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.card { background: var(--surface); border-radius: 24px; border: 1.5px solid var(--line); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 24px; border-radius: 14px;
  font-family: inherit; font-weight: 600; font-size: 16px;
  cursor: pointer; border: none; text-decoration: none;
  transition: transform .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--green); color: #fff;
  box-shadow: 0 4px 0 var(--green-dark), 0 8px 20px rgba(79,161,58,.25);
}
.btn-ghost {
  background: var(--surface); color: var(--green-dark);
  border: 1.5px solid var(--line);
}
.btn-yellow {
  background: var(--yellow); color: var(--green-dark);
  box-shadow: 0 4px 0 #B8920F;
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.container { max-width: 1280px; margin: 0 auto; }
.section { padding: 96px 80px; }
.section-alt { background: var(--bg-2); }
.section-tight { padding: 64px 80px; }

/* === SITE HEADER === */
.site-header {
  padding: 24px 80px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-img { width: 40px; height: 40px; object-fit: contain; }
.logo-text { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-weight: 700; font-size: 22px; color: var(--green-dark); }
.logo-text .e { color: var(--blue); }
.site-nav { display: flex; gap: 32px; list-style: none; }
.site-nav a { color: var(--ink-2); text-decoration: none; font-size: 15px; font-weight: 500; }
.site-nav a:hover { color: var(--ink); }
.header-social { display: flex; gap: 10px; align-items: center; }
.header-social a { display: flex; color: var(--ink-2); transition: color .15s; }
.header-social a:hover { color: var(--ink); }
.header-actions { display: flex; gap: 12px; }

/* === HERO === */
.hero {
  padding: 40px 80px 80px;
  position: relative; overflow: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.hero-glow {
  position: absolute; right: -60px; top: 40px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,.18), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 48px; align-items: center; position: relative;
}
.hero-pill { margin-bottom: 24px; }
.hero-h1 {
  font-size: 68px; line-height: 1.05;
  margin: 24px 0; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-weight: 800; letter-spacing: 0;
}
.hero-accent {
  color: var(--green); position: relative; display: inline-block;
}
.hero-accent svg {
  position: absolute; left: 0; bottom: -8px;
  width: 100%; height: 14px;
}
.hero-sub { font-size: 19px; line-height: 1.55; color: var(--ink-2); max-width: 560px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; }
.hero-stat-val {
  font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 32px;
  color: var(--green-dark); font-variant-numeric: tabular-nums;
}
.hero-stat-label { font-size: 13px; color: var(--ink-2); margin-top: 2px; }
.hero-owl { display: flex; justify-content: center; }
.hero-owl img { width: 100%; max-width: 540px; object-fit: contain; }

/* === HOW IT WORKS === */
.how-header { text-align: center; margin-bottom: 56px; }
.how-header h2 { font-size: 48px; margin: 12px 0; line-height: 1.1; }
.how-header p { font-size: 18px; color: var(--ink-2); }
.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  position: relative;
}
.how-card { padding: 28px; position: relative; }
.how-step-n {
  font-family: 'Unbounded', sans-serif; font-size: 14px; color: var(--green);
  font-variant-numeric: tabular-nums; margin-bottom: 32px; font-weight: 600;
}
.how-card h3 { font-size: 20px; line-height: 1.25; margin-bottom: 12px; font-family: 'Unbounded', sans-serif; font-weight: 600; letter-spacing: -0.02em; }
.how-card p { font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.how-arrow {
  position: absolute; top: 28px; right: -30px;
  width: 22px; height: 22px; color: var(--green); z-index: 1;
}

/* === FEATURES === */
.features-header {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; margin-bottom: 48px; align-items: end;
}
.features-header h2 { font-size: 48px; margin: 12px 0 0; line-height: 1.1; }
.features-sub { font-size: 18px; color: var(--ink-2); max-width: 480px; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 48px;
}
.feature-card { padding: 28px; }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-soft); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 8px; font-family: 'Unbounded', sans-serif; font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; }
.feature-card p { font-size: 14px; color: var(--ink-2); line-height: 1.5; }

/* === DASHBOARD MOCK === */
.dashboard-mock {
  border-radius: 24px; border: 1.5px solid var(--line);
  overflow: hidden; box-shadow: 0 30px 60px rgba(31,77,44,.18);
}
.dash-bar {
  background: var(--bg-2); padding: 12px 18px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1.5px solid var(--line);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dot { width: 11px; height: 11px; border-radius: 50%; }
.dash-url { font-size: 12px; color: var(--ink-2); margin-left: 16px; }
.dash-body { display: grid; grid-template-columns: 220px 1fr; min-height: 320px; }
.dash-sidebar {
  background: #FAF4E3; padding: 20px;
  border-right: 1.5px solid var(--line);
}
.dash-sidebar-label {
  font-size: 11px; font-weight: 600; color: var(--ink-2);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px;
}
.dash-group {
  padding: 10px 12px; border-radius: 10px; font-size: 14px; margin-bottom: 4px;
}
.dash-group.active { background: #fff; font-weight: 600; color: var(--green-dark); }
.dash-group.inactive { color: var(--ink-2); }
.dash-main { padding: 24px; }
.dash-main-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px;
}
.dash-main-title { font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 20px; letter-spacing: -0.02em; }
.dash-main-hint { font-size: 13px; color: var(--ink-2); margin-top: 4px; }
.dash-pills { display: flex; gap: 8px; }
.dash-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 12px; border-radius: 999px; font-size: 13px; font-weight: 500;
}
.dash-pill-green { background: var(--green-soft); color: var(--green-dark); }
.dash-pill-orange { background: #FFE8D6; color: #A8460E; }
.dash-pill-wait { background: #F0EBD8; color: #6B5C2A; }
.dash-row {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: center; padding: 12px 0;
  border-bottom: 1px solid var(--line); gap: 16px;
}
.dash-row:last-child { border-bottom: none; }
.dash-person { display: flex; align-items: center; gap: 10px; }
.dash-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: #F0EBD8; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: var(--ink-2); flex-shrink: 0;
}
.dash-name { font-size: 14px; font-weight: 500; }
.dash-who { font-size: 12px; color: var(--ink-2); }
.dash-sub { font-size: 12px; color: var(--ink-2); }
.dash-badge {
  min-width: 90px; text-align: center;
  padding: 6px 10px; border-radius: 8px; font-size: 13px; font-weight: 600;
}
.dash-badge-yes { background: var(--green-soft); color: var(--green-dark); }
.dash-badge-no  { background: #FFE8D6; color: #A8460E; }
.dash-badge-wait{ background: #F0EBD8; color: #6B5C2A; }

/* === PRICING === */
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header h2 { font-size: 48px; margin: 12px 0; line-height: 1.1; }
.pricing-header p { font-size: 18px; color: var(--ink-2); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card { padding: 32px; position: relative; }
.pricing-card.popular {
  background: var(--green-dark); color: #fff;
  border-color: var(--green-dark);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--ink);
  padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700;
  white-space: nowrap;
}
.pricing-name { font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 22px; margin-bottom: 6px; letter-spacing: -0.02em; }
.pricing-for { font-size: 13px; color: var(--ink-2); margin-bottom: 24px; min-height: 36px; }
.pricing-card.popular .pricing-for { color: rgba(255,255,255,.7); }
.pricing-price {
  display: flex; align-items: baseline; gap: 4px; margin-bottom: 28px;
}
.pricing-amount {
  font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 48px;
  line-height: 1; font-variant-numeric: tabular-nums;
}
.pricing-per { font-size: 14px; color: var(--ink-2); }
.pricing-card.popular .pricing-per { color: rgba(255,255,255,.7); }
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-features {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--line); list-style: none;
}
.pricing-card.popular .pricing-features { border-color: rgba(255,255,255,.15); }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px; font-size: 14px; color: var(--ink-2);
}
.pricing-card.popular .pricing-features li { color: rgba(255,255,255,.85); }
.pricing-features svg { flex-shrink: 0; margin-top: 2px; }

/* === BLOG === */
.blog-header {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px;
}
.blog-header-text h2 { font-size: 48px; margin: 12px 0 8px; line-height: 1.1; }
.blog-header-text p { font-size: 18px; color: var(--ink-2); }
.blog-all-link { color: var(--green-dark); font-weight: 600; font-size: 15px; text-decoration: none; white-space: nowrap; }
.blog-all-link:hover { text-decoration: underline; }
.blog-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 20px; }
.blog-card { overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.blog-card:hover { transform: translateY(-2px); transition: transform .15s ease; }
.blog-cover {
  position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.blog-cover-lg { height: 240px; background: linear-gradient(135deg, var(--green-soft), #FAF4E3); }
.blog-cover-sm { height: 160px; }
.blog-cover-sm-1 { background: linear-gradient(135deg, #FFE8D6, var(--bg-2)); }
.blog-cover-sm-2 { background: linear-gradient(135deg, #E7E6F5, var(--bg-2)); }
.blog-cover-symbol { font-size: 48px; opacity: .4; color: var(--green-dark); }
.blog-cover img { width: 140px; height: 140px; object-fit: contain; }
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 10px; margin-bottom: 12px; font-size: 12px; color: var(--ink-2); }
.blog-cat { color: var(--green); font-weight: 600; }
.blog-card h3 { margin: 0 0 8px; line-height: 1.25; font-family: 'Unbounded', sans-serif; font-weight: 600; letter-spacing: -0.02em; }
.blog-card-lg h3 { font-size: 22px; }
.blog-card-sm h3 { font-size: 18px; }
.blog-excerpt { font-size: 14px; color: var(--ink-2); line-height: 1.5; }

/* === FAQ === */
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.faq-left h2 { font-size: 48px; margin: 12px 0 16px; line-height: 1.1; }
.faq-contact { font-size: 16px; color: var(--ink-2); }
.faq-contact a { color: var(--green-dark); font-weight: 600; text-decoration: none; }
.faq-contact a:hover { text-decoration: underline; }
.faq-owl { width: 200px; height: 200px; object-fit: contain; margin-top: 24px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface); border-radius: 24px; border: 1.5px solid var(--line);
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 17px; font-weight: 600; gap: 16px;
  font-family: 'Unbounded', sans-serif; letter-spacing: -0.02em; line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-soft); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 400; line-height: 1;
  font-family: 'Onest', sans-serif;
}
.faq-icon::before { content: '+'; }
.faq-item[open] .faq-icon::before { content: '−'; }
.faq-answer { padding: 0 24px 20px; font-size: 15px; line-height: 1.55; color: var(--ink-2); }

/* === CTA === */
.cta-section { padding: 64px 80px; }
.cta-block {
  border-radius: 32px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 64px 56px; position: relative; overflow: hidden; color: #fff;
}
.cta-owl {
  position: absolute; right: -40px; bottom: -40px;
  width: 380px; opacity: .95; pointer-events: none;
}
.cta-inner { max-width: 620px; position: relative; }
.cta-inner h2 {
  font-size: 44px; margin: 0 0 16px; line-height: 1.1;
  font-family: 'Unbounded', sans-serif; font-weight: 600; letter-spacing: -0.02em;
}
.cta-inner p { font-size: 18px; opacity: .85; margin-bottom: 28px; }

/* === FOOTER === */
.site-footer {
  padding: 40px 80px;
  border-top: 1.5px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: var(--ink-2);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links-row { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; color: var(--ink-2); }
.footer-links a:hover { color: var(--ink); }
.footer-links-row:last-child a { font-size: 13px; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.footer-social { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.footer-social-label { font-size: 12px; color: var(--ink-2); }
.footer-social-links { display: flex; gap: 14px; }
.footer-social-links a { display: flex; color: var(--ink-2); transition: color .15s; }
.footer-social-links a:hover { color: var(--ink); }

/* === BLOG INNER PAGES === */
.page-wrap { max-width: 800px; margin: 60px auto; padding: 0 40px 80px; }
.page-wrap h1 { font-size: 42px; margin-bottom: 24px; font-family: 'Unbounded', sans-serif; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
.page-wrap .post-meta { font-size: 13px; color: var(--ink-2); margin-bottom: 32px; display: flex; gap: 16px; }
.page-wrap .post-content { font-size: 17px; line-height: 1.65; }
.page-wrap .post-content h2 { font-size: 28px; margin: 40px 0 16px; font-family: 'Unbounded', sans-serif; font-weight: 600; letter-spacing: -0.02em; }
.page-wrap .post-content p { margin-bottom: 20px; }
.page-wrap .post-content ul, .page-wrap .post-content ol { margin: 0 0 20px 24px; }
.page-wrap .post-content li { margin-bottom: 8px; }
.page-wrap .post-thumbnail { margin-bottom: 40px; border-radius: 16px; overflow: hidden; }
.page-wrap .post-thumbnail img { width: 100%; height: 360px; object-fit: cover; }
.blog-inner-header { background: var(--bg); padding: 24px 80px; border-bottom: 1.5px solid var(--line); }
.blog-back { color: var(--green-dark); text-decoration: none; font-weight: 600; font-size: 14px; }
.blog-back:hover { text-decoration: underline; }
.blog-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.blog-archive-title { font-size: 48px; font-family: 'Unbounded', sans-serif; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; line-height: 1.1; }
.blog-archive-sub { font-size: 18px; color: var(--ink-2); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .section, .hero, .site-header, .cta-section, .site-footer { padding-left: 40px; padding-right: 40px; }
  .section-tight { padding-left: 40px; padding-right: 40px; }
  .hero-h1 { font-size: 52px; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-card:nth-child(2n) .how-arrow { display: none; }
  .features-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.popular { order: -1; }
  .features-header { grid-template-columns: 1fr; gap: 24px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid .blog-card:first-child { grid-column: 1 / -1; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-owl { display: none; }
  .dash-sidebar { display: none; }
  .dash-body { grid-template-columns: 1fr; }
  .cta-owl { width: 280px; }
  .blog-archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  body { overflow-x: hidden; }
  .section, .hero, .site-header, .cta-section, .site-footer { padding-left: 20px; padding-right: 20px; }
  .section-tight { padding-left: 20px; padding-right: 20px; }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .hero { padding-top: 24px; padding-bottom: 56px; }
  .site-header { flex-wrap: wrap; gap: 16px; }
  .site-nav { display: none; }
  .header-social { display: none; }
  .header-actions { width: 100%; }
  .header-actions .btn { flex: 1; justify-content: center; min-width: 0; padding-left: 14px; padding-right: 14px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-owl { order: -1; }
  .hero-owl img { max-width: 280px; margin: 0 auto; }
  .hero-h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { display: grid; grid-template-columns: 1fr; gap: 18px; }
  .hero-stat-val { font-size: 28px; }
  .how-grid { grid-template-columns: 1fr; }
  .how-arrow { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { order: 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .blog-cover-lg, .blog-cover-sm { height: 180px; }
  .dash-url { display: none; }
  .dash-main { padding: 18px; }
  .dash-main-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .dash-pills { flex-wrap: wrap; }
  .dash-row { grid-template-columns: 1fr; align-items: start; gap: 8px; }
  .dash-badge { width: max-content; min-width: 0; }
  .dash-sub { padding-left: 42px; }
  .how-header h2,
  .features-header h2,
  .pricing-header h2,
  .blog-header-text h2,
  .faq-left h2,
  .blog-archive-title,
  .section h1.h,
  .section h2.h { font-size: 30px; line-height: 1.15; }
  .card { border-radius: 18px; }
  .faq-item summary { font-size: 15px; }
  .cta-block { padding: 40px 28px; }
  .cta-inner h2 { font-size: 30px; }
  .cta-owl { display: none; }
  .site-footer { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links-row { justify-content: center; }
  .footer-right { align-items: center; }
  .footer-social { align-items: center; }
  .blog-archive-grid { grid-template-columns: 1fr; }
  .page-wrap { padding: 0 20px 60px; }
  .page-wrap h1 { font-size: 28px; }
  .docs-layout { grid-template-columns: 1fr; gap: 0; padding: 0 20px 60px; margin-top: 32px; }
  .docs-sidebar { position: static; margin-bottom: 32px; background: var(--bg-2); border-radius: 12px; padding: 16px; }
  .docs-nav ul { flex-direction: row; flex-wrap: wrap; gap: 4px; }
  .docs-nav a { font-size: 12px; padding: 4px 8px; }
  .docs-layout h1 { font-size: 26px; }
  .docs-content h2 { font-size: 18px; }
  .page-wrap .post-meta { flex-wrap: wrap; gap: 8px 16px; }
  .page-wrap .post-thumbnail img { height: 220px; }
  .blog-inner-header { padding: 20px; }
  [style*="display:grid"][style*="grid-template-columns:1fr 1fr"],
  [style*="display:grid"][style*="grid-template-columns:repeat(2,1fr)"],
  [style*="display:grid"][style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  [style*="display:flex"][style*="justify-content:space-between"] {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
  table .btn { padding-left: 12px; padding-right: 12px; font-size: 13px; }
}

@media (max-width: 420px) {
  .section, .hero, .site-header, .cta-section, .site-footer { padding-left: 16px; padding-right: 16px; }
  .hero-h1 { font-size: 32px; }
  .btn { width: 100%; justify-content: center; }
  .hero-ctas { gap: 10px; }
  .pill { align-items: flex-start; border-radius: 14px; }
  .logo-text { font-size: 20px; }
  .pricing-card { padding: 24px; }
  .faq-item summary { padding: 18px; }
  .faq-answer { padding: 0 18px 18px; }
  .cta-block { padding: 32px 22px; border-radius: 24px; }
  .footer-links-row { gap: 14px; }
}
