/* =============================================
   A-Ashi Shared Stylesheet
   Design system: Blue #2563EB / Navy #1e3a8a
   ============================================= */

:root {
  --blue: #2563EB;
  --blue-dark: #1d4ed8;
  --blue-lt: #eff6ff;
  --blue-darker: #1e3a8a;
  --green: #10b981;
  --gold: #f59e0b;
  --red: #ef4444;
  --gray: #6B7280;
  --gray-lt: #F9FAFB;
  --gray-md: #E5E7EB;
  --gray-dk: #374151;
  --text: #111827;
  --text-muted: #4B5563;
  --white: #fff;
  --r: 10px;
  --r-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.section-title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--text);
}
.section-title span { color: var(--blue); }

.section-sub {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 14px;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: border-color .2s, box-shadow .2s;
}
#navbar.scrolled {
  border-color: var(--gray-md);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blue-darker);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: background .15s, color .15s;
  white-space: nowrap;
  cursor: pointer;
}
.nav-link:hover, .nav-link.active {
  background: var(--blue-lt);
  color: var(--blue);
}
.nav-link .chevron {
  width: 14px;
  height: 14px;
  transition: transform .2s;
}
.nav-item.open .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--gray-md);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .2s, visibility .2s, transform .2s;
  pointer-events: none;
}
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .88rem;
  color: var(--text-muted);
  transition: background .15s, color .15s;
}
.nav-dropdown a:hover {
  background: var(--blue-lt);
  color: var(--blue);
}
.nav-dropdown a .dd-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--r);
  font-family: inherit;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}
.btn-ghost:hover { background: var(--gray-lt); color: var(--text); }

.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,99,235,.3);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue-lt);
}

.btn-white {
  background: #fff;
  color: var(--blue);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 12px; }
.btn-xl { padding: 18px 40px; font-size: 1.05rem; border-radius: 12px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--gray-md);
  padding: 16px 24px 24px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-md);
  font-size: .95rem;
  color: var(--text-muted);
  font-weight: 500;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

/* =============================================
   PAGE HERO (for sub-pages)
   ============================================= */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  background: linear-gradient(160deg, var(--blue-darker) 0%, var(--blue) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .page-hero-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.8;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .4; }

/* =============================================
   CARDS
   ============================================= */
.card {
  background: #fff;
  border: 1px solid var(--gray-md);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.card-icon.green { background: rgba(16,185,129,.1); }
.card-icon.gold { background: rgba(245,158,11,.1); }
.card-icon.red { background: rgba(239,68,68,.1); }

.card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.card-body { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* Metric card */
.metric-card {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid var(--gray-md);
  border-radius: var(--r-lg);
}
.metric-value {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.metric-unit { font-size: 1.2rem; }
.metric-label { font-size: .88rem; color: var(--text-muted); }

/* Feature card (larger) */
.feature-card {
  background: #fff;
  border: 1px solid var(--gray-md);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  gap: 20px;
  transition: box-shadow .2s;
}
.feature-card:hover { box-shadow: var(--shadow); }
.feature-card .fc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-card .fc-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card .fc-body p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }
.feature-card .fc-body ul { margin-top: 10px; display: flex; flex-direction: column; gap: 4px; }
.feature-card .fc-body ul li {
  font-size: .84rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.feature-card .fc-body ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* =============================================
   COMPARISON TABLE
   ============================================= */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--gray-md);
  font-size: .9rem;
}
.comparison-table thead th {
  background: var(--blue-darker);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: 20px;
}
.comparison-table thead th.highlight-col {
  background: var(--blue);
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:nth-child(even) td { background: var(--gray-lt); }
.comparison-table tbody tr:nth-child(even) td.highlight-col { background: var(--blue-lt); }
.comparison-table tbody td.highlight-col {
  background: var(--blue-lt);
  color: var(--blue);
  font-weight: 600;
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}
.check { color: var(--green); font-size: 1.1rem; }
.cross { color: var(--red); font-size: 1.1rem; }
.partial { color: var(--gold); font-size: .85rem; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--gray-md);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: box-shadow .2s, transform .2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: .92rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.testimonial-metric {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-lt);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-md);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-darker), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { font-size: .9rem; font-weight: 700; }
.testimonial-title { font-size: .8rem; color: var(--text-muted); }

/* =============================================
   TRUST BADGES
   ============================================= */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-badge .badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

/* =============================================
   PRICING
   ============================================= */
.pricing-card {
  background: #fff;
  border: 2px solid var(--gray-md);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pricing-card.popular {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,.08);
}
.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 12px; }
.plan-price {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price sup { font-size: 1.2rem; vertical-align: super; }
.plan-price sub { font-size: .9rem; color: var(--text-muted); }
.plan-desc { font-size: .85rem; color: var(--text-muted); margin-bottom: 24px; }
.plan-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .88rem;
  color: var(--text-muted);
}
.plan-features li .check { font-size: .9rem; margin-top: 1px; flex-shrink: 0; }

/* =============================================
   FAQ
   ============================================= */
.faq-item {
  border: 1px solid var(--gray-md);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 8px;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  transition: background .15s;
}
.faq-question:hover { background: var(--gray-lt); }
.faq-question .faq-arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s, background .2s;
  font-size: .8rem;
  color: var(--blue);
}
.faq-item.open .faq-question { background: var(--blue-lt); }
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--blue); color: #fff; }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
  background: var(--blue-lt);
}
.faq-item.open .faq-answer { display: block; }

/* =============================================
   BLOG / ARTICLE CARDS
   ============================================= */
.blog-card {
  background: #fff;
  border: 1px solid var(--gray-md);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--blue-darker), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-card-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--blue-lt);
  color: var(--blue);
  margin-bottom: 10px;
}
.blog-card-title {
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
  flex: 1;
}
.blog-card-meta {
  font-size: .78rem;
  color: var(--gray);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--gray-md);
}

/* =============================================
   CTA SECTIONS
   ============================================= */
.cta-section {
  background: linear-gradient(160deg, var(--blue-darker) 0%, var(--blue) 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}
.cta-section h2 {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 14px;
}
.cta-section p { font-size: 1rem; color: rgba(255,255,255,.8); margin-bottom: 32px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--blue-darker);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-brand .logo a { color: #fff; }
.footer-brand p {
  font-size: .85rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: background .2s;
}
.footer-social a:hover { background: rgba(255,255,255,.2); }
.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 10px;
  transition: color .15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover { color: #fff; }

/* =============================================
   ANIMATIONS (fade-up)
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }

/* =============================================
   MISC UTILITIES
   ============================================= */
.text-center { text-align: center; }
.text-blue { color: var(--blue); }
.text-muted { color: var(--text-muted); }
.font-bold { font-weight: 700; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.mt-48 { margin-top: 48px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.badge-blue { background: var(--blue-lt); color: var(--blue); }
.badge-green { background: rgba(16,185,129,.1); color: #059669; }
.badge-gold { background: rgba(245,158,11,.1); color: #d97706; }

.divider { border: none; border-top: 1px solid var(--gray-md); margin: 40px 0; }

.highlight-box {
  background: var(--blue-lt);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 20px;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.7;
}

/* =============================================
   SCROLLING TICKER
   ============================================= */
.ticker-wrap {
  overflow: hidden;
  background: var(--gold);
  padding: 12px 0;
}
.ticker-track {
  display: flex;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-size: .85rem;
  font-weight: 700;
  color: #78350f;
}
.ticker-sep { opacity: .4; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { text-align: center; justify-content: center; }

  .feature-card { flex-direction: column; }
  .feature-card .fc-icon { width: 44px; height: 44px; }

  .comparison-table th, .comparison-table td { padding: 10px 12px; font-size: .82rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px 20px; }
}
