/* ============================
   PRESSBULK - MAIN STYLESHEET
   ============================ */

/* == CUSTOM PROPERTIES == */
:root {
  --color-bg: #FAFAF8;
  --color-bg-alt: #F3F2EE;
  --color-surface: #FFFFFF;
  --color-text: #1A1A1A;
  --color-text-secondary: #5C5C5C;
  --color-text-tertiary: #8A8A8A;
  --color-accent: #1B6B5A;
  --color-accent-hover: #145549;
  --color-accent-light: #E8F5F0;
  --color-accent-subtle: #F0FAF6;
  --color-border: #E5E4E0;
  --color-border-light: #EEEDEA;
  --font-display: 'Newsreader', Georgia, serif;
  --font-body: 'Instrument Sans', -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.03);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
}

/* == RESET == */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body); font-size: 16px; line-height: 1.65;
  color: var(--color-text); background: var(--color-bg);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* == SCROLL REVEAL == */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* == LAYOUT == */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }
@media (max-width: 768px) { section { padding: 72px 0; } }

/* == TYPOGRAPHY == */
h1, h2, h3, h4 {
  font-family: var(--font-display); font-weight: 500; line-height: 1.2; letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.section-label {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-accent);
  margin-bottom: 12px; display: block;
}
.section-subtitle {
  color: var(--color-text-secondary); font-size: 1.1rem; max-width: 580px; line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 16px auto 0; }

/* == BUTTONS == */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
  font-size: 0.95rem; font-weight: 600; border-radius: var(--radius-md);
  transition: all var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent); color: #fff;
  box-shadow: 0 2px 8px rgba(27,107,90,0.25);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 4px 16px rgba(27,107,90,0.35); transform: translateY(-1px);
}
.btn-secondary {
  background: var(--color-surface); color: var(--color-text);
  border: 1.5px solid var(--color-border);
}
.btn-secondary:hover {
  border-color: var(--color-accent); color: var(--color-accent);
  background: var(--color-accent-subtle);
}
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

/* == NAVBAR == */
.navbar {
  position: relative; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--color-bg); border-bottom: 1px solid var(--color-border-light);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.navbar.scrolled { border-bottom-color: var(--color-border-light); box-shadow: 0 1px 8px rgba(0,0,0,0.04); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; position: relative; }
.navbar-brand {
  font-family: var(--font-body); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.02em; display: flex; align-items: baseline; gap: 10px;
  text-decoration: none; min-width: 220px;
}
.navbar-brand .brand-main { font-size: 1.7rem; display: flex; line-height: 1; }
.navbar-brand .brand-press { color: var(--color-accent); }
.navbar-brand .brand-bulk { color: var(--color-text); }
.navbar-brand .brand-sep {
  width: 1px; height: 18px; background: var(--color-border); align-self: center; flex-shrink: 0;
}
.navbar-brand .brand-powered {
  font-size: 0.68rem; font-weight: 500; color: var(--color-text-tertiary);
  text-transform: none; letter-spacing: 0.02em; align-self: center; white-space: nowrap;
}
.navbar-links {
  display: flex; align-items: center; gap: 28px;
  position: absolute; left: 55%; transform: translateX(-50%);
}
.navbar-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--color-text-secondary);
  transition: color var(--transition); position: relative; text-decoration: none;
}
.navbar-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px;
  background: var(--color-accent); transition: width var(--transition);
}
.navbar-links a:hover { color: var(--color-text); }
.navbar-links a:hover::after { width: 100%; }
.navbar-links .navbar-cta {
  margin-left: 4px; color: #fff !important; border-radius: 100px; text-decoration: none;
}
.navbar-links .navbar-cta::after { display: none !important; }
.navbar-links .navbar-cta:hover { color: #fff !important; }
.navbar-right {
  display: flex; align-items: center; gap: 12px; justify-content: flex-end;
}

/* Globe language trigger */
.lang-globe {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
  transition: all 0.2s; color: var(--color-text-secondary);
  border: 1.5px solid var(--color-border); background: transparent;
}
.lang-globe:hover { border-color: var(--color-accent); color: var(--color-accent); background: var(--color-accent-subtle); }

/* Language dropdown */
.lang-switcher { position: relative; }
.lang-switcher.open .lang-globe { border-color: var(--color-accent); color: var(--color-accent); background: var(--color-accent-subtle); }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--color-surface); border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm); box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s ease; min-width: 160px; z-index: 100; overflow: hidden;
}
.lang-switcher.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; font-size: 0.88rem; font-weight: 500;
  color: var(--color-text-secondary); cursor: pointer;
  transition: all 0.15s ease; width: 100%; text-align: left;
}
.lang-option:hover { background: var(--color-accent-subtle); color: var(--color-accent); }
.lang-option.active { color: var(--color-accent); font-weight: 600; background: var(--color-accent-light); }
.lang-option .lang-flag { font-size: 1.2rem; }

.mobile-toggle {
  display: none; width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
}
.mobile-toggle span {
  display: block; width: 20px; height: 2px; background: var(--color-text);
  position: relative; transition: background var(--transition);
}
.mobile-toggle span::before, .mobile-toggle span::after {
  content: ''; position: absolute; width: 20px; height: 2px;
  background: var(--color-text); transition: transform var(--transition);
}
.mobile-toggle span::before { top: -6px; }
.mobile-toggle span::after { top: 6px; }
.mobile-toggle.active span { background: transparent; }
.mobile-toggle.active span::before { transform: rotate(45deg) translate(4px,4px); }
.mobile-toggle.active span::after { transform: rotate(-45deg) translate(4px,-4px); }

@media (max-width: 900px) {
  .mobile-toggle { display: flex; }
  .navbar-brand .brand-sep, .navbar-brand .brand-powered { display: none; }
  .navbar-brand { min-width: auto; }
  .navbar-links {
    position: absolute; top: 72px; left: 0; right: 0; background: var(--color-bg);
    flex-direction: column; padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--color-border); box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-120%); transition: transform var(--transition);
    opacity: 0; pointer-events: none;
  }
  .navbar-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .navbar-links a::after { display: none; }
  .navbar-links .navbar-cta {
    display: flex; width: 100%; text-align: center; justify-content: center;
    background: var(--color-accent); color: #fff; padding: 14px 28px;
    border-radius: 100px; font-weight: 600;
  }
  .navbar-right { min-width: auto; }
}

/* == HERO == */
.hero {
  padding: 80px 0 100px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(27,107,90,0.06) 0%, transparent 70%); pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(27,107,90,0.04) 0%, transparent 70%); pointer-events: none;
}
.hero-content {
  max-width: 820px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--color-accent); }
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-accent);
  background: var(--color-accent-light); padding: 6px 16px;
  border-radius: 100px; margin-bottom: 24px;
}
.hero-label .label-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent);
}
.hero-sub {
  font-size: 1.15rem; color: var(--color-text-secondary); max-width: 580px;
  line-height: 1.75; margin: 0 auto 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.trust-strip {
  margin-top: 56px; display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap; justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 500; color: var(--color-text-tertiary);
}
.trust-dot { width: 6px; height: 6px; background: var(--color-accent); border-radius: 50%; opacity: 0.5; }

@media (max-width: 768px) {
  .hero { padding: 60px 0 72px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* == PROBLEM / SOLUTION == */
.problem-solution { background: var(--color-bg-alt); }
.ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ps-card {
  background: var(--color-surface); border-radius: var(--radius-lg); padding: 44px;
  box-shadow: var(--shadow-card); transition: box-shadow var(--transition);
}
.ps-card:hover { box-shadow: var(--shadow-md); }
.ps-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.ps-icon.problem-icon { background: #FEF2F2; color: #DC2626; }
.ps-icon.solution-icon { background: var(--color-accent-light); color: var(--color-accent); }
.ps-card h3 { margin-bottom: 14px; }
.ps-card p { color: var(--color-text-secondary); font-size: 0.98rem; line-height: 1.7; }
@media (max-width: 768px) { .ps-grid { grid-template-columns: 1fr; } .ps-card { padding: 32px; } }

/* == SHOWCASE == */
.showcase { background: var(--color-bg); overflow: hidden; }
.showcase-track-wrapper {
  position: relative;
  margin: 0 -24px;
}
.showcase-track-wrapper::before,
.showcase-track-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.showcase-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--color-bg), transparent); }
.showcase-track-wrapper::after { right: 0; background: linear-gradient(to left, var(--color-bg), transparent); }
.showcase-track {
  display: flex; gap: 24px;
  animation: showcase-scroll 35s linear infinite;
  width: max-content;
}
.showcase-track:hover { animation-play-state: paused; }
@keyframes showcase-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.showcase-item {
  flex-shrink: 0; width: 480px;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--color-border-light);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  background: var(--color-surface);
}
.showcase-item:hover {
  box-shadow: var(--shadow-lg); transform: scale(1.02);
}
.showcase-item img {
  width: 100%; height: 300px; object-fit: cover; object-position: top;
  display: block;
}
.showcase-item-info {
  padding: 16px 20px; display: flex; align-items: center; justify-content: space-between;
}
.showcase-site-name {
  font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--color-text);
}
.showcase-site-tag {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--color-accent); background: var(--color-accent-light);
  padding: 3px 10px; border-radius: 100px;
}
@media (max-width: 768px) {
  .showcase-item { width: 340px; }
  .showcase-item img { height: 210px; }
}

/* == CHECKLIST == */
.checklist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.check-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--color-surface); border-radius: var(--radius-md); padding: 24px;
  box-shadow: var(--shadow-card); transition: all var(--transition);
}
.check-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.check-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--color-accent-light); color: var(--color-accent);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.check-item h4 { margin-bottom: 4px; font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; }
.check-item p { color: var(--color-text-secondary); font-size: 0.88rem; line-height: 1.6; }
@media (max-width: 900px) { .checklist-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .checklist-grid { grid-template-columns: 1fr; } }

/* == LIVE FEED SECTION == */
.live-content { background: var(--color-bg-alt); }
.live-feed-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.live-feed-text h3 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 5vw, 3.5rem); font-weight: 500; margin-bottom: 24px; letter-spacing: -0.03em; line-height: 1.1; color: var(--color-text);
}
.live-feed-text h3 em {
  font-style: italic; color: var(--color-accent);
}
.live-feed-text p {
  color: var(--color-text-secondary); font-size: 0.98rem; line-height: 1.7; margin-bottom: 20px;
}
.live-feed-features { display: flex; flex-direction: column; gap: 14px; }
.live-feed-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.92rem; color: var(--color-text-secondary);
}
.live-feed-feature .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--color-accent); flex-shrink: 0;
}
.feed-mockup {
  background: var(--color-surface); border-radius: var(--radius-lg); padding: 0;
  box-shadow: var(--shadow-md); overflow: hidden; border: 1px solid var(--color-border-light);
}
.feed-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; border-bottom: 1px solid var(--color-border-light);
  background: var(--color-accent-subtle);
}
.feed-header-left { display: flex; align-items: center; gap: 10px; }
.feed-live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #E53E3E;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.feed-header-left span {
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--color-accent);
}
.feed-header-right { font-size: 0.75rem; color: var(--color-text-tertiary); }
.feed-items {
  padding: 0; position: relative; overflow: hidden;
  min-height: 320px;
}
.feed-item {
  padding: 20px 24px; border-bottom: 1px solid var(--color-border-light);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}
.feed-item:last-child { border-bottom: none; }
.feed-item-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.feed-category {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--color-accent);
  background: var(--color-accent-light); padding: 2px 8px; border-radius: 4px;
}
.feed-time { font-size: 0.75rem; color: var(--color-text-tertiary); }
.feed-item h4 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 500;
  line-height: 1.4; color: var(--color-text);
}
.feed-item p {
  font-size: 0.85rem; color: var(--color-text-tertiary); margin-top: 4px; line-height: 1.5;
}
.feed-footer {
  padding: 14px 24px; background: var(--color-bg-alt);
  text-align: center; font-size: 0.78rem; color: var(--color-text-tertiary);
}
.feed-footer span { color: var(--color-accent); font-weight: 600; }

/* Feed animation */
.feed-item-enter {
  animation: feedSlideIn 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes feedSlideIn {
  from { opacity: 0; transform: translateY(-20px); max-height: 0; padding-top: 0; padding-bottom: 0; }
  to { opacity: 1; transform: translateY(0); max-height: 150px; padding-top: 20px; padding-bottom: 20px; }
}
.feed-item-exit {
  animation: feedSlideOut 0.5s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes feedSlideOut {
  from { opacity: 1; max-height: 150px; }
  to { opacity: 0; max-height: 0; padding-top: 0; padding-bottom: 0; border-bottom-width: 0; }
}

@media (max-width: 768px) { .live-feed-container { grid-template-columns: 1fr; } }

/* == HOW IT WORKS == */
.how-it-works { background: var(--color-bg); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 40px;
  left: calc(16.66% + 28px); right: calc(16.66% + 28px);
  height: 2px; background: var(--color-border);
}
.step-card { text-align: center; position: relative; }
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  margin: 0 auto 24px; position: relative; z-index: 1;
  box-shadow: 0 4px 12px rgba(27,107,90,0.25);
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { color: var(--color-text-secondary); font-size: 0.95rem; max-width: 280px; margin: 0 auto; line-height: 1.65; }
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 40px; max-width: 400px; margin: 0 auto; }
  .steps-grid::before { top: 0; bottom: 0; left: 27px; right: auto; width: 2px; height: 100%; }
  .step-card { text-align: left; padding-left: 80px; }
  .step-number { position: absolute; left: 0; top: 0; margin: 0; }
}

/* == PACKAGES == */
.packages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.package-card {
  background: var(--color-surface); border-radius: var(--radius-lg); padding: 36px 28px;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column;
  transition: all var(--transition); position: relative; border: 1.5px solid transparent;
}
.package-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.package-card.featured {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--color-accent);
}
.package-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--color-accent); color: #fff; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 14px; border-radius: 20px;
}
.package-name {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-tertiary); margin-bottom: 6px;
}
.package-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; margin-bottom: 4px; }
.package-title span { font-size: 0.95rem; color: var(--color-text-secondary); font-weight: 400; }
.package-desc { color: var(--color-text-secondary); font-size: 0.9rem; line-height: 1.6; margin-bottom: 24px; flex-grow: 1; }
.package-features { margin-bottom: 28px; }
.package-features li {
  display: flex; align-items: center; gap: 8px; font-size: 0.88rem;
  color: var(--color-text-secondary); padding: 6px 0;
}
.package-features li svg { flex-shrink: 0; color: var(--color-accent); }
.package-card .btn { width: 100%; justify-content: center; }
@media (max-width: 1050px) { .packages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .packages-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; } }

/* == ADD-ONS == */
.addons { background: var(--color-bg-alt); }
.addons-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.addon-card {
  background: var(--color-surface); border-radius: var(--radius-md); padding: 28px 22px;
  box-shadow: var(--shadow-card); text-align: center; transition: all var(--transition);
}
.addon-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.addon-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--color-accent-light); color: var(--color-accent);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.addon-card h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.92rem; margin-bottom: 8px; }
.addon-card p { color: var(--color-text-secondary); font-size: 0.83rem; line-height: 1.55; }
@media (max-width: 900px) { .addons-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .addons-grid { grid-template-columns: 1fr; } }

/* == FAQ == */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; font-family: var(--font-display); font-size: 1.1rem; font-weight: 500;
  text-align: left; color: var(--color-text); transition: color var(--transition); gap: 16px;
}
.faq-question:hover { color: var(--color-accent); }
.faq-toggle {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--color-bg-alt); display: flex; align-items: center;
  justify-content: center; transition: all var(--transition);
}
.faq-item.active .faq-toggle {
  background: var(--color-accent); color: #fff; transform: rotate(45deg);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-answer-inner { padding-bottom: 24px; color: var(--color-text-secondary); font-size: 0.95rem; line-height: 1.7; max-width: 640px; }

/* == CTA == */
.cta-section {
  background: var(--color-accent); text-align: center; padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
              radial-gradient(circle at 80% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; position: relative; }
.cta-section p {
  color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 520px;
  margin: 0 auto 36px; line-height: 1.7; position: relative;
}
.btn-cta {
  display: inline-flex; align-items: center; gap: 8px; padding: 16px 36px;
  font-size: 1rem; font-weight: 600; border-radius: var(--radius-md);
  background: #fff; color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15); transition: all var(--transition); position: relative;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* == CHATBOT == */
.chatbot-fab {
  position: fixed; bottom: 90px; right: 32px; z-index: 950;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-accent); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(27,107,90,0.35);
  cursor: pointer; transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.chatbot-fab:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(27,107,90,0.45); }
.chatbot-fab .fab-close { display: none; }
.chatbot-fab.active .fab-chat { display: none; }
.chatbot-fab.active .fab-close { display: block; }
.chatbot-badge {
  position: absolute; top: -2px; right: -2px; width: 18px; height: 18px;
  background: #E53E3E; border-radius: 50%; border: 2px solid var(--color-bg);
  font-size: 0.6rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.chatbot-fab.active .chatbot-badge { display: none; }

.chatbot-window {
  position: fixed; bottom: 210px; right: 32px; z-index: 951;
  width: 370px; max-height: 460px;
  background: var(--color-surface); border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.04);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(16px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow: visible;
}
.chatbot-window.open {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
}
.chatbot-header {
  background: var(--color-accent); color: #fff; padding: 18px 20px;
  display: flex; align-items: center; gap: 12px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.chatbot-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.2); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.chatbot-header-text h4 {
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; color: #fff; margin: 0;
}
.chatbot-header-text p {
  font-size: 0.75rem; color: rgba(255,255,255,0.7); margin: 2px 0 0;
}
.chatbot-online-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #48BB78;
  display: inline-block; margin-right: 4px; vertical-align: middle;
}
.chatbot-messages {
  flex: 1; overflow-y: auto; padding: 20px 16px; display: flex;
  flex-direction: column; gap: 12px; max-height: 320px;
  scroll-behavior: smooth;
}
.chat-msg {
  max-width: 85%; padding: 12px 16px; border-radius: 16px;
  font-size: 0.88rem; line-height: 1.55; animation: chatPop 0.3s cubic-bezier(0.4,0,0.2,1);
}
@keyframes chatPop {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg.bot {
  background: var(--color-bg-alt); color: var(--color-text);
  align-self: flex-start; border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: var(--color-accent); color: #fff;
  align-self: flex-end; border-bottom-right-radius: 4px;
}
.chat-msg a {
  color: var(--color-accent); font-weight: 600; text-decoration: underline;
  text-underline-offset: 2px;
}
.chat-msg.bot a { color: var(--color-accent); }
.chat-msg.user a { color: #fff; }
.chat-quick-replies {
  display: flex; flex-wrap: wrap; gap: 6px; padding: 0 16px 12px;
}
.chat-quick-btn {
  padding: 8px 14px; border-radius: 100px;
  border: 1.5px solid var(--color-accent); background: transparent;
  color: var(--color-accent); font-size: 0.8rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; font-family: var(--font-body);
}
.chat-quick-btn:hover { background: var(--color-accent); color: #fff; }
.chatbot-input-area {
  display: flex; gap: 8px; padding: 12px 16px;
  border-top: 1px solid var(--color-border-light);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: var(--color-surface);
}
.chatbot-input {
  flex: 1; padding: 10px 14px; border: 1.5px solid var(--color-border);
  border-radius: 100px; font-size: 0.88rem; font-family: var(--font-body);
  outline: none; transition: border-color 0.2s; color: var(--color-text);
}
.chatbot-input:focus { border-color: var(--color-accent); }
.chatbot-input::placeholder { color: var(--color-text-tertiary); }
.chatbot-send {
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: var(--color-accent); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; flex-shrink: 0;
}
.chatbot-send:hover { background: var(--color-accent-hover); }
.chat-typing { display: flex; gap: 4px; padding: 12px 16px; align-self: flex-start; }
.chat-typing span {
  width: 7px; height: 7px; border-radius: 50%; background: var(--color-text-tertiary);
  animation: typingDot 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

@media (max-width: 500px) {
  .chatbot-window { left: 12px; right: 12px; bottom: 160px; width: auto; }
  .chatbot-fab { bottom: 84px; right: 24px; }
}

/* == SCROLL TO TOP == */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(27,107,90,0.3);
  cursor: pointer; border: none;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--color-accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,107,90,0.4); }

/* == FOOTER == */
.footer {
  background: var(--color-text); color: rgba(255,255,255,0.5);
  padding: 48px 0 36px; text-align: center;
}
.footer-brand {
  font-family: var(--font-body); font-size: 1.1rem; font-weight: 800;
  letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 10px;
  display: flex; align-items: baseline; justify-content: center; gap: 10px;
}
.footer-brand .brand-main { display: flex; }
.footer-brand .brand-press { color: rgba(255,255,255,0.9); }
.footer-brand .brand-bulk { color: rgba(255,255,255,0.5); }
.footer-brand .brand-sep {
  width: 1px; height: 14px; background: rgba(255,255,255,0.15); align-self: center;
}
.footer-brand .brand-powered {
  font-size: 0.68rem; font-weight: 400; text-transform: none;
  letter-spacing: 0.02em; color: rgba(255,255,255,0.3); align-self: center;
}
.footer-tagline { font-size: 0.88rem; max-width: 480px; margin: 0 auto 24px; line-height: 1.6; }
.footer-disclaimer {
  font-size: 0.76rem; opacity: 0.45; line-height: 1.6; max-width: 500px; margin: 0 auto;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
}