/*
Theme Name: Unstoppable Solutions
Theme URI: https://unstoppablesolutions.com
Author: Unstoppable Solutions
Author URI: https://unstoppablesolutions.com
Description: Performance-driven digital marketing, healthcare RCM, and AI solutions theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: unstoppable
*/

/* ─── Google Fonts ─────────────────────────────────────────── */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap");

/* ─── CSS Variables ────────────────────────────────────────── */

:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 17%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 17%;
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 17%;
  --primary: 24 100% 48%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 53% 23%;
  --secondary-foreground: 0 0% 100%;
  --muted: 220 14% 97%;
  --muted-foreground: 220 10% 46%;
  --accent: 24 100% 48%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 220 14% 90%;
  --input: 220 14% 90%;
  --ring: 24 100% 48%;
  --radius: 0.5rem;
  --surface: 220 14% 97%;
  --surface-foreground: 0 0% 17%;
  --heading: 220 53% 23%;
  --subtext: 0 0% 40%;
  --navy: 220 53% 23%;
}

/* ─── Base Styles ──────────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: hsl(var(--heading));
  margin: 0;
}

p {
  margin: 0;
}

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

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

/* ─── Container ────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 767px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ─── Font Family ──────────────────────────────────────────── */

.font-heading {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.font-body {
  font-family: "Inter", system-ui, sans-serif;
}

/* ─── Font Weight ──────────────────────────────────────────── */

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

/* ─── Font Size ────────────────────────────────────────────── */

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

/* Custom sizes */

.text-\[2rem\] {
  font-size: 2rem;
}

.text-\[2\.75rem\] {
  font-size: 2.75rem;
}

.text-\[3\.25rem\] {
  font-size: 3.25rem;
}

.text-\[4\.25rem\] {
  font-size: 4.25rem;
}

/* ─── Colors ───────────────────────────────────────────────── */

.text-primary {
  color: hsl(var(--primary));
}

.text-primary-foreground {
  color: hsl(var(--primary-foreground));
}

.text-secondary {
  color: hsl(var(--secondary));
}

.text-secondary-foreground {
  color: hsl(var(--secondary-foreground));
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}

.text-foreground {
  color: hsl(var(--foreground));
}

.text-destructive {
  color: hsl(var(--destructive));
}

/* Opacity variants */

.text-secondary\/80 {
  color: hsl(var(--secondary) / 0.8);
}

.text-secondary\/70 {
  color: hsl(var(--secondary) / 0.7);
}

.text-secondary\/60 {
  color: hsl(var(--secondary) / 0.6);
}

.text-secondary\/50 {
  color: hsl(var(--secondary) / 0.5);
}

.text-secondary\/40 {
  color: hsl(var(--secondary) / 0.4);
}

.text-secondary-foreground\/80 {
  color: hsl(var(--secondary-foreground) / 0.8);
}

.text-secondary-foreground\/70 {
  color: hsl(var(--secondary-foreground) / 0.7);
}

.text-secondary-foreground\/60 {
  color: hsl(var(--secondary-foreground) / 0.6);
}

.text-secondary-foreground\/50 {
  color: hsl(var(--secondary-foreground) / 0.5);
}

.text-muted-foreground\/30 {
  color: hsl(var(--muted-foreground) / 0.3);
}

.text-foreground\/60 {
  color: hsl(var(--foreground) / 0.6);
}

/* ─── Background Colors ────────────────────────────────────── */

.bg-background {
  background-color: hsl(var(--background));
}

.bg-primary {
  background-color: hsl(var(--primary));
}

.bg-primary\/10 {
  background-color: hsl(var(--primary) / 0.1);
}

.bg-primary\/20 {
  background-color: hsl(var(--primary) / 0.2);
}

.bg-secondary {
  background-color: hsl(var(--secondary));
}

.bg-secondary\/50 {
  background-color: hsl(var(--secondary) / 0.5);
}

.bg-secondary\/70 {
  background-color: hsl(var(--secondary) / 0.7);
}

.bg-secondary\/90 {
  background-color: hsl(var(--secondary) / 0.9);
}

.bg-muted {
  background-color: hsl(var(--muted));
}

.bg-muted\/80 {
  background-color: hsl(var(--muted) / 0.8);
}

.bg-card {
  background-color: hsl(var(--card));
}

.bg-surface {
  background-color: hsl(var(--surface));
}

.bg-secondary-foreground\/5 {
  background-color: hsl(var(--secondary-foreground) / 0.05);
}

.bg-secondary-foreground\/10 {
  background-color: hsl(var(--secondary-foreground) / 0.1);
}

/* ─── Spacing ──────────────────────────────────────────────── */

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-10 {
  padding: 2.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-14 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-\[58px\] {
  padding-top: 58px;
  padding-bottom: 58px;
}

.py-\[80px\] {
  padding-top: 80px;
  padding-bottom: 80px;
}

.pt-16 {
  padding-top: 4rem;
}

.pt-32 {
  padding-top: 8rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pb-\[58px\] {
  padding-bottom: 58px;
}

.pl-3 {
  padding-left: 0.75rem;
}

.m-0 {
  margin: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-1\.5 {
  margin-bottom: 0.375rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-14 {
  margin-bottom: 3.5rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-0\.5 {
  margin-top: 0.125rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.ml-0\.5 {
  margin-left: 0.125rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.mr-0\.5 {
  margin-right: 0.125rem;
}

.-mx-8 {
  margin-left: -2rem;
  margin-right: -2rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* ─── Layout ───────────────────────────────────────────────── */

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-0 {
  top: 0;
}

.top-16 {
  top: 4rem;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline-flex {
  display: inline-flex;
}

.flex {
  display: flex;
}

.hidden {
  display: none;
}

.grid {
  display: grid;
}

.flex-col {
  flex-direction: column;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.shrink-0 {
  flex-shrink: 0;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-baseline {
  align-items: baseline;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-0 {
  gap: 0;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-1\.5 {
  gap: 0.375rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-x-10 {
  column-gap: 2.5rem;
}

.gap-y-12 {
  row-gap: 3rem;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.space-y-0\.5 > * + * {
  margin-top: 0.125rem;
}

.space-y-1 > * + * {
  margin-top: 0.25rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-5 > * + * {
  margin-top: 1.25rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

/* ─── Width & Height ───────────────────────────────────────── */

.w-1 {
  width: 0.25rem;
}

.w-2 {
  width: 0.5rem;
}

.w-3\.5 {
  width: 0.875rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.h-1 {
  height: 0.25rem;
}

.h-2 {
  height: 0.5rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-52 {
  height: 13rem;
}

.h-80 {
  height: 20rem;
}

.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.h-px {
  height: 1px;
}

.h-screen {
  height: 100vh;
}

.h-\[1\.1em\] {
  height: 1.1em;
}

.h-\[500px\] {
  height: 500px;
}

.min-h-screen {
  min-height: 100vh;
}

.min-h-\[520px\] {
  min-height: 520px;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-xs {
  max-width: 20rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .md\:ml-3 {
    margin-left: calc(3 * 0.25rem);
  }
}

.d-none {
  display: none;
}
.d-block {
  display: block;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }
}

/* ─── Border & Radius ──────────────────────────────────────── */

.border {
  border-width: 1px;
  border-style: solid;
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}

.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.border-l {
  border-left-width: 1px;
  border-left-style: solid;
}

.border-border {
  border-color: hsl(var(--border));
}

.border-border\/50 {
  border-color: hsl(var(--border) / 0.5);
}

.border-secondary {
  border-color: hsl(var(--secondary));
}

.border-secondary\/10 {
  border-color: hsl(var(--secondary) / 0.1);
}

.border-secondary\/15 {
  border-color: hsl(var(--secondary) / 0.15);
}

.border-secondary\/20 {
  border-color: hsl(var(--secondary) / 0.2);
}

.border-secondary-foreground\/10 {
  border-color: hsl(var(--secondary-foreground) / 0.1);
}

.border-primary\/20 {
  border-color: hsl(var(--primary) / 0.2);
}

.border-primary\/30 {
  border-color: hsl(var(--primary) / 0.3);
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: var(--radius);
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* ─── Typography ───────────────────────────────────────────── */

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

.text-left {
  text-align: left;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-\[0\.15em\] {
  letter-spacing: 0.15em;
}

.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.leading-none {
  line-height: 1;
}

.leading-tight {
  line-height: 1.25;
}

.leading-snug {
  line-height: 1.375;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-\[1\.1\] {
  line-height: 1.1;
}

.leading-\[1\.15\] {
  line-height: 1.15;
}

.leading-\[1\.8\] {
  line-height: 1.8;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.select-none {
  user-select: none;
}

/* ─── Object Fit ───────────────────────────────────────────── */

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.overflow-hidden {
  overflow: hidden;
}

#mobile-menu:not(.hidden) {
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

/* ─── Effects ──────────────────────────────────────────────── */

.opacity-50 {
  opacity: 0.5;
}
.opacity-90 {
  opacity: 0.9;
}

.shadow-lg {
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
}

.backdrop-blur-xl {
  backdrop-filter: blur(24px);
}

/* ─── Transitions ──────────────────────────────────────────── */

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-150 {
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

/* ─── Transforms ───────────────────────────────────────────── */

.scale-105 {
  transform: scale(1.05);
}

.translate-x-1 {
  transform: translateX(0.25rem);
}

.rotate-180 {
  transform: rotate(180deg);
}

/* ─── Animations ───────────────────────────────────────────── */

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fade-up 0.6s ease-out forwards;
}

/* ─── Cursor ───────────────────────────────────────────────── */

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

/* ─── Interactive States ───────────────────────────────────── */

.hover\:opacity-90:hover {
  opacity: 0.9;
}

.hover\:text-secondary:hover {
  color: hsl(var(--secondary));
}

.hover\:text-primary:hover {
  color: hsl(var(--primary));
}

.hover\:text-secondary-foreground:hover {
  color: hsl(var(--secondary-foreground));
}

.hover\:text-secondary-foreground\/70:hover {
  color: hsl(var(--secondary-foreground) / 0.7);
}

.hover\:text-foreground:hover {
  color: hsl(var(--foreground));
}

.hover\:bg-muted\/80:hover {
  background-color: hsl(var(--muted) / 0.8);
}

.hover\:bg-secondary:hover {
  background-color: hsl(var(--secondary));
}

.hover\:bg-secondary\/90:hover {
  background-color: hsl(var(--secondary) / 0.9);
}

.hover\:shadow-lg:hover {
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.hover\:border-primary\/20:hover {
  border-color: hsl(var(--primary) / 0.2);
}

.hover\:border-primary\/30:hover {
  border-color: hsl(var(--primary) / 0.3);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:translate-x-1:hover {
  transform: translateX(0.25rem);
}

.hover\:gap-2\.5:hover {
  gap: 0.625rem;
}

.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

.group:hover .group-hover\:gap-2\.5 {
  gap: 0.625rem;
}

.group:hover .group-hover\:translate-x-1 {
  transform: translateX(0.25rem);
}

.group:hover .group-hover\:text-primary {
  color: hsl(var(--primary));
}

.group:hover .group-hover\:text-secondary-foreground {
  color: hsl(var(--secondary-foreground));
}

.group:hover .group-hover\:text-secondary-foreground\/70 {
  color: hsl(var(--secondary-foreground) / 0.7);
}

.group:hover .group-hover\:bg-primary {
  background-color: hsl(var(--primary));
}

/* ─── Focus ────────────────────────────────────────────────── */

.focus\:outline-none:focus {
  outline: none;
}

.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px hsl(var(--ring));
}

.focus\:ring-primary:focus {
  box-shadow: 0 0 0 2px hsl(var(--primary));
}

.focus\:ring-primary\/20:focus {
  box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
}

/* ─── Placeholder ──────────────────────────────────────────── */

.placeholder\:text-muted-foreground::placeholder {
  color: hsl(var(--muted-foreground));
}

.placeholder\:text-secondary-foreground\/40::placeholder {
  color: hsl(var(--secondary-foreground) / 0.4);
}

/* ─── Resize ───────────────────────────────────────────────── */

.resize-none {
  resize: none;
}

/* ─── Appearance ───────────────────────────────────────────── */

.appearance-none {
  appearance: none;
}

/* ─── Alignment ────────────────────────────────────────────── */

.align-middle {
  vertical-align: middle;
}

.align-baseline {
  vertical-align: baseline;
}

/* ─── Form Inputs ──────────────────────────────────────────── */

input,
select,
textarea {
  font-family: inherit;
}

/* ─── Gradient ─────────────────────────────────────────────── */

.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-secondary\/80 {
  --tw-gradient-from: hsl(var(--secondary) / 0.8);
  --tw-gradient-stops:
    var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

.via-secondary\/40 {
  --tw-gradient-via: hsl(var(--secondary) / 0.4);
  --tw-gradient-stops:
    var(--tw-gradient-from), var(--tw-gradient-via),
    var(--tw-gradient-to, transparent);
}

.to-transparent {
  --tw-gradient-to: transparent;
}

.from-primary\/40 {
  --tw-gradient-from: hsl(var(--primary) / 0.4);
  --tw-gradient-stops:
    var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

/* ─── Additional Utility Classes ───────────────────────────── */

.inline-grid {
  display: inline-grid;
}

.col-start-1 {
  grid-column-start: 1;
}

.row-start-1 {
  grid-row-start: 1;
}

.invisible {
  visibility: hidden;
}

/* Primary opacity for numbers */

.text-primary\/20 {
  color: hsl(var(--primary) / 0.2);
}

.text-primary\/0 {
  color: hsl(var(--primary) / 0);
}

.bg-primary\/0 {
  background-color: hsl(var(--primary) / 0);
}

.bg-foreground\/10 {
  background-color: hsl(var(--foreground) / 0.1);
}

.text-foreground\/30 {
  color: hsl(var(--foreground) / 0.3);
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.ml-auto {
  margin-left: auto;
}

.w-3 {
  width: 0.75rem;
}

.h-3 {
  height: 0.75rem;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Shadow for mega menu */

.shadow-\[0_20px_60px_-15px_rgba\(0\,0\,0\,0\.15\)\] {
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.15);
}

/* Additional hover states */

.hover\:text-secondary\/80:hover {
  color: hsl(var(--secondary) / 0.8);
}

.group\/item:hover .group-hover\/item\:bg-primary {
  background-color: hsl(var(--primary));
}

.group\/item:hover .group-hover\/item\:text-foreground {
  color: hsl(var(--foreground));
}

/* ─── Prose Styles (Article Content) ───────────────────────── */

.prose {
  color: hsl(var(--foreground) / 0.7);
  max-width: 65ch;
}

.prose.max-w-none {
  max-width: none;
}

.prose.prose-lg {
  font-size: 1.125rem;
  line-height: 1.75;
}

.prose p {
  margin-bottom: 1.5rem;
}

.prose h2 {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: hsl(var(--foreground));
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.prose h3 {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: hsl(var(--foreground));
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose ul,
.prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose a {
  color: hsl(var(--primary));
  text-decoration: underline;
}

.prose a:hover {
  opacity: 0.8;
}

.prose blockquote {
  border-left: 4px solid hsl(var(--primary));
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: hsl(var(--foreground) / 0.6);
}

.prose img {
  border-radius: 0.5rem;
  margin: 2rem 0;
}

.prose strong {
  color: hsl(var(--foreground));
  font-weight: 600;
}

/* ─── Min Height ───────────────────────────────────────────── */

.min-h-\[60vh\] {
  min-height: 60vh;
}

hr.border-border {
  border: none;
  border-top: 1px solid hsl(var(--border));
}

/* ─── Negative Z-index ─────────────────────────────────────── */

.-z-10 {
  z-index: -10;
}

/* ─── Blog Hero Overlay ────────────────────────────────────── */

.bg-secondary\/60 {
  background-color: hsl(var(--secondary) / 0.6);
}

.min-h-\[80vh\] {
  min-height: 80vh;
}

.pb-5 {
  padding-bottom: calc(5 * 0.25rem);
}

.py-28 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.gap-20 {
  gap: 5rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-0 {
  margin-top: 0;
}

.text-primary\/15 {
  color: hsl(var(--primary) / 0.15);
}

.items-stretch {
  align-items: stretch;
}

/* Form styles */

input:focus,
textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
}

/* FAQ accordion styles */

.faq-item {
  overflow: hidden;
}

.faq-toggle {
  cursor: pointer;
}

.faq-content {
  transition: all 0.2s ease;
}

.space-y-12 > * + * {
  margin-top: 3rem;
}

.text-green-600 {
  color: #16a34a;
}

.text-foreground\/80 {
  color: hsl(var(--foreground) / 0.8);
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.min-h-\[220px\] {
  min-height: 220px;
}

/* Industry FAQ */

.industry-faq-item {
  overflow: hidden;
}

.industry-faq-toggle {
  cursor: pointer;
}

.industry-faq-content {
  transition: all 0.2s ease;
}

/* ─── Additional Typography ────────────────────────────────── */

.leading-\[1\.08\] {
  line-height: 1.08;
}

.pt-6 {
  padding-top: 1.5rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.w-7 {
  width: 1.75rem;
}

.h-7 {
  height: 1.75rem;
}

.w-8 {
  width: 2rem;
}

.h-8 {
  height: 2rem;
}

.w-11 {
  width: 2.75rem;
}

.h-11 {
  height: 2.75rem;
}

.h-\[400px\] {
  height: 400px;
}

/* ─── Industry Page Specific ───────────────────────────────── */

.justify-end {
  justify-content: flex-end;
}

/* ─── Responsive overrides ──────────────────────────────── */

@media (max-width: 767px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .py-20 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .py-28 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .gap-20 {
    gap: 3rem;
  }
}

@media (min-width: 640px) {
  .sm\:text-\[2\.75rem\] {
    font-size: 2.75rem;
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  .md\:hidden {
    display: none;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .md\:gap-8 {
    gap: 2rem;
  }
  .md\:gap-16 {
    gap: 4rem;
  }
  .md\:gap-20 {
    gap: 5rem;
  }
  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .md\:text-left {
    text-align: left;
  }
  .md\:p-10 {
    padding: 2.5rem;
  }
  .md\:p-14 {
    padding: 3.5rem;
  }
  .md\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .md\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .md\:text-\[3\.25rem\] {
    font-size: 3.25rem;
  }
  .md\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .md\:rounded-lg {
    border-radius: var(--radius);
  }
  .md\:h-\[420px\] {
    height: 420px !important;
  }
  .md\:inline-flex {
    display: inline-flex;
  }
  .md\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .md\:gap-20 {
    gap: 5rem;
  }
  .md\:gap-16 {
    gap: 4rem;
  }
  .md\:h-\[420px\] {
    height: 420px;
  }
  .md\:h-80 {
    height: 20rem;
  }
  .md\:min-h-\[420px\] {
    min-height: 420px;
  }
  .md\:p-12 {
    padding: 3rem;
  }
  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .md\:h-\[500px\] {
    height: 500px;
  }
  .md\:h-\[560px\] {
    height: 560px;
  }
  .md\:gap-12 {
    gap: 3rem;
  }
  .md\:px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
  .md\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  .lg\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .lg\:text-4xl {
    font-size: 3rem;
    line-height: 1;
  }
  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .lg\:text-\[4\.25rem\] {
    font-size: 4.25rem;
  }
  .lg\:text-\[2\.75rem\] {
    font-size: 2.75rem;
  }
  .lg\:text-\[3\.5rem\] {
    font-size: 3.5rem;
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

/* ─── Contact Form 7 — matched to "Get Your Free Audit" screenshot ─── */

/* The .cf7-card wrapper (from template-parts/contact-form.php) already
   supplies bg-surface + rounded-2xl + padding. The CF7 form itself stays
   transparent and just inherits that card. */
.cf7-card .wpcf7-form {
  padding: 0;
  background: transparent;
  border: 0;
  margin: 0;
}

/* Vertical rhythm between form rows */
.cf7-card .wpcf7-form > div,
.cf7-card .wpcf7-form > p {
  margin: 0 0 1.25rem;
}
.cf7-card .wpcf7-form > div:last-of-type,
.cf7-card .wpcf7-form > p:last-of-type {
  margin-bottom: 0;
}
.cf7-card .wpcf7-form p {
  margin: 0 0 1rem;
}
.cf7-card .wpcf7-form p:last-child {
  margin-bottom: 0;
}

/* Card heading */
.cf7-card h3 {
  color: hsl(var(--foreground));
  font-weight: 700;
}

/* Labels — bold, small, with the asterisk in primary orange */
.cf7-card .cf7-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.cf7-card .cf7-label .text-destructive {
  color: hsl(var(--primary));
  font-weight: 700;
}

/* CF7 wraps each input in <span class="wpcf7-form-control-wrap"> — make it block */
.cf7-card .wpcf7-form-control-wrap {
  display: block;
}

/* Inputs / textarea / select — white fill, subtle border, rounded */
.cf7-card .cf7-input,
.cf7-card input.wpcf7-text,
.cf7-card input.wpcf7-email,
.cf7-card input.wpcf7-tel,
.cf7-card input.wpcf7-url,
.cf7-card textarea.wpcf7-textarea,
.cf7-card select.wpcf7-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  background: #ffffff;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  line-height: 1.4;
  box-sizing: border-box;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
}
.cf7-card .cf7-input::placeholder,
.cf7-card .wpcf7-form-control::placeholder {
  color: hsl(var(--muted-foreground) / 0.7);
}
.cf7-card .cf7-input:focus,
.cf7-card .wpcf7-form-control:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.15);
}
.cf7-card textarea.wpcf7-textarea {
  resize: none;
  min-height: 6rem;
}

/* Native select chevron */
.cf7-card select.wpcf7-select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 16px 16px;
  padding-right: 2.5rem;
}

/* Two-col grid (Email + Phone row) */
.cf7-card .grid.grid-cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Audit-checkbox row */
.cf7-card .cf7-audit-row {
  margin-top: 0.25rem;
}
.cf7-card .cf7-audit-row .wpcf7-list-item {
  margin: 0;
  display: block;
}
.cf7-card .cf7-audit-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  cursor: pointer;
}
.cf7-card .cf7-audit-row input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  border: 1.5px solid hsl(var(--primary));
  background: #ffffff;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}
.cf7-card .cf7-audit-row input[type="checkbox"]:checked {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
}
.cf7-card .cf7-audit-row input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
}

/* Submit button — full-width primary orange */
.cf7-card .cf7-submit,
.cf7-card .wpcf7-submit {
  width: 100%;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-family: var(--font-heading, inherit);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
  border: 0;
  border-radius: 0.5rem;
  cursor: pointer;
  transition:
    opacity 0.15s,
    background 0.15s;
  margin-top: 0.5rem;
}
.cf7-card .cf7-submit:hover,
.cf7-card .wpcf7-submit:hover {
  opacity: 0.92;
}
.cf7-card .wpcf7-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Invalid state */
.cf7-card .wpcf7-not-valid {
  border-color: hsl(var(--destructive) / 0.6) !important;
  background: hsl(var(--destructive) / 0.05) !important;
}
.cf7-card .wpcf7-not-valid-tip {
  color: hsl(var(--destructive));
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* CF7 response message */
.cf7-card .wpcf7-response-output {
  margin: 1rem 0 0 !important;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  border-style: solid;
  border-width: 1px;
}
.cf7-card form.sent .wpcf7-response-output {
  border-color: hsl(var(--primary) / 0.5);
  background: hsl(var(--primary) / 0.08);
  color: hsl(var(--primary));
}
.cf7-card form.invalid .wpcf7-response-output,
.cf7-card form.unaccepted .wpcf7-response-output,
.cf7-card form.failed .wpcf7-response-output {
  border-color: hsl(var(--destructive) / 0.5);
  background: hsl(var(--destructive) / 0.08);
  color: hsl(var(--destructive));
}

/* CF7 spinner */
.cf7-card .wpcf7-spinner {
  background-color: hsl(var(--primary) / 0.6);
}

/* ─── DM Approach rich-text body (WYSIWYG output) ───────────── */
.dm-approach-rte p {
  margin: 0 0 1rem;
}
.dm-approach-rte p:last-child {
  margin-bottom: 0;
}
.dm-approach-rte ul,
.dm-approach-rte ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.dm-approach-rte li {
  margin-bottom: 0.25rem;
}
.dm-approach-rte a {
  color: hsl(var(--primary));
  text-decoration: underline;
}

/* ─── Scroll-reveal — gate animate-fade-up to viewport entry ─── */

/* Without JS the existing on-load animation runs as before. With JS, the
   <html> tag gets `js-reveal` (added via wp_head before paint), and we
   keep `.animate-fade-up` hidden until the IntersectionObserver adds
   `.is-revealed` — at which point the original keyframe animation plays. */
html.js-reveal .animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: none;
  will-change: opacity, transform;
}
html.js-reveal .animate-fade-up.is-revealed {
  animation: fade-up 0.6s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  html.js-reveal .animate-fade-up,
  html.js-reveal .animate-fade-up.is-revealed {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ─── Blog pagination ──────────────────────────────────────── */
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.875rem;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}
.page-numbers:hover {
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
}
.page-numbers.current {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}
.page-numbers.dots {
  border: 0;
  background: transparent;
  color: hsl(var(--muted-foreground));
}
.page-numbers.prev,
.page-numbers.next {
  padding: 0 1rem;
}

/* ─── Contact Form 7 — entrance animation ───────────────────── */

/* translateY only (no horizontal motion → no horizontal scroll) */
@keyframes cf7-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card itself fades up first */
.cf7-card {
  animation: cf7-fade-up 0.55s ease-out 0s both;
  /* Defensive: keep any sub-pixel transform overflow contained to the card */
  max-width: 100%;
}

/* Heading + each form row stagger in after the card */
.cf7-card h3,
.cf7-card .wpcf7-form > *,
.cf7-card .wpcf7-form > div > div {
  animation: cf7-fade-up 0.45s ease-out 0s both;
}

.cf7-card h3 {
  animation-delay: 0.08s;
}

.cf7-card .wpcf7-form > *:nth-child(1) {
  animation-delay: 0.14s;
}
.cf7-card .wpcf7-form > *:nth-child(2) {
  animation-delay: 0.2s;
}
.cf7-card .wpcf7-form > *:nth-child(3) {
  animation-delay: 0.26s;
}
.cf7-card .wpcf7-form > *:nth-child(4) {
  animation-delay: 0.32s;
}
.cf7-card .wpcf7-form > *:nth-child(5) {
  animation-delay: 0.38s;
}
.cf7-card .wpcf7-form > *:nth-child(6) {
  animation-delay: 0.44s;
}
.cf7-card .wpcf7-form > *:nth-child(7) {
  animation-delay: 0.5s;
}
.cf7-card .wpcf7-form > *:nth-child(8) {
  animation-delay: 0.56s;
}
.cf7-card .wpcf7-form > *:nth-child(9) {
  animation-delay: 0.62s;
}
.cf7-card .wpcf7-form > *:nth-child(10) {
  animation-delay: 0.68s;
}

/* Email + Phone columns inherit the parent row delay; stagger them slightly. */
.cf7-card .wpcf7-form > div.grid > div:nth-child(1) {
  animation-delay: inherit;
}
.cf7-card .wpcf7-form > div.grid > div:nth-child(2) {
  animation-delay: 0.04s;
  animation-name: cf7-fade-up;
  animation-duration: 0.45s;
  animation-fill-mode: both;
}

/* Respect users who've asked for less motion */
@media (prefers-reduced-motion: reduce) {
  .cf7-card,
  .cf7-card h3,
  .cf7-card .wpcf7-form > *,
  .cf7-card .wpcf7-form > div > div {
    animation: none;
  }
}

/* ─── Arbitrary font-size utilities (no Tailwind build) ────── */
.text-\[2rem\]      { font-size: 2rem; }
.text-\[2\.75rem\]  { font-size: 2.75rem; }

@media (min-width: 640px) {
  .sm\:text-\[2\.75rem\] { font-size: 2.75rem; }
}
@media (min-width: 768px) {
  .md\:text-\[3\.6rem\]  { font-size: 3.6rem; }
}
@media (min-width: 1024px) {
  .lg\:text-\[3\.6rem\]  { font-size: 3.6rem; }
}

.h-\[320px\]    { height: 320px; }
.max-h-\[320px\] { max-height: 320px; }
