/* ==================== SLASH MOTIF ==================== */
.slash-divider {
  display: inline-flex;
  align-items: flex-end;
  gap: 6px;
  height: 22px;
  flex-shrink: 0;
}
.slash-divider span {
  width: 4px;
  height: 100%;
  border-radius: 3px;
  background: var(--gradient-brand);
  transform: skewX(-16deg);
}
.slash-divider span:nth-child(1) { height: 60%; opacity: 0.55; }
.slash-divider span:nth-child(2) { height: 100%; opacity: 0.85; }
.slash-divider span:nth-child(3) { height: 78%; opacity: 1; }

.slash-field {
  position: absolute;
  pointer-events: none;
}
.slash-corner {
  position: absolute;
  width: 200px;
  height: 200px;
  pointer-events: none;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--fs-button);
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--font-sans);
}
.btn-md { padding: 13px 24px; }
.btn-lg { padding: 17px 32px; font-size: 0.95rem; }
.btn-primary { background: var(--gradient-brand); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-secondary { background: var(--white); color: var(--navy); box-shadow: inset 0 0 0 1.5px rgba(11,43,51,0.14); }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px var(--emerald); }
.btn-ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.35); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.7); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.35s var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

/* ==================== NAVBAR ==================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(248, 250, 248, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(11, 43, 51, 0.08);
  box-shadow: 0 8px 30px rgba(11, 43, 51, 0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); width: 100%; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; color: var(--navy); flex-shrink: 0; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand-accent { color: var(--emerald); }
.nav-links { display: flex; align-items: center; gap: var(--space-4); flex: 1; justify-content: center; }
.nav-link {
  font-size: var(--fs-nav); font-weight: 500; color: var(--text-secondary);
  padding: 8px 2px; position: relative; transition: color 0.25s ease;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--gradient-brand); border-radius: 2px; transition: width 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--navy); }
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }
.nav-link.is-active { color: var(--navy); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: var(--space-4); flex-shrink: 0; }
.nav-contact-link { font-size: var(--fs-nav); font-weight: 500; color: var(--text-secondary); }
.nav-contact-link:hover { color: var(--navy); }
.nav-burger { display: none; background: none; border: none; color: var(--navy); padding: 6px; cursor: pointer; }
.nav-mobile-menu {
  display: none; flex-direction: column; gap: var(--space-3);
  padding: var(--space-4) var(--space-4) var(--space-5); background: var(--white);
  border-bottom: 1px solid rgba(11, 43, 51, 0.08); position: absolute;
  top: var(--nav-height); left: 0; right: 0;
}
.nav-mobile-menu.is-open { display: flex; }
.nav-mobile-link { font-size: 1rem; font-weight: 600; color: var(--navy); padding: 8px 0; }
@media (max-width: 980px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
}

/* ==================== FOOTER ==================== */
.footer { background: var(--navy); color: rgba(255, 255, 255, 0.72); padding-top: var(--space-8); margin-top: var(--space-8); }
.footer-top { display: grid; grid-template-columns: 1.4fr 2fr; gap: var(--space-7); padding-bottom: var(--space-7); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer .brand { color: #fff; }
.footer-tagline { margin-top: var(--space-3); font-size: var(--fs-caption); letter-spacing: 0.12em; text-transform: uppercase; color: var(--emerald); font-weight: 700; }
.footer-desc { margin-top: var(--space-3); max-width: 340px; font-size: 0.9rem; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: var(--space-4); }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.08); color: #fff; transition: background 0.25s ease, transform 0.25s ease; }
.footer-social a:hover { background: var(--emerald); transform: translateY(-2px); }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.footer-col h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.04em; margin-bottom: var(--space-3); }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--emerald); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-2); padding: var(--space-5); font-size: 0.8rem; color: rgba(255, 255, 255, 0.45); }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr; } .footer-cols { grid-template-columns: repeat(2, 1fr); } }

/* ==================== SECTION HEADING ==================== */
.section-heading { max-width: 640px; margin-bottom: var(--space-6); }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2 { font-size: var(--fs-h1); font-weight: 800; color: var(--navy); letter-spacing: -0.02em; line-height: 1.15; }
.section-heading p { margin-top: var(--space-3); font-size: var(--fs-body-lg); color: var(--text-secondary); line-height: 1.7; }

/* ==================== PAGE HERO ==================== */
.page-hero { position: relative; overflow: hidden; padding: var(--space-8) 0 var(--space-7); background: radial-gradient(80% 60% at 85% -10%, rgba(18, 184, 134, 0.10), transparent), var(--background); }
.page-hero .slash-field { right: -10%; top: -10%; width: 60%; opacity: 0.5; }
.page-hero-inner { position: relative; max-width: 860px; }
.page-hero h1 { font-size: var(--fs-display); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; color: var(--navy); }
.page-hero-subtitle { margin-top: var(--space-4); font-size: var(--fs-body-lg); color: var(--text-secondary); max-width: 56ch; line-height: 1.7; }
.hero-actions { display: flex; gap: var(--space-3); margin-top: var(--space-5); flex-wrap: wrap; }

/* ==================== CTA SECTION ==================== */
.cta-section { padding: var(--space-7) 0 var(--space-8); }
.cta-card { position: relative; overflow: hidden; background: var(--gradient-brand); border-radius: var(--radius-xl); padding: var(--space-8) var(--space-6); display: flex; justify-content: center; text-align: center; }
.cta-card .slash-corner { right: -30px; top: -30px; opacity: 0.5; }
.cta-content { position: relative; max-width: 620px; display: flex; flex-direction: column; align-items: center; gap: var(--space-3); }
.cta-content h2 { font-size: var(--fs-h1); font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.cta-content p { color: rgba(255, 255, 255, 0.8); font-size: var(--fs-body-lg); }
.cta-actions { display: flex; gap: var(--space-3); margin-top: var(--space-3); flex-wrap: wrap; justify-content: center; }
.cta-actions .btn-secondary { box-shadow: none; }

/* ==================== FEATURE CARD ==================== */
.feature-card { background: var(--white); border: 1px solid rgba(11, 43, 51, 0.06); border-radius: var(--radius-lg); padding: var(--space-5); box-shadow: var(--shadow-sm); transition: box-shadow 0.35s var(--ease-out), border-color 0.35s ease, transform 0.35s var(--ease-out); }
.feature-card:hover { box-shadow: var(--shadow-md); border-color: rgba(18, 184, 134, 0.25); transform: translateY(-4px); }
.feature-card .icon-wrap { width: 46px; height: 46px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; background: var(--gradient-brand-soft); color: var(--emerald-2); margin-bottom: var(--space-4); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ==================== TESTIMONIAL CARD ==================== */
.testimonial-card { margin: 0; background: var(--white); border-radius: var(--radius-lg); padding: var(--space-5); border: 1px solid rgba(11, 43, 51, 0.06); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: var(--space-4); }
.testimonial-card .quote-icon { color: var(--emerald); opacity: 0.4; }
.testimonial-card p { font-size: 1rem; color: var(--text-primary); line-height: 1.7; }
.testimonial-card footer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-card footer .who { display: flex; flex-direction: column; }
.testimonial-card footer strong { font-size: 0.9rem; color: var(--navy); }
.testimonial-card footer small { font-size: 0.78rem; color: var(--text-muted); }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-brand); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; flex-shrink: 0; }

/* ==================== PRICING CARD ==================== */
.pricing-card { position: relative; background: var(--white); border-radius: var(--radius-xl); padding: var(--space-6) var(--space-5); border: 1px solid rgba(11, 43, 51, 0.08); display: flex; flex-direction: column; gap: var(--space-4); box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out); }
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pricing-card.featured { background: var(--navy); color: #fff; transform: scale(1.04); box-shadow: var(--shadow-lg); border-color: transparent; }
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient-brand); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 6px 16px; border-radius: var(--radius-full); }
.pricing-card h3 { font-size: 1.4rem; font-weight: 800; }
.pricing-card.featured h3 { color: #fff; }
.pricing-card .desc { font-size: 0.88rem; color: var(--text-secondary); min-height: 40px; }
.pricing-card.featured .desc { color: rgba(255, 255, 255, 0.72); }
.pricing-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pricing-card li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; }
.pricing-card svg { color: var(--emerald); flex-shrink: 0; }

/* ==================== CASE STUDY CARD ==================== */
.case-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid rgba(11, 43, 51, 0.07); padding: var(--space-5); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: var(--space-3); transition: box-shadow 0.3s ease, transform 0.3s ease; }
.case-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.case-card .top { display: flex; justify-content: space-between; align-items: center; }
.case-card .category { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--emerald-2); background: var(--gradient-brand-soft); padding: 4px 10px; border-radius: var(--radius-full); }
.case-card .timeframe { font-size: 0.78rem; color: var(--mid-grey); }
.case-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); }
.case-card .challenge { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }
.case-card .metrics { display: flex; gap: var(--space-5); margin-top: auto; padding-top: var(--space-3); border-top: 1px dashed rgba(11, 43, 51, 0.12); }
.case-card .metric { display: flex; flex-direction: column; gap: 4px; }
.case-card .metric strong { font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.case-card .metric span { font-size: 0.76rem; color: var(--text-secondary); }

/* ==================== ACCORDION ==================== */
.accordion-list { display: flex; flex-direction: column; gap: 10px; }
.accordion-item { background: var(--white); border: 1px solid rgba(11, 43, 51, 0.07); border-radius: var(--radius-md); overflow: hidden; }
.accordion-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); background: none; border: none; padding: 18px 20px; text-align: left; font-size: 0.95rem; font-weight: 600; color: var(--navy); cursor: pointer; font-family: var(--font-sans); }
.accordion-question .plus-icon { flex-shrink: 0; color: var(--emerald); transition: transform 0.3s var(--ease-out); }
.accordion-item.is-open .plus-icon { transform: rotate(45deg); }
.accordion-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.accordion-item.is-open .accordion-answer { max-height: 400px; }
.accordion-answer p { padding: 0 20px 18px; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ==================== TIMELINE ==================== */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.timeline-step { position: relative; display: flex; flex-direction: column; gap: 10px; }
.timeline-marker { width: 46px; height: 46px; border-radius: 50%; background: var(--gradient-brand); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; margin-bottom: 4px; position: relative; z-index: 1; }
.timeline-connector { position: absolute; top: 23px; left: 46px; width: calc(100% - 30px); height: 2px; background: repeating-linear-gradient(to right, rgba(18,184,134,0.35) 0, rgba(18,184,134,0.35) 6px, transparent 6px, transparent 12px); }
.timeline-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.timeline-step p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }
@media (max-width: 860px) { .timeline { grid-template-columns: 1fr; gap: var(--space-6); } .timeline-connector { display: none; } }

/* ==================== COMPARISON TABLE ==================== */
.comparison-wrap { overflow-x: auto; background: var(--white); border-radius: var(--radius-lg); border: 1px solid rgba(11, 43, 51, 0.08); box-shadow: var(--shadow-sm); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.comparison-table th { text-align: center; font-size: 0.82rem; letter-spacing: 0.03em; color: var(--text-secondary); padding: 18px 16px; border-bottom: 1px solid rgba(11, 43, 51, 0.08); }
.comparison-table th.feature-head { text-align: left; }
.comparison-table th.growth-head { color: var(--emerald-2); font-weight: 700; }
.comparison-table td { text-align: center; padding: 14px 16px; border-bottom: 1px solid rgba(11, 43, 51, 0.05); font-size: 0.88rem; }
.comparison-table td.feature-cell { text-align: left; font-weight: 600; color: var(--navy); }
.comparison-table td.growth-col { background: rgba(18, 184, 134, 0.05); }
.comparison-table .yes { color: var(--emerald); }
.comparison-table .no { color: var(--mid-grey); }
.comparison-table tr:last-child td { border-bottom: none; }

/* ==================== WIDGET GRID ==================== */
.widget-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.widget-card { background: var(--white); border: 1px solid rgba(11, 43, 51, 0.07); border-radius: var(--radius-md); padding: var(--space-4); transition: box-shadow 0.3s ease, transform 0.3s ease; }
.widget-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.widget-card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 8px; }
.widget-card-head h4 { font-size: 0.94rem; font-weight: 700; color: var(--navy); }
.widget-tag { flex-shrink: 0; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--emerald-2); background: var(--gradient-brand-soft); padding: 3px 8px; border-radius: var(--radius-full); white-space: nowrap; }
.widget-card .purpose { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55; margin-bottom: 6px; }
.widget-card .value { font-size: 0.78rem; color: var(--mid-grey); font-style: italic; }
@media (max-width: 980px) { .widget-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .widget-grid { grid-template-columns: 1fr; } }

/* ==================== STAT COUNTER ==================== */
.stat-counter { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.stat-counter .value { font-size: clamp(2rem, 1.6rem + 1.6vw, 2.9rem); font-weight: 800; color: var(--navy); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.stat-counter .line { width: 36px; height: 3px; border-radius: 3px; background: var(--gradient-brand); }
.stat-counter .label { font-size: 0.9rem; color: var(--text-secondary); max-width: 20ch; }

/* ==================== GENERIC SECTION SPACING ==================== */
.section-pad { padding: var(--space-8) 0; }
