    /* ========== GLOBAL STYLES ========== */
:root {
    --mocha: #3A3226;
    --mocha-light: #5a4f3f;
    --mocha-dark: #2a2319;
    --off-white: #F8F4E9;
    --off-white-dark: #e8e0d0;
    --light-accent: #E8DCC5;
    --light-accent-dark: #d8ccb5;
    --dark-text: #1A1A1A;
    --dark-text-light: #2a2a2a;
    --highlight: #8B7D65;
    --highlight-light: #9b8d75;
    --highlight-dark: #7b6d55;
    --success: #4CAF50;
    --warning: #FFC107;
    --danger: #F44336;
    --info: #2196F3;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --transition-fast: all 0.15s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 18px;
    --border-radius-xl: 24px;
    --section-padding: 120px 0;
    --section-padding-md: 80px 0;
    --section-padding-sm: 60px 0;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.8;
    color: var(--dark-text);
    background-color: var(--off-white);
    font-size: 1.125rem;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    color: var(--dark-text);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

h1 {
    font-size: 4rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 3rem;
    letter-spacing: -0.25px;
}

h3 {
    font-size: 2.25rem;
}

h4 {
    font-size: 1.75rem;
}

h5 {
    font-size: 1.5rem;
}

h6 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--dark-text-light);
}

a {
    color: var(--mocha);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--mocha-dark);
}

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

li {
    margin-bottom: 0.75rem;
}

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

strong {
    font-weight: 700;
}

em {
    font-style: italic;
    color: var(--dark-text);
}

blockquote {
    font-style: italic;
    padding: 1.5rem;
    border-left: 4px solid var(--highlight);
    background-color: rgba(139, 125, 101, 0.05);
    margin: 2rem 0;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.container-sm {
    max-width: 1100px;
}

.container-xs {
    max-width: 900px;
}

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

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

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

.text-muted {
    color: #666;
}

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

.text-highlight {
    color: var(--highlight);
}

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

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

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

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

.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.section-sm {
    padding: var(--section-padding-sm);
}

.section-md {
    padding: var(--section-padding-md);
}

.section-title {
    margin-bottom: 5rem;
    position: relative;
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--mocha);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title.text-left h2::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--mocha);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1rem;
    letter-spacing: 0.5px;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    transition: var(--transition-normal);
    opacity: 0;
}

.btn:hover::before {
    opacity: 1;
}

.btn-outline {
    border: 2px solid var(--mocha);
    color: var(--mocha);
    background: transparent;
}

.btn-outline:hover {
    background: var(--mocha);
    color: var(--off-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--mocha);
    color: var(--off-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--mocha-light);
}

.btn-white {
    background: var(--off-white);
    color: var(--mocha);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--off-white-dark);
}

.btn-highlight {
    background: var(--highlight);
    color: var(--off-white);
    box-shadow: var(--shadow-md);
}

.btn-highlight:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--highlight-light);
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-icon {
    margin-right: 0.5rem;
}

/* ========== HEADER ========== */
header {
    background: var(--off-white);
    box-shadow: 0 2px 20px rgba(58, 50, 38, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-normal);
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 20px rgba(58, 50, 38, 0.15);
    backdrop-filter: blur(10px);
    background-color: rgba(248, 244, 233, 0.95);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--mocha);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px; /* Increased from 50px to 125px (2.5x) then returned 50px */
    transition: var(--transition-normal);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--mocha);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition-normal);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--mocha);
    transition: var(--transition-normal);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--highlight);
}

.nav-links a.active::after {
    width: 100%;
    background-color: var(--highlight);
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--mocha);
    cursor: pointer;
    z-index: 1001;
}

/* ========== HERO SECTION ========== */
.hero {
    padding: 11.25rem 0 6.25rem;
    background: linear-gradient(135deg, var(--off-white) 0%, #f0e9db 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(139, 125, 101, 0.05) 0%, rgba(139, 125, 101, 0) 70%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(139, 125, 101, 0.03) 0%, rgba(139, 125, 101, 0) 70%);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.875rem;
    line-height: 1.2;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--mocha);
    bottom: -1rem;
    left: 0;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3.125rem;
    color: var(--mocha);
    opacity: 0.9;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 3.125rem;
}

.hero-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    transform: translateZ(0);
}

.hero-image:hover img {
    transform: scale(1.03) translateZ(10px);
}

.hero-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(58, 50, 38, 0.1) 0%, rgba(58, 50, 38, 0.3) 100%);
    z-index: 1;
    transition: var(--transition-slow);
}

.hero-image:hover::after {
    opacity: 0.8;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3.125rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-stat-icon {
    width: 3rem;
    height: 3rem;
    background: var(--mocha);
    color: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.hero-stat-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--mocha);
}

.hero-stat-content p {
    font-size: 0.875rem;
    margin-bottom: 0;
    color: var(--mocha);
    opacity: 0.8;
}

.hero-shape-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: rgba(139, 125, 101, 0.1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

.hero-shape-2 {
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: rgba(139, 125, 101, 0.05);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: float 10s ease-in-out infinite;
    z-index: 1;
}

/* ========== CLIENTS SECTION ========== */
.clients-section {
    padding: 3.75rem 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(58, 50, 38, 0) 0%, rgba(58, 50, 38, 0.1) 50%, rgba(58, 50, 38, 0) 100%);
}

.clients-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(58, 50, 38, 0) 0%, rgba(58, 50, 38, 0.1) 50%, rgba(58, 50, 38, 0) 100%);
}

.clients-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.clients-title h5 {
    font-size: 1rem;
    color: var(--mocha);
    opacity: 0.7;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-normal);
    height: 60px;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.client-logo img {
    max-height: 100%;
    width: auto;
    max-width: 80%;
    object-fit: contain;
}

/* ========== WHY HOTELS LOSE SECTION ========== */
.problem-section {
    padding: var(--section-padding);
    background: var(--off-white);
    position: relative;
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.problem-title {
    text-align: center;
    margin-bottom: 5rem;
}

.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}

.problem-card {
    display: flex;
    background: var(--off-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    min-height: 18.75rem;
    position: relative;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 50, 38, 0.03) 0%, rgba(58, 50, 38, 0.01) 100%);
    z-index: 1;
    pointer-events: none;
}

.problem-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 20px 50px rgba(58, 50, 38, 0.15);
}

.problem-card:nth-child(even) {
    flex-direction: row-reverse;
}

.problem-card-image {
    flex: 1;
    min-width: 40%;
    position: relative;
    overflow: hidden;
}

.problem-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.problem-card:hover .problem-card-image img {
    transform: scale(1.05);
}

.problem-card-content {
    flex: 1;
    padding: 3.125rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.problem-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--mocha);
    position: relative;
    padding-left: 1.25rem;
}

.problem-card h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 0.5rem;
    background: var(--mocha);
    border-radius: 50%;
}

.problem-card p {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    color: var(--mocha);
    opacity: 0.9;
}

.problem-stats {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.875rem;
}

.stat-item {
    text-align: center;
    padding: 1.25rem;
    background: rgba(58, 50, 38, 0.05);
    border-radius: var(--border-radius-md);
    flex: 1;
    transition: var(--transition-normal);
}

.stat-item:hover {
    background: rgba(58, 50, 38, 0.1);
    transform: translateY(-0.3125rem);
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--mocha);
    margin-bottom: 0.3125rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--mocha);
    opacity: 0.8;
}

.problem-shape-1 {
    position: absolute;
    top: 10%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 125, 101, 0.03) 0%, rgba(139, 125, 101, 0) 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
}

.problem-shape-2 {
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 125, 101, 0.02) 0%, rgba(139, 125, 101, 0) 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 0;
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: var(--section-padding);
    background: var(--light-accent);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%233a3226' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
}

.features-title {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(21.875rem, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--off-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(58, 50, 38, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0.3125rem;
    height: 100%;
    background: var(--mocha);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    width: 0.625rem;
    background: var(--highlight);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--mocha);
    color: var(--off-white);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--highlight);
    transform: rotate(10deg);
}

.feature-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 1.25rem;
}

.feature-card h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.625rem;
    height: 0.625rem;
    background: var(--mocha);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.feature-card:hover h3::before {
    background: var(--highlight);
}

.feature-card p {
    margin-bottom: 1.5rem;
    color: var(--mocha);
    opacity: 0.9;
}

.feature-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.feature-card li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.875rem;
    font-size: 1rem;
    line-height: 1.6;
}

.feature-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mocha);
    font-weight: bold;
    transition: var(--transition-normal);
}

.feature-card:hover li::before {
    color: var(--highlight);
}

.feature-link {
    display: inline-flex;
    align-items: center;
    color: var(--mocha);
    font-weight: 600;
    transition: var(--transition-normal);
    margin-top: auto;
}

.feature-link i {
    margin-left: 0.5rem;
    transition: var(--transition-normal);
}

.feature-link:hover {
    color: var(--highlight);
}

.feature-link:hover i {
    transform: translateX(0.25rem);
}

/* New artistic illustration for products section */
.feature-illustration {
    position: absolute;
    right: -6.25rem;
    bottom: -6.25rem;
    width: 25rem;
    height: 25rem;
    background: var(--mocha);
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500"><path d="M250,50c110,0,200,90,200,200s-90,200-200,200S50,360,50,250S140,50,250,50z M250,100c-82.8,0-150,67.2-150,150s67.2,150,150,150s150-67.2,150-150S332.8,100,250,100z M250,150c55.2,0,100,44.8,100,100s-44.8,100-100,100s-100-44.8-100-100S194.8,150,250,150z M250,200c-27.6,0-50,22.4-50,50s22.4,50,50,50s50-22.4,50-50S277.6,200,250,200z" fill="%233A3226" fill-opacity="0.1"/></svg>');
    mask-repeat: no-repeat;
    mask-size: contain;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
    animation: float 8s ease-in-out infinite, rotate 20s linear infinite;
}

.features-shape-1 {
    position: absolute;
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(248, 244, 233, 0.3) 0%, rgba(248, 244, 233, 0) 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: float 12s ease-in-out infinite;
}

.features-shape-2 {
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(248, 244, 233, 0.2) 0%, rgba(248, 244, 233, 0) 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    animation: float 15s ease-in-out infinite;
}

/* New floating elements for empty spaces */
.features-section::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: var(--mocha);
    opacity: 0.05;
    border-radius: 50%;
    animation: float 10s ease-in-out infinite, pulse 4s ease-in-out infinite;
    z-index: 0;
}

/* ========== CASE STUDY SECTION ========== */
.case-study-section {
    padding: var(--section-padding);
    background: var(--off-white);
    position: relative;
}

.case-study-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.case-study-title {
    text-align: center;
    margin-bottom: 5rem;
}

.case-study-card {
    background: var(--mocha);
    color: var(--off-white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(58, 50, 38, 0.2);
    position: relative;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 50, 38, 0.9) 0%, rgba(58, 50, 38, 0.7) 100%);
    z-index: 1;
}

.case-study-header {
    padding: 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(58, 50, 38, 0.9) 0%, rgba(58, 50, 38, 0.7) 100%),
    url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
    position: relative;
    z-index: 2;
}

.case-study-header h3 {
    font-size: 2.625rem;
    margin-bottom: 1.25rem;
    color: var(--off-white);
}

.case-study-header p {
    font-size: 1.25rem;
    max-width: 50rem;
    margin: 0 auto;
    opacity: 0.9;
    color: var(--off-white);
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
    position: relative;
    z-index: 2;
}

.case-study-problem, .case-study-solution {
    position: relative;
}

.case-study-problem::before, .case-study-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1.875rem;
    width: 0.25rem;
    height: 100%;
    background: var(--highlight);
    z-index: 1;
}

.case-study-solution::before {
    background: var(--off-white);
}

.case-study-section h4 {
    font-size: 1.75rem;
    margin-bottom: 1.875rem;
    color: var(--off-white);
}

.case-study-section h4 span {
    color: var(--highlight);
}

.case-study-section p {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.9;
    color: var(--off-white);
}

.case-study-section ul, .case-study-section ol {
    margin-bottom: 1.875rem;
}

.case-study-section li {
    margin-bottom: 0.625rem;
    opacity: 0.9;
    color: var(--off-white);
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding: 0 2rem 2rem;
    margin-top: 3.75rem;
}

.case-study-stat {
    background: rgba(255,255,255,0.1);
    padding: 1.875rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.case-study-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.case-study-stat:hover {
    transform: translateY(-0.625rem);
    background: rgba(255,255,255,0.2);
}

.case-study-stat:hover::before {
    opacity: 1;
}

.case-study-stat .number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: var(--off-white);
    line-height: 1;
}

.case-study-stat .label {
    font-size: 1rem;
    opacity: 0.8;
    color: var(--off-white);
}

/* Updated testimonial box to be more visible */
.case-study-testimonial {
    background: var(--highlight);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    margin: 4rem;
    position: relative;
    overflow: hidden;
    z-index: 3; /* Increased z-index to bring it above other elements */
}

.case-study-testimonial::before {
    content: '\"';
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    font-size: 6.25rem;
    font-family: Georgia, serif;
    color: rgba(255,255,255,0.1);
    line-height: 1;
    z-index: 0;
}

.case-study-testimonial::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 125, 101, 0.2) 0%, rgba(139, 125, 101, 0.1) 100%);
    z-index: 0;
}

.case-study-testimonial p {
    font-size: 1.25rem;
    font-style: italic;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    color: var(--off-white);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.875rem;
    position: relative;
    z-index: 2;
}

.testimonial-author img {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    margin-right: 1.25rem;
    object-fit: cover;
    border: 3px solid var(--off-white);
}

.author-info h5 {
    font-size: 1.125rem;
    margin-bottom: 0.3125rem;
    color: var(--off-white);
}

.author-info p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0;
    color: var(--off-white);
}

.case-study-shape-1 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(248, 244, 233, 0.05) 0%, rgba(248, 244, 233, 0) 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: float 12s ease-in-out infinite;
}

.case-study-shape-2 {
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(248, 244, 233, 0.03) 0%, rgba(248, 244, 233, 0) 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    animation: float 15s ease-in-out infinite;
}

/* New floating elements for case study section */
.case-study-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: var(--mocha);
    opacity: 0.05;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

/* ========== HOW IT WORKS SECTION ========== */
.steps-section {
    padding: var(--section-padding);
    background: var(--light-accent);
    position: relative;
    overflow: hidden;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.steps-title {
    text-align: center;
    margin-bottom: 5rem;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    text-align: center;
    flex-wrap: wrap;
    margin-top: 3.75rem;
    position: relative;
    z-index: 2;
}

.step {
    flex: 1;
    min-width: 15.625rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: calc(50% + 3rem);
    width: calc(100% - 6rem);
    height: 2px;
    background: linear-gradient(90deg, var(--mocha) 0%, rgba(58, 50, 38, 0) 100%);
    z-index: 0;
}

.step:last-child::before {
    display: none;
}

.step-number {
    width: 3.75rem;
    height: 3.75rem;
    background: var(--mocha);
    color: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5625rem;
    position: relative;
    z-index: 2;
    transition: var(--transition-normal);
}

.step:hover .step-number {
    transform: scale(1.1);
    background: var(--highlight);
}

.step-content {
    background: var(--off-white);
    padding: 2.5rem 1.875rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    border: 1px solid rgba(58, 50, 38, 0.1);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 50, 38, 0.03) 0%, rgba(58, 50, 38, 0.01) 100%);
    z-index: 0;
}

.step:hover .step-content {
    transform: translateY(-0.625rem);
    box-shadow: var(--shadow-lg);
}

.step h4 {
    font-size: 1.375rem;
    margin-bottom: 0.9375rem;
    color: var(--mocha);
    position: relative;
    z-index: 1;
}

.step p {
    color: var(--mocha);
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.steps-cta {
    text-align: center;
    margin-top: 3.75rem;
    position: relative;
    z-index: 2;
}

.steps-shape-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(58, 50, 38, 0.05) 0%, rgba(58, 50, 38, 0) 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.steps-shape-2 {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(58, 50, 38, 0.03) 0%, rgba(58, 50, 38, 0) 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    animation: float 10s ease-in-out infinite;
}

/* New floating elements for steps section */
.steps-section::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: var(--mocha);
    opacity: 0.05;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 12s ease-in-out infinite;
    z-index: 0;
}

/* ========== PRICING SECTION ========== */
.pricing-section {
    padding: var(--section-padding);
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.pricing-title {
    text-align: center;
    margin-bottom: 5rem;
}

.pricing-plans {
    display: flex;
    justify-content: center;
    gap: 1.875rem;
    flex-wrap: wrap;
    margin-top: 3.75rem;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: var(--off-white);
    border-radius: var(--border-radius-lg);
    padding: 3.125rem 2.5rem;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 18.75rem;
    max-width: 21.875rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(58, 50, 38, 0.1);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 50, 38, 0.03) 0%, rgba(58, 50, 38, 0.01) 100%);
    z-index: 0;
}

.pricing-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--mocha);
}

.popular-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--mocha);
    color: var(--off-white);
    padding: 0.3125rem 0.9375rem;
    border-radius: 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.9375rem;
    color: var(--mocha);
    position: relative;
    z-index: 1;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--mocha);
    margin-bottom: 1.875rem;
    position: relative;
    z-index: 1;
}

.price span {
    font-size: 1.125rem;
    font-weight: 400;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.pricing-features li {
    margin-bottom: 0.9375rem;
    position: relative;
    padding-left: 1.875rem;
    line-height: 1.6;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mocha);
    font-weight: bold;
    transition: var(--transition-normal);
}

.pricing-card:hover .pricing-features li::before {
    color: var(--highlight);
}

.pricing-cta {
    position: relative;
    z-index: 1;
}

.pricing-guarantee {
    text-align: center;
    margin-top: 2.5rem;
    position: relative;
    z-index: 2;
}

.pricing-guarantee p {
    font-size: 1.125rem;
    color: var(--mocha);
    position: relative;
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: rgba(58, 50, 38, 0.05);
    border-radius: var(--border-radius-md);
}

.pricing-guarantee p::before {
    content: '🔥';
    margin-right: 0.5rem;
}

.pricing-shape-1 {
    position: absolute;
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(58, 50, 38, 0.03) 0%, rgba(58, 50, 38, 0) 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: float 12s ease-in-out infinite;
}

.pricing-shape-2 {
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(58, 50, 38, 0.02) 0%, rgba(58, 50, 38, 0) 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    animation: float 15s ease-in-out infinite;
}

/* New floating elements for pricing section */
.pricing-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 150px;
    height: 150px;
    background: var(--mocha);
    opacity: 0.03;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: float 10s ease-in-out infinite;
    z-index: 0;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--mocha);
    color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23f8f4e9' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
}

.testimonials-title {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.testimonials-title h2 {
    color: var(--off-white); /* Changed from black to off-white */
}

.testimonials-title .section-subtitle {
    color: var(--off-white); /* Changed from black to off-white */
    opacity: 0.9;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.testimonial-slide {
    background: rgba(248, 244, 233, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 3.125rem;
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(248, 244, 233, 0.1);
    opacity: 1;
    transition: opacity 0.5s ease;
}

.testimonial-slide:not(.active) {
    display: none;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 2.5rem;
    color: var(--off-white);
    position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '\"';
    font-size: 3rem;
    font-family: Georgia, serif;
    color: rgba(248, 244, 233, 0.2);
    position: absolute;
    line-height: 1;
}

.testimonial-quote::before {
    top: -1.25rem;
    left: -1.25rem;
}

.testimonial-quote::after {
    bottom: -2.5rem;
    right: -1.25rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--off-white);
    margin-bottom: 1.25rem;
}

.testimonial-author h5 {
    font-size: 1.25rem;
    margin-bottom: 0.3125rem;
    color: var(--off-white);
}

.testimonial-author p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0;
    color: var(--off-white);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 3.125rem;
}

.testimonial-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(248, 244, 233, 0.3);
    cursor: pointer;
    transition: var(--transition-normal);
}

.testimonial-dot.active {
    background: var(--off-white);
    transform: scale(1.2);
}

.testimonials-shape-1 {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(248, 244, 233, 0.05) 0%, rgba(248, 244, 233, 0) 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.testimonials-shape-2 {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(248, 244, 233, 0.03) 0%, rgba(248, 244, 233, 0) 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    animation: float 10s ease-in-out infinite;
}

/* New floating elements for testimonials section */
.testimonials-section::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 20%;
    width: 100px;
    height: 100px;
    background: var(--off-white);
    opacity: 0.05;
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
    z-index: 0;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: var(--mocha);
    color: var(--off-white);
    text-align: center;
    padding: 6.25rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -6.25rem;
    left: -6.25rem;
    width: 18.75rem;
    height: 18.75rem;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -9.375rem;
    right: -6.25rem;
    width: 25rem;
    height: 25rem;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
    color: var(--off-white);
}

.cta-section p {
    font-size: 1.375rem;
    max-width: 43.75rem;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    color: var(--off-white);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-shape-1 {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.03);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.cta-shape-2 {
    position: absolute;
    bottom: 20%;
    right: 20%;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.02);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    animation: float 10s ease-in-out infinite;
}

/* New floating elements for CTA section */
.cta-section::before {
    animation: float 15s ease-in-out infinite;
}

.cta-section::after {
    animation: float 20s ease-in-out infinite;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: var(--section-padding);
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-title {
    text-align: center;
    margin-bottom: 5rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--off-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem;
    background: var(--off-white);
    color: var(--mocha);
    font-weight: 700;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-normal);
}

.faq-question:hover {
    color: var(--highlight);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: var(--transition-normal);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
    background: rgba(58, 50, 38, 0.03);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer-content {
    padding-top: 1rem;
}

.faq-shape-1 {
    position: absolute;
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(58, 50, 38, 0.03) 0%, rgba(58, 50, 38, 0) 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: float 12s ease-in-out infinite;
}

.faq-shape-2 {
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(58, 50, 38, 0.02) 0%, rgba(58, 50, 38, 0) 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    animation: float 15s ease-in-out infinite;
}

/* New floating elements for FAQ section */
.faq-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: var(--mocha);
    opacity: 0.03;
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
    z-index: 0;
}

/* ========== FOOTER ========== */
footer {
    background: var(--dark-text);
    color: var(--off-white);
    padding: 6.25rem 0 3.125rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(248, 244, 233, 0) 0%, rgba(248, 244, 233, 0.1) 50%, rgba(248, 244, 233, 0) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
    gap: 3.75rem;
    margin-bottom: 3.75rem;
}

.footer-column {
    position: relative;
}

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5625rem;
    color: var(--off-white);
    position: relative;
    padding-bottom: 0.9375rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    width: 2.5rem;
    height: 2px;
    background: var(--highlight);
    bottom: 0;
    left: 0;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.9375rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition-normal);
    font-size: 1rem;
    display: inline-block;
}

.footer-column a:hover {
    color: var(--off-white);
    padding-left: 0.3125rem;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 1.25rem;
    display: inline-block;
}

.footer-about p {
    color: #aaa;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 0.9375rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255,255,255,0.05);
    color: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

.social-links a:hover {
    color: var(--highlight);
    transform: translateY(-0.1875rem);
    background: rgba(255,255,255,0.1);
}

.footer-newsletter {
    margin-top: 1.875rem;
}

.newsletter-form {
    display: flex;
    gap: 0.625rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: var(--off-white);
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--highlight);
    background: rgba(255,255,255,0.1);
}

.newsletter-input::placeholder {
    color: #777;
}

.newsletter-btn {
    padding: 0.75rem 1.25rem;
    background: var(--highlight);
    color: var(--off-white);
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
}

.newsletter-btn:hover {
    background: var(--highlight-light);
}

.copyright {
    text-align: center;
    padding-top: 3.125rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #777;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.875rem;
    margin-top: 1.25rem;
}

.footer-links a {
    color: #777;
    transition: var(--transition-normal);
}

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

.footer-shape-1 {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(248, 244, 233, 0.03) 0%, rgba(248, 244, 233, 0) 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
    animation: float 12s ease-in-out infinite;
}

.footer-shape-2 {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(248, 244, 233, 0.02) 0%, rgba(248, 244, 233, 0) 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 0;
    animation: float 15s ease-in-out infinite;
}

/* New floating elements for footer */
footer::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 20%;
    width: 150px;
    height: 150px;
    background: rgba(248, 244, 233, 0.02);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
    z-index: 0;
}

/* ========== ANIMATIONS ========== */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 4s ease-in-out infinite;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-left {
    animation: slideInLeft 1s ease-out forwards;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 1s ease-out forwards;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rotate {
    animation: rotate 10s linear infinite;
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.scale-in {
    animation: scaleIn 1s ease-out forwards;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

.bounce {
    animation: bounce 2s infinite;
}

/* New animation for floating elements */
@keyframes drift {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, 10px) rotate(5deg); }
    50% { transform: translate(0, 20px) rotate(0deg); }
    75% { transform: translate(-10px, 10px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.drift {
    animation: drift 15s ease-in-out infinite;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.375rem;
    }
    .section-title h2 {
        font-size: 2.625rem;
    }
    .hero-content {
        gap: 2.5rem;
    }
    .problem-card-content {
        padding: 2.5rem;
    }
    .case-study-header {
        padding: 3.125rem;
    }
    .case-study-content {
        padding: 3.125rem;
        gap: 3.125rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        gap: 1.25rem;
    }
    .hero {
        padding: 9.375rem 0 5rem;
    }
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-text {
        text-align: center;
    }
    .hero h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .hero p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-image {
        max-width: 37.5rem;
        margin: 0 auto;
    }
    .problem-card, .problem-card:nth-child(even) {
        flex-direction: column;
    }
    .case-study-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .case-study-problem::before, .case-study-solution::before {
        left: 0;
        top: -1.25rem;
        width: 100%;
        height: 0.25rem;
    }
    .case-study-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps::before {
        display: none;
    }
    .step::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero h1 {
        font-size: 2.625rem;
    }
    .hero p {
        font-size: 1.125rem;
    }
    .section-title h2 {
        font-size: 2.25rem;
    }
    .section-subtitle {
        font-size: 1.25rem;
    }
    .problem-card-content {
        padding: 1.875rem;
    }
    .case-study-header {
        padding: 2.5rem 1.875rem;
    }
    .case-study-header h3 {
        font-size: 2rem;
    }
    .case-study-content {
        padding: 2.5rem 1.875rem;
    }
    .case-study-section h4 {
        font-size: 1.5rem;
    }
    .case-study-stat .number {
        font-size: 2.25rem;
    }
    .cta-section h2 {
        font-size: 2.25rem;
    }
    .cta-section p {
        font-size: 1.125rem;
    }
    .feature-card {
        padding: 2rem;
    }
    .pricing-card {
        min-width: 100%;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.25rem;
    }
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    .cta-buttons {
        gap: 0.75rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .problem-stats {
        flex-direction: column;
    }
    .case-study-stats {
        grid-template-columns: 1fr;
    }
    .steps {
        flex-direction: column;
        gap: 1.25rem;
    }
    .step {
        width: 100%;
    }
    .testimonial-slide {
        padding: 2rem 1.5rem;
    }
    .testimonial-quote {
        font-size: 1.125rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 0.625rem;
        align-items: center;
    }
}