/* Smart Geeks Design System v1.0 */

/* ─── CSS Custom Properties ─────────────────────────────────────────────── */
:root {
  --sg-pink:         #E91E8C;
  --sg-pink-light:   #FCE4F3;
  --sg-pink-dark:    #A01260;
  --sg-blue:         #3B82C4;
  --sg-blue-light:   #E0EEFF;
  --sg-blue-dark:    #1E4D7B;
  --sg-green:        #4CAF72;
  --sg-green-light:  #E6F7EC;
  --sg-amber:        #F5A623;
  --sg-amber-light:  #FEF3DC;
  --sg-purple:       #9B59B6;
  --sg-purple-light: #F3EAF9;
  --sg-navy:         #1A1A2E;
  --sg-bg:           #F7F4FF;
  --sg-surface:      #FFFFFF;
  --sg-text:         #1A1A2E;
  --sg-muted:        #6B7280;
  --sg-border:       rgba(26,26,46,0.12);
  --sg-radius-sm:    8px;
  --sg-radius-md:    12px;
  --sg-radius-lg:    20px;
  --sg-radius-xl:    28px;
  --sg-radius-pill:  9999px;
  --sg-shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --sg-shadow-md:    0 4px 16px rgba(0,0,0,.1);
  --sg-transition:   0.18s ease;
}

/* ─── Builder Hero Image Preservation ───────────────────────────────────── */
/* Wraps the first image extracted from SiteOrigin/Elementor when _sge_content
   override is active, so hero images are never lost. */
.sge-builder-hero {
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
}
.sge-builder-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── Rainbow Stripe ─────────────────────────────────────────────────────── */

/* CSS-only fallback: works on all themes regardless of wp_body_open support */
body::before {
  content: '';
  display: block;
  height: 6px;
  background: linear-gradient(90deg,
    var(--sg-pink)   0%,
    var(--sg-purple) 20%,
    var(--sg-blue)   40%,
    var(--sg-green)  60%,
    var(--sg-amber)  80%,
    var(--sg-pink)   100%
  );
  width: 100%;
  position: relative;
  z-index: 9999;
}

.sge-rainbow-stripe,
.rainbow-stripe {
  height: 6px;
  background: linear-gradient(90deg,
    var(--sg-pink)   0%,
    var(--sg-purple) 20%,
    var(--sg-blue)   40%,
    var(--sg-green)  60%,
    var(--sg-amber)  80%,
    var(--sg-pink)   100%
  );
  width: 100%;
  display: block;
}

.rainbow-stripe-sm {
  height: 4px;
  background: linear-gradient(90deg,
    var(--sg-pink), var(--sg-purple), var(--sg-blue),
    var(--sg-green), var(--sg-amber)
  );
  border-radius: 2px;
}

/* ─── Typography upgrades ────────────────────────────────────────────────── */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--sg-text);
  background: var(--sg-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  color: var(--sg-navy);
  line-height: 1.2;
}

h1 { font-size: clamp(26px, 5vw, 40px); font-weight: 900; letter-spacing: -0.5px; }
h2 { font-size: clamp(20px, 3.5vw, 28px); font-weight: 800; }
h3 { font-size: clamp(16px, 2.5vw, 20px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; }

p { line-height: 1.65; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.sge-btn,
.sge-btn-primary,
.sge-btn-secondary,
.sge-btn-outline,
.sge-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--sg-radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity var(--sg-transition), transform var(--sg-transition), box-shadow var(--sg-transition);
  line-height: 1;
  white-space: nowrap;
}
.sge-btn:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: var(--sg-shadow-md); }

.sge-btn-primary  { background: var(--sg-pink);   color: #fff; }
.sge-btn-secondary{ background: var(--sg-blue);   color: #fff; }
.sge-btn-outline  { background: transparent; color: var(--sg-pink); border: 2px solid var(--sg-pink); }
.sge-btn-ghost    { background: var(--sg-pink-light); color: var(--sg-pink-dark); }
.sge-btn-dark     { background: var(--sg-navy); color: #fff; }
.sge-btn-sm       { font-size: 12px; padding: 7px 16px; }

.sge-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* ─── Badges / Pills ─────────────────────────────────────────────────────── */
.sge-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--sg-radius-pill);
  letter-spacing: 0.04em;
}
.sge-badge-pink   { background: var(--sg-pink-light);   color: var(--sg-pink-dark); }
.sge-badge-blue   { background: var(--sg-blue-light);   color: var(--sg-blue-dark); }
.sge-badge-green  { background: var(--sg-green-light);  color: #1a6636; }
.sge-badge-amber  { background: var(--sg-amber-light);  color: #7a4f08; }
.sge-badge-purple { background: var(--sg-purple-light); color: #5e2d82; }
.sge-badge-ai     { background: var(--sg-purple-light); color: #5e2d82; }
.sge-badge-new    { background: var(--sg-pink-light);   color: var(--sg-pink-dark); }

/* ─── Card Image (full-bleed image at top of a .sge-card) ───────────────── */
.sge-card-img {
  display: block;
  width: calc(100% + 2.6rem);
  margin: -1.25rem -1.3rem 1rem -1.3rem;
  height: 180px;
  object-fit: cover;
  border-radius: var(--sg-radius-lg) var(--sg-radius-lg) 0 0;
}

/* ─── Service / Feature Cards ────────────────────────────────────────────── */
.sge-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 1.5rem 0;
}

.sge-card {
  background: var(--sg-surface);
  border-radius: var(--sg-radius-lg);
  border: 0.5px solid var(--sg-border);
  padding: 1.25rem 1.3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sg-shadow-sm);
  transition: box-shadow var(--sg-transition), transform var(--sg-transition);
}
.sge-card:hover { box-shadow: var(--sg-shadow-md); transform: translateY(-2px); }

.sge-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.sge-card-pink::before   { background: var(--sg-pink); }
.sge-card-blue::before   { background: var(--sg-blue); }
.sge-card-green::before  { background: var(--sg-green); }
.sge-card-amber::before  { background: var(--sg-amber); }
.sge-card-purple::before { background: var(--sg-purple); }

.sge-card-icon { font-size: 24px; display: block; margin-bottom: 10px; }
.sge-card-icon-pink   { color: var(--sg-pink); }
.sge-card-icon-blue   { color: var(--sg-blue); }
.sge-card-icon-green  { color: var(--sg-green); }
.sge-card-icon-amber  { color: var(--sg-amber); }
.sge-card-icon-purple { color: var(--sg-purple); }

.sge-card-title {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--sg-navy);
  margin: 0 0 6px;
}
.sge-card-title a { color: inherit; text-decoration: none; }
.sge-card-title a:hover { color: var(--sg-pink); }

.sge-card-desc {
  font-size: 13px;
  color: var(--sg-muted);
  line-height: 1.55;
  margin: 0;
}

/* ─── CTA Block ──────────────────────────────────────────────────────────── */
.sge-cta-block {
  background: var(--sg-navy);
  color: #fff;
  border-radius: var(--sg-radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 2rem 0;
}
.sge-cta-block .rainbow-stripe-sm {
  width: 60px;
  margin: 0 auto 1.25rem;
}
.sge-cta-heading {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 0.5rem;
}
.sge-cta-sub {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  margin: 0 0 1.25rem;
}
.sge-cta-block .sge-btn-row { justify-content: center; }
.sge-cta-block .sge-btn-primary { background: var(--sg-pink); }
.sge-cta-block .sge-btn-outline  { border-color: rgba(255,255,255,0.5); color: #fff; }

/* ─── Stat Cards ─────────────────────────────────────────────────────────── */
.sge-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin: 1.5rem 0;
}
.sge-stat-card {
  background: var(--sg-surface);
  border-radius: var(--sg-radius-md);
  border: 0.5px solid var(--sg-border);
  padding: 1.1rem;
  text-align: center;
  box-shadow: var(--sg-shadow-sm);
}
.sge-stat-num {
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
.sge-stat-label {
  font-size: 12px;
  color: var(--sg-muted);
  font-weight: 500;
}

/* ─── Checklist / Feature List ───────────────────────────────────────────── */
.sge-checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sge-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.sge-checklist li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sg-green-light);
  color: var(--sg-green);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── Section Containers ─────────────────────────────────────────────────── */
.sge-section {
  background: var(--sg-surface);
  border-radius: var(--sg-radius-xl);
  border: 0.5px solid var(--sg-border);
  padding: 2rem;
  margin: 1.5rem 0;
}
.sge-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sg-muted);
  margin: 0 0 14px;
}

/* ─── Pricing / Plan Cards ───────────────────────────────────────────────── */
.sge-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 1.5rem 0;
}
.sge-plan-card {
  background: var(--sg-surface);
  border-radius: var(--sg-radius-xl);
  border: 1.5px solid var(--sg-border);
  padding: 1.75rem 1.5rem;
  position: relative;
  box-shadow: var(--sg-shadow-sm);
  transition: box-shadow var(--sg-transition), transform var(--sg-transition);
}
.sge-plan-card:hover { box-shadow: var(--sg-shadow-md); transform: translateY(-3px); }
.sge-plan-card.sge-plan-featured {
  border-color: var(--sg-pink);
  box-shadow: 0 0 0 2px var(--sg-pink-light), var(--sg-shadow-md);
}
.sge-plan-featured-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sg-pink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: var(--sg-radius-pill);
  white-space: nowrap;
}
.sge-plan-name {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--sg-navy);
  margin: 0 0 4px;
}
.sge-plan-price {
  font-family: 'Nunito', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--sg-pink);
  line-height: 1;
  margin: 8px 0 4px;
}
.sge-plan-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--sg-muted);
}
.sge-plan-tagline {
  font-size: 13px;
  color: var(--sg-muted);
  margin: 0 0 1rem;
}

/* ─── FAQ Accordion ──────────────────────────────────────────────────────── */
.sge-faq-item {
  border-bottom: 1px solid var(--sg-border);
  padding: 1rem 0;
}
.sge-faq-question {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--sg-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.sge-faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--sg-pink);
  flex-shrink: 0;
  transition: transform var(--sg-transition);
}
.sge-faq-item.open .sge-faq-question::after { transform: rotate(45deg); }
.sge-faq-answer {
  font-size: 14px;
  color: var(--sg-muted);
  line-height: 1.65;
  padding-top: 0.6rem;
  display: none;
}
.sge-faq-item.open .sge-faq-answer { display: block; }

/* ─── Hero Section ───────────────────────────────────────────────────────── */
.sge-hero {
  background: linear-gradient(135deg, var(--sg-navy) 0%, #2a1a4e 100%);
  color: #fff;
  padding: 4rem 2rem;
  border-radius: var(--sg-radius-xl);
  position: relative;
  overflow: hidden;
}
.sge-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--sg-pink), var(--sg-purple), var(--sg-blue), var(--sg-green), var(--sg-amber));
}
.sge-hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sg-amber);
  margin: 0 0 0.75rem;
}
.sge-hero h1, .sge-hero h2 {
  color: #fff;
  margin: 0 0 0.75rem;
}
.sge-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  margin: 0 0 1.5rem;
  max-width: 560px;
}

/* ─── Page Header Strip ──────────────────────────────────────────────────── */
.sge-page-header {
  padding: 2rem 0 1rem;
  border-bottom: 2px solid var(--sg-border);
  margin-bottom: 2rem;
  position: relative;
}
.sge-page-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--sg-pink);
  border-radius: 2px;
}

/* ─── Process Steps ──────────────────────────────────────────────────────── */
.sge-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.sge-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.sge-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sg-pink-light);
  color: var(--sg-pink-dark);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sge-step-body h4 {
  margin: 0 0 4px;
  font-size: 15px;
}
.sge-step-body p {
  margin: 0;
  font-size: 13px;
  color: var(--sg-muted);
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .sge-cta-block  { padding: 2rem 1.25rem; }
  .sge-plan-grid  { grid-template-columns: 1fr; }
  .sge-card-grid  { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
  .sge-stat-grid  { grid-template-columns: repeat(2, 1fr); }
  .sge-hero       { padding: 2.5rem 1.25rem; }
}

/* ─── Utility Classes ────────────────────────────────────────────────────── */
.sge-text-pink   { color: var(--sg-pink); }
.sge-text-blue   { color: var(--sg-blue); }
.sge-text-green  { color: var(--sg-green); }
.sge-text-muted  { color: var(--sg-muted); }
.sge-text-navy   { color: var(--sg-navy); }
.sge-bg-pink     { background: var(--sg-pink-light); }
.sge-bg-blue     { background: var(--sg-blue-light); }
.sge-mt-sm       { margin-top: 0.75rem; }
.sge-mt-md       { margin-top: 1.5rem; }
.sge-mt-lg       { margin-top: 2.5rem; }
.sge-mb-sm       { margin-bottom: 0.75rem; }
.sge-mb-md       { margin-bottom: 1.5rem; }
.sge-divider     { border: none; border-top: 1px solid var(--sg-border); margin: 2rem 0; }

/* ─── Existing Theme Overrides ───────────────────────────────────────────── */
/* Boost the existing theme buttons to match design system */
.lz-theme-btn,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  border-radius: var(--sg-radius-pill) !important;
  transition: opacity var(--sg-transition), transform var(--sg-transition) !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--sg-shadow-md);
}

/* ─── sg-* Page Layout Utilities (matches ai-solutions inline style) ─────── */
.sg-page { max-width: 900px; margin: 0 auto; padding: 4px 24px 60px; }
.sg-rainbow { height: 5px; background: linear-gradient(90deg,#E91E8C,#9B59B6,#3B82C4,#4CAF72,#F5A623,#E91E8C); display: block; width: 100%; margin-bottom: 0; }
.sg-hero { padding: 20px 0 28px; border-bottom: 1px solid rgba(26,26,46,0.1); margin-bottom: 40px; }
.sg-hero h1 { font-family: 'Nunito', sans-serif; font-size: clamp(26px,5vw,38px); font-weight: 900; color: #1A1A2E; line-height: 1.2; margin-bottom: 16px; }
.sg-hero p { font-family: 'Inter', sans-serif; font-size: 17px; color: #4B5563; line-height: 1.65; max-width: 680px; }
h2.sg-h2 { font-family: 'Nunito', sans-serif; font-size: 22px; font-weight: 800; color: #1A1A2E; margin: 40px 0 16px; }
.sg-section { margin-bottom: 48px; }
.sg-text p, .sg-text li { font-family: 'Inter', sans-serif; font-size: 15px; color: #374151; line-height: 1.7; }
.sg-list { list-style: none; padding: 0; margin: 12px 0 20px; }
.sg-list li { padding: 8px 0 8px 28px; position: relative; border-bottom: 1px solid rgba(26,26,46,0.06); }
.sg-list li::before { content: "\2713"; position: absolute; left: 0; color: #E91E8C; font-weight: 700; }
.sg-list a { color: #3B82C4; text-decoration: none; font-weight: 500; }
.sg-list a:hover { text-decoration: underline; }
.sg-card { background: #fff; border-radius: 16px; padding: 24px 28px; border: 1px solid rgba(26,26,46,0.1); box-shadow: 0 2px 8px rgba(0,0,0,.06); margin-bottom: 16px; }
.sg-card h3 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 18px; color: #1A1A2E; margin: 0 0 8px; }
.sg-card p { font-family: 'Inter', sans-serif; font-size: 14px; color: #374151; line-height: 1.6; margin: 0; }
.sg-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 16px; margin: 20px 0; }
.sg-note { background: #F7F4FF; border-left: 4px solid #9B59B6; border-radius: 0 12px 12px 0; padding: 16px 20px; margin: 24px 0; font-family: 'Inter', sans-serif; font-size: 14px; color: #4B5563; line-height: 1.65; }
.sg-steps { counter-reset: steps; padding: 0; margin: 20px 0; list-style: none; }
.sg-steps li { counter-increment: steps; display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(26,26,46,0.08); }
.sg-steps li::before { content: counter(steps); min-width: 32px; height: 32px; background: #E91E8C; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 14px; flex-shrink: 0; }
.sg-steps li span { font-family: 'Inter', sans-serif; font-size: 15px; color: #374151; line-height: 1.6; padding-top: 4px; }
.sg-service-img { max-width: min(600px, 100%); width: 100%; height: auto; border-radius: 12px; display: block; margin: 28px 0; }
.sg-cta { background: #F7F4FF; border: 1px solid rgba(233,30,140,0.18); border-radius: 20px; padding: 40px 36px; text-align: center; margin: 48px 0 0; }
.sg-cta h2 { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: clamp(20px,4vw,28px); color: #1A1A2E; margin-bottom: 12px; }
.sg-cta p { font-family: 'Inter', sans-serif; color: #4B5563; margin-bottom: 24px; font-size: 16px; }
.sg-btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.sg-btn-pk { display: inline-flex; align-items: center; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; padding: 12px 24px; border-radius: 9999px; text-decoration: none; background: #E91E8C; color: #fff !important; transition: background 0.28s cubic-bezier(0.4,0,0.2,1), transform 0.28s cubic-bezier(0.4,0,0.2,1), box-shadow 0.28s cubic-bezier(0.4,0,0.2,1); }
.sg-btn-pk:hover { background: #c4166f; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(233,30,140,0.32); color: #fff !important; }
.sg-btn-pk:focus-visible { outline: 3px solid #E91E8C; outline-offset: 3px; color: #fff !important; }
.sg-btn-pk:active { background: #a01260; transform: translateY(0); box-shadow: none; color: #fff !important; }
.sg-btn-bl { display: inline-flex; align-items: center; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; padding: 12px 24px; border-radius: 9999px; text-decoration: none; background: #3B82C4; color: #fff !important; transition: background 0.28s cubic-bezier(0.4,0,0.2,1), transform 0.28s cubic-bezier(0.4,0,0.2,1), box-shadow 0.28s cubic-bezier(0.4,0,0.2,1); }
.sg-btn-bl:hover { background: #2563a8; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(59,130,196,0.32); color: #fff !important; }
.sg-btn-bl:focus-visible { outline: 3px solid #3B82C4; outline-offset: 3px; color: #fff; }
.sg-btn-bl:active { background: #1e4d7b; transform: translateY(0); box-shadow: none; color: #fff; }
.sg-hero-layout { display: flex; gap: 32px; align-items: flex-start; }
.sg-hero-text { flex: 1; min-width: 0; }
.sg-hero-img { flex-shrink: 0; }
.sg-hero-img img { border-radius: 12px; display: block; }
.sg-img { border-radius: 12px; display: block; margin: 24px 0; }

/* ─── Hero Image Banner with text overlay ────────────────────────────────── */
.sg-hero-banner { position: relative; border-radius: 16px; overflow: hidden; margin-bottom: 40px; }
.sg-hero-banner-img { width: 100%; height: 320px; object-fit: cover; display: block; }
.sg-hero-banner-content { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.42) 100%); display: flex; align-items: flex-end; padding: 32px 36px; }
.sg-hero-banner-content p { font-family: 'Inter', sans-serif; font-size: 18px; color: #fff !important; text-shadow: 0 1px 4px rgba(0,0,0,0.9), 0 4px 16px rgba(0,0,0,0.6); line-height: 1.6; max-width: 700px; margin: 0; }

@media (max-width: 640px) {
  .sg-page { padding: 4px 16px 48px; }
  .sg-hero-layout { flex-direction: column; }
  .sg-hero-img { order: -1; }
  .sg-hero-banner-img { height: 220px; }
  .sg-hero-banner-content { padding: 20px; }
  .sg-hero-banner-content p { font-size: 15px; }
}

/* ─── Service Hub Pages ──────────────────────────────────────────────────────*/
.sg-hub-header { margin: 0 0 36px; }
.sg-hub-title { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: clamp(24px,5vw,36px); color: #1A1A2E; margin: 0 0 12px; }
.sg-hub-lead { font-family: 'Inter', sans-serif; font-size: 17px; color: #4B5563; line-height: 1.7; max-width: 680px; margin: 0; }
.sg-hub-section { margin: 40px 0; }
.sg-section-label { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 20px; color: #1A1A2E; margin: 0 0 20px; padding-bottom: 10px; border-bottom: 2px solid rgba(26,26,46,0.08); }
.sg-svc-card { background: #fff; border: 1px solid rgba(26,26,46,0.1); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: transform 0.18s ease, box-shadow 0.18s ease; }
.sg-svc-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.sg-svc-icon { font-size: 32px; line-height: 1; }
.sg-svc-title { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 17px; color: #1A1A2E; margin: 0; }
.sg-svc-desc { font-family: 'Inter', sans-serif; font-size: 14px; color: #4B5563; line-height: 1.6; margin: 0; flex: 1; }
.sg-svc-link { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; color: #E91E8C; text-decoration: none; align-self: flex-start; }
.sg-svc-link:hover { text-decoration: underline; }
.sg-most-wanted { background: linear-gradient(135deg, #F7F4FF 0%, #fff 100%); border: 1px solid rgba(233,30,140,0.15); border-radius: 20px; padding: 32px; margin: 0 0 40px; }
.sg-category-block { margin: 28px 0; }
.sg-category-label { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 15px; color: #E91E8C; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 12px; }
.sg-svc-link-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.sg-svc-link-list a { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; color: #1A1A2E; background: #F7F4FF; border: 1px solid rgba(26,26,46,0.1); padding: 8px 16px; border-radius: 99px; text-decoration: none; transition: background 0.18s, color 0.18s, border-color 0.18s; }
.sg-svc-link-list a:hover { background: #E91E8C; color: #fff; border-color: #E91E8C; }
.sg-coming-note { background: #f8f9fa; border: 1px dashed rgba(26,26,46,0.15); border-radius: 12px; padding: 16px 20px; margin: 16px 0; }
.sg-coming-note p { font-family: 'Inter', sans-serif; font-size: 14px; color: #6B7280; margin: 0; }
.sg-hub-trust { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 16px; margin: 32px 0; }
.sg-trust-item { background: #fff; border: 1px solid rgba(26,26,46,0.08); border-radius: 12px; padding: 18px 16px; text-align: center; }
.sg-trust-icon { font-size: 28px; display: block; margin-bottom: 8px; }
.sg-trust-label { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 14px; color: #1A1A2E; display: block; margin-bottom: 4px; }
.sg-trust-sub { font-family: 'Inter', sans-serif; font-size: 13px; color: #6B7280; }

/* ─── Product Detail Pages ───────────────────────────────────────────────────*/
.sg-product-detail { font-family: 'Inter', sans-serif; }
.sg-product-intro { font-size: 17px; color: #374151; line-height: 1.75; margin: 0 0 28px; }
.sg-avail-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 36px; padding: 0; list-style: none; }
.sg-avail-chip { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; color: #374151; background: #F7F4FF; border: 1px solid rgba(26,26,46,0.1); border-radius: 99px; padding: 6px 14px; display: inline-flex; align-items: center; gap: 6px; }
.sg-detail-section { margin: 36px 0; }
.sg-detail-h2 { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 22px; color: #1A1A2E; margin: 0 0 16px; }
.sg-checklist { list-style: none; margin: 0; padding: 0; }
.sg-checklist li { font-family: 'Inter', sans-serif; font-size: 15px; color: #374151; padding: 10px 0 10px 36px; position: relative; border-bottom: 1px solid rgba(26,26,46,0.06); line-height: 1.55; }
.sg-checklist li::before { content: ''; position: absolute; left: 0; top: 12px; width: 22px; height: 22px; background: #E91E8C; border-radius: 50%; }
.sg-checklist li::after { content: ''; position: absolute; left: 5px; top: 18px; width: 12px; height: 7px; border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff; transform: rotate(-45deg); }
.sg-checklist li:last-child { border-bottom: none; }
.sg-pkg-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 16px; margin: 20px 0 32px; }
.sg-pkg-card { background: #fff; border: 1px solid rgba(26,26,46,0.1); border-radius: 16px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.sg-pkg-card.sg-featured { border-color: #E91E8C; border-width: 2px; }
.sg-pkg-label { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 18px; color: #1A1A2E; margin: 0 0 4px; }
.sg-pkg-sublabel { font-family: 'Inter', sans-serif; font-size: 13px; color: #6B7280; margin: 0 0 14px; }
.sg-pkg-features { list-style: none; margin: 0; padding: 0; }
.sg-pkg-features li { font-family: 'Inter', sans-serif; font-size: 14px; color: #374151; padding: 6px 0 6px 24px; position: relative; line-height: 1.5; }
.sg-pkg-features li::before { content: '✓'; position: absolute; left: 0; top: 6px; color: #4CAF72; font-weight: 700; font-size: 15px; }
.sg-related-links { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.sg-related-links a { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: #3B82C4; text-decoration: none; background: #E0EEFF; padding: 8px 16px; border-radius: 99px; transition: background 0.18s, color 0.18s; }
.sg-related-links a:hover { background: #3B82C4; color: #fff; }
@media (max-width: 640px) {
  .sg-hub-title { font-size: 24px; }
  .sg-most-wanted { padding: 20px; }
  .sg-pkg-cards { grid-template-columns: 1fr; }
  .sg-hub-trust { grid-template-columns: repeat(2,1fr); }
}
