/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* CSS Variables - Brand Colors and Theme */
:root {
    /* Brand Colors */
    --primary-blue: #0a2c78;
    --secondary-orange: #eea525;
    --light-gray: #f2f2f2;
    --white: #ffffff;
    --muted-foreground: #717182;

    /* Typography */
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 30px;
    --font-size-4xl: 36px;
    --font-size-5xl: 48px;
    --font-size-6xl: 60px;
    --font-size-7xl: 72px;

    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Border Radius */
    --radius-sm: 0.125rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;
}

/* Base Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    font-size: var(--font-size-sm);
    line-height: 1.5;
    color: #0f172a;
    background-color: var(--light-gray);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

h1 {
    font-size: var(--font-size-2xl);
}

h2 {
    font-size: var(--font-size-xl);
}

h3 {
    font-size: var(--font-size-lg);
}

h4 {
    font-size: var(--font-size-base);
}

p {
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin-bottom: var(--spacing-4);
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.text-center {
    text-align: center;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: var(--spacing-2);
}

.gap-4 {
    gap: var(--spacing-4);
}

.gap-6 {
    gap: var(--spacing-6);
}

.gap-8 {
    gap: var(--spacing-8);
}

.grid-lg-2 {
    display: grid;
    gap: var(--spacing-12);
    align-items: center;
}

.full-width {
    width: 100%;
}

/* Color utilities */
.blue-text {
    color: var(--primary-blue);
}

.orange-text {
    color: var(--secondary-orange);
}

.muted-text {
    color: var(--muted-foreground);
}

.white-text {
    color: var(--white);
}

.blue-bg {
    background-color: var(--primary-blue);
}

.orange-bg {
    background-color: var(--secondary-orange);
}

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
      transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/* Animation Classes */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.animate-bounce {
    animation: bounce 1s infinite;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    font-size: var(--font-size-xl);
    font-weight: 500;
    color: var(--primary-blue);
}

.nav {
    display: none;
    align-items: center;
    gap: var(--spacing-6);
}

.nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0f172a;
}

.mobile-menu-toggle {
    display: block;
    cursor: pointer;
    color: var(--primary-blue);
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: var(--font-size-base);
    line-height: 1;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-lg {
    padding: var(--spacing-4) var(--spacing-8);
    font-size: var(--font-size-lg);
}

.btn-primary {
    background-color: var(--secondary-orange);
    color: white;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--secondary-orange);
    color: white;
}

.btn-secondary:hover {
    opacity: 0.9;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-1);
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.badge-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.badge-primary {
    background-color: var(--primary-blue);
    color: white;
}

/* Cards */
.card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 50%, var(--light-gray) 100%);
}

.decorative-circle {
    position: absolute;
    border-radius: var(--radius-full);
}

.circle-1 {
    top: 80px;
    left: 40px;
    width: 128px;
    height: 128px;
    background-color: var(--primary-blue);
    opacity: 0.1;
}

.circle-2 {
    top: 160px;
    right: 80px;
    width: 80px;
    height: 80px;
    background-color: var(--secondary-orange);
    opacity: 0.1;
}

.circle-3 {
    bottom: 160px;
    left: 25%;
    width: 160px;
    height: 160px;
    background-color: var(--primary-blue);
    opacity: 0.05;
}

.geometric-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    transform: rotate(45deg) translate(192px, -192px);
    border: 4px solid var(--secondary-orange);
    border-opacity: 0.05;
}

.hero-content-1 {
    padding: var(--spacing-20) 0 var(--spacing-16);
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-8);
    line-height: 1.1;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.hero-title span {
    position: relative;
}
.hero-title span:nth-child(1) {
    color: var(--muted-foreground);
}
.hero-title span:nth-child(1):after {
    background-color: var(--secondary-orange);
    opacity: 0.7;
}
.hero-title span:nth-child(2) {
    color: var(--primary-blue);
}
.hero-title span:nth-child(2):after {
    background-color: var(--primary-blue);
    opacity: 0.3;
}
.hero-title span:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius-full);
}

.highlighted-text {
    position: relative;
    display: inline-block;
}

.strike-text {
    color: var(--muted-foreground);
}

.underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius-full);
}

.orange-underline {
    background-color: var(--secondary-orange);
    opacity: 0.7;
}

.blue-underline {
    background-color: var(--primary-blue);
    opacity: 0.3;
}

.hero-subtitle {
    max-width: 64rem;
    margin: 0 auto;
}

.hero-subtitle p {
    font-size: var(--font-size-xl);
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-8);
}

.emotion-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-12);
}

.emotion-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    color: var(--muted-foreground);
    font-size: var(--font-size-sm);
}

.emotion-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    opacity: 0.6;
}

.red-dot {
    background-color: #ef4444;
}

.gray-dot {
    background-color: #9ca3af;
}

.blue-dot {
    background-color: #3b82f6;
}

.trust-dot {
    width: 8px;
    height: 8px;
}

.transition-element {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.transition-line {
    width: 4px;
    height: 48px;
    background: linear-gradient(to bottom, var(--secondary-orange), transparent);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-4);
}

.arrow-down {
    color: var(--muted-foreground);
    animation: bounce 1s infinite;
}

/* Hero Section 2 - The Shift */
.hero-content-2 {
    padding: var(--spacing-16) 0;
}

.visual-metaphor {
    position: relative;
}

.breakthrough-card {
    width: 100%;
    height: 256px;
    border-radius: var(--radius-2xl);
    padding: var(--spacing-8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 44, 120, 0.1) 0%, rgba(238, 165, 37, 0.1) 100%);
}

.breakthrough-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.breakthrough-icon {
    font-size: 4rem;
    color: var(--secondary-orange);
    margin-bottom: var(--spacing-4);
}

.breakthrough-title {
    font-size: var(--font-size-xl);
    color: var(--primary-blue);
    margin-bottom: var(--spacing-2);
}

.breakthrough-card p {
    color: var(--muted-foreground);
}

.animated-circle {
    position: absolute;
    border-radius: var(--radius-full);
    animation: pulse 2s infinite;
}

.circle-pulse-1 {
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background-color: var(--primary-blue);
    opacity: 0.2;
}

.circle-pulse-2 {
    bottom: 16px;
    left: 16px;
    width: 24px;
    height: 24px;
    background-color: var(--secondary-orange);
    opacity: 0.3;
    animation-delay: 0.3s;
}

.shift-title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-6);
    line-height: 1.1;
}

.shift-subtitle {
    font-size: var(--font-size-xl);
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-8);
}

.outcome-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.outcome-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
}

.outcome-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.outcome-item span {
    color: var(--muted-foreground);
}

/* Visual Separator */
.visual-separator {
    padding: var(--spacing-12) 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-4);
}

.separator-line {
    width: 64px;
    height: 4px;
    background-color: var(--primary-blue);
    border-radius: var(--radius-full);
}

.separator-heart {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background-color: var(--secondary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Hero Section 3 - CTA */
.hero-content-3 {
    padding-bottom: var(--spacing-20);
}

.cta-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-lg);
    padding: var(--spacing-8);
    text-align: center;
    box-shadow: var(--shadow-2xl);
}

.corner-decoration {
    position: absolute;
    width: 32px;
    height: 32px;
}

.corner-decoration::before,
.corner-decoration::after {
    content: '';
    position: absolute;
    background-color: var(--secondary-orange);
    border-radius: var(--radius-full);
}

.corner-decoration.top-left {
    top: 16px;
    left: 16px;
}

.corner-decoration.top-left::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.corner-decoration.top-left::after {
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.corner-decoration.top-right {
    top: 16px;
    right: 16px;
}

.corner-decoration.top-right::before {
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
}

.corner-decoration.top-right::after {
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
}

.cta-title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-6);
    line-height: 1.1;
}

.strike-through {
    text-decoration: line-through;
}

.cta-description {
    font-size: var(--font-size-lg);
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-8);
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-8);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-8);
    font-size: var(--font-size-sm);
    color: var(--muted-foreground);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

.floating-accent {
    position: absolute;
    border-radius: var(--radius-2xl);
    opacity: 0.1;
}

.left-accent {
    top: -16px;
    left: -16px;
    width: 96px;
    height: 96px;
    background-color: var(--primary-blue);
    transform: rotate(-12deg);
}

.right-accent {
    bottom: -16px;
    right: -16px;
    width: 128px;
    height: 128px;
    background-color: var(--secondary-orange);
    transform: rotate(12deg);
}

/* Interactive Funnel Section */
.interactive-funnel {
    padding: var(--spacing-20) 0;
    background: white;
}

.section-header {
    margin-bottom: var(--spacing-16);
}

.section-header h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-6);
}

.section-header p {
    font-size: var(--font-size-xl);
    color: var(--muted-foreground);
}

.paths-grid {
    display: grid;
    gap: var(--spacing-8);
}

.path-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-6);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.path-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.path-card.popular {
    border: 2px solid var(--primary-blue);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-orange);
    color: white;
    padding: var(--spacing-1) var(--spacing-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
}

.path-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-4);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.quiz-icon {
    background-color: rgba(238, 165, 37, 0.1);
    color: var(--secondary-orange);
}

.workbook-icon {
    background-color: rgba(10, 44, 120, 0.1);
    color: var(--primary-blue);
}

.coaching-icon {
    background-color: rgba(238, 165, 37, 0.1);
    color: var(--secondary-orange);
}

.path-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-4);
}

.path-description {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-4);
}

.path-subtitle {
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-6);
}

/* Differentiators Section */
.differentiators {
    padding: var(--spacing-20) 0;
    background-color: var(--light-gray);
}

.differentiators-grid {
    display: grid;
    gap: var(--spacing-8);
}

.differentiator-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-6);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: none;
    transition: all 0.3s ease;
}

.differentiator-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.differentiator-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-6);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.differentiator-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-4);
}

.differentiator-card p {
    color: var(--muted-foreground);
}

/* F.I.G.H.T. Plan Preview Section */
.fight-plan-preview {
    padding: var(--spacing-20) 0;
}

.plan-badges {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-4);
}

.rating-stars {
    display: flex;
    gap: var(--spacing-1);
}

.rating-stars i {
    color: var(--secondary-orange);
    font-size: var(--font-size-base);
}

.plan-content h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-6);
}

.plan-description p {
    font-size: var(--font-size-lg);
    color: var(--muted-foreground);
    margin-bottom: 1.3rem;
}
.plan-description ul {
    list-style: none;
    margin-left: 0;
    padding: 0;
    margin-bottom: 2rem;
}
.plan-description ul li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 14px;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--muted-foreground);
}
.plan-description ul li:before {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    background-color: var(--secondary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    top: 1px;
    left: 0;
    color: #fff;
    font-size: 11px;
}

.plan-features {
    margin-bottom: var(--spacing-8);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-4);
}

.feature-arrow {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    background-color: var(--secondary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-arrow i {
    color: white;
    font-size: 12px;
}

.feature-item p {
    color: var(--muted-foreground);
    margin: 0;
}

.plan-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.plan-visual {
    position: relative;
}

.workbook-preview {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    transform: rotate(2deg);
    overflow: hidden;
    transition: all 0.3s ease;
}
.workbook-preview:hover {
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.workbook-header {
    background-color: var(--primary-blue);
    color: white;
    padding: var(--spacing-4);
    text-align: center;
    font-weight: 500;
    font-size: var(--font-size-lg);
}

.workbook-content {
    padding: var(--spacing-8);
}

.content-line {
    height: 16px;
    border-radius: var(--radius-sm);
    background-color: rgba(0, 0, 0, 0.1);
    margin-bottom: var(--spacing-4);
}

.line-1 {
    width: 75%;
}

.line-2 {
    width: 100%;
}

.line-3 {
    width: 66.67%;
}

.step-highlight {
    height: 32px;
    border-radius: var(--radius-sm);
    background-color: rgba(238, 165, 37, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-orange);
    font-size: var(--font-size-sm);
    margin: var(--spacing-4) 0;
}

.sub-content {
    margin-top: var(--spacing-4);
}

.sub-line {
    height: 12px;
    border-radius: var(--radius-sm);
    background-color: rgba(0, 0, 0, 0.05);
    margin-bottom: var(--spacing-2);
}

.sub-line.line-1 {
    width: 100%;
}

.sub-line.line-2 {
    width: 83.33%;
}

/* Coaching Section */
.coaching-section {
    padding: var(--spacing-20) 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.coaching-benefits {
    display: grid;
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-12);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-6);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: none;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-4);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-3);
}

.benefit-card p {
    color: var(--muted-foreground);
    font-size: var(--font-size-sm);
}

.coaching-cta {
    text-align: center;
}

.coaching-cta-card {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-lg);
    padding: var(--spacing-8);
    transition: all 0.3s ease;
}

.coaching-cta-card:hover {
    border: 2px solid var(--secondary-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.coaching-cta-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-4);
}

.coaching-cta-card p {
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-6);
    max-width: 24rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--spacing-20) 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    gap: var(--spacing-8);
    padding-bottom: 20px;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-6);
    position: relative;
    border: 1px solid #dddddd52;
}

.quote-icon {
    position: absolute;
    top: -16px;
    left: 24px;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.testimonial-rating {
    display: flex;
    gap: var(--spacing-1);
    margin: var(--spacing-2) 0 var(--spacing-4);
}

.testimonial-rating i {
    color: var(--secondary-orange);
    font-size: var(--font-size-base);
}

.testimonial-text {
    color: var(--muted-foreground);
    font-style: italic;
    margin-bottom: var(--spacing-6);
    line-height: 1.6;
    min-height: 130px;
}

.testimonial-author {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: var(--spacing-4);
}

.author-name {
    font-weight: 500;
    margin-bottom: var(--spacing-1);
}

.author-context {
    font-size: var(--font-size-sm);
    color: var(--muted-foreground);
    margin: 0;
}

/* Final CTA Section */
.final-cta {
    padding: var(--spacing-20) 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, rgba(10, 44, 120, 0.9) 100%);
}

.final-cta-content {
    text-align: center;
    margin-bottom: var(--spacing-12);
}

.final-cta-content h2 {
    font-size: var(--font-size-3xl);
    color: white;
    margin-bottom: var(--spacing-6);
}

.final-cta-content p {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.8);
}

.final-cta-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-8);
    text-align: center;
    max-width: 58rem;
    margin: 0 auto;
}

.final-cta-card h3 {
    font-size: var(--font-size-2xl);
    color: var(--primary-blue);
    margin-bottom: var(--spacing-8);
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-8);
}

.final-cta-footer {
    color: var(--muted-foreground);
    font-size: var(--font-size-sm);
    margin: 0;
}
.about_author {
    padding-top: 50px;
}
.about_author .section-header {
    margin-bottom: 0;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: var(--spacing-12) 0;
    background: white;
}

.footer-grid {
    display: grid;
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-8);
}

.footer-brand {
    margin-bottom: var(--spacing-4);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    margin-bottom: var(--spacing-4);
}

.footer-brand p {
    font-size: var(--font-size-sm);
    color: var(--muted-foreground);
}

.footer-column h4 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-4);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: var(--spacing-2);
}

.footer-column ul li a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: var(--spacing-8);
    text-align: center;
}

.footer-bottom p {
    color: var(--muted-foreground);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* Responsive Design */
@media (min-width: 640px) {

    .cta-buttons,
    .plan-buttons,
    .final-cta-buttons {
        flex-direction: row;
    }

    .trust-indicators {
        gap: var(--spacing-8);
    }
}

@media (min-width: 1025px) {
    .hero-title {
        font-size: var(--font-size-6xl);
    }

    .shift-title {
        font-size: var(--font-size-5xl);
    }

    .cta-title {
        font-size: var(--font-size-5xl);
    }

    .section-header h2 {
        font-size: var(--font-size-4xl);
    }

    .final-cta-content h2 {
        font-size: var(--font-size-5xl);
    }

    .paths-grid,
    .differentiators-grid,
    .coaching-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .grid-lg-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: var(--font-size-7xl);
    }

    .container {
        padding: 0 var(--spacing-6);
    }
}

/* Additional responsive adjustments */
@media (max-width: 767px) {
    .hero-title {
        max-width: 100%;
    }
    .geometric-pattern {
        display:none;
    }
    .badge {
        margin-bottom: 14px;
    }
    .hero-content-2 {
        padding-top: 0 !important;
    }
    .testimonial-card {
        margin-bottom: 30px;
    }
    .emotion-indicators {
        flex-direction: column;
        gap: var(--spacing-4);
    }

    .trust-indicators {
        flex-direction: column;
        gap: var(--spacing-4);
    }

    .paths-grid,
    .differentiators-grid,
    .testimonials-grid,
    .coaching-benefits {
        grid-template-columns: 1fr;
    }

    .hero-content-2 .grid-lg-2 {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
    }

    .fight-plan-preview .grid-lg-2 {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states and transitions */
* {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Print styles */
@media print {

    .header,
    .final-cta,
    .footer {
        display: none;
    }

    .hero-section,
    .interactive-funnel,
    .differentiators,
    .fight-plan-preview,
    .coaching-section,
    .testimonials-section {
        page-break-inside: avoid;
    }
}

.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -10px;
	margin-left: -10px
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 10px;
	padding-left: 10px
}

.container {
	width: 100%;
	padding-right: 10px;
	padding-left: 10px;
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
}

.d-block {
	display: block
}
.mb-0 {
        margin-bottom: 0px !important;
    }
@media (min-width:576px) {
	.container {
		max-width: 540px
	}
}

@media (min-width:768px) {
	.container {
		max-width: 720px
	}
}

@media (min-width:1025px) {
    .mb_0 {
        margin-bottom: 0px !important;
    }
	.d-lg-block {
		display: block
	}

	.col-lg-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.33333%;
		flex: 0 0 58.33333%;
		max-width: 58.33333%
	}

	.col-lg-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.66667%;
		flex: 0 0 41.66667%;
		max-width: 41.66667%
	}

	.col-lg-12 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%
	}

	.text-lg-right {
		text-align: right
	}

	.col-lg-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66667%;
		flex: 0 0 16.66667%;
		max-width: 16.66667%
	}

	.col-lg-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%
	}

	.col-lg-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33333%;
		flex: 0 0 33.33333%;
		max-width: 33.33333%
	}

	.col-lg-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%
	}

	.col-lg-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.66667%;
		flex: 0 0 66.66667%;
		max-width: 66.66667%
	}

	.col-lg-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%
	}
}
@media (min-width:1200px) {
	.container {
		max-width: 1140px
	}
}
@media(max-width:767px) {
	.col-sm-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%
	}
}
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: var(--font-size-base);
    line-height: 1;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn:hover, .btn:focus {
    outline: none;
}
.btn-lg {
    padding: 14px 16px;
    font-size: var(--font-size-lg);
}

.btn-primary {
    background-color: var(--secondary-orange);
    color: white;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--secondary-orange);
    color: white;
}

.btn-secondary:hover {
    opacity: 0.9;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: white;
}
.inline_buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}
@media (min-width: 1025px) {
    .inline_buttons{
        flex-direction: row;
    }
}
.hero_banner {
    padding: 60px 0 200px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 50%, var(--light-gray) 100%);
}
.banner_content {
    padding-right: 3rem;
}
.hero_banner h1 {
    font-size: 46px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}
.hero_banner p {
    font-size: var(--font-size-xl);
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-8);
}
.banner_icon {
    margin-top: 2rem;
}
.banner_image img {
    border-radius: 30px;
}
.banner_icon img {
    height: 40px;
    margin-right: 11px;
}
.align-item-center {
    align-items: center;
}
.icon_box {
    background: #1E1E1E;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}
.icon_box h3 {
    color: #fff;
    font-size: 24px;
    margin-top: 15px;
    text-transform: uppercase;
}
.icon_box .subtitle {
    color: #ffffffcc;
    margin-top: 15px;
    font-size: 16px;
}
.icon_box p {
    color: #ffffffcc;
    margin-top: 15px;
    font-size: 18px;
    margin-bottom: 0;
}
.fold_2 {
    margin-top: -130px;
}
.mb_50 {
    margin-bottom: 50px;
}
.section_title h2 {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    color: #000;
}
.content_box_with_icon {
    background: var(--primary-blue);
    border-radius: var(--radius-lg);
    padding: var(--spacing-6);
    box-shadow: var(--shadow-md);
    border: none;
    transition: all 0.3s ease;
    height: 100%;
}
.content_box_with_icon img {
    max-width: 100px;
}
.content_box_with_icon h3 {
    font-size: var(--font-size-xl);
    color: #fff;
    margin-bottom: var(--spacing-4);
    margin-top: var(--spacing-4);
}
.content_box_with_icon .subtitle {
    font-size: var(--font-size-base);
    color: #fff;
    margin-bottom: var(--spacing-4);
}
.content_box_with_icon p {
    color: #fff;
    margin-bottom: 0px;
}
.bg_gray {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 50%, var(--light-gray) 100%);
}
.client_review_box {
    background: #1E1E1E;
    padding: 25px 20px;
    border-radius: 10px;
    height: 100%;
}
.client_review_box p {
    color: #ffffffcc;
    font-size: 16px;
    margin-bottom: 40px;
    min-height: 250px;
}
.client_bio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: var(--spacing-4);
}
.client_bio .name {
    font-size: var(--font-size-base);
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: var(--spacing-1);
    margin-left: 10px;
}
.client_bio .name span {
    display: block;
    font-weight: 400;
    font-size: var(--font-size-sm);
    color: var(--muted-foreground);
    margin: 0;
}
.client_bio img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 100%;
}
.client_bio .right a {
    display: inline-block;
    border: 1px solid #dddddda6;
    padding: 10px 12px;
    border-radius: 10px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}
.client_bio .right a:hover {
    color: #fff;
    background: var(--primary-blue);
}
.client_bio .left {
    display: flex;
}
.plan-visual img {
    border-radius: 25px;
}
.marquee_logo {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-top: 4rem;
}
.marquee_track {
    display: flex;
    width: max-content;
    animation: marqueeMove 25s linear infinite;
    gap: 4rem;
}
.marquee_item {
    display: flex;
    gap: 4rem;
}
.marquee_item img {
    width: 130px;
    height: 130px;
    border-radius: 100%;
}
@keyframes marqueeMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.service_slider {
    margin-top: 35px;
}
.owl-carousel .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.service_slider .itemlist {
    text-align: center;
}
.service_slider .itemlist .image {
    position: relative;
    padding-top: 56.54%;
}
.service_slider .image img {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    top: 0;
    left: 0;
}
.service_slider .content a {
    display: block;
    margin-top: 15px;
    font-size: 20px;
    color: #222;
    text-decoration: none;
    font-weight: 600;
}
.service_slider .owl-stage {
    display: flex;
    align-items: stretch;
}
.service_slider .owl-nav {
    margin-top: 25px;
    text-align: center;
}
.service_slider .owl-nav button {
    background: var(--secondary-orange) !important;
    color: #fff !important;
    border: none;
    outline: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    margin: 0 3px;
    transition: 0.3s;
    padding: 0;
}
.service_slider .owl-nav button span {
    font-size: 34px;
    line-height: 22px;
}
.service_slider .owl-nav button:hover {
    background: var(--primary-blue) !important;
    border: none;
    outline: none;
}
.py_50 {
    padding: var(--spacing-20) 0;
}
.legal_team_slider .owl-nav.disabled {
    display: block !important;
}
.legal_team_slider .owl-nav button {
    background: var(--secondary-orange) !important;
    color: #fff !important;
    border: none;
    outline: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    margin: 0 3px;
    transition: 0.3s;
    padding: 0;
}
.legal_team_slider .owl-nav button span {
    font-size: 34px;
    line-height: 22px;
}
.legal_team_slider .owl-nav button:hover {
    background: var(--primary-blue) !important;
    border: none;
    outline: none;
}
@media(min-width:992px) {
    .legal_team_slider .owl-nav {
        position: relative;
        top: 41px;
        left: -5px;
        max-width: 95px;
    }
    .legal_team_slider_bottom {
        position: relative;
        text-align: right;
    }
    .legal_team_slider_bottom_btn {
        display: inline-block;
        z-index: 1;
        position: relative;
    }
    .legal_team_slider_bottom:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 85px;
        width: calc(100% - 85px);
        height: 2px;
        background: #0a2c7857;
        transform: translateY(-50%);
    }
    .legal_team_slider_bottom a {
        position: relative;
        z-index: 1;
    }
} 
.faq_row {
    overflow: hidden;
    margin-bottom: 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.faq_question {
    background: var(--primary-blue);
    padding: 20px;
    cursor: pointer;
}
.faq_question h4 {
    position: relative;
    color: #fff;
    font-size: 17px;
    padding-right: 35px;
    font-weight: 500;
    line-height: 1.35;
}
.faq_question h4:after {
    content: "\f0ab";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 20px;
    transform: translateY(-50%);
}
.faq_answer {
    padding: 20px;
    background: #fff;
    font-size: 16px;
    display: none;
}
.faq_answer p {
    font-size: 18px;
    color: var(--muted-foreground);
}
.faq_question.active h4:after {
    transform: rotate(180deg) translateY(0);
    top: 14%;
}
.blog_grid {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid #dddddd40;
    transition: all 0.3s ease;
    display: block;
    height: 100%;
}
.blog_grid .title {
    font-size: 18px;
    color: var(--ast-global-color-2);
    margin-bottom: 30px;
    line-height: 26px;
    min-height: 78px;
    font-weight: 500;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
@media(min-width:992px){
    .blog_grid img {
        border-radius: 8px;
        position: relative;
        bottom: 0;
        left: 50%;
        max-width: 100%;
        transform: translateX(-50%);
    }
}
.blog_post_slider .owl-nav button {
    background: var(--secondary-orange) !important;
    color: #fff !important;
    border: none;
    outline: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    margin: 0 3px;
    transition: 0.3s;
    padding: 0;
}
.blog_post_slider .owl-nav button span {
    font-size: 34px;
    line-height: 22px;
}
.blog_post_slider .owl-nav button:hover {
    background: var(--primary-blue) !important;
    border: none;
    outline: none;
}
@media(min-width:992px) {
    .blog_post_slider .owl-nav {
        position: relative;
        top: 41px;
        left: 0px;
        max-width: 95px;
        background: #fff;
    }
    .blog_slider_bottom {
        position: relative;
        text-align: right;
    }
    .blog_slider_bottom:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background: #0a2c7857;
        transform: translateY(-50%);
    }
    .blog_slider_bottom a {
        position: relative;
        z-index: 1;
    }
    .blog_slider_bottom_btn {
        background: #fff;
        padding-left: 18px;
        display: inline-block;
        z-index: 1;
        position: relative;
    }
}
.blog_post_slider .item {
    padding-bottom: 13px;
}
@media(max-width:1024px){
    .section-header {
        margin-bottom: 20px;
    }
    .inline_buttons {
        flex-direction: row;
    }
    .mb__sm {
        margin-bottom: 1.5rem;
    }
    .banner_content {
        padding-right: 0;
    }
    .testimonials-section {
        padding: 40px 0;
    }
    .py_50 {
        padding: 50px 0;
    }
    .order-sm-1 {
        order: 1;
    }
    .order-sm-2 {
        order: 2;
    }
    .hero_banner h1 {
        font-size: 40px;
    }
}
@media(max-width:991px){
    .banner_icon {
        text-align: center;
    }
    .legal_team_slider_bottom_btn, .blog_slider_bottom_btn {
        text-align: center;
    }
    .legal_team_slider .owl-nav, .blog_post_slider .owl-nav {
        margin: 20px 0;
        text-align: center;
    }
    .inline_buttons {
        flex-direction: column;
    }
}

.mt_40 {
    margin-top: 40px;
}
.mb_40 {
    margin-bottom: 40px;
}
.mb_60 {
    margin-bottom: 60px;
}
.custom_cta_banner {
    display: grid;
    grid-template-columns: 70% 1fr;
    align-items: center;
    background: linear-gradient(135deg, #f2f2f2 0%, var(--white) 50%, var(--light-gray) 100%);
    padding: 25px 30px;
    border: 2px solid #0a2c78;
    border-radius: 7px;
    box-shadow: var(--shadow-xl);
}
.custom_cta_banner .col_left {
    padding-right: 20px;
}
.custom_cta_banner .col_right {
    text-align: right;
}
.custom_cta_banner .col_left h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}
.custom_cta_banner .col_left p {
    margin-bottom: 0;
    font-size: 18px;
}
@media(max-width:991px){
    .mt_40 {
        margin-top: 30px;
    }
    .mb_40 {
        margin-bottom: 30px;
    }
    .mb_60 {
        margin-bottom: 40px;
    }
    .custom_cta_banner {
        padding: 22px;
        display: block;
        text-align: center;
    }
    .custom_cta_banner .col_left {
        padding-right: 0px;
    }
    .custom_cta_banner .col_right {
        text-align: center;
    }
    .custom_cta_banner .col_left h3 {
        line-height: 1.4;
    }
    .custom_cta_banner .col_left p {
        margin-bottom: 16px;
    }
    .custom_cta_banner .col_right a {
        display: block;
        padding: 16px 12px;
    }
}