.elementor-3012 .elementor-element.elementor-element-51b2b86{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3012 .elementor-element.elementor-element-51b2b86.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-3012 .elementor-element.elementor-element-9dff434{width:100%;max-width:100%;}.elementor-3012 .elementor-element.elementor-element-9dff434 > .elementor-widget-container{padding:0px 0px 0px 0px;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-3012 .elementor-element.elementor-element-51b2b86{--width:100.934%;}}/* Start custom CSS for html, class: .elementor-element-9dff434 *//* =========================================
   SOMMA Multi Family Office - Pure CSS
   ========================================= */

/* CSS Variables */
:root {
    /* Colors */
    --background: hsl(30, 20%, 98%);
    --foreground: hsl(30, 10%, 15%);
    --card: hsl(30, 15%, 96%);
    --card-foreground: hsl(30, 10%, 15%);
    --primary: hsl(35, 60%, 35%);
    --primary-foreground: hsl(30, 20%, 98%);
    --secondary: hsl(35, 25%, 92%);
    --secondary-foreground: hsl(30, 10%, 20%);
    --muted: hsl(30, 15%, 92%);
    --muted-foreground: hsl(30, 8%, 45%);
    --accent: hsl(38, 70%, 50%);
    --accent-foreground: hsl(30, 20%, 10%);
    --border: hsl(30, 15%, 88%);
    
    /* Custom Tokens */
    --gold: hsl(38, 70%, 50%);
    --gold-light: hsl(38, 60%, 70%);
    --gold-dark: hsl(35, 60%, 30%);
    --charcoal: hsl(30, 10%, 18%);
    --cream: hsl(35, 30%, 95%);
    --warm-white: hsl(30, 20%, 98%);
    
    /* Typography */
    --font-display: 'Inter serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-elegant: 0 25px 50px -12px hsla(30, 10%, 15%, 0.15);
    --shadow-soft: 0 10px 40px -10px hsla(35, 60%, 35%, 0.1);
    --shadow-glow: 0 0 60px hsla(38, 70%, 50%, 0.15);
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, hsl(38, 70%, 55%), hsl(35, 60%, 40%));
    --gradient-dark: linear-gradient(180deg, hsl(30, 10%, 15%), hsl(30, 15%, 8%));
    --gradient-cream: linear-gradient(180deg, hsl(35, 30%, 97%), hsl(30, 20%, 92%));
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 6rem;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--primary-foreground);
}

.btn-gold:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn-elegant {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
}

.btn-elegant:hover {
    background: var(--secondary);
    border-color: var(--accent);
}

.btn-xl {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-lg {
    padding: 0.875rem 1.75rem;
}

.btn-full {
    width: 100%;
}

/* =========================================
   TYPOGRAPHY UTILITIES
   ========================================= */
.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 2px solid var(--accent);
}

.section-label.light {
    color: hsla(30, 20%, 98%, 0.6);
    border-left-color: hsla(30, 20%, 98%, 0.3);
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-title.light {
    color: var(--background);
}

.section-description {
    color: var(--muted-foreground);
    max-width: 40rem;
}

.section-description.light {
    color: hsla(30, 20%, 98%, 0.7);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-label {
    border-left: none;
    padding-left: 0;
}

.section-header .section-description {
    margin: 0 auto;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1.5rem 0;
    transition: all 0.5s ease;
}

.site-header.scrolled {
    background: hsla(30, 20%, 98%, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-elegant);
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img {
    height: 2.5rem;
    width: auto;
}

.main-nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
    letter-spacing: 0.025em;
}

.nav-link:hover {
    color: var(--foreground);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsla(30, 20%, 98%, 0.95), hsla(30, 20%, 98%, 0.8), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 6rem;
}

.hero-text {
    max-width: 42rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-title-muted {
    color: var(--muted-foreground);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 36rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.scroll-button:hover {
    color: var(--foreground);
}

.scroll-button span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* =========================================
   CHALLENGE SECTION
   ========================================= */
.challenge-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-cream);
}

.challenge-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .challenge-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.challenge-image-wrapper {
    position: relative;
}

.challenge-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-elegant);
}

.challenge-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(30, 10%, 15%, 0.3), transparent);
}

.decorative-border {
    position: absolute;
    width: 8rem;
    height: 8rem;
    border: 2px solid hsla(38, 70%, 50%, 0.3);
    border-radius: 0.5rem;
    z-index: -1;
}

.challenge-image-wrapper .decorative-border {
    bottom: -1.5rem;
    right: -1.5rem;
}

.challenges-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.challenge-item {
    padding-left: 1.5rem;
    padding: 0.5rem 0 0.5rem 1.5rem;
    border-left: 2px solid hsla(38, 70%, 50%, 0.4);
}

.challenge-item h3 {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.challenge-item p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--background);
}

.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    padding: 2rem;
    background: var(--card);
    border-radius: 0.5rem;
    border: 1px solid hsla(30, 15%, 88%, 0.5);
    transition: all 0.5s ease;
}

.service-card:hover {
    border-color: hsla(38, 70%, 50%, 0.3);
    box-shadow: var(--shadow-elegant);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    background: hsla(38, 70%, 50%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background 0.3s ease;
}

.service-card:hover .service-icon {
    background: hsla(38, 70%, 50%, 0.2);
}

.service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--accent);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* =========================================
   DIFFERENTIALS SECTION
   ========================================= */
.differentials-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-cream);
}

.differentials-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .differentials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.differentials-list {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
}

@media (min-width: 1080px) {
    .differentials-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.differential-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.differential-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: hsla(38, 70%, 50%, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.differential-icon svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--accent);
}

.differential-item span {
    font-size: 0.875rem;
}

.differentials-image {
    display: flex;
    justify-content: center;
    position: relative;
}


.differentials-image img {
    width: 90rem;
    height: auto;
    filter: drop-shadow(0 25px 50px hsla(30, 10%, 15%, 0.15));
}

.image-glow {
    position: absolute;
    inset: 0;
    background: hsla(38, 70%, 50%, 0.05);
    border-radius: 50%;
    filter: blur(3rem);
    z-index: -1;
}

/* =========================================
   PROCESS SECTION
   ========================================= */
.process-section {
    padding: var(--section-padding) 0;
    background: var(--foreground);
    color: var(--background);
}

.process-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: hsla(30, 20%, 98%, 0.1);
    position: absolute;
    top: -1rem;
    left: 0;
}

.step-content {
    padding-top: 3rem;
}

.step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 0.875rem;
    color: hsla(30, 20%, 98%, 0.6);
    line-height: 1.6;
}

.step-connector {
    display: none;
}

@media (min-width: 1024px) {
    .step-connector {
        display: block;
        position: absolute;
        top: 4rem;
        right: 0;
        width: 50%;
        height: 1px;
        background: hsla(30, 20%, 98%, 0.2);
    }
    
    .process-step:last-child .step-connector {
        display: none;
    }
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--background);
}

.contact-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-image-wrapper {
    position: relative;
    order: 2;
}

@media (min-width: 1024px) {
    .contact-image-wrapper {
        order: 1;
    }
}

.contact-image-container {
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-elegant);
}

.contact-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.decorative-border.top-left {
    top: -1.5rem;
    left: -1.5rem;
}

.contact-content {
    order: 1;
}

@media (min-width: 1024px) {
    .contact-content {
        order: 2;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--foreground);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px hsla(38, 70%, 50%, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--muted-foreground);
}

.contact-form textarea {
    resize: none;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--foreground);
}

.contact-link svg {
    width: 1rem;
    height: 1rem;
}


/* =========================================
   ANIMATIONS
   ========================================= */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-200 { animation-delay: 0.2s; }
.delay-400 { animation-delay: 0.4s; }
.delay-600 { animation-delay: 0.6s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   RESPONSIVE UTILITIES
   ========================================= */
@media (max-width: 767px) {
    .site-header .btn {
        display: none;
    }
    
    :root {
        --section-padding: 4rem;
    }
}/* End custom CSS */
/* Start custom CSS *//* =========================================
   SOMMA Multi Family Office - Pure CSS
   ========================================= */

/* CSS Variables */
:root {
    /* Colors */
    --background: hsl(30, 20%, 98%);
    --foreground: hsl(30, 10%, 15%);
    --card: hsl(30, 15%, 96%);
    --card-foreground: hsl(30, 10%, 15%);
    --primary: hsl(35, 60%, 35%);
    --primary-foreground: hsl(30, 20%, 98%);
    --secondary: hsl(35, 25%, 92%);
    --secondary-foreground: hsl(30, 10%, 20%);
    --muted: hsl(30, 15%, 92%);
    --muted-foreground: hsl(30, 8%, 45%);
    --accent: hsl(38, 70%, 50%);
    --accent-foreground: hsl(30, 20%, 10%);
    --border: hsl(30, 15%, 88%);
    
    /* Custom Tokens */
    --gold: hsl(38, 70%, 50%);
    --gold-light: hsl(38, 60%, 70%);
    --gold-dark: hsl(35, 60%, 30%);
    --charcoal: hsl(30, 10%, 18%);
    --cream: hsl(35, 30%, 95%);
    --warm-white: hsl(30, 20%, 98%);
    
    /* Typography */
    --font-display: 'Inter serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-elegant: 0 25px 50px -12px hsla(30, 10%, 15%, 0.15);
    --shadow-soft: 0 10px 40px -10px hsla(35, 60%, 35%, 0.1);
    --shadow-glow: 0 0 60px hsla(38, 70%, 50%, 0.15);
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, hsl(38, 70%, 55%), hsl(35, 60%, 40%));
    --gradient-dark: linear-gradient(180deg, hsl(30, 10%, 15%), hsl(30, 15%, 8%));
    --gradient-cream: linear-gradient(180deg, hsl(35, 30%, 97%), hsl(30, 20%, 92%));
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 6rem;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--primary-foreground);
}

.btn-gold:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn-elegant {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
}

.btn-elegant:hover {
    background: var(--secondary);
    border-color: var(--accent);
}

.btn-xl {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-lg {
    padding: 0.875rem 1.75rem;
}

.btn-full {
    width: 100%;
}

/* =========================================
   TYPOGRAPHY UTILITIES
   ========================================= */
.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 2px solid var(--accent);
}

.section-label.light {
    color: hsla(30, 20%, 98%, 0.6);
    border-left-color: hsla(30, 20%, 98%, 0.3);
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-title.light {
    color: var(--background);
}

.section-description {
    color: var(--muted-foreground);
    max-width: 40rem;
}

.section-description.light {
    color: hsla(30, 20%, 98%, 0.7);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-label {
    border-left: none;
    padding-left: 0;
}

.section-header .section-description {
    margin: 0 auto;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1.5rem 0;
    transition: all 0.5s ease;
}

.site-header.scrolled {
    background: hsla(30, 20%, 98%, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-elegant);
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img {
    height: 2.5rem;
    width: auto;
}

.main-nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
    letter-spacing: 0.025em;
}

.nav-link:hover {
    color: var(--foreground);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsla(30, 20%, 98%, 0.95), hsla(30, 20%, 98%, 0.8), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 6rem;
}

.hero-text {
    max-width: 42rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-title-muted {
    color: var(--muted-foreground);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 36rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.scroll-button:hover {
    color: var(--foreground);
}

.scroll-button span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* =========================================
   CHALLENGE SECTION
   ========================================= */
.challenge-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-cream);
}

.challenge-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .challenge-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.challenge-image-wrapper {
    position: relative;
}

.challenge-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-elegant);
}

.challenge-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(30, 10%, 15%, 0.3), transparent);
}

.decorative-border {
    position: absolute;
    width: 8rem;
    height: 8rem;
    border: 2px solid hsla(38, 70%, 50%, 0.3);
    border-radius: 0.5rem;
    z-index: -1;
}

.challenge-image-wrapper .decorative-border {
    bottom: -1.5rem;
    right: -1.5rem;
}

.challenges-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.challenge-item {
    padding-left: 1.5rem;
    padding: 0.5rem 0 0.5rem 1.5rem;
    border-left: 2px solid hsla(38, 70%, 50%, 0.4);
}

.challenge-item h3 {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.challenge-item p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--background);
}

.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    padding: 2rem;
    background: var(--card);
    border-radius: 0.5rem;
    border: 1px solid hsla(30, 15%, 88%, 0.5);
    transition: all 0.5s ease;
}

.service-card:hover {
    border-color: hsla(38, 70%, 50%, 0.3);
    box-shadow: var(--shadow-elegant);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    background: hsla(38, 70%, 50%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background 0.3s ease;
}

.service-card:hover .service-icon {
    background: hsla(38, 70%, 50%, 0.2);
}

.service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--accent);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* =========================================
   DIFFERENTIALS SECTION
   ========================================= */
.differentials-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-cream);
}

.differentials-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .differentials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.differentials-list {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
}

@media (min-width: 1080px) {
    .differentials-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.differential-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.differential-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: hsla(38, 70%, 50%, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.differential-icon svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--accent);
}

.differential-item span {
    font-size: 0.875rem;
}

.differentials-image {
    display: flex;
    justify-content: center;
    position: relative;
}


.differentials-image img {
    width: 90rem;
    height: auto;
    filter: drop-shadow(0 25px 50px hsla(30, 10%, 15%, 0.15));
}

.image-glow {
    position: absolute;
    inset: 0;
    background: hsla(38, 70%, 50%, 0.05);
    border-radius: 50%;
    filter: blur(3rem);
    z-index: -1;
}

/* =========================================
   PROCESS SECTION
   ========================================= */
.process-section {
    padding: var(--section-padding) 0;
    background: var(--foreground);
    color: var(--background);
}

.process-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: hsla(30, 20%, 98%, 0.1);
    position: absolute;
    top: -1rem;
    left: 0;
}

.step-content {
    padding-top: 3rem;
}

.step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 0.875rem;
    color: hsla(30, 20%, 98%, 0.6);
    line-height: 1.6;
}

.step-connector {
    display: none;
}

@media (min-width: 1024px) {
    .step-connector {
        display: block;
        position: absolute;
        top: 4rem;
        right: 0;
        width: 50%;
        height: 1px;
        background: hsla(30, 20%, 98%, 0.2);
    }
    
    .process-step:last-child .step-connector {
        display: none;
    }
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--background);
}

.contact-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-image-wrapper {
    position: relative;
    order: 2;
}

@media (min-width: 1024px) {
    .contact-image-wrapper {
        order: 1;
    }
}

.contact-image-container {
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-elegant);
}

.contact-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.decorative-border.top-left {
    top: -1.5rem;
    left: -1.5rem;
}

.contact-content {
    order: 1;
}

@media (min-width: 1024px) {
    .contact-content {
        order: 2;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--foreground);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px hsla(38, 70%, 50%, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--muted-foreground);
}

.contact-form textarea {
    resize: none;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--foreground);
}

.contact-link svg {
    width: 1rem;
    height: 1rem;
}


/* =========================================
   ANIMATIONS
   ========================================= */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-200 { animation-delay: 0.2s; }
.delay-400 { animation-delay: 0.4s; }
.delay-600 { animation-delay: 0.6s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   RESPONSIVE UTILITIES
   ========================================= */
@media (max-width: 767px) {
    .site-header .btn {
        display: none;
    }
    
    :root {
        --section-padding: 4rem;
    }
}/* End custom CSS */