/* ============================================
   SOFTNUE - Social Media Marketing Page
   Premium Skeuomorphic Design System
   Colors: #f4ad41 (Primary), #141c27 (Dark), #fff, Grey accents
   ============================================ */

/* --- Google Fonts loaded via <link> in HTML head --- */

/* --- CSS Custom Properties --- */
:root {
  --primary: #f4ad41;
  --primary-light: #f7c06a;
  --primary-dark: #d9922e;
  --secondary: #141c27;
  --secondary-light: #1e2a3a;
  --secondary-lighter: #263244;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --grey-50: #fafbfc;
  --grey-100: #f1f3f5;
  --grey-200: #e4e7eb;
  --grey-300: #cdd2d9;
  --grey-400: #9ca3af;
  --grey-500: #6b7280;
  --grey-600: #4b5563;
  --grey-700: #374151;
  --text-primary: #141c27;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --shadow-inset-subtle: inset 0 1px 2px rgba(0,0,0,0.06), inset 0 -1px 1px rgba(255,255,255,0.08);
  --shadow-raised: 0 2px 4px rgba(20,28,39,0.06), 0 4px 12px rgba(20,28,39,0.08);
  --shadow-card: 0 4px 8px rgba(20,28,39,0.05), 0 8px 24px rgba(20,28,39,0.08), 0 1px 2px rgba(20,28,39,0.04);
  --shadow-elevated: 0 8px 16px rgba(20,28,39,0.08), 0 16px 48px rgba(20,28,39,0.12), 0 2px 4px rgba(20,28,39,0.04);
  --shadow-floating: 0 12px 24px rgba(20,28,39,0.1), 0 24px 64px rgba(20,28,39,0.14);
  --shadow-inner-light: inset 0 2px 4px rgba(0,0,0,0.04), inset 0 -1px 0 rgba(255,255,255,0.6);
  --shadow-inner-deep: inset 0 3px 8px rgba(0,0,0,0.1), inset 0 1px 2px rgba(0,0,0,0.06);
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 350ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Base Reset & Typography --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-gutter: stable;
  overflow-x: clip;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--secondary);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.625rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary);
}

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

/* --- Utility Classes --- */
.softnue-text-primary { color: var(--primary) !important; }
.softnue-text-dark { color: var(--secondary) !important; }
.softnue-bg-primary { background-color: var(--primary) !important; }
.softnue-bg-dark { background-color: var(--secondary) !important; }
.softnue-bg-off-white { background-color: var(--off-white) !important; }

.section-padding {
  padding: 80px 0;
}

.section-padding-lg {
  padding: 100px 0;
}

@media (max-width: 767.98px) {
  .section-padding { padding: 50px 0; }
  .section-padding-lg { padding: 60px 0; }
}

/* --- Section Headers --- */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(244,173,65,0.12), rgba(244,173,65,0.06));
  border: 1px solid rgba(244,173,65,0.25);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

.section-subtitle.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SKEUOMORPHIC SURFACE SYSTEM
   ============================================ */

/* Raised Surface — cards, panels */
.softnue-surface {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  box-shadow:
    var(--shadow-card),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.softnue-surface:hover {
  box-shadow:
    var(--shadow-elevated),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

/* Inset Surface — input fields, wells */
.softnue-inset {
  background: linear-gradient(180deg, #f1f3f5 0%, #f8f9fb 100%);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-inner-deep);
}

/* Glass Surface */
.softnue-glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-raised);
}

/* Embossed Text */
.softnue-embossed {
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
}

/* ============================================
   BUTTONS
   ============================================ */

.softnue-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-family);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}

.softnue-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

/* Primary Button */
.softnue-btn-primary {
  background: linear-gradient(180deg, #f7c06a 0%, #f4ad41 50%, #e9a035 100%);
  color: var(--secondary);
  border: 1px solid rgba(217,146,46,0.4);
  box-shadow:
    0 2px 4px rgba(244,173,65,0.3),
    0 6px 16px rgba(244,173,65,0.2),
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 rgba(0,0,0,0.05);
  text-shadow: 0 1px 0 rgba(255,255,255,0.2);
}

.softnue-btn-primary:hover {
  background: linear-gradient(180deg, #f9ca7a 0%, #f5b44e 50%, #f4ad41 100%);
  color: var(--secondary);
  box-shadow:
    0 4px 8px rgba(244,173,65,0.35),
    0 8px 24px rgba(244,173,65,0.25),
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -1px 0 rgba(0,0,0,0.05);
  transform: translateY(-1px);
}

.softnue-btn-primary:active {
  background: linear-gradient(180deg, #e9a035 0%, #d9922e 100%);
  box-shadow:
    0 1px 2px rgba(244,173,65,0.2),
    inset 0 2px 4px rgba(0,0,0,0.1);
  transform: translateY(0);
}

.softnue-btn-primary:hover svg {
  transform: translateX(3px);
}

/* Dark Button */
.softnue-btn-dark {
  background: linear-gradient(180deg, #263244 0%, #1e2a3a 50%, #141c27 100%);
  color: var(--white);
  border: 1px solid rgba(0,0,0,0.2);
  box-shadow:
    0 2px 4px rgba(20,28,39,0.2),
    0 6px 16px rgba(20,28,39,0.15),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.1);
}

.softnue-btn-dark:hover {
  background: linear-gradient(180deg, #2d3b50 0%, #263244 50%, #1e2a3a 100%);
  color: var(--white);
  box-shadow:
    0 4px 8px rgba(20,28,39,0.25),
    0 8px 24px rgba(20,28,39,0.2),
    inset 0 1px 0 rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

.softnue-btn-dark:active {
  background: linear-gradient(180deg, #141c27 0%, #0d1219 100%);
  box-shadow:
    0 1px 2px rgba(20,28,39,0.2),
    inset 0 2px 4px rgba(0,0,0,0.15);
  transform: translateY(0);
}

/* Outline Button */
.softnue-btn-outline {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  color: var(--secondary);
  border: 1.5px solid var(--grey-300);
  box-shadow:
    0 1px 3px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

.softnue-btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  box-shadow:
    0 2px 8px rgba(244,173,65,0.15),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transform: translateY(-1px);
}

/* Button Sizes */
.softnue-btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

@media (max-width: 480px) {
  .softnue-btn-lg {
    padding: 14px 20px;
    font-size: 0.9rem;
    flex: 1;
    text-align: center;
    justify-content: center;
    white-space: normal;
    line-height: 1.3;
  }
  .d-flex.flex-wrap.gap-3 {
    flex-wrap: nowrap;
  }
}

.softnue-btn-sm {
  padding: 10px 20px;
  font-size: 0.8125rem;
}

/* ============================================
   NAVIGATION / TOP BAR
   ============================================ */

.softnue-topbar {
  background: linear-gradient(180deg, var(--secondary) 0%, #0f151e 100%);
  padding: 10px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.softnue-topbar a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition-fast);
}

.softnue-topbar a:hover {
  color: var(--primary);
}

.softnue-topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
  margin: 0 12px;
}

.softnue-navbar {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02);
  padding: 0;
  position: relative;
  transition: box-shadow var(--transition-base);
}

@media (max-width: 991px) {
  .softnue-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
  }
}

.softnue-navbar.scrolled {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
}

.softnue-navbar .navbar-brand img {
  height: 40px;
  width: auto;
}

.softnue-navbar .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 20px 16px !important;
  transition: color var(--transition-fast);
  position: relative;
}

.softnue-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.softnue-navbar .nav-link:hover,
.softnue-navbar .nav-link.active {
  color: var(--primary-dark);
}

.softnue-navbar .nav-link:hover::after,
.softnue-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  box-shadow: var(--shadow-raised);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(244,173,65,0.25);
}

/* ============================================
   HERO SECTION
   ============================================ */

.softnue-hero {
  position: relative;
  background: linear-gradient(165deg, var(--secondary) 0%, #0f151e 60%, #0a1018 100%);
  overflow: hidden;
  padding: 100px 0 80px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.softnue-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(244,173,65,0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.softnue-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244,173,65,0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.softnue-hero h1 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.softnue-hero h1 span {
  color: var(--primary);
  position: relative;
}

.softnue-hero h1 span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  border-radius: 4px;
  opacity: 0.4;
}

.hero-description {
  color: rgba(255,255,255,0.72);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero Form Card (legacy, kept for compatibility) */
.hero-form-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.25),
    0 2px 8px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.9);
  position: relative;
}

.hero-form-card h3 {
  font-size: 1.375rem;
  margin-bottom: 4px;
}

.hero-form-card .form-subtitle {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

/* ============================================
   HERO ANIMATED SOCIAL VISUAL
   ============================================ */

.hero-visual {
  position: relative;
  height: 440px;
}

/* --- Central Analytics Card --- */
.hv-analytics-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.08);
  z-index: 2;
  animation: hv-float-center 6s ease-in-out infinite;
}

.hv-analytics-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.hv-analytics-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.hv-analytics-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #34d399;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hv-analytics-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #34d399;
  border-radius: 50%;
  animation: hv-pulse-dot 2s ease-in-out infinite;
}

/* --- Bar Chart --- */
.hv-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  padding: 0 4px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hv-chart-bar {
  flex: 1;
  height: 0;
  background: linear-gradient(180deg, rgba(244,173,65,0.5) 0%, rgba(244,173,65,0.2) 100%);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hv-chart-bar.animate {
  height: var(--bar-h);
}

.hv-chart-bar--accent {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 0 12px rgba(244,173,65,0.3);
}

.hv-chart-bar::after {
  content: attr(data-label);
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5625rem;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

/* --- Bottom Metrics Row --- */
.hv-analytics-row {
  display: flex;
  justify-content: space-between;
  padding-top: 8px;
}

.hv-analytics-metric {
  text-align: center;
}

.hv-metric-value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1.2;
}

.hv-metric-label {
  display: block;
  font-size: 0.625rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- Floating Cards (shared) --- */
.hv-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow:
    0 4px 20px rgba(0,0,0,0.2),
    0 1px 4px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.9);
  z-index: 3;
  white-space: nowrap;
}

.hv-float-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.hv-float-icon svg {
  width: 17px;
  height: 17px;
}

.hv-float-icon--purple {
  background: linear-gradient(135deg, #ede9fe, #f3e8ff);
  border: 1px solid rgba(139,92,246,0.15);
  color: #7c3aed;
  box-shadow: var(--shadow-inner-light);
}

.hv-float-icon--green {
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
  border: 1px solid rgba(52,211,153,0.15);
  color: #059669;
  box-shadow: var(--shadow-inner-light);
}

.hv-float-icon--gold {
  background: linear-gradient(135deg, #fef3e1, #fffbf0);
  border: 1px solid rgba(244,173,65,0.2);
  color: var(--primary-dark);
  box-shadow: var(--shadow-inner-light);
}

.hv-float-value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
}

.hv-float-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.hv-float-trend {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.6875rem;
  font-weight: 700;
  margin-left: auto;
  padding-left: 8px;
}

.hv-float-trend svg {
  width: 13px;
  height: 13px;
}

.hv-float-trend--up {
  color: #059669;
}

/* --- Floating Card Positions & Animations --- */
.hv-float-followers {
  top: 2%;
  right: -5%;
  animation: hv-float-1 5s ease-in-out infinite;
}

.hv-float-engagement {
  bottom: 22%;
  left: -12%;
  animation: hv-float-2 6s ease-in-out 0.5s infinite;
}

.hv-float-leads {
  bottom: 4%;
  right: 2%;
  animation: hv-float-3 5.5s ease-in-out 1s infinite;
}

/* --- Platform Icons --- */
.hv-platforms {
  position: absolute;
  top: 8%;
  left: -8%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
  animation: hv-float-2 7s ease-in-out 0.3s infinite;
}

.hv-platform-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--p-color);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all var(--transition-base);
}

.hv-platform-icon:hover {
  transform: scale(1.15);
  border-color: var(--p-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2), 0 0 12px color-mix(in srgb, var(--p-color) 30%, transparent);
}

.hv-platform-icon svg {
  width: 18px;
  height: 18px;
}

/* --- Pulse Rings --- */
.hv-pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(244,173,65,0.12);
  pointer-events: none;
  z-index: 1;
}

.hv-pulse-ring--1 {
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: hv-pulse-ring 4s ease-out infinite;
}

.hv-pulse-ring--2 {
  width: 420px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: hv-pulse-ring 4s ease-out 2s infinite;
}

/* --- Keyframes --- */
@keyframes hv-float-center {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 8px)); }
}

@keyframes hv-float-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes hv-float-2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes hv-float-3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(0.5deg); }
}

@keyframes hv-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes hv-pulse-ring {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.85);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .hv-analytics-card,
  .hv-float-card,
  .hv-platforms,
  .hv-pulse-ring,
  .hv-analytics-badge::before {
    animation: none !important;
  }
  .hv-chart-bar.animate {
    transition: none;
    height: var(--bar-h);
  }
}

/* ============================================
   FORM ELEMENTS (Skeuomorphic)
   ============================================ */

.softnue-form-group {
  margin-bottom: 16px;
}

.softnue-form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.softnue-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-family);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: linear-gradient(180deg, #f1f3f5 0%, #f8f9fb 100%);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.05),
    inset 0 1px 2px rgba(0,0,0,0.03);
  transition: all var(--transition-fast);
  outline: none;
}

.softnue-input::placeholder {
  color: var(--text-light);
}

.softnue-input:focus {
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
  border-color: var(--primary);
  box-shadow:
    inset 0 1px 2px rgba(0,0,0,0.03),
    0 0 0 3px rgba(244,173,65,0.15);
}

textarea.softnue-input {
  resize: vertical;
  min-height: 80px;
}

/* ============================================
   PAIN POINT / PROBLEM SECTION
   ============================================ */

/* --- Pain Section --- */
.pain-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--grey-50) 100%);
  position: relative;
}

/* --- Blockquote Callout --- */
.pain-callout {
  background: var(--secondary);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.pain-callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}

.pain-callout-quote {
  width: 36px;
  height: 36px;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 12px;
  display: block;
}

.pain-callout blockquote {
  font-size: 1.1875rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin: 0;
  padding: 0;
  border: none;
}

.pain-callout blockquote strong {
  color: var(--primary-light);
  font-weight: 600;
}

/* --- Pain Point Cards --- */
.pain-point-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow:
    var(--shadow-card),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition: all var(--transition-base);
}

.pain-point-card:hover {
  border-color: rgba(239,68,68,0.25);
  box-shadow:
    var(--shadow-elevated),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

.pain-point-number {
  position: absolute;
  top: -8px;
  right: 12px;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--grey-100);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  transition: color var(--transition-base);
}

.pain-point-card:hover .pain-point-number {
  color: rgba(239,68,68,0.07);
}

.pain-point-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fef2f2, #fff5f5);
  border: 1px solid rgba(239,68,68,0.12);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: var(--shadow-inner-light);
}

.pain-point-icon svg {
  width: 22px;
  height: 22px;
  color: #ef4444;
}

.pain-point-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.pain-point-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* --- Resolution Card --- */
.pain-resolution {
  position: relative;
}

.pain-resolution-inner {
  background: linear-gradient(135deg, #fef9f0 0%, #fefcf7 50%, #fff 100%);
  border: 1px solid rgba(244,173,65,0.2);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  box-shadow:
    var(--shadow-card),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.pain-resolution-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  border-radius: 4px 0 0 4px;
}

.pain-resolution-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: linear-gradient(135deg, rgba(244,173,65,0.15), rgba(244,173,65,0.08));
  border: 1px solid rgba(244,173,65,0.25);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.pain-resolution-badge svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.pain-resolution-content p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.pain-resolution-content p strong {
  color: var(--secondary);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-section {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,173,65,0.3), transparent);
}

.why-section .section-badge {
  background: rgba(244,173,65,0.1);
  border-color: rgba(244,173,65,0.2);
}

.why-section .section-title {
  color: var(--white);
}

.why-section .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.why-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(244,173,65,0.2);
  transform: translateY(-4px);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(244,173,65,0.15), rgba(244,173,65,0.05));
  border: 1px solid rgba(244,173,65,0.2);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: var(--primary);
}

.why-card-icon svg {
  width: 24px;
  height: 24px;
}

.why-card h4 {
  color: var(--white);
  font-size: 1.0625rem;
  margin-bottom: 10px;
}

.why-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
  background: linear-gradient(180deg, var(--grey-50) 0%, var(--white) 100%);
}

.service-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-elevated), inset 0 1px 0 rgba(255,255,255,0.9);
  transform: translateY(-4px);
}

.service-card-header {
  padding: 28px 28px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fef3e1, #fff9f0);
  border: 1px solid rgba(244,173,65,0.15);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  box-shadow: var(--shadow-raised), inset 0 1px 0 rgba(255,255,255,0.6);
}

.service-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary-dark);
}

.service-card-header h4 {
  font-size: 1.125rem;
  margin-bottom: 0;
}

.service-card-body {
  padding: 20px 28px 28px;
  flex: 1;
}

.service-card-body p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.service-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #22c55e;
  margin-top: 3px;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.comparison-section {
  background: var(--white);
}

.softnue-table-wrapper {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.9);
  overflow: hidden;
}

.softnue-table {
  width: 100%;
  border-collapse: collapse;
}

.softnue-table thead {
  background: linear-gradient(180deg, var(--secondary) 0%, #0f151e 100%);
}

.softnue-table thead th {
  padding: 18px 24px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: left;
  border-bottom: none;
}

.softnue-table thead th:first-child {
  border-radius: 0;
}

.softnue-table thead th.highlight-col {
  background: linear-gradient(180deg, rgba(244,173,65,0.2) 0%, rgba(244,173,65,0.1) 100%);
  color: var(--primary);
}

.softnue-table tbody td {
  padding: 16px 24px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--grey-100);
  vertical-align: middle;
}

.softnue-table tbody tr:last-child td {
  border-bottom: none;
}

.softnue-table tbody tr:hover {
  background: rgba(244,173,65,0.03);
}

.softnue-table tbody td:first-child {
  font-weight: 600;
  color: var(--text-primary);
}

.softnue-table .check-icon {
  color: #22c55e;
  font-weight: 700;
}

.softnue-table .cross-icon {
  color: #ef4444;
}

@media (max-width: 767.98px) {
  .softnue-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .softnue-table {
    min-width: 600px;
  }
}

/* ============================================
   PROCESS / TIMELINE SECTION
   ============================================ */

.process-section {
  background: linear-gradient(180deg, var(--grey-50) 0%, var(--off-white) 100%);
}

.process-timeline {
  position: relative;
  padding: 20px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--primary-light), var(--grey-200));
  border-radius: 2px;
}

@media (min-width: 768px) {
  .process-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .process-step {
    gap: 0;
  }
  .process-step:nth-child(odd) {
    flex-direction: row;
  }
  .process-step:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.process-step-number {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f7c06a 0%, #f4ad41 100%);
  border: 3px solid var(--white);
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary);
  box-shadow:
    0 4px 12px rgba(244,173,65,0.3),
    inset 0 1px 0 rgba(255,255,255,0.3);
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .process-step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.process-step-content {
  flex: 1;
}

@media (min-width: 768px) {
  .process-step-content {
    width: calc(50% - 52px);
  }
  .process-step:nth-child(odd) .process-step-content {
    margin-right: calc(50% + 52px);
    text-align: right;
    padding-right: 32px;
  }
  .process-step:nth-child(even) .process-step-content {
    margin-left: calc(50% + 52px);
    padding-left: 32px;
  }
}

.process-step-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: all var(--transition-base);
}

.process-step-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px);
}

.process-step-card h4 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.process-step-card .step-timing {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.process-step-card p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
  background: var(--white);
}

.pricing-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow:
    0 4px 8px rgba(244,173,65,0.1),
    0 12px 40px rgba(244,173,65,0.15),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--secondary);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(244,173,65,0.3);
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.pricing-card h3 {
  font-size: 1.375rem;
  margin-bottom: 8px;
}

.pricing-card .pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-amount {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--grey-200);
}

.pricing-amount .price {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.pricing-amount .price-currency {
  font-size: 1.25rem;
  font-weight: 600;
  vertical-align: top;
}

.pricing-amount .price-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-features li svg.check {
  color: #22c55e;
}

.pricing-features li svg.cross {
  color: var(--grey-300);
}

.pricing-features li.disabled {
  color: var(--text-light);
}

.pricing-card .softnue-btn {
  width: 100%;
}

.pricing-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 20px;
  text-align: center;
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */

.industries-section {
  background: linear-gradient(180deg, var(--grey-50) 0%, var(--white) 100%);
}

.industry-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-raised), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: all var(--transition-base);
  height: 100%;
  text-align: center;
}

.industry-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
  border-color: rgba(244,173,65,0.2);
}

.industry-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fef3e1, #fff9f0);
  border: 1px solid rgba(244,173,65,0.12);
  border-radius: var(--radius-lg);
  margin: 0 auto 16px;
  box-shadow: var(--shadow-raised), inset 0 1px 0 rgba(255,255,255,0.5);
}

.industry-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary-dark);
}

.industry-card h5 {
  font-size: 0.9375rem;
  margin-bottom: 8px;
}

.industry-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, #0f151e 100%);
  border-radius: var(--radius-2xl);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,173,65,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244,173,65,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  position: relative;
  z-index: 1;
}

.cta-banner .softnue-btn {
  position: relative;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .cta-banner {
    padding: 40px 24px;
    border-radius: var(--radius-xl);
  }
}

/* ============================================
   AREAS SERVED / LOCAL SEO
   ============================================ */

.areas-section {
  background: var(--white);
}

.area-tag {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid var(--grey-200);
  border-radius: 50px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: all var(--transition-fast);
}

.area-tag:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  box-shadow: 0 2px 6px rgba(244,173,65,0.12);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
  background: linear-gradient(180deg, var(--grey-50) 0%, var(--white) 100%);
}

.softnue-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.softnue-accordion-item {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg) !important;
  margin-bottom: 12px;
  box-shadow: var(--shadow-raised), inset 0 1px 0 rgba(255,255,255,0.9);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.softnue-accordion-item:hover {
  box-shadow: var(--shadow-card);
}

.softnue-accordion-item .accordion-button {
  background: transparent;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 20px 24px;
  border: none;
  box-shadow: none;
  gap: 12px;
}

.softnue-accordion-item .accordion-button:not(.collapsed) {
  color: var(--primary-dark);
  background: transparent;
  box-shadow: none;
}

.softnue-accordion-item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23141c27' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
}

.softnue-accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23d9922e' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
  transform: none;
}

.softnue-accordion-item .accordion-button:focus {
  box-shadow: none;
}

.softnue-accordion-item .accordion-body {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta-section {
  background: linear-gradient(165deg, var(--secondary) 0%, #0a1018 100%);
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(244,173,65,0.08) 0%, transparent 55%);
  pointer-events: none;
}

.final-cta-section h2 {
  color: var(--white);
}

.final-cta-section p {
  color: rgba(255,255,255,0.6);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */

.softnue-footer {
  background: linear-gradient(180deg, #0d1219 0%, #080c12 100%);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.55);
}

.softnue-footer h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.875rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.6);
}

.footer-contact-item a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244,173,65,0.3);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================
   BREADCRUMB
   ============================================ */

.softnue-breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
  font-size: 0.8125rem;
}

.softnue-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.softnue-breadcrumb a:hover {
  color: var(--primary);
}

.softnue-breadcrumb .separator {
  color: rgba(255,255,255,0.3);
  margin: 0 8px;
}

.softnue-breadcrumb .current {
  color: rgba(255,255,255,0.8);
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 32px 0;
  opacity: 0.5;
}

.trust-bar span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 991.98px) {
  .softnue-hero {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .hero-visual {
    height: 380px;
    margin-top: 32px;
  }

  .hv-analytics-card {
    width: 250px;
    padding: 16px;
  }

  .hv-chart {
    height: 80px;
  }

  .hv-float-followers {
    right: 0;
  }

  .hv-float-engagement {
    left: -5%;
  }

  .hv-platforms {
    left: 0;
  }

  .hv-pulse-ring--1 { width: 260px; height: 260px; }
  .hv-pulse-ring--2 { width: 350px; height: 350px; }

  .hero-stats {
    justify-content: flex-start;
  }

  .process-timeline::before {
    left: 28px;
  }

  .process-step {
    flex-direction: row !important;
    gap: 24px;
  }

  .process-step-number {
    position: relative !important;
    left: auto !important;
    transform: none !important;
  }

  .process-step-content {
    width: auto !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    text-align: left !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 767.98px) {
  .softnue-hero {
    padding: 60px 0 50px;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
    gap: 24px;
  }

  .hero-visual {
    height: 340px;
    margin-top: 24px;
  }

  .hv-analytics-card {
    width: 220px;
    padding: 14px;
  }

  .hv-analytics-title {
    font-size: 0.75rem;
  }

  .hv-chart {
    height: 70px;
    gap: 5px;
    margin-bottom: 12px;
  }

  .hv-metric-value {
    font-size: 0.8125rem;
  }

  .hv-float-card {
    padding: 10px 12px;
    gap: 8px;
  }

  .hv-float-icon {
    width: 30px;
    height: 30px;
  }

  .hv-float-icon svg {
    width: 14px;
    height: 14px;
  }

  .hv-float-value {
    font-size: 0.8125rem;
  }

  .hv-float-label {
    font-size: 0.625rem;
  }

  .hv-float-trend {
    font-size: 0.625rem;
  }

  .hv-float-followers {
    top: 0;
    right: 5%;
  }

  .hv-float-engagement {
    bottom: 20%;
    left: 0;
  }

  .hv-float-leads {
    bottom: 2%;
    right: 8%;
  }

  .hv-platforms {
    top: 5%;
    left: 2%;
    gap: 8px;
  }

  .hv-platform-icon {
    width: 32px;
    height: 32px;
  }

  .hv-platform-icon svg {
    width: 15px;
    height: 15px;
  }

  .hv-pulse-ring--1 { width: 220px; height: 220px; }
  .hv-pulse-ring--2 { width: 300px; height: 300px; }

  .cta-banner {
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  .softnue-navbar .nav-link {
    padding: 12px 16px !important;
  }

  .softnue-navbar .nav-link::after {
    display: none;
  }

  .pain-callout {
    padding: 28px 24px;
  }

  .pain-callout blockquote {
    font-size: 1.0625rem;
  }

  .pain-point-card {
    padding: 24px 20px;
  }

  .pain-point-number {
    font-size: 4rem;
  }

  .pain-resolution-inner {
    padding: 28px 24px;
  }

  .why-card {
    padding: 24px 20px;
  }
}

@media (max-width: 575.98px) {
  .hero-stat-value {
    font-size: 1.5rem;
  }

  .pricing-amount .price {
    font-size: 1.75rem;
  }

  .pain-callout {
    padding: 24px 20px;
  }

  .pain-callout-quote {
    width: 28px;
    height: 28px;
  }

  .pain-callout blockquote {
    font-size: 1rem;
  }

  .pain-point-number {
    font-size: 3.5rem;
    top: -4px;
    right: 8px;
  }

  .pain-resolution-inner {
    padding: 24px 20px;
  }

  .pain-resolution-content p {
    font-size: 1rem;
  }

  .hero-visual {
    height: 300px;
    margin-top: 20px;
  }

  .hv-analytics-card {
    width: 190px;
    padding: 12px;
  }

  .hv-analytics-title { font-size: 0.6875rem; }
  .hv-analytics-badge { font-size: 0.5625rem; }

  .hv-chart {
    height: 56px;
    gap: 4px;
    margin-bottom: 10px;
  }

  .hv-chart-bar::after {
    font-size: 0.5rem;
    bottom: -15px;
  }

  .hv-metric-value { font-size: 0.75rem; }
  .hv-metric-label { font-size: 0.5625rem; }

  .hv-float-card {
    padding: 8px 10px;
    gap: 6px;
    border-radius: var(--radius-sm);
  }

  .hv-float-icon {
    width: 26px;
    height: 26px;
  }

  .hv-float-icon svg { width: 12px; height: 12px; }
  .hv-float-value { font-size: 0.75rem; }
  .hv-float-label { font-size: 0.5625rem; }

  .hv-float-trend {
    display: none;
  }

  .hv-float-followers { top: 0; right: 0; }
  .hv-float-engagement { bottom: 18%; left: 0; }
  .hv-float-leads { bottom: 0; right: 2%; }

  .hv-platforms {
    top: 2%;
    left: 0;
    gap: 6px;
  }

  .hv-platform-icon {
    width: 28px;
    height: 28px;
  }

  .hv-platform-icon svg { width: 13px; height: 13px; }

  .hv-pulse-ring--1 { width: 180px; height: 180px; }
  .hv-pulse-ring--2 { width: 260px; height: 260px; }
}

/* ============================================
   AUDIT MODAL
   ============================================ */

.audit-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20,28,39,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.audit-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.audit-modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-2xl);
  padding: 40px;
  box-shadow:
    0 24px 64px rgba(20,28,39,0.2),
    0 8px 24px rgba(20,28,39,0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transform: translateY(20px) scale(0.97);
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.audit-modal-overlay.active .audit-modal {
  transform: translateY(0) scale(1);
}

.audit-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-inner-light);
}

.audit-modal-close:hover {
  background: var(--grey-200);
  color: var(--text-primary);
}

.audit-modal-close svg {
  width: 18px;
  height: 18px;
}

.audit-modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.audit-modal-header h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}

.audit-modal-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.audit-modal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.audit-modal-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 0.8125rem;
  color: var(--text-light);
}

.audit-modal-trust svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--grey-400);
}

/* Scrollbar in modal */
.audit-modal::-webkit-scrollbar {
  width: 6px;
}

.audit-modal::-webkit-scrollbar-track {
  background: transparent;
}

.audit-modal::-webkit-scrollbar-thumb {
  background: var(--grey-300);
  border-radius: 3px;
}

/* Modal responsive */
@media (max-width: 575.98px) {
  .audit-modal-overlay {
    padding: 16px;
    align-items: flex-end;
  }

  .audit-modal {
    padding: 28px 20px;
    border-radius: var(--radius-xl) var(--radius-xl) var(--radius-lg) var(--radius-lg);
    max-height: calc(100dvh - 32px);
    transform: translateY(100%);
  }

  .audit-modal-overlay.active .audit-modal {
    transform: translateY(0);
  }

  .audit-modal-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .audit-modal-header h3 {
    font-size: 1.25rem;
  }
}

/* Body scroll lock when modal is open */
body.modal-open {
  overflow: hidden;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f7c06a 0%, #f4ad41 100%);
  border: 1px solid rgba(217,146,46,0.3);
  border-radius: var(--radius-md);
  box-shadow:
    0 4px 12px rgba(244,173,65,0.3),
    inset 0 1px 0 rgba(255,255,255,0.3);
  color: var(--secondary);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow:
    0 6px 18px rgba(244,173,65,0.4),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 575px) {
  .back-to-top {
    bottom: 72px;
    right: 16px;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   AUDIT CTA CARD (Inline)
   ============================================ */

.audit-cta-card {
  background: linear-gradient(135deg, #fef3e1 0%, #fff9f0 50%, #ffffff 100%);
  border: 2px solid rgba(244,173,65,0.25);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.audit-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}

@media (max-width: 767.98px) {
  .audit-cta-card {
    padding: 28px 20px;
    text-align: center;
  }
}

/* ============================================
   LOADING SKELETON (Optional)
   ============================================ */

.softnue-skeleton {
  background: linear-gradient(90deg, var(--grey-100) 25%, var(--grey-50) 50%, var(--grey-100) 75%);
  background-size: 200% 100%;
  animation: skeleton-shine 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton-shine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}


/* ============================================
   TOP BAR - Service Links
   ============================================ */

.softnue-topbar-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
.softnue-topbar-links li {
  position: relative;
}
.softnue-topbar-links li + li::before {
  content: '|';
  color: rgba(255,255,255,0.25);
  padding: 0 12px;
}
.softnue-topbar-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.softnue-topbar-links a:hover {
  color: var(--primary);
}


/* ============================================
   MARQUEE
   ============================================ */

.softnue-marquee {
  background: var(--primary);
  color: var(--secondary);
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 500;
}
.softnue-marquee-text {
  display: inline-block;
  animation: softnue-scroll 25s linear infinite;
  padding-left: 100%;
}
@keyframes softnue-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}


/* ============================================
   HEADER CONTACT INFO (in navbar)
   ============================================ */

.softnue-header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  margin-right: 20px;
}
.softnue-header-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  transition: color 0.2s;
}
.softnue-header-contact-item:hover {
  color: var(--primary);
}
.softnue-header-contact-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244,173,65,0.1);
  border-radius: 50%;
  color: var(--primary);
  flex-shrink: 0;
}
.softnue-header-contact-text {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
}
.softnue-header-contact-text small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-secondary);
}


/* ============================================
   HEADER BOTTOM NAV BAR (header__bottom-4)
   ============================================ */

.header__bottom-4 {
  background-color: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: sticky;
  top: 0;
  z-index: 1040;
}
.bg-darkk {
  background-color: var(--secondary);
  box-shadow: 0 0 16px -9px #fbfbfb;
}
.p-relative {
  position: relative;
}
.header__btn-4 {
  padding: 10px 0;
}

/* Main menu base */
.main-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-right: 30px;
}
.main-menu ul li:last-child {
  margin-right: 0;
}
.main-menu ul li > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  padding: 14px 0;
  text-decoration: none;
  transition: color 0.2s;
}
.main-menu ul li:hover > a {
  color: var(--primary);
}

/* Mega menu li — position static so the dropdown resolves to .mega-menu-wrapper */
.main-menu ul li.has-mega-menu {
  position: static;
}

/* Mega menu dropdown panel */
.main-menu ul li .mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 20px 24px;
  background: #fff;
  box-shadow: 0 20px 30px rgba(3,4,28,0.12);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top center;
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  z-index: 99;
  list-style: none;
  margin: 0;
}
.main-menu ul li:hover .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}

/* 4 equal-width columns via float */
.main-menu ul li .mega-menu > li {
  float: left;
  width: 25%;
  display: block;
  margin-right: 0;
  padding: 0 8px;
}
.main-menu ul li .mega-menu::after {
  content: '';
  display: table;
  clear: both;
}

/* Items inside each column */
.main-menu ul li .mega-menu > li > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-menu ul li .mega-menu > li > ul > li {
  width: 100%;
  float: none;
  display: block;
  margin-bottom: 2px;
}
.main-menu ul li .mega-menu > li > ul > li > a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.main-menu ul li .mega-menu > li > ul > li > a:hover {
  background: rgba(244,173,65,0.08);
  color: var(--primary);
}
.main-menu ul li .mega-menu > li > ul > li > a img.serviceslogo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
  border: none;
  margin: 0;
  display: inline-block;
}


/* ============================================
   OFFCANVAS MOBILE MENU
   ============================================ */

.softnue-offcanvas {
  background: var(--secondary) !important;
  color: #fff;
  max-width: 320px;
  border-left: 1px solid rgba(255,255,255,0.08) !important;
}
.softnue-offcanvas .offcanvas-header {
  padding: 20px 24px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.softnue-offcanvas .offcanvas-header .softnue-offcanvas-close {
  margin-left: auto;
}
.softnue-offcanvas .offcanvas-body {
  padding: 20px 24px;
}
.softnue-offcanvas-close {
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.12);
  color: #1a1a2e;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.softnue-offcanvas-close:hover {
  background: rgba(255,255,255,0.2);
}
.softnue-offcanvas-tagline {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}
.softnue-offcanvas-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Mobile Nav List */
.softnue-mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.softnue-mobile-nav > li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.softnue-mobile-nav > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.softnue-mobile-nav > li > a:hover {
  color: var(--primary);
}

/* Mobile Submenu */
.softnue-mobile-submenu {
  list-style: none;
  padding: 0 0 8px 16px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.softnue-mobile-has-sub.open .softnue-mobile-submenu {
  max-height: 600px;
}
.softnue-mobile-has-sub.open > a svg {
  transform: rotate(180deg);
}
.softnue-mobile-sub-toggle svg {
  transition: transform 0.3s;
}
.softnue-mobile-submenu li a {
  display: block;
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.softnue-mobile-submenu li a:hover {
  color: var(--primary);
}

.softnue-offcanvas-contact {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.softnue-offcanvas-contact p {
  margin-bottom: 6px;
}
.softnue-offcanvas-contact a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
}
.softnue-offcanvas-contact a:hover {
  color: var(--primary);
}
.softnue-offcanvas-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.softnue-offcanvas-social a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.softnue-offcanvas-social a:hover {
  color: var(--primary);
}
.softnue-offcanvas-backdrop {
  display: none;
}

/* Alert error message */
.softnue-alert-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #dc2626;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  margin: 16px auto;
  max-width: 600px;
  text-align: center;
  font-size: 0.9rem;
}


/* ============================================
   CTA BAR (above footer)
   ============================================ */

.softnue-cta-bar {
  padding: 60px 0;
  background: var(--secondary);
}
.softnue-cta-bar-inner {
  background: linear-gradient(135deg, rgba(244,173,65,0.12) 0%, rgba(244,173,65,0.04) 100%);
  border: 1px solid rgba(244,173,65,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
}
.softnue-cta-bar-pre {
  display: block;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 8px;
}
.softnue-cta-bar-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
}


/* ============================================
   PARTNER LOGOS
   ============================================ */

.softnue-partners {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.box {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  /* padding: 47px; */
  margin-bottom: 20px;
  background-color: #fff;
}
.brand__item-55 {
  width: 152px;
  border-radius: 14px;
  justify-content: center;
}
.mbb {
  margin-top: -36px;
  height: 149px;
}
.brand__item-55 img {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .roi {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .roi .col-lg-2 {
    width: 50%;
    box-sizing: border-box;
    padding: 0 10px;
  }
  .mbb {
    margin-top: -9px;
  }
}
@media screen and (max-width: 767px) {
  .pdclint {
    padding-left: 24px;
  }
}


/* ============================================
   FOOTER - Extended (policies, copyright)
   ============================================ */

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.footer-copyright a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.footer-copyright a:hover {
  color: var(--primary);
}
.footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.78rem;
}
.footer-policies a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-policies a:hover {
  color: var(--primary);
}
.footer-policies span {
  color: rgba(255,255,255,0.2);
}


/* ============================================
   FLOATING BUTTONS (Desktop)
   ============================================ */

.softnue-floating-btns {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 1030;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.softnue-float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: softnue-float-pulse 2s ease-in-out infinite;
}
.softnue-float-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  color: #fff;
}
.softnue-float-btn span {
  display: none;
}
.softnue-float-btn:hover span {
  display: inline;
}
.softnue-float-phone {
  background: var(--primary);
}
.softnue-float-whatsapp {
  background: #25d366;
}

@keyframes softnue-float-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.softnue-float-btn:hover {
  animation: none;
}


/* ============================================
   MOBILE BOTTOM BAR (Skeuomorphic)
   ============================================ */

.softnue-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: linear-gradient(180deg, #1e2a3a 0%, #111827 100%);
  box-shadow:
    0 -4px 24px rgba(0,0,0,0.45),
    0 -1px 0 rgba(255,255,255,0.07);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.softnue-mobile-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 12px;
  min-height: 58px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.1s ease;
  position: relative;
  overflow: hidden;
}

/* Glossy highlight stripe across the top of each button */
.softnue-mobile-bar-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  border-radius: 0;
}

/* Pressed / active state */
.softnue-mobile-bar-btn:active {
  transform: scale(0.97);
  filter: brightness(0.88);
}

.softnue-mobile-bar-phone,
.softnue-mobile-bar-phone:hover,
.softnue-mobile-bar-phone:active,
.softnue-mobile-bar-phone:visited,
.softnue-mobile-bar-phone:focus {
  color: #fff;
  filter: none;
}

.softnue-mobile-bar-phone:active {
  background: linear-gradient(180deg, #e8a820 0%, #d9920a 45%, #c07d00 100%);
  transform: scale(0.97);
}

/* Icon glow */
.softnue-mobile-bar-btn svg {
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
  flex-shrink: 0;
}

/* Label text */
.softnue-mobile-bar-btn span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  line-height: 1;
}

/* WhatsApp — deep green Softnue */
.softnue-mobile-bar-wa {
  background: linear-gradient(180deg, #25c445 0%, #18a035 45%, #128a28 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -2px 6px rgba(0,0,0,0.25),
    inset 2px 0 0 rgba(255,255,255,0.06),
    inset -2px 0 0 rgba(0,0,0,0.12);
  border-right: 1px solid rgba(0,0,0,0.25);
}

/* Phone — gold Softnue */
.softnue-mobile-bar-phone {
  background: linear-gradient(180deg, #fbbf24 0%, #f4ad41 45%, #d9920a 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32),
    inset 0 -2px 6px rgba(0,0,0,0.2),
    inset -2px 0 0 rgba(255,255,255,0.08),
    inset 2px 0 0 rgba(0,0,0,0.08);
  color: #fff;
}

.softnue-mobile-bar-phone svg {
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.35));
}

.softnue-mobile-bar-phone span {
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

/* ========== MAP ========== */
.homepage-map-canvas {
  width: 100%;
  line-height: 0;
}
.homepage-map-canvas iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

/* Add bottom padding on mobile for the bar */
@media (max-width: 575.98px) {
  .softnue-footer {
    padding-bottom: 60px;
  }
}
