/*
Theme Name: SellerAssistant
Theme URI: https://theresellerassistant.com
Author: BITFORCE SOLUTIONS LIMITED
Author URI: https://theresellerassistant.com
Description: Professional Amazon Agency Website for SellerAssistant — Online Arbitrage, Private Label & Full Account Management.
Version: 1.0.2
License: GNU General Public License v2 or later
Text Domain: sellerassistant
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg:            #fafafa;
  --fg:            #131921;
  --card:          #ffffff;
  --primary:       #131921;
  --primary-fg:    #ffffff;
  --secondary:     #f0f0f0;
  --muted-fg:      #6b7280;
  --accent:        #FF9900;
  --accent-fg:     #131921;
  --border:        #e5e7eb;
  --radius:        12px;
  --font-sans:     'Inter', system-ui, sans-serif;
  --font-display:  'Plus Jakarta Sans', 'Inter', sans-serif;
  --nav-h:         76px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--primary);
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* All SVG icons — base display rules */
svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ============================================================
   WORDPRESS ADMIN BAR COMPENSATION
   ============================================================ */
.admin-bar #site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar #site-header {
    top: 46px;
  }
  .admin-bar #mobile-menu {
    padding-top: calc(6rem + 46px);
  }
}

/* ============================================================
   LAYOUT
   ============================================================ */
.sa-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1024px) {
  .sa-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.sa-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.sa-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.sa-grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .sa-grid-2  { grid-template-columns: 1fr 1fr; }
  .sa-grid-3  { grid-template-columns: repeat(3, 1fr); }
  .sa-grid-4  { grid-template-columns: repeat(4, 1fr); }
}

.sa-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.sa-text-muted   { color: var(--muted-fg); }
.sa-text-accent  { color: var(--accent); }
.sa-text-center  { text-align: center; }

.sa-gradient-text {
  background: linear-gradient(135deg, #ff9900, #ffb74d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.sa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
}

.sa-btn svg {
  width: 1.125rem;
  height: 1.125rem;
}

.sa-btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.sa-btn-full {
  width: 100%;
  justify-content: center;
}

.sa-btn-accent {
  background: var(--accent);
  color: var(--accent-fg);
  border-color: var(--accent);
}
.sa-btn-accent:hover {
  background: #e68900;
  border-color: #e68900;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,153,0,0.3);
}

.sa-btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.sa-btn-outline:hover {
  background: var(--secondary);
  border-color: #9ca3af;
}

.sa-btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
}
.sa-btn-primary:hover {
  background: #1e2d3e;
  transform: translateY(-1px);
}

.sa-btn-white {
  background: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
}
.sa-btn-white:hover { background: #f3f4f6; }

/* ============================================================
   CARDS
   ============================================================ */
.sa-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.sa-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
}

.sa-card-dark {
  background: var(--primary);
  color: #fff;
  border: none;
}

.sa-card-featured {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 30px rgba(255,153,0,0.15);
  transform: scale(1.03);
}
.sa-card-featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 18px 44px rgba(255,153,0,0.2);
}

.sa-card-top-accent  { border-top: 4px solid var(--accent); }
.sa-card-top-primary { border-top: 4px solid var(--primary); }

/* ============================================================
   BADGE / PILL
   ============================================================ */
.sa-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
}
.sa-badge svg {
  width: 1rem;
  height: 1rem;
}
.sa-badge-accent  { background: rgba(255,153,0,0.12); color: var(--accent); }
.sa-badge-primary { background: rgba(19,25,33,0.08);  color: var(--primary); }

/* ============================================================
   ICON BOX
   ============================================================ */
.sa-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.sa-icon-box svg {
  width: 1.75rem;
  height: 1.75rem;
}
.sa-icon-accent  { background: rgba(255,153,0,0.12); color: var(--accent); }
.sa-icon-primary { background: rgba(19,25,33,0.08);  color: var(--primary); }

/* ============================================================
   FORMS
   ============================================================ */
.sa-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.375rem;
}

.sa-input,
.sa-textarea,
.sa-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--fg);
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.sa-input:focus,
.sa-textarea:focus,
.sa-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,153,0,0.15);
}
.sa-textarea {
  min-height: 120px;
  resize: vertical;
}

.sa-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sa-field-error {
  color: #dc2626;
  font-size: 0.8125rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.125rem 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

#site-header.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  padding: 0.75rem 0;
}

.sa-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.sa-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}

.sa-logo-icon {
  width: 2.375rem;
  height: 2.375rem;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.sa-logo:hover .sa-logo-icon { transform: rotate(12deg); }
.sa-logo-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  color: var(--accent-fg);
}

.sa-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.sa-logo-text .dot { color: var(--accent); }

/* Desktop nav links */
.sa-nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
@media (min-width: 768px) {
  .sa-nav-links { display: flex; }
}

.sa-nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(19,25,33,0.75);
  transition: color 0.2s;
  text-decoration: none;
}
.sa-nav-link:hover,
.sa-nav-link.active {
  color: var(--accent);
}

.sa-nav-cta { margin-left: 0.5rem; }

/* Hamburger */
.sa-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 300;
}
@media (min-width: 768px) { .sa-hamburger { display: none; } }

.sa-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.sa-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sa-hamburger.open span:nth-child(2) { opacity: 0; }
.sa-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
#sa-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: #ffffff;
  padding: 7rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
}
#sa-mobile-menu.open { display: flex; }

.sa-mobile-link {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.625rem;
  color: var(--primary);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color 0.2s;
}
.sa-mobile-link:hover,
.sa-mobile-link.active { color: var(--accent); }
.sa-mobile-cta { margin-top: 1.5rem; }

/* ============================================================
   PAGE WRAP — accounts for fixed header height
   ============================================================ */
.sa-page-wrap {
  padding-top: var(--nav-h);
}

.admin-bar .sa-page-wrap {
  padding-top: calc(var(--nav-h) + 32px);
}
@media screen and (max-width: 782px) {
  .admin-bar .sa-page-wrap {
    padding-top: calc(var(--nav-h) + 46px);
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--primary);
  color: #fff;
  padding: 5rem 0 2.5rem;
  border-radius: 2.5rem 2.5rem 0 0;
  margin-top: 5rem;
}

.sa-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .sa-footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.sa-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.sa-footer-logo-icon {
  width: 2.375rem;
  height: 2.375rem;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sa-footer-logo-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  color: #fff;
}
.sa-footer-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
}

.sa-footer-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 22rem;
}

.sa-footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1.25rem;
}

.sa-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.sa-footer-link {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}
.sa-footer-link:hover {
  color: #fff;
  transform: translateX(4px);
}

.sa-footer-contact-item {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.sa-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}
@media (min-width: 768px) {
  .sa-footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.sa-footer-bottom-links { display: flex; gap: 1.5rem; }
.sa-footer-bottom-link {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.sa-footer-bottom-link:hover { color: #fff; }

/* WhatsApp floating button */
.sa-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 300;
  width: 3.375rem;
  height: 3.375rem;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.sa-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}
.sa-whatsapp svg {
  width: 1.625rem;
  height: 1.625rem;
  color: #fff;
}
.sa-whatsapp-tip {
  position: absolute;
  right: calc(100% + 0.875rem);
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: var(--primary);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.sa-whatsapp:hover .sa-whatsapp-tip {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.sa-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.sa-fade.left  { transform: translateX(-28px); }
.sa-fade.right { transform: translateX(28px); }
.sa-fade.visible {
  opacity: 1;
  transform: translate(0, 0);
}
.sa-fade-d1 { transition-delay: 0.1s; }
.sa-fade-d2 { transition-delay: 0.2s; }
.sa-fade-d3 { transition-delay: 0.3s; }

/* ============================================================
   SECTION HEADER (centred, used on most pages)
   ============================================================ */
.sa-section-hdr {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 4rem;
}
.sa-section-hdr h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.875rem;
}
.sa-section-hdr p {
  color: var(--muted-fg);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* PAGE HEADER (large centred intro) */
.sa-page-hdr {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto 5rem;
  padding-top: 3rem;
}
.sa-page-hdr h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  margin-bottom: 1.125rem;
}
.sa-page-hdr p {
  color: var(--muted-fg);
  font-size: 1.125rem;
  line-height: 1.75;
}

/* ============================================================
   HOME: HERO
   ============================================================ */
.sa-hero {
  padding: 4.5rem 0 5rem;
}
@media (min-width: 1024px) {
  .sa-hero { padding: 5rem 0 6rem; }
}

.sa-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .sa-hero-grid { grid-template-columns: 1fr 1fr; }
}

.sa-hero-content h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  margin-top: 1.25rem;
}
.sa-hero-content > p {
  font-size: 1.125rem;
  color: var(--muted-fg);
  line-height: 1.75;
  max-width: 36rem;
  margin-bottom: 2rem;
}

.sa-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.sa-social-proof {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(19,25,33,0.6);
}
.sa-avatar-stack {
  display: flex;
}
.sa-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -0.625rem;
}
.sa-avatar:first-child { margin-left: 0; }
.sa-avatar svg { width: 1rem; height: 1rem; color: var(--accent); }

.sa-stars { display: flex; gap: 2px; color: #f59e0b; font-size: 1rem; }

.sa-hero-img {
  position: relative;
  border-radius: 2.25rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  aspect-ratio: 4/3;
}
@media (min-width: 1024px) {
  .sa-hero-img { aspect-ratio: auto; height: 560px; }
}
.sa-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sa-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,25,33,0.8), transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.sa-stat-card {
  background: rgba(19,25,33,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 1.125rem 1.375rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  max-width: 18rem;
}
.sa-stat-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--accent);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sa-stat-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  color: var(--accent-fg);
}
.sa-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.2rem;
}
.sa-stat-val {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: #fff;
}

/* ============================================================
   HOME: SERVICES HIGHLIGHT SECTION
   ============================================================ */
.sa-services-bg {
  background: rgba(240,240,240,0.5);
  padding: 5.5rem 0;
}

.sa-svc-card {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sa-svc-card .sa-icon-box {
  margin-bottom: 1.375rem;
}
.sa-svc-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.625rem;
}
.sa-svc-card > p {
  color: var(--muted-fg);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.sa-feat-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.575rem;
  margin-bottom: 1.5rem;
}
.sa-feat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(19,25,33,0.85);
}
.sa-feat-item svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--accent);
  flex-shrink: 0;
}
.sa-feat-item.primary svg { color: var(--primary); }

/* ============================================================
   HOME: TESTIMONIALS
   ============================================================ */
.sa-testimonials { padding: 5.5rem 0; }

.sa-testi-card {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.sa-testi-bg-star {
  position: absolute;
  top: -0.25rem;
  right: 1rem;
  font-size: 5.5rem;
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
}
.sa-testi-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 1.125rem;
}
.sa-testi-quote {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  flex: 1;
  margin-bottom: 1.5rem;
}
.sa-testi-name  { font-weight: 700; font-family: var(--font-display); color: #fff; }
.sa-testi-brand { font-size: 0.8125rem; color: rgba(255,255,255,0.5); margin-top: 0.15rem; }

/* ============================================================
   HOME: CTA BANNER
   ============================================================ */
.sa-cta-wrap { padding: 0 0 3rem; }

.sa-cta-banner {
  background: var(--accent);
  border-radius: 2rem;
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .sa-cta-banner { padding: 4rem 3rem; } }
.sa-cta-banner h2 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  color: var(--primary);
  margin-bottom: 0.875rem;
}
.sa-cta-banner > p {
  color: rgba(19,25,33,0.72);
  font-size: 1.0625rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.sa-svc-section { margin-bottom: 8rem; }
.sa-svc-section:last-child { margin-bottom: 0; }

.sa-svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .sa-svc-grid { grid-template-columns: 1fr 1fr; }
}

.sa-svc-img {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
  aspect-ratio: 4/3;
}
.sa-svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sa-svc-content h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  margin-bottom: 0.875rem;
}
.sa-svc-content > p {
  color: var(--muted-fg);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.sa-svc-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
  margin-bottom: 1.75rem;
}
@media (max-width: 640px) {
  .sa-svc-feat-grid { grid-template-columns: 1fr; }
}

.sa-svc-feat {
  display: flex;
  gap: 0.75rem;
}
.sa-svc-feat svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.sa-svc-feat h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.sa-svc-feat p {
  font-size: 0.8125rem;
  color: var(--muted-fg);
}

.sa-tools-box {
  background: rgba(240,240,240,0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.125rem 1.375rem;
}
.sa-tools-box h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-fg);
  margin-bottom: 0.75rem;
}
.sa-tools-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sa-tool {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.3rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.sa-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sa-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
}
.sa-checklist-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.sa-checklist-item span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(19,25,33,0.8);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.sa-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}
@media (min-width: 1024px) {
  .sa-about-grid { grid-template-columns: 1fr 1fr; }
}

.sa-about-img {
  border-radius: 2.25rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.13);
}
.sa-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sa-about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.sa-stat-item {
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
}
.sa-stat-item.primary { border-color: var(--primary); }
.sa-stat-item-val {
  font-size: 2.375rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.sa-stat-item-lbl {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
}

.sa-why-card {
  padding: 2rem;
  height: 100%;
  text-align: center;
}
.sa-why-card .sa-icon-box { margin: 0 auto 1.375rem; }
.sa-why-card h3 { font-size: 1.2rem; margin-bottom: 0.625rem; }
.sa-why-card p { font-size: 0.9375rem; color: var(--muted-fg); line-height: 1.7; }

/* ============================================================
   PRICING PAGE
   ============================================================ */
.sa-pricing-bg { background: rgba(240,240,240,0.3); }

.sa-tabs {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0.3rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  flex-wrap: wrap;
  gap: 0.125rem;
}

.sa-tab-btn {
  padding: 0.7rem 1.375rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  background: none;
  color: var(--muted-fg);
  cursor: pointer;
  transition: all 0.2s;
}
.sa-tab-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(19,25,33,0.2);
}
.sa-tab-btn:hover:not(.active) { color: var(--primary); }

.sa-pricing-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 70rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .sa-pricing-panel { grid-template-columns: repeat(3, 1fr); }
}
.sa-pricing-panel.active { display: grid; }

.sa-pricing-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.sa-popular-badge {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--accent-fg);
  padding: 0.25rem 0.875rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px rgba(255,153,0,0.3);
  white-space: nowrap;
}
.sa-plan-name {
  font-size: 1.3rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.sa-plan-desc {
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-bottom: 1.5rem;
  min-height: 2.5rem;
}
.sa-plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.75rem;
}
.sa-plan-price-val {
  font-size: 2.75rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--primary);
  line-height: 1;
}
.sa-plan-price-period {
  color: var(--muted-fg);
  font-weight: 500;
  font-size: 0.9375rem;
}
.sa-plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
  margin-bottom: 2rem;
  list-style: none;
}
.sa-plan-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(19,25,33,0.85);
}
.sa-plan-feat svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.sa-plan-feat.missing {
  opacity: 0.4;
  text-decoration: line-through;
  color: var(--muted-fg);
}
.sa-plan-feat.missing svg { color: var(--muted-fg); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.sa-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .sa-contact-grid { grid-template-columns: 2fr 3fr; gap: 5rem; }
}

.sa-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sa-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.sa-contact-icon {
  width: 2.875rem;
  height: 2.875rem;
  background: rgba(255,153,0,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sa-contact-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  color: var(--accent);
}
.sa-contact-lbl {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.sa-contact-val {
  color: var(--muted-fg);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.sa-contact-sub {
  font-size: 0.75rem;
  color: var(--muted-fg);
  margin-top: 0.2rem;
}

.sa-contact-divider {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 0.5rem;
}

.sa-wa-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: none;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.sa-wa-link:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.sa-wa-link svg {
  width: 1.25rem;
  height: 1.25rem;
  color: currentColor;
}

.sa-form-card {
  padding: 2rem;
  border-top: 4px solid var(--accent);
}
@media (min-width: 768px) { .sa-form-card { padding: 2.5rem; } }

.sa-form-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sa-success-msg {
  display: none;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  padding: 0.875rem 1.125rem;
  color: #15803d;
  font-weight: 600;
  font-size: 0.9375rem;
}
.sa-success-msg.visible { display: block; }

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 640px) {
  .sa-hero-btns { flex-direction: column; }
  .sa-hero-btns .sa-btn { width: 100%; }
  .sa-tabs { width: 100%; justify-content: center; }
  .sa-tab-btn { font-size: 0.8125rem; padding: 0.6rem 0.875rem; }
  .sa-about-stats { grid-template-columns: 1fr 1fr; }
}

/* Hover lift on why/service cards */
.sa-why-card:hover,
.sa-svc-card:hover .sa-icon-box {
  transform: translateY(-6px);
}
.sa-svc-card:hover .sa-icon-box {
  transform: scale(1.1);
  transition-duration: 0.2s;
}
