/*
 * Salesfluence Theme - Custom Styles
 * Design System & Custom CSS
 */

/* ========================================
   Design System Variables
   ======================================== */

/* Degular Demo Medium - Local Font */
@font-face {
  font-family: "Degular Demo";
  src: url("../fonts/Degular-Demo-Medium.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

/* Degular Demo Semibold - Local Font */
@font-face {
  font-family: "Degular Demo";
  src: url("../fonts/Degular-Demo-Semibold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

/* Urbanist - Body Font (CDN) */
@font-face { font-family: "Urbanist"; src: url("https://framerusercontent.com/third-party-assets/fontshare/wf/QVSEREMQIHTDJ6PBN6SDKDQRKHAIJM4G/5FQFK3HFEC5ZJORN7EUWWXKPUKR4HDO2/S3LPGNCYQN366TZLSH3ASTPTKANFMFDS.woff2"); font-display: swap; font-style: normal; font-weight: 400 }
@font-face { font-family: "Urbanist"; src: url("https://framerusercontent.com/third-party-assets/fontshare/wf/RFRIJEFDDNYP2G3SPLVDDAM6LQXTHLSW/F4KOPAGTNOYCQKYEBAKSIKS536ETV6GN/AEP5JZTJJB3JMLBFSBTZLRSVGYD73SDZ.woff2"); font-display: swap; font-style: normal; font-weight: 500 }
@font-face { font-family: "Urbanist"; src: url("https://framerusercontent.com/third-party-assets/fontshare/wf/NWFQAWEPGN3FR4FYMX6PY5M2HVOQSZWU/IIWY67X24KIURE4HBNGWYFMHSEMIVC2G/QAJFELFQRETRXRXDQOALZZUXNPM2U5VX.woff2"); font-display: swap; font-style: normal; font-weight: 600 }

:root {
  /* Colors - Match Framer Design */
  --color-primary-blue: #347eee;
  --color-primary-light: #60A5FA;
  --color-primary-lighter: #93C5FD;
  --color-primary-lightest: #DBEAFE;
  --color-accent-orange: #ff6b35;
  --color-accent-orange-light: #FB923C;
  --color-text-dark: #111;
  --color-text-gray: #616161;
  --color-text-light: #9CA3AF;
  --color-bg-light: #f0ece7;
  --color-bg-lighter: #fafaf7;
  --color-bg-white: #fefefe;

  /* Additional Framer Tokens */
  --token-caa7547d-cf57-44d3-92c2-01fcbf1068be:#f3f3f1;
  --token-0c896b26-c7a0-4833-8fbc-e0506f106d98:#0000000d;
  --token-f395e90f-e08f-456b-b155-0974850affb9:#fff;
  --token-f06f277f-2caf-4d4e-8b84-e6af656e932c:#37312f;
  --token-b7ea6313-5f8d-42b4-8967-2e62d6932eae:#3d3d3d;
  --token-1298ea91-8231-4450-8ec5-baf3eeee7066:#989897;
  --token-3b069a18-83bf-4a24-b269-1aa2cc55541f:#3d3d3d;
  --token-b7e6923e-8f3c-48a2-808d-78ad68870b31:#2f69ff;

  /* Typography - Match Framer */
  --font-title: "Degular Demo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Degular Demo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Urbanist", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;

  /* Spacing - Match Framer */
  --section-padding-y: 90px;
  --section-padding-x: 60px;
  --section-padding-mobile: 35px;
  --container-max-width: 1280px;
  --container-padding: 1.5rem;

  /* Shadows - Match Framer */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-icon: 0px 5px 9px rgba(0, 0, 0, 0.15);
  --shadow-card: 0px 5px 20px rgba(0, 0, 0, 0.1);
  --shadow-card-hover: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

  /* Border Radius - Match Framer */
  --radius-button: 45px;  /* Pill-shaped buttons */
  --radius-card: 28px;    /* Rounded cards */
  --radius-icon: 12px;    /* Icon containers */
  --radius-badge: 50%;    /* Circular badges */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Transitions */
  --transition-base: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

/* ========================================
   Global Styles
   ======================================== */

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text-dark);
  background-color: var(--color-bg-white);
  margin: 0;
  padding: 0;
}

/* Titles - Use Medium Weight */
h1 {
  font-family: var(--font-title);
  font-weight: 500;
}

/* Section Headings - Use Semibold Weight */
h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
}

/* Typography Utility Classes - Match Framer Sizes */
.heading-xl {
  font-size: 64px;
  line-height: 1em;
  font-weight: 500;
  font-family: var(--font-title);
}

.heading-lg {
  font-size: 52px;
  line-height: 1.2em;
  font-weight: 600;
}

.heading-md {
  font-size: 32px;
  line-height: 1.3em;
  font-weight: 600;
}

@media (max-width: 768px) {
  .heading-xl {
    font-size: 32px;
  }
  .heading-lg {
    font-size: 24px;
  }
  .heading-md {
    font-size: 20px;
  }
}

/* Container */
.container-custom {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Section Padding - Match Framer (90px/60px) */
.section-padding {
  padding: var(--section-padding-y) var(--section-padding-x);
}

@media (max-width: 768px) {
  .section-padding {
    padding: var(--section-padding-mobile);
  }
}

/* ========================================
   Gradient Backgrounds
   ======================================== */

.gradient-blue {
  background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 100%);
}

.gradient-blue-radial {
  background: radial-gradient(circle at top, #DBEAFE 0%, #93C5FD 50%, #60A5FA 100%);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-button); /* 45px pill shape */
  text-decoration: none;
  transition: var(--transition-base);
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--color-primary-blue); /* #347eee */
  color: white;
}

.btn-primary:hover {
  background-color: #2a6bcf;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(52, 126, 238, 0.3);
}

.btn-secondary {
  background-color: white;
  color: var(--color-text-dark);
  border: 1px solid #E5E7EB;
}

.btn-secondary:hover {
  background-color: var(--color-bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.btn-dark {
  background-color: var(--color-text-dark);
  color: white;
  border: 0.5px solid rgb(240, 236, 231);
  border-radius: 18px;
}

.btn-dark:hover {
  background-color: #333;
  border-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-light {
  background-color: white;
  color: var(--color-text-dark);
  border: 1px solid #E5E7EB;
}

.btn-light:hover {
  background-color: var(--color-bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

/* ========================================
   Cards
   ======================================== */

.card {
  background: white;
  border-radius: var(--radius-card); /* 28px */
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
}

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

/* ========================================
   Hero Feature Pills
   ======================================== */

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background-color: transparent;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    font-family: var(--font-body);
}

.feature-pill-icon-wrap {
    width: 40px;
    height: 40px;
    border: 1px solid rgb(243, 243, 241);
    background: linear-gradient(180deg, rgb(255, 255, 255) 52%, rgb(248, 249, 250) 100%);
    border-radius: 32px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-pill-icon {
    width: 20px;
    height: 20px;
}

.feature-pill-text {
    white-space: nowrap;
}

@media (max-width: 640px) {
    .feature-pill {
        padding: 6px 12px 6px 6px;
        font-size: 13px;
        gap: 8px;
    }

    .feature-pill-icon-wrap {
        width: 32px;
        height: 32px;
    }

    .feature-pill-icon {
        width: 16px;
        height: 16px;
    }
}

/* ========================================
   Benefits Section - Framer Match (CORRECTED)
   ======================================== */

.benefits-section {
    padding: 90px 60px;
    background-color: #fafafa;
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 35px;
    }
}

/* Two-Column Layout Container */
.benefits-layout {
    position: relative;
    /* display: grid;
    grid-template-columns: 3fr 3fr;
    gap: 60px; */
    /* align-items: start; */
    /* max-width: 1280px; */
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* Vertical Blue Separator - Between Columns */
.benefits-vertical-separator {
    position: absolute;
    width: 4px;
    left: calc(40% - 32px);
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgb(52, 126, 238) 0%, rgba(52, 126, 238, 0.1) 100%);
    filter: blur(20px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 1024px) {
    .benefits-vertical-separator {
        display: none;
    }
}

/* Left Column - Heading Section (Sticky) */
.benefits-heading-column {
    /* position: sticky;
    top: 120px;
    align-self: start; */
}

@media (max-width: 1024px) {
    .benefits-heading-column {
        position: relative;
        top: 0;
    }
}

/* Right Column - Benefits Items (Scrollable) */
.benefits-items-column {
    display: flex;
    flex-direction: row;
    gap: 42px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom Scrollbar Styling */
.benefits-items-column::-webkit-scrollbar {
    width: 6px;
}

.benefits-items-column::-webkit-scrollbar-track {
    background: rgba(243, 243, 241, 0.3);
    border-radius: 10px;
}

.benefits-items-column::-webkit-scrollbar-thumb {
    background: rgba(52, 126, 238, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.benefits-items-column::-webkit-scrollbar-thumb:hover {
    background: rgba(52, 126, 238, 0.5);
}

/* Benefit Item - Simple Layout */
.benefit-item {
    /* position: relative; */
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-left: 40px;
    flex-flow: column;
}

/* Gradient Border on Left Edge */
.benefit-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, rgb(52, 126, 238) 0%, rgba(52, 126, 238, 0.1) 100%);
    border-radius: 2px;
    opacity: 0.8;
}

/* Responsive: Disable Fixed Height on Mobile/Tablet */
@media (max-width: 1024px) {
    .benefits-items-column {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }
}

/* Icon Wrapper with Radial Gradient */
.benefit-icon-wrap {
    width: 48px;
    height: 48px;
    border: 1px solid #f3f3f1;
    background: radial-gradient(64% 31% at 50% 50%, rgb(240, 236, 231) 0%, rgb(255, 255, 255) 100%);
    border-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon {
    width: 20px;
    height: 20px;
}

/* Benefit Text */
.benefit-text {
    font-size: 18px;
    line-height: 1.5em;
    color: rgb(97, 97, 97);
    letter-spacing: 0px;
    text-align: left;
    font-family: var(--font-body);
}

/* Label/Badge - Framer Style */
.label-section-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 25px;
    background-color: #fefefe;
    border: 1.5px solid #f3f3f1;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 400;
    color: #111;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

/* Legacy classes for backwards compatibility - can be removed if not used elsewhere */
.benefit-card {
    position: relative;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-card);
    background-color: white;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-icon);
}

.benefit-card-icon img {
    width: 32px;
    height: 32px;
}

/* ========================================
   Icon Styling (Orange Containers)
   ======================================== */

.icon-orange {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: var(--radius-icon); /* 12px */
  box-shadow: var(--shadow-icon);
  font-size: 24px;
}

.icon-orange svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent-orange);
}

/* ========================================
   Logo Carousel Animation
   ======================================== */

.logo-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  animation: scroll 30s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========================================
   Trust Section - Dual Ticker Animation
   ======================================== */

.trust-section {
  padding: 90px 60px;
  background: transparent;
  overflow: hidden;
}

.trust-container {
  max-width: 100%;
  padding: 40px 0;
  background: linear-gradient(#f5faff 52%, #fafcff 100%);
  border-radius: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.ticker-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 24px;
}

.ticker-wrapper:last-of-type {
  margin-bottom: 0;
}

.ticker-content {
  display: flex;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 10px;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgb(0, 0, 0) 12.5%,
    rgb(0, 0, 0) 87.5%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgb(0, 0, 0) 12.5%,
    rgb(0, 0, 0) 87.5%,
    rgba(0, 0, 0, 0) 100%
  );
}

.ticker-list {
  display: flex;
  width: 100%;
  height: 100%;
  place-items: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
  gap: 32px;
  position: relative;
  flex-direction: row;
  will-change: transform;
}

.ticker-list li {
  flex-shrink: 0;
}

.logo-item {
  width: 66px;
  height: 67px;
  position: relative;
  display: block;
}

.logo-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Row 1 - Scroll Left */
.ticker-row-1 .ticker-list {
  animation: scroll-left 40s linear infinite;
}

/* Pause on hover */
.ticker-row-1:hover .ticker-list {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Row 2 - Scroll Right */
.ticker-row-2 .ticker-list {
  animation: scroll-right 40s linear infinite;
  transform: translateX(0);
}

/* Pause on hover */
.ticker-row-2:hover .ticker-list {
  animation-play-state: paused;
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Trust Section Heading */
.trust-heading {
  text-align: center;
  padding: 20px 40px 0;
  opacity: 1;
  will-change: transform;
}

.trust-heading h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin: 0;
}

.trust-heading .highlight {
  color: var(--color-primary-blue);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .trust-section {
    padding: 60px 20px;
  }

  .trust-container {
    padding: 30px 0;
  }

  .trust-heading {
    padding: 15px 20px 0;
  }

  .trust-heading h2 {
    font-size: 1.75rem;
  }

  .ticker-list {
    gap: 24px;
  }

  .logo-item {
    width: 50px;
    height: 51px;
  }
}

@media (max-width: 480px) {
  .trust-section {
    padding: 40px 15px;
  }

  .trust-heading h2 {
    font-size: 1.5rem;
  }

  .ticker-list {
    gap: 20px;
  }

  .logo-item {
    width: 40px;
    height: 41px;
  }
}

/* ========================================
   Solutions Section - Framer Match
   ======================================== */

.solutions-section {
    padding: 90px 60px;
    background-color: #ffffff;
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 35px;
    }
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Solution Card - Outer Wrapper */
.solution-card {
    background-color: rgb(255, 255, 255);
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 5px 20px 0px;
    width: 100%;
    padding: 4px;
}

/* Solution Card - Inner Content */
.solution-card-content {
    border: 1px solid rgb(243, 243, 241);
    background: linear-gradient(rgb(255, 255, 255) 50%, rgb(245, 249, 255) 100%);
    border-radius: 28px;
    padding: 32px;
}

/* Number and Icon Row */
.solution-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

/* Card Number */
.solution-number {
    font-size: 18px;
    color: rgb(97, 97, 97);
    margin: 0;
    font-family: var(--font-body);
}

/* Icon Container */
.solution-icon-wrap {
    width: 64px;
    height: 64px;
    border: 1px solid rgb(248, 249, 250);
    background: radial-gradient(62% 35% at 50% 50%, rgb(240, 236, 231) 0%, rgb(255, 255, 255) 99.66%);
    border-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon {
    width: 24px;
    height: 24px;
}

/* Solution Title */
.solution-title {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

/* Solution Description */
.solution-description {
    font-size: 18px;
    line-height: 1.5em;
    color: rgb(97, 97, 97);
    font-family: var(--font-body);
    text-align: left;
}

/* Solutions Badge */
.solutions-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 25px;
    background-color: #fefefe;
    border: 1.5px solid #f3f3f1;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 400;
    color: rgb(55, 49, 47);
    text-decoration: none;
    margin-bottom: 24px;
}

/* Solutions Heading */
.solutions-heading {
    text-align: center;
    margin-bottom: 16px;
}

/* Solutions Description */
.solutions-description {
    font-size: 18px;
    line-height: 1.5em;
    color: rgb(97, 97, 97);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 48px;
}

/* ========================================
   FEATURES SECTION - Matching Framer Design
   ======================================== */

.features-section {
    background-color: #fafafa;
}

.features-container {
    max-width: 1018px;
    margin: 0 auto;
}

/* Heading Area */
.features-heading {
    text-align: center;
    margin-bottom: 48px;
}

.features-heading .label-section-badge {
    display: inline-block;
    margin-bottom: 24px;
}

.features-heading h2 {
    margin-top: 16px;
}

/* Features Grid - 2x2 Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Individual Feature Card */
.feature-card {
    background-color: rgb(255, 255, 255);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 8px;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Image Wrapper */
.feature-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1788 / 960;
    position: relative;
}

.feature-card:nth-child(3) .feature-image-wrapper,
.feature-card:nth-child(4) .feature-image-wrapper {
    aspect-ratio: 1158 / 759;
}

.feature-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Feature Content */
.feature-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0;
    font-family: var(--font-heading);
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: #37312f;
    opacity: 0.6;
    text-align: left;
    margin: 0;
    font-family: var(--font-body);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .features-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .features-heading {
        margin-bottom: 32px;
    }

    .feature-content {
        padding: 20px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 14px;
    }
}

/* ========================================
   HOW IT WORKS SECTION - Matching Framer Design
   ======================================== */

.how-it-works-section {
    background-color: #fafafa;
}

/* Two-Column Container */
.how-it-works-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: start;
}

/* Left Column - Sticky Heading/CTA */
.how-it-works-left {
    position: sticky;
    top: 120px;
    align-self: start;
}

.how-it-works-heading {
    /* display: flex;
    flex-direction: column;
    gap: 24px; */
}

.how-it-works-heading h2 {
    margin: 0;
    line-height: 1.2;
}

/* Button Styling - Framer Match */
.btn-how-it-works {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background-color: rgb(255, 255, 255);
    border: 0.5px solid rgb(240, 236, 231);
    border-radius: 18px;
    box-shadow: 0px 0px 0px -2.5px rgba(0, 0, 0, 0.13),
                0px 0px 0px -5px rgba(0, 0, 0, 0),
                inset 0px -1px 4px 0px rgba(0, 0, 0, 0.15),
                0px 0px 0px 2px rgb(243, 243, 241);
    font-size: 16px;
    font-weight: 400;
    color: #111;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    align-self: flex-start;
}

.btn-how-it-works:hover {
    transform: translateY(-2px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1),
                inset 0px -1px 4px 0px rgba(0, 0, 0, 0.15);
}

.btn-how-it-works .btn-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Subtitle Text */
.how-it-works-subtitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    color: rgb(61, 61, 61);
    margin: 0;
    font-family: var(--font-body);
}

/* Right Column - Steps List */
.how-it-works-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Individual Step */
.how-it-works-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

/* Step Number Wrapper */
.step-number-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center number and the vertical line */
    gap: 16px;
    flex-shrink: 0;
}

.step-number {
    font-size: 50px;
    font-weight: 700;
    line-height: 1em;
    color: rgb(52, 126, 238);
    margin: 0;
    font-family: "Geist", var(--font-heading);
}

.step-line {
    width: 1px; /* Corrected: Set width for a vertical line */
    height: 80px; /* Corrected: Set height for line length */
    background-color: rgb(222, 222, 222);
}

/* Hide the line for the last step to avoid it hanging */
.how-it-works-step:last-child .step-line {
    display: none;
}

/* Step Content */
.step-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0;
    font-family: var(--font-heading);
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    color: #37312f;
    text-align: left;
    margin: 0;
    font-family: var(--font-body);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .how-it-works-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .how-it-works-left {
        position: relative;
        top: 0;
    }

    .how-it-works-heading {
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .how-it-works-right {
        gap: 32px;
    }

    .how-it-works-step {
        gap: 20px;
    }

    .step-number {
        font-size: 40px;
    }

    .step-line {
        /* width: 1px is inherited from the desktop rule */
        height: 60px; /* Make the line shorter for mobile view */
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 14px;
    }
}

/* ========================================
   FAQ SECTION - Matching Framer Design Exactly
   ======================================== */

.faq-section {
    background-color: #ffffff;
}

/* Main Container - Centered with Max Width */
.faq-container {
    max-width: 1018px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

/* Heading Wrapper - Centered */
.faq-heading-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
    width: 100%;
}

/* FAQ Badge - Framer Match */
.faq-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 25px;
    background-color: rgb(254, 254, 254);
    border: 1.5px solid rgb(243, 243, 241);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 400;
    color: rgb(55, 49, 47);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
    font-family: var(--font-body);
}

.faq-badge:hover {
    background-color: rgb(250, 250, 250);
}

/* FAQ Heading */
.faq-heading {
    line-height: 1.2em;
    font-weight: 600;
    color: rgb(17, 17, 17);
    margin: 0;
    font-family: var(--font-heading);
    text-align: center;
}

/* FAQ Wrapper - Accordion Container */
.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 1018px;
}

/* Individual Accordion Item */
.faq-accordion-item {
    width: 100%;
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

/* OPEN STATE - First Item */
.faq-accordion-open {
    background: linear-gradient(rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    border: 1px solid rgb(227, 227, 227);
    border-radius: 8px;
    margin-bottom: 0;
}

/* CLOSED STATE - Rest of Items */
.faq-accordion-closed {
    background: linear-gradient(rgba(255, 255, 255, 0) 52%, rgba(250, 250, 247, 0) 100%) rgba(0, 0, 0, 0);
    border: 0px solid rgba(0, 0, 0, 0);
    border-radius: 30px;
    margin-bottom: 0;
}

/* Accordion Header - Question and Icon Container */
.faq-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    opacity: 1;
}

.faq-accordion-closed .faq-accordion-header {
    padding: 20px 24px;
}

/* Question Text */
.faq-accordion-question {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    color: rgb(17, 17, 17);
    margin: 0;
    font-family: var(--font-heading);
    flex: 1;
    text-align: left;
}

.faq-accordion-closed .faq-accordion-question {
    color: rgb(17, 17, 17);
}

/* Icon Container */
.faq-accordion-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-left: 16px;
    opacity: 1;
}

/* Content Container (Answer) */
.faq-accordion-content {
    padding: 0 24px 24px 24px;
    opacity: 1;
}

/* Answer Text */
.faq-accordion-answer {
    font-size: 18px;
    line-height: 1.5em;
    color: rgb(97, 97, 97);
    text-align: left;
    margin: 0;
    font-family: var(--font-body);
}

/* Hover Effects */
.faq-accordion-item:hover {
    opacity: 0.95;
}

/* Focus State */
/* .faq-accordion-item:focus {
    outline: 2px solid rgb(52, 126, 238);
    outline-offset: 2px;
} */

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-container {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .faq-container {
        padding: 0 16px;
        gap: 32px;
    }

    .faq-heading {
        font-size: 28px;
        line-height: 1.2em;
    }

    .faq-accordion-question {
        font-size: 18px;
    }

    .faq-accordion-answer {
        font-size: 16px;
    }

    .faq-accordion-header {
        padding: 20px 16px;
    }

    .faq-accordion-closed .faq-accordion-header {
        padding: 16px;
    }

    .faq-accordion-content {
        padding: 0 16px 20px 16px;
    }
}

/* ========================================
   PRICING SECTION - Matching Framer Design Exactly
   ======================================== */

.pricing-section {
    background-color: #ffffff;
}

/* Main Container - Centered with Max Width */
.pricing-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

/* Heading Wrapper - Centered */
.pricing-heading-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
    width: 100%;
}

/* Pricing Badge - Framer Match */
.pricing-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 25px;
    background-color: rgb(254, 254, 254);
    border: 1.5px solid rgb(243, 243, 241);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 400;
    color: rgb(55, 49, 47);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
    font-family: var(--font-body);
}

.pricing-badge:hover {
    background-color: rgb(250, 250, 250);
}

/* Pricing Heading */
.pricing-heading {
    line-height: 1.2em;
    font-weight: 600;
    color: rgb(17, 17, 17);
    margin: 0;
    font-family: var(--font-heading);
    text-align: center;
}

/* Pricing Description */
.pricing-description {
    font-size: 18px;
    line-height: 1.5em;
    color: #616161;
    text-align: center;
    margin: 0;
    font-family: var(--font-body);
}

/* Pricing Tabs Wrapper */
.pricing-tabs-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Pricing Tabs Navigation - Framer Design */
.pricing-tabs-nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 8px;
    background: linear-gradient(180deg, rgb(255, 255, 255) 50%, rgb(250, 249, 248) 100%);
    border: 1px solid rgb(240, 236, 231);
    border-radius: 32px;
    box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.05);
}

/* Tab Background - Moving indicator */
.pricing-tab-background {
    position: absolute;
    left: 8px;
    top: 8px;
    width: calc(35% - 8px);
    height: calc(100% - 16px);
    background-color: rgb(243, 243, 241);
    border: 1px solid rgb(240, 236, 231);
    border-radius: 35px;
    transition: transform 0.3s ease;
    z-index: 0;
}

/* Tab - Individual */
.pricing-tab {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
    outline: none;
}

.pricing-tab:hover {
    opacity: 0.8;
}

/* Tab Text */
.pricing-tab-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5em;
    color: rgb(97, 97, 97);
    margin: 0;
    font-family: "Degular Demo Bold", var(--font-heading);
    text-align: center;
    transition: color 0.3s ease;
}

/* Active Tab Text */
.pricing-tab.active .pricing-tab-text {
    color: rgb(52, 126, 238);
}

/* Tab Discount Badge */
.pricing-tab-discount {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background-color: rgb(219, 234, 255);
    border-radius: 32px;
    font-size: 18px;
    line-height: 1.5em;
    color: rgb(52, 126, 238);
    font-family: var(--font-body);
}

/* Move background when yearly is active */
.pricing-tabs-nav.yearly-active .pricing-tab-background {
    transform: translateX(calc(100% + 8px));
}

/* Pricing Cards Wrapper - 3 Column Grid */
.pricing-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 1280px;
}

/* Individual Pricing Card */
.pricing-card {
    background: linear-gradient(180deg, rgb(243, 243, 241) 52%, rgb(250, 250, 247) 100%);
    border: 1px solid rgb(243, 243, 241);
    border-radius: 30px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Pro Plan - White Background */
.pricing-card-pro {
    background: linear-gradient(180deg, rgb(255, 255, 255) 52%, rgb(250, 250, 247) 100%);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

/* Pricing Card Heading Section */
.pricing-card-heading {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Pricing Card Name Section */
.pricing-card-name-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

/* Pricing Card Text Wrapper */
.pricing-card-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

/* Pricing Card Title */
.pricing-card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    color: rgb(17, 17, 17);
    margin: 0;
    font-family: var(--font-heading);
}

/* Pricing Card Subtitle */
.pricing-card-subtitle {
    font-size: 18px;
    line-height: 1.5em;
    color: rgb(97, 97, 97);
    margin: 0;
    font-family: var(--font-body);
}

/* Pricing Card Icon Wrap */
.pricing-card-icon-wrap {
    width: 48px;
    height: 48px;
    border: 1px solid rgb(240, 236, 231);
    background: radial-gradient(75% 35% at 50% 50%, rgb(240, 236, 231) 35.31%, rgb(255, 255, 255) 100%);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-card-icon {
    width: 28px;
    height: 28px;
}

/* Pricing Card Price Section */
.pricing-card-price-section {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

/* Pricing Card Price */
.pricing-card-price {
    font-size: 42px;
    line-height: 1.2em;
    font-weight: 600;
    color: rgb(17, 17, 17);
    margin: 0;
    font-family: var(--font-heading);
}

/* Pricing Card Period */
.pricing-card-period {
    font-size: 14px;
    line-height: 2.2em;
    color: rgb(152, 152, 151);
    margin: 0;
    font-family: var(--font-body);
}

/* Pricing Card Button */
.pricing-card-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background-color: rgb(255, 255, 255);
    border: 0.5px solid rgb(240, 236, 231);
    border-radius: 18px;
    box-shadow: 0px 0px 0px -2.5px rgba(0, 0, 0, 0.13),
                0px 0px 0px -5px rgba(0, 0, 0, 0),
                inset 0px -1px 4px 0px rgba(0, 0, 0, 0.15),
                0px 0px 0px 2px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

/* Pro Card Button - Different Shadow */
.pricing-card-pro .pricing-card-button {
    box-shadow: 0px 0px 0px -2.5px rgba(0, 0, 0, 0.13),
                0px 0px 0px -5px rgba(0, 0, 0, 0),
                inset 0px -1px 4px 0px rgba(0, 0, 0, 0.15),
                0px 0px 0px 2px rgb(243, 243, 241);
}

.pricing-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1),
                inset 0px -1px 4px 0px rgba(0, 0, 0, 0.15);
}

/* Pricing Button Text */
.pricing-button-text {
    font-size: 18px;
    line-height: 1.5em;
    color: rgb(97, 97, 97);
    font-family: var(--font-body);
}

/* Pricing Button Icon */
.pricing-button-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Pricing Card Features List */
.pricing-card-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Pricing Feature Item */
.pricing-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Pricing Feature Icon */
.pricing-feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Pricing Feature Text */
.pricing-feature-text {
    font-size: 18px;
    line-height: 1.5em;
    color: rgb(97, 97, 97);
    margin: 0;
    font-family: var(--font-body);
}

/* Disabled Feature */
.pricing-feature-disabled {
    color: rgb(152, 152, 151);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-container {
        padding: 0 24px;
    }

    .pricing-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .pricing-container {
        padding: 0 16px;
        gap: 32px;
    }

    .pricing-heading {
        font-size: 28px;
        line-height: 1.2em;
    }

    .pricing-description {
        font-size: 16px;
    }

    .pricing-tabs-nav {
        padding: 6px;
        border-radius: 28px;
    }

    .pricing-tab {
        padding: 10px 16px;
    }

    .pricing-tab-text {
        font-size: 16px;
    }

    .pricing-tab-discount {
        font-size: 14px;
        padding: 2px 8px;
    }

    .pricing-card {
        padding: 24px;
    }

    .pricing-card-title {
        font-size: 18px;
    }

    .pricing-card-subtitle,
    .pricing-feature-text,
    .pricing-button-text {
        font-size: 16px;
    }

    .pricing-card-price {
        font-size: 36px;
    }
}

/* ========================================
   TESTIMONIALS SECTION - Matching Framer Design
   ======================================== */

.testimonials-section {
    background-color: #ffffff;
}

/* Main Container - Centered with Max Width */
.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Content Top - Heading Section */
.testimonials-content-top {
    width: 100%;
}

.testimonials-heading {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.testimonials-heading .label-section-badge {
    margin-bottom: 0;
}

.testimonials-heading h2 {
    margin: 0;
    text-align: center;
}

/* Testimonials Description */
.testimonials-description {
    font-size: 18px;
    line-height: 1.5em;
    color: rgb(97, 97, 97);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-family: var(--font-body);
}

/* Content Bottom - Cards Grid */
.testimonials-content-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

/* Individual Testimonial Card */
.testimonial-card {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(243, 243, 241);
    border-radius: 30px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonial Content */
.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 1;
    align-items: center;
}

/* Image Content - Stars Container */
.testimonial-image-content {
    opacity: 1;
    display: flex;
    justify-content: center;
}

.testimonial-stars {
    width: 102px;
    height: 17px;
    opacity: 1;
}

.testimonial-stars svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Testimonial Quote */
.testimonial-quote {
    font-size: 18px;
    line-height: 1.5em;
    color: rgb(97, 97, 97);
    text-align: center;
    margin: 0;
    font-family: var(--font-body);
}

/* Testimonial Author Section */
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 1;
    align-items: center;
    text-align: center;
}

/* Author Name */
.testimonial-author-name {
    opacity: 1;
}

.testimonial-author-name h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    color: rgb(17, 17, 17);
    margin: 0;
    font-family: var(--font-heading);
}

/* Author Role */
.testimonial-author-role {
    font-size: 18px;
    line-height: 1.5em;
    color: rgb(97, 97, 97);
    margin: 0;
    font-family: var(--font-body);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-container {
        padding: 0 24px;
    }

    .testimonials-content-bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        padding: 0 16px;
        gap: 32px;
    }

    .testimonials-description {
        font-size: 16px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-quote {
        font-size: 16px;
    }

    .testimonial-author-name h3 {
        font-size: 18px;
    }

    .testimonial-author-role {
        font-size: 16px;
    }
}

/* ========================================
   Header Glassmorphism Effect on Scroll
   ======================================== */

.site-header {
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(243, 243, 241, 0.8);
}

/* ========================================
   Fade In Animation
   ======================================== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive Utilities
   ======================================== */

@media (max-width: 640px) {
  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    padding: 1rem;
  }

  .benefits-items-column{
    flex-direction: column;
  }

  .hero-lighting-wrapper-fixed, .cta-lighting-wrapper{
    display: none;
  }
}

/* ========================================
   WordPress Core Styles
   ======================================== */

.alignleft {
    width: 162px; /* Set custom logo width */
    height: auto; /* Maintain aspect ratio */
}
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.875rem;
  color: var(--color-text-gray);
  margin-top: 0.5rem;
  text-align: center;
}

.sticky {
  /* Styles for sticky posts */
}

.bypostauthor {
  /* Styles for posts by post author */
}

/* Screen Reader Text */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* ===================================
   HERO SECTION LIGHTING EFFECTS - Dual Container System
   =================================== */

/* Fixed Lightning Wrapper - Positioned at Page Top */
.hero-lighting-wrapper-fixed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 350px;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

/* Lighting Wrapper */
.hero-lighting-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

/* Container Left (Flipped with rotateY) */
.hero-light-container-left {
  position: absolute;
  left: -10px;
  top: 0;
  width: 434px;
  height: 100%;
  transform: rotateY(180deg);
  pointer-events: none;
}

/* Container Right (Normal) */
.hero-light-container-right {
  position: absolute;
  right: -10px;
  top: 0;
  width: 434px;
  height: 100%;
  pointer-events: none;
}

/* Light 1: Wide Ellipse - blur(35px) */
.hero-light-container-left .hero-light-1,
.hero-light-container-right .hero-light-1 {
    position: absolute;
    width: 250px;
    height: 50px;
    top: 20%;
    right: 0;
    filter: blur(35px);
    opacity: 0.8;
}

/* Light 2: Ellipse 1 - blur(50px) */
.hero-light-container-left .hero-light-2,
.hero-light-container-right .hero-light-2 {
    position: absolute;
    width: 285px;
    height: 100px;
    top: 0px;
    right: 0;
    filter: blur(35px);
    opacity: 1;
}

/* Light 3: Ellipse 2 - blur(50px) */
.hero-light-container-left .hero-light-3,
.hero-light-container-right .hero-light-3 {
    position: absolute;
    width: 145px;
    height: 260px;
    top: 0%;
    right: -25px;
    filter: blur(50px);
    opacity: 0.7;
}

/* Light 4: Light Ellipse 1 (Circular) - blur(3.5px) */
.hero-light-container-left .hero-light-4,
.hero-light-container-right .hero-light-4 {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 0;
    right: 100px;
    filter: blur(0px);
    opacity: 0.6;
}

.hero-light-container-left .hero-light-4-inner,
.hero-light-container-right .hero-light-4-inner {
  width: 100%;
  height: 100%;
  transform: rotate(-20deg);
}

/* Light 5: Light 3 - blur(8px) */
.hero-light-container-left .hero-light-5,
.hero-light-container-right .hero-light-5 {
    position: absolute;
    width: 200px;
    height: 300px;
    top: -25px;
    right: 175px;
    filter: blur(20px);
    opacity: 1;
    transform: rotate(-6deg);
}

/* Light 6: Light 2 - blur(6px) */
.hero-light-container-left .hero-light-6,
.hero-light-container-right .hero-light-6 {
    position: absolute;
    width: 200px;
    height: 300px;
    top: 0;
    right: 100px;
    filter: blur(10px);
    opacity: 1;
    transform: rotate(15deg);
}

/* Light 7: Light Ray 1 - blur(10px) */
.hero-light-container-left .hero-light-7,
.hero-light-container-right .hero-light-7 {
    position: absolute;
    width: 135px;
    height: 300px;
    top: -5px;
    right: 80px;
    filter: blur(5px);
    opacity: 0.6;
}

/* Light 8: Light Ray 2 - blur(8px) */
.hero-light-container-left .hero-light-8,
.hero-light-container-right .hero-light-8 {
     position: absolute;
    width: 100px;
    height: 235px;
    top: 0px;
    right: 70px;
    filter: blur(5px);
    opacity: 0.6;
}

/* Light 9: Light Ray 3 - blur(8px) */
.hero-light-container-left .hero-light-9,
.hero-light-container-right .hero-light-9 {
  position: absolute;
    width: 100px;
    height: 200px;
    top: -15px;
    right: 30px;
    filter: blur(5px);
    opacity: 0.6;
}

/* SVG Rendering Optimization */
.hero-light-container-left svg,
.hero-light-container-right svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Responsive - Mobile */
@media (max-width: 767px) {
  .hero-lighting-wrapper-fixed,
  .hero-lighting-wrapper {
    height: 250px;
  }
}

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

/* Section Wrapper */
.cta-section {
  position: relative;
  background-color: #fafafa;
  overflow: hidden;
}

/* Background Wrapper */
.cta-background-wrapper {
  position: relative;
  width: 100%;
}

/* Container */
.cta-container {
max-width: 1280px;
    margin: 0 auto;
    padding: 2px;
    position: relative;
    border-radius: 45px;
}

/* Lighting Effects Wrapper */
.cta-lighting-wrapper {
position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 5;
    pointer-events: none;
    border-radius: 45px;
}

/* Container Left (Flipped with rotateY) */
.cta-light-container-left {
position: absolute;
    left: -10px;
    top: 0;
    width: 434px;
    height: 100%;
    transform: rotateY(180deg);
    pointer-events: none;
}

/* Container Right (Normal) */
.cta-light-container-right {
  position: absolute;
  right: -10px;
  top: 0;
  width: 434px;
  height: 100%;
  pointer-events: none;
}

/* Light 1: Wide Ellipse - blur(35px) */
.cta-light-container-left .cta-light-1,
.cta-light-container-right .cta-light-1 {
    position: absolute;
    width: 200px;
    height: 50px;
    top: 100px;
    right: 40px;
    filter: blur(50px);
    opacity: 0.8;
}

/* Light 2: Ellipse 1 - blur(50px) */
.cta-light-container-left .cta-light-2,
.cta-light-container-right .cta-light-2 {
    position: absolute;
    width: 200px;
    height: 180px;
    top: 0%;
    right: 0px;
    filter: blur(30px);
    opacity: 1;
}

/* Light 3: Ellipse 2 - blur(50px) */
.cta-light-container-left .cta-light-3,
.cta-light-container-right .cta-light-3 {
    position: absolute;
    width: 150px;
    height: 150px;
    top: 10px;
    right: 0px;
    filter: blur(50px);
    opacity: 0.7;
}

/* Light 4: Light Ellipse 1 (Circular) - blur(3.5px) */
.cta-light-container-left .cta-light-4,
.cta-light-container-right .cta-light-4 {
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    right: 0;
    filter: blur(0px);
    opacity: 0.6;
}

.cta-light-container-left .cta-light-4-inner,
.cta-light-container-right .cta-light-4-inner {
  width: 100%;
  height: 100%;
  transform: rotate(-20deg);
}

/* Light 5: Light 3 - blur(8px) */
.cta-light-container-left .cta-light-5,
.cta-light-container-right .cta-light-5 {
position: absolute;
    width: 50px;
    height: 230px;
    top: -25px;
    right: 0;
    filter: blur(15px);
    opacity: 1;
    transform: rotate(65deg);
}

/* Light 6: Light 2 - blur(6px) */
.cta-light-container-left .cta-light-6,
.cta-light-container-right .cta-light-6 {
    position: absolute;
    width: 150px;
    height: 255px;
    top: -85px;
    right: 65px;
    filter: blur(10px);
    opacity: 1;
    transform: rotate(90deg);
}

/* Light 7: Light Ray 1 - blur(10px) */
.cta-light-container-left .cta-light-7,
.cta-light-container-right .cta-light-7 {
    position: absolute;
    width: 100px;
    height: 260px;
    top: -45px;
    right: 60px;
    filter: blur(5px);
    opacity: 0.6;
    transform: rotate(75deg);
}

/* Light 8: Light Ray 2 - blur(8px) */
.cta-light-container-left .cta-light-8,
.cta-light-container-right .cta-light-8 {
    position: absolute;
    width: 100px;
    height: 230px;
    top: 30px;
    right: 35px;
    filter: blur(5px);
    opacity: 0.6;
    transform: rotate(75deg);
}

/* Light 9: Light Ray 3 - blur(8px) */
.cta-light-container-left .cta-light-9,
.cta-light-container-right .cta-light-9 {
position: absolute;
    width: 90px;
    height: 218px;
    top: 45px;
    right: 0px;
    filter: blur(5px);
    opacity: 0.6;
    transform: rotate(65deg);
}

/* SVG Rendering Optimization */
.cta-light-container-left svg,
.cta-light-container-right svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Main Card */
.cta-card {
  position: relative;
  z-index: 2;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(243, 243, 241);
  border-radius: 45px;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.05);
  padding: 80px 60px;
}

/* Content Wrapper */
.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Heading Wrapper */
.cta-heading-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 800px;
  text-align: center;
}

/* Badge */
.cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: rgb(254, 254, 254);
  border: 1.5px solid rgb(243, 243, 241);
  border-radius: 30px;
  color: rgb(55, 49, 47);
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-badge:hover {
  background-color: rgb(250, 250, 247);
  border-color: rgb(227, 227, 227);
}

/* Heading */
.cta-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: rgb(55, 49, 47);
  text-align: center;
  margin: 0;
}

/* Description */
.cta-description {
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0px;
  color: rgb(97, 97, 97);
  text-align: center;
  margin: 0;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: rgb(17, 17, 17);
  border: 0.5px solid rgb(152, 152, 151);
  border-radius: 18px;
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 0.48175px 1.25255px -1.16667px,
    rgba(0, 0, 0, 0.09) 0px 1.83083px 4.76015px -2.33333px,
    rgba(0, 0, 0, 0.05) 0px 8px 20.8px -3.5px,
    rgba(255, 255, 255, 0.49) 0px -2px 9px 0px inset,
    rgba(0, 0, 0, 0.2) 0px 0px 0px 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  background-color: rgb(40, 40, 40);
  transform: translateY(-2px);
  box-shadow:
    rgba(0, 0, 0, 0.12) 0px 0.6px 1.5px -1.2px,
    rgba(0, 0, 0, 0.11) 0px 2px 5px -2.5px,
    rgba(0, 0, 0, 0.07) 0px 10px 24px -4px,
    rgba(255, 255, 255, 0.55) 0px -2px 10px 0px inset,
    rgba(0, 0, 0, 0.25) 0px 0px 0px 2px;
}

/* Button Text */
.cta-button-text {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: rgb(250, 250, 247);
}

/* Button Icon */
.cta-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
  .cta-container {
    padding: 0 16px;
  }

  .cta-card {
    padding: 60px 40px;
    border-radius: 32px;
  }

  .cta-heading {
    font-size: 36px;
  }

  .cta-description {
    font-size: 16px;
  }

  .cta-button {
    padding: 14px 28px;
  }

  .cta-button-text {
    font-size: 15px;
  }

  /* Reduce lighting effects size */
  .hero-light-container-left,
  .hero-light-container-right,
  .cta-light-container-left,
  .cta-light-container-right {
    transform: scale(0.7);
  }

  /* Maintain rotateY for left containers */
  .hero-light-container-left,
  .cta-light-container-left {
    transform: rotateY(180deg) scale(0.7);
  }
}

.footer-column, h4
{
  font-size: 18px !important;
}
.footer-column li
{
  font-size: 16px !important;
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .cta-container {
    padding: 0 16px;
  }

  .cta-card {
    padding: 48px 24px;
    border-radius: 30px;
  }

  .cta-heading-wrapper {
    gap: 24px;
  }

  .cta-badge {
    padding: 10px 20px;
    font-size: 13px;
  }

  .cta-heading {
    font-size: 28px;
    line-height: 1.3;
  }

  .cta-description {
    font-size: 15px;
    line-height: 1.6;
  }

  .cta-button {
    padding: 12px 24px;
    gap: 8px;
  }

  .cta-button-text {
    font-size: 14px;
  }

  .cta-button-icon {
    width: 20px;
    height: 20px;
  }

  /* Hide some lighting effects for performance */
  .hero-light-container-left .hero-light-3,
  .hero-light-container-left .hero-light-4,
  .hero-light-container-left .hero-light-5,
  .hero-light-container-left .hero-light-6,
  .hero-light-container-left .hero-light-7,
  .hero-light-container-left .hero-light-8,
  .hero-light-container-left .hero-light-9,
  .hero-light-container-right .hero-light-3,
  .hero-light-container-right .hero-light-4,
  .hero-light-container-right .hero-light-5,
  .hero-light-container-right .hero-light-6,
  .hero-light-container-right .hero-light-7,
  .hero-light-container-right .hero-light-8,
  .hero-light-container-right .hero-light-9,
  .cta-light-container-left .cta-light-3,
  .cta-light-container-left .cta-light-4,
  .cta-light-container-left .cta-light-5,
  .cta-light-container-left .cta-light-6,
  .cta-light-container-left .cta-light-7,
  .cta-light-container-left .cta-light-8,
  .cta-light-container-left .cta-light-9,
  .cta-light-container-right .cta-light-3,
  .cta-light-container-right .cta-light-4,
  .cta-light-container-right .cta-light-5,
  .cta-light-container-right .cta-light-6,
  .cta-light-container-right .cta-light-7,
  .cta-light-container-right .cta-light-8,
  .cta-light-container-right .cta-light-9 {
    display: none;
  }

  /* Scale down containers */
  .hero-light-container-left,
  .hero-light-container-right,
  .cta-light-container-left,
  .cta-light-container-right {
    transform: scale(0.5);
  }

  /* Maintain rotateY for left containers */
  .hero-light-container-left,
  .cta-light-container-left {
    transform: rotateY(180deg) scale(0.5);
  }
}
