/*
Theme Name:  SomoHuru Learning Hub
Theme URI:   https://somohuru.com
Author:      SomoHuru Team
Description: Official theme for SomoHuru Learning Hub — AI-powered K-12 education platform. Elementor-ready, fully customizable, built for students, parents, teachers and investors.
Version:     2.0.0
License:     GNU General Public License v2 or later
Text Domain: somohuru
Tags:        education, elementor, custom-logo, full-width-template
*/

/* ═══════════════════════════════════════════════════
   SOMOHURU LEARNING HUB — BRAND THEME
   Colors: Orange (#F47820) → Blue (#1BACE4)
   Fonts:  Poppins (headings) + Nunito (body)
═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
  /* ── BRAND COLORS (from logo) ── */
  --sh-orange:        #F47820;
  --sh-orange-dark:   #D4600A;
  --sh-orange-light:  #FFF0E3;
  --sh-blue:          #1BACE4;
  --sh-blue-dark:     #0E86B8;
  --sh-blue-light:    #E3F6FD;
  --sh-green:         #3AAA35;
  --sh-yellow:        #F5C518;
  --sh-red:           #E8321A;

  /* ── GRADIENT (logo gradient) ── */
  --sh-grad:          linear-gradient(135deg, #F47820 0%, #F5C518 50%, #1BACE4 100%);
  --sh-grad-orange:   linear-gradient(135deg, #F47820, #D4600A);
  --sh-grad-blue:     linear-gradient(135deg, #1BACE4, #0E86B8);
  --sh-grad-hero:     linear-gradient(135deg, #0A1628 0%, #0D2847 40%, #0E4A6E 100%);
  --sh-grad-warm:     linear-gradient(135deg, #F47820, #F5C518);

  /* ── NEUTRALS ── */
  --sh-white:         #FFFFFF;
  --sh-off-white:     #F8FAFF;
  --sh-gray-50:       #F1F5F9;
  --sh-gray-100:      #E2E8F0;
  --sh-gray-400:      #94A3B8;
  --sh-gray-600:      #475569;
  --sh-gray-800:      #1E293B;
  --sh-black:         #0A0F1E;

  /* ── TYPOGRAPHY ── */
  --font-head:        'Poppins', sans-serif;
  --font-body:        'Nunito', sans-serif;

  /* ── SHAPE & SHADOW ── */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;
  --shadow-sm:  0 2px 8px rgba(10,15,30,.08);
  --shadow-md:  0 6px 24px rgba(10,15,30,.12);
  --shadow-lg:  0 16px 48px rgba(10,15,30,.18);
  --shadow-glow-orange: 0 8px 32px rgba(244,120,32,.35);
  --shadow-glow-blue:   0 8px 32px rgba(27,172,228,.35);
  --transition: all .22s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--sh-white);
  color: var(--sh-gray-800);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sh-orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--sh-orange-dark); }

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--sh-gray-800);
  line-height: 1.2;
  font-weight: 800;
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
p  { margin-bottom: 1em; }
.sh-lead { font-size: 1.15rem; color: var(--sh-gray-600); line-height: 1.8; }

/* ── LAYOUT ─────────────────────────────────────── */
.sh-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sh-section    { padding: 88px 0; }
.sh-section-sm { padding: 52px 0; }

/* ── EYEBROW ────────────────────────────────────── */
.sh-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--sh-orange);
  margin-bottom: 14px;
}
.sh-eyebrow::before {
  content:''; width: 28px; height: 3px;
  background: var(--sh-grad-warm); border-radius: 2px;
}

/* ── DIVIDER ────────────────────────────────────── */
.sh-divider {
  width: 56px; height: 4px;
  background: var(--sh-grad);
  border-radius: 2px; margin: 12px 0 24px;
}
.sh-divider-center { margin: 12px auto 24px; }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.sh-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r-full);
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  border: none; cursor: pointer;
  transition: var(--transition);
  text-decoration: none; line-height: 1; letter-spacing: .3px;
  white-space: nowrap;
}
.sh-btn:hover { transform: translateY(-2px); text-decoration: none; }

.sh-btn-orange {
  background: var(--sh-grad-orange);
  color: #fff;
  box-shadow: var(--shadow-glow-orange);
}
.sh-btn-orange:hover { box-shadow: 0 12px 40px rgba(244,120,32,.5); color: #fff; }

.sh-btn-blue {
  background: var(--sh-grad-blue);
  color: #fff;
  box-shadow: var(--shadow-glow-blue);
}
.sh-btn-blue:hover { box-shadow: 0 12px 40px rgba(27,172,228,.5); color: #fff; }

.sh-btn-white {
  background: #fff; color: var(--sh-gray-800);
  box-shadow: var(--shadow-md);
}
.sh-btn-white:hover { color: var(--sh-orange); box-shadow: var(--shadow-lg); }

.sh-btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.sh-btn-outline-white:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }

.sh-btn-outline-orange {
  background: transparent; color: var(--sh-orange);
  border: 2px solid var(--sh-orange);
}
.sh-btn-outline-orange:hover { background: var(--sh-orange); color: #fff; }

.sh-btn-grad {
  background: var(--sh-grad);
  color: #fff;
  box-shadow: var(--shadow-glow-orange);
}
.sh-btn-grad:hover { box-shadow: 0 12px 48px rgba(244,120,32,.5); color: #fff; }

.sh-btn-lg { padding: 16px 36px; font-size: 16px; }
.sh-btn-sm { padding: 8px 18px; font-size: 12px; }

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
#sh-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sh-gray-100);
  transition: var(--transition);
}
#sh-header.scrolled { box-shadow: var(--shadow-md); }

.sh-header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 74px;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}

/* Logo */
.sh-logo { display: flex; align-items: center; text-decoration: none; }
.sh-logo img { height: 52px; width: auto; }
.sh-logo-fallback {
  display: flex; align-items: center; gap: 10px;
}
.sh-logo-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--sh-grad-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-glow-orange);
}
.sh-logo-name {
  font-family: var(--font-head); font-size: 22px; font-weight: 900;
  background: var(--sh-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sh-logo-sub {
  display: block; font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--sh-gray-400); margin-top: -2px;
  -webkit-text-fill-color: var(--sh-gray-400);
}

/* Nav */
.sh-nav { display: flex; align-items: center; gap: 2px; }
.sh-nav a {
  padding: 8px 16px; border-radius: var(--r-full);
  font-size: 14px; font-weight: 700;
  color: var(--sh-gray-600);
  font-family: var(--font-head);
  transition: var(--transition);
}
.sh-nav a:hover,
.sh-nav a.current-menu-item { color: var(--sh-orange); background: var(--sh-orange-light); }
.sh-nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 16px; }

/* Hamburger */
.sh-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.sh-hamburger span {
  display: block; width: 26px; height: 2.5px;
  background: var(--sh-gray-800); border-radius: 2px;
  transition: var(--transition);
}
.sh-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.sh-hamburger.open span:nth-child(2) { opacity: 0; }
.sh-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.sh-mobile-nav {
  display: none; position: fixed;
  top: 74px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--sh-gray-100);
  padding: 16px 24px 24px; z-index: 999;
  box-shadow: var(--shadow-lg);
}
.sh-mobile-nav.open { display: block; }
.sh-mobile-nav a {
  display: block; padding: 13px 16px;
  font-size: 16px; font-weight: 700;
  color: var(--sh-gray-800); font-family: var(--font-head);
  border-bottom: 1px solid var(--sh-gray-100);
  border-radius: var(--r-sm);
}
.sh-mobile-nav a:hover { color: var(--sh-orange); background: var(--sh-orange-light); }
.sh-mobile-nav .sh-mobile-actions { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.sh-hero {
  position: relative; overflow: hidden;
  min-height: 90vh;
  background: var(--sh-grad-hero);
  display: flex; align-items: center;
}

/* Animated background orbs */
.sh-hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 60vw; height: 60vw; max-width: 800px; max-height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,120,32,.2), transparent 70%);
  animation: heroOrb1 8s ease-in-out infinite alternate;
}
.sh-hero::after {
  content: '';
  position: absolute; bottom: -20%; left: -10%;
  width: 50vw; height: 50vw; max-width: 700px; max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,172,228,.18), transparent 70%);
  animation: heroOrb2 10s ease-in-out infinite alternate;
}
@keyframes heroOrb1 { from{transform:translate(0,0) scale(1)} to{transform:translate(-40px,30px) scale(1.1)} }
@keyframes heroOrb2 { from{transform:translate(0,0) scale(1)} to{transform:translate(40px,-30px) scale(1.08)} }

.sh-hero-grid {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 60px; align-items: center;
}

.sh-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(244,120,32,.15);
  border: 1px solid rgba(244,120,32,.3);
  border-radius: var(--r-full);
  padding: 6px 16px;
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: #FFB347;
  margin-bottom: 20px;
}
.sh-hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sh-orange);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

.sh-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff; line-height: 1.12;
  margin-bottom: 20px;
}
.sh-hero h1 .sh-grad-text {
  background: linear-gradient(90deg, #F47820, #F5C518, #1BACE4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sh-hero-desc {
  font-size: 1.1rem; color: rgba(255,255,255,.75);
  line-height: 1.8; margin-bottom: 36px; max-width: 540px;
}
.sh-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.sh-hero-trust {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.sh-hero-trust-label { font-size: 12px; color: rgba(255,255,255,.45); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.sh-hero-trust-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.sh-hero-trust-badge {
  padding: 5px 12px; border-radius: var(--r-full);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.7);
  font-family: var(--font-head);
}

/* Hero Right Panel */
.sh-hero-panel {
  position: relative;
}
.sh-hero-main-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  padding: 28px;
  color: #fff;
}
.sh-hero-card-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(255,255,255,.5); margin-bottom: 6px;
}
.sh-hero-card-title {
  font-size: 20px; font-weight: 800;
  font-family: var(--font-head); margin-bottom: 16px;
}
.sh-progress-wrap {
  background: rgba(255,255,255,.12);
  border-radius: var(--r-full); height: 8px;
  overflow: hidden; margin-bottom: 6px;
}
.sh-progress-fill {
  height: 100%; border-radius: var(--r-full);
  background: linear-gradient(90deg, #F47820, #F5C518, #1BACE4);
  animation: progressLoad 1.5s ease forwards;
}
@keyframes progressLoad { from{width:0} to{width:72%} }
.sh-progress-label { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.sh-hero-card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sh-hero-mini-stat {
  background: rgba(255,255,255,.08); border-radius: 12px;
  padding: 12px; text-align: center;
}
.sh-hero-mini-num { font-size: 22px; font-weight: 900; font-family: var(--font-head); color: var(--sh-yellow); }
.sh-hero-mini-label { font-size: 10px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* Floating badges */
.sh-float-badge {
  position: absolute;
  background: #fff; border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 800;
  color: var(--sh-gray-800); font-family: var(--font-head);
  white-space: nowrap;
  animation: floatBounce 3s ease-in-out infinite;
}
.sh-float-badge.top-right { top: -18px; right: -18px; animation-delay: .5s; }
.sh-float-badge.bot-left  { bottom: -18px; left: -18px; }
@keyframes floatBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.sh-float-icon {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.sh-float-icon-orange { background: var(--sh-orange-light); }
.sh-float-icon-blue   { background: var(--sh-blue-light); }
.sh-float-sub { font-size: 10px; font-weight: 600; color: var(--sh-gray-400); margin-top: 1px; }

/* ═══════════════════════════════════════════════
   STATS TICKER BAND
═══════════════════════════════════════════════ */
.sh-ticker {
  background: linear-gradient(135deg, var(--sh-orange), #F5A623, var(--sh-blue));
  padding: 20px 0; overflow: hidden;
}
.sh-ticker-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center;
  justify-content: space-around; flex-wrap: wrap; gap: 16px;
}
.sh-ticker-item { display: flex; align-items: center; gap: 10px; color: #fff; }
.sh-ticker-num  { font-family: var(--font-head); font-size: 26px; font-weight: 900; }
.sh-ticker-text { font-size: 13px; font-weight: 600; opacity: .85; }
.sh-ticker-sep  { width: 1px; height: 32px; background: rgba(255,255,255,.3); }

/* ═══════════════════════════════════════════════
   FEATURES GRID
═══════════════════════════════════════════════ */
.sh-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.sh-feature-card {
  background: #fff;
  border: 1.5px solid var(--sh-gray-100);
  border-radius: var(--r-lg); padding: 30px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.sh-feature-card:hover {
  border-color: var(--sh-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.sh-feature-card:hover .sh-feature-icon { transform: scale(1.1) rotate(-5deg); }
.sh-feature-icon {
  width: 58px; height: 58px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 18px;
  transition: var(--transition);
}
.sh-icon-orange { background: var(--sh-orange-light); }
.sh-icon-blue   { background: var(--sh-blue-light); }
.sh-icon-green  { background: #E8F8E8; }
.sh-icon-yellow { background: #FFF8E1; }
.sh-icon-purple { background: #F3E8FF; }
.sh-icon-teal   { background: #E0F7F7; }
.sh-feature-title {
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  color: var(--sh-gray-800); margin-bottom: 10px;
}
.sh-feature-desc { font-size: 14px; color: var(--sh-gray-600); line-height: 1.7; }
.sh-feature-tag {
  display: inline-block; margin-top: 14px;
  padding: 3px 10px; border-radius: var(--r-full);
  font-size: 11px; font-weight: 700;
  font-family: var(--font-head);
}
.sh-tag-orange { background: var(--sh-orange-light); color: var(--sh-orange); }
.sh-tag-blue   { background: var(--sh-blue-light);   color: var(--sh-blue-dark); }

/* ═══════════════════════════════════════════════
   COURSE CARDS
═══════════════════════════════════════════════ */
.sh-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}
.sh-course-card {
  background: #fff;
  border: 1.5px solid var(--sh-gray-100);
  border-radius: var(--r-lg); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
}
.sh-course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sh-blue); }
.sh-course-thumb {
  height: 155px;
  display: flex; align-items: center; justify-content: center;
  font-size: 58px; position: relative; overflow: hidden;
}
.sh-thumb-orange { background: linear-gradient(135deg, #F47820, #F5C518); }
.sh-thumb-blue   { background: linear-gradient(135deg, #1BACE4, #0E86B8); }
.sh-thumb-green  { background: linear-gradient(135deg, #3AAA35, #56C94B); }
.sh-thumb-purple { background: linear-gradient(135deg, #7C3AED, #A855F7); }
.sh-thumb-grad   { background: var(--sh-grad); }
.sh-course-body  { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.sh-course-tags  { display: flex; gap: 6px; flex-wrap: wrap; }
.sh-course-title {
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  color: var(--sh-gray-800); margin: 0;
}
.sh-course-desc  { font-size: 13px; color: var(--sh-gray-600); line-height: 1.65; flex: 1; }
.sh-course-bar   { height: 5px; background: var(--sh-gray-100); border-radius: var(--r-full); overflow: hidden; }
.sh-course-bar-fill { height: 100%; background: linear-gradient(90deg, var(--sh-orange), var(--sh-blue)); border-radius: var(--r-full); }
.sh-course-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid var(--sh-gray-100); margin-top: auto;
}
.sh-course-reward { font-size: 13px; font-weight: 800; color: var(--sh-orange); font-family: var(--font-head); }
.sh-badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: var(--r-full);
  font-size: 11px; font-weight: 700; font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: .5px;
}
.sh-badge-orange { background: var(--sh-orange-light); color: var(--sh-orange); }
.sh-badge-blue   { background: var(--sh-blue-light);   color: var(--sh-blue-dark); }
.sh-badge-green  { background: #E8F8E8; color: #2A7A25; }

/* ═══════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════ */
.sh-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 0; position: relative;
}
.sh-steps::before {
  content: ''; position: absolute;
  top: 40px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--sh-orange), var(--sh-yellow), var(--sh-blue));
  z-index: 0;
}
.sh-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.sh-step-circle {
  width: 80px; height: 80px; border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 26px; font-weight: 900;
  color: #fff; box-shadow: var(--shadow-md);
}
.sh-step:nth-child(1) .sh-step-circle { background: var(--sh-grad-orange); box-shadow: var(--shadow-glow-orange); }
.sh-step:nth-child(2) .sh-step-circle { background: linear-gradient(135deg,#F5A623,#F5C518); }
.sh-step:nth-child(3) .sh-step-circle { background: linear-gradient(135deg,#3AAA35,#56C94B); }
.sh-step:nth-child(4) .sh-step-circle { background: var(--sh-grad-blue); box-shadow: var(--shadow-glow-blue); }
.sh-step-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.sh-step-desc  { font-size: 13px; color: var(--sh-gray-600); line-height: 1.65; }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.sh-testi-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 22px;
}
.sh-testi-card {
  background: #fff; border: 1.5px solid var(--sh-gray-100);
  border-radius: var(--r-lg); padding: 28px; position: relative;
  transition: var(--transition);
}
.sh-testi-card:hover { box-shadow: var(--shadow-md); border-color: var(--sh-orange); }
.sh-testi-quote {
  font-family: var(--font-head); font-size: 64px; line-height: .8;
  color: var(--sh-orange-light); position: absolute; top: 16px; left: 20px;
}
.sh-testi-text {
  font-size: 15px; line-height: 1.75; color: var(--sh-gray-800);
  padding-top: 28px; margin-bottom: 20px; position: relative; z-index: 1;
}
.sh-testi-author { display: flex; align-items: center; gap: 12px; }
.sh-testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--sh-grad-orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 18px; font-weight: 900; color: #fff;
}
.sh-testi-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; }
.sh-testi-role { font-size: 12px; color: var(--sh-gray-400); }
.sh-stars { color: var(--sh-yellow); font-size: 13px; margin-bottom: 6px; }

/* ═══════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════ */
.sh-cta {
  background: var(--sh-grad-hero); text-align: center;
  padding: 96px 0; position: relative; overflow: hidden;
}
.sh-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(244,120,32,.2), transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(27,172,228,.15), transparent 60%);
}
.sh-cta > * { position: relative; z-index: 1; }
.sh-cta h2 { color: #fff; margin-bottom: 16px; }
.sh-cta p  { color: rgba(255,255,255,.75); max-width: 540px; margin: 0 auto 36px; font-size: 1.1rem; }
.sh-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.sh-footer {
  background: var(--sh-black);
  color: rgba(255,255,255,.65);
  padding: 64px 0 0;
}
.sh-footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
}
.sh-footer-logo { margin-bottom: 16px; }
.sh-footer-logo img { height: 48px; width: auto; filter: brightness(1.1); }
.sh-footer-desc { font-size: 14px; line-height: 1.75; margin: 12px 0 20px; max-width: 280px; }
.sh-footer-social { display: flex; gap: 8px; }
.sh-social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.sh-social-btn:hover { background: var(--sh-orange); color: #fff; }
.sh-footer-col h4 {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: #fff; margin-bottom: 16px;
}
.sh-footer-col a {
  display: block; font-size: 14px;
  color: rgba(255,255,255,.55); margin-bottom: 10px;
  transition: var(--transition);
}
.sh-footer-col a:hover { color: var(--sh-orange); padding-left: 4px; }
.sh-footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,.35);
}
.sh-footer-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.sh-footer-chip {
  padding: 3px 10px; border-radius: var(--r-full);
  background: rgba(255,255,255,.06);
  font-size: 10px; font-weight: 700; font-family: var(--font-head);
  color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .5px;
}

/* ═══════════════════════════════════════════════
   ELEMENTOR OVERRIDES
═══════════════════════════════════════════════ */
.elementor-section, .e-container { font-family: var(--font-body); }
.elementor-widget-heading .elementor-heading-title { font-family: var(--font-head); }
.elementor-button-wrapper .elementor-button {
  font-family: var(--font-head); font-weight: 700; border-radius: var(--r-full);
}

/* ═══════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════ */
.sh-text-center { text-align: center; }
.sh-text-orange { color: var(--sh-orange) !important; }
.sh-text-blue   { color: var(--sh-blue) !important; }
.sh-bg-off-white{ background: var(--sh-off-white); }
.sh-bg-dark     { background: var(--sh-grad-hero); }
.sh-mt-section  { margin-top: 88px; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sh-hero-grid { grid-template-columns: 1fr; }
  .sh-hero-panel { display: none; }
  .sh-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .sh-section { padding: 60px 0; }
  .sh-nav { display: none; }
  .sh-nav-actions { display: none; }
  .sh-hamburger { display: flex; }
  .sh-steps::before { display: none; }
  .sh-footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .sh-footer-bottom { flex-direction: column; text-align: center; }
  .sh-ticker-sep { display: none; }
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
.sh-anim { animation: fadeUp .6s ease both; }
.sh-anim-d1 { animation-delay:.1s; }
.sh-anim-d2 { animation-delay:.2s; }
.sh-anim-d3 { animation-delay:.3s; }
.sh-anim-d4 { animation-delay:.4s; }
