/* ========================================
   SIMIL V3 - Modern & Fluid Design
   ======================================== */

/* CSS Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Brand Aligned (Simil) */
    --primary: #1a1a1a;
    --primary-light: #2d2d2d;
    --secondary: #c03518;
    --accent: #e74422;
    --accent-light: #f9d423;
    --accent-gradient: linear-gradient(135deg, #e74422 0%, #f9d423 100%);

    /* Neutrals - High-End Minimalist */
    --white: #ffffff;
    --white-soft: #fbfbfb;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;

    /* Dark Mode */
    --dark: #0a0a0a;
    --dark-100: #121212;
    --dark-200: #1e1e1e;
    --dark-300: #2d2d2d;

    /* Special Effects */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Container */
    --container-max: 1400px;
    --container-padding: clamp(1.5rem, 5vw, 4rem);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    max-width: 340px;
    height: auto;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

/* Navbar Logo */
.nav-logo {
    height: 58px;
    width: auto;
    transition: transform 0.4s var(--ease-out-expo);
}

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

/* Footer Logo */
.footer-logo-img {
    height: 74px;
    width: auto;
    margin-bottom: 1.5rem;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.98);
    }
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--dark-300);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    width: 0;
    height: 100%;
    background: var(--accent-gradient);
    animation: loadProgress 1.5s ease-out forwards;
}

@keyframes loadProgress {
    to {
        width: 100%;
    }
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    background: rgba(231, 68, 34, 0.1);
}

@media (pointer: coarse) {

    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s var(--ease-out-expo);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
}

.logo-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    position: relative;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-400);
    padding: 0.5rem 0;
    overflow: hidden;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--white);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: clip-path 0.4s var(--ease-out-expo);
}

.nav-link:hover::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: var(--accent-gradient);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 4px 15px rgba(231, 68, 34, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 68, 34, 0.3);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    top: 50%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 30px) scale(1.02);
    }
}

.hero-grid {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.label-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out-expo) forwards;
}

.title-line.accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line[data-delay="100"] {
    animation-delay: 0.1s;
}

.title-line[data-delay="200"] {
    animation-delay: 0.2s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn-magnetic {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--dark);
    font-weight: 600;
    border-radius: 100px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-magnetic:hover .btn-bg {
    width: 300px;
    height: 300px;
}

.btn-magnetic:hover {
    color: var(--white);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
}

.arrow-circle {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-ghost:hover .arrow-circle {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(-45deg);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-300);
}

.stat-item {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-suffix {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--dark-300);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.image-container {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

.floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--glass-shadow);
    animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    left: -30px;
    animation-delay: -3s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.card-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-500);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-600);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    margin-bottom: 4rem;
}

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

.section-header.center .section-title {
    justify-content: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(231, 68, 34, 0.08);
    border-radius: 100px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.section-title span {
    display: inline;
}

.title-highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* ========================================
   METHOD SECTION
   ======================================== */
.method {
    padding: var(--space-4xl) 0;
    position: relative;
}

.method-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 6rem;
    align-items: center;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    padding: 2rem;
    background: var(--dark-100);
    border: 1px solid var(--dark-300);
    border-radius: 20px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover {
    transform: translateX(10px);
    border-color: var(--accent);
}

.step-card:hover::before {
    opacity: 0.05;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-300);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.step-card:hover .step-number {
    color: var(--accent);
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.step-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.step-features li {
    font-size: 0.75rem;
    color: var(--gray-500);
    padding: 0.25rem 0.75rem;
    background: var(--dark-200);
    border-radius: 100px;
}

.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--dark-200);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: var(--accent);
    color: var(--white);
    transform: rotate(10deg);
}

/* Method Image */
.method-image {
    position: relative;
}

.image-reveal {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-reveal img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.8) 100%);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--accent-gradient);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.3);
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.badge-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   PROPERTIES SECTION
   ======================================== */
.properties {
    padding: var(--space-4xl) 0;
    background: var(--dark-100);
}

.properties-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.property-card {
    background: var(--dark);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--dark-300);
    transition: all 0.5s var(--ease-out-expo);
}

.property-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.property-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.card-image {
    position: relative;
    overflow: hidden;
}

.property-card:not(.featured) .card-image {
    height: 280px;
}

.property-card.featured .card-image {
    height: 100%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.property-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.property-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
}

.card-body {
    padding: 1.5rem;
}

.property-card.featured .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.property-type {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.property-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.property-card.featured .property-title {
    font-size: 2rem;
}

.property-description {
    font-size: 0.9375rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.property-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-400);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.card-link svg {
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: var(--accent);
}

.card-link:hover svg {
    transform: translateX(5px);
}

.properties-cta {
    max-width: var(--container-max);
    margin: 4rem auto 0;
    padding: 0 var(--container-padding);
    text-align: center;
}

.btn-outline-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    border: 1px solid var(--dark-300);
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.4s var(--ease-out-expo);
}

.btn-outline-large:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-outline-large svg {
    transition: transform 0.3s ease;
}

.btn-outline-large:hover svg {
    transform: translateX(5px);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: var(--space-4xl) 0;
}

.about-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.frame-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: 20px;
    z-index: -1;
}

.floating-info {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--glass-shadow);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text strong {
    font-size: 0.875rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.info-text span {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.about-content .section-header {
    margin-bottom: 2rem;
}

.about-text {
    margin-bottom: 2rem;
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-text p {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--white);
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.credential {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--dark-100);
    border: 1px solid var(--dark-300);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--gray-300);
}

.credential-icon {
    font-size: 1rem;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
}

.bg-pattern {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 1px 1px, var(--white) 1px, transparent 0);
    background-size: 40px 40px;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

.testimonials-slider {
    position: relative;
}

.testimonial-card {
    text-align: center;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    position: relative;
}

.quote-icon {
    color: var(--accent);
    margin-bottom: 2rem;
    opacity: 0.5;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 500;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 2.5rem;
}

.testimonial-author {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

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

.author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--dark-300);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--dark-300);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--dark-100);
}

.contact-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--dark);
    border: 1px solid var(--dark-300);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--accent);
    transform: translateX(5px);
}

.info-icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--dark-200);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.info-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.info-details p {
    font-size: 0.9375rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.info-details .phone {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: var(--dark-200);
    border: 1px solid var(--dark-300);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--dark);
    border: 1px solid var(--dark-300);
    border-radius: 24px;
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--dark-300);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-size: 1rem;
    color: var(--gray-500);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus+label,
.form-group input:valid+label,
.form-group textarea:focus+label,
.form-group textarea:valid+label {
    top: -0.5rem;
    font-size: 0.75rem;
    color: var(--accent);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 2rem;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--accent-gradient);
    border: none;
    border-radius: 100px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translate(3px, -3px);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: var(--space-3xl) 0 2rem;
    background: var(--dark);
    border-top: 1px solid var(--dark-300);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--dark-300);
    margin-bottom: 2rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    font-size: 2rem;
}

.footer-tagline {
    font-size: 1.125rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.footer-creds {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    font-size: 0.9375rem;
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--dark-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.4s var(--ease-out-expo);
    animation: pulseWhatsApp 2s ease-in-out infinite;
}

@keyframes pulseWhatsApp {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    animation: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {

    .method-container,
    .about-container,
    .contact-container {
        gap: 4rem;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.5s var(--ease-out-expo);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: flex;
        z-index: 1000;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-visual {
        order: -1;
    }

    .image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-image {
        height: 400px;
    }

    .floating-card {
        display: none;
    }

    .method-container,
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .method-image {
        order: -1;
    }

    .image-reveal img {
        height: 400px;
    }

    .experience-badge {
        bottom: 20px;
        left: 20px;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .property-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 6rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .step-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 1.25rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary {
        padding: 0.75rem 1.5rem;
    }

    .experience-badge {
        padding: 1rem;
    }

    .badge-number {
        font-size: 2rem;
    }
}

/* Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Selection Color */
::selection {
    background: var(--accent);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-300);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ========================================
   NOVOS COMPONENTES - UPGRADE INOVADOR
   ======================================== */

/* Skip Link para Acessibilidade */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 1rem 2rem;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 12px 12px;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10001;
    background: transparent;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--accent-gradient);
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--accent);
}

/* Theme Toggle */
.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark-200);
    border: 1px solid var(--dark-300);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(180deg);
}

.theme-icon {
    position: absolute;
    transition: all 0.3s ease;
}

.theme-icon.sun {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

.theme-icon.moon {
    opacity: 0;
    transform: translateY(20px) rotate(-180deg);
}

[data-theme="light"] .theme-icon.sun {
    opacity: 0;
    transform: translateY(-20px) rotate(180deg);
}

[data-theme="light"] .theme-icon.moon {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

/* Particle Canvas */
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 100px;
    right: 2rem;
    z-index: 10002;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

.toast {
    background: var(--dark-100);
    border: 1px solid var(--dark-300);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s var(--ease-out-expo);
    animation: slideIn 0.4s var(--ease-out-expo) forwards;
}

.toast.success {
    border-left: 4px solid #25D366;
}

.toast.error {
    border-left: 4px solid #ff4757;
}

.toast.info {
    border-left: 4px solid var(--accent);
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

.toast.removing {
    animation: slideOut 0.4s var(--ease-out-expo) forwards;
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.toast.error .toast-icon {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
}

.toast.info .toast-icon {
    background: rgba(231, 68, 34, 0.1);
    color: var(--accent);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.toast-message {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.toast-close {
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.toast-close:hover {
    color: var(--white);
}

/* Social Proof Notifications */
.social-proof-container {
    position: fixed;
    bottom: 100px;
    left: 2rem;
    z-index: 999;
    max-width: 350px;
}

.social-proof {
    background: var(--dark-100);
    border: 1px solid var(--dark-300);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    transform: translateX(-120%);
    opacity: 0;
    animation: slideInLeft 0.5s var(--ease-out-expo) forwards;
}

@keyframes slideInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.social-proof-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--white);
    flex-shrink: 0;
}

.social-proof-content {
    flex: 1;
}

.social-proof-text {
    font-size: 0.875rem;
    color: var(--gray-300);
    margin-bottom: 0.25rem;
}

.social-proof-text strong {
    color: var(--white);
}

.social-proof-time {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ROI Calculator Section */
.roi-calculator {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--dark-100) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.roi-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(231, 68, 34, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.calculator-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.calculator-form {
    background: var(--dark);
    border: 1px solid var(--dark-300);
    border-radius: 24px;
    padding: 2.5rem;
}

.calculator-form .form-group {
    margin-bottom: 2rem;
}

.calculator-form label {
    display: block;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: var(--dark-300);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--accent-gradient);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 68, 34, 0.4);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(231, 68, 34, 0.6);
}

.range-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--accent-gradient);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.range-value {
    margin-top: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
}

.btn-calculate {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--accent-gradient);
    border: none;
    border-radius: 100px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
}

.btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 68, 34, 0.3);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.result-card {
    background: var(--dark-100);
    border: 1px solid var(--dark-300);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.result-card:hover {
    border-color: var(--accent);
    transform: translateX(5px);
}

.result-card.highlight {
    background: var(--accent-gradient);
    border-color: transparent;
}

.result-icon {
    width: 56px;
    height: 56px;
    background: var(--dark-200);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.result-card.highlight .result-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.result-info {
    flex: 1;
}

.result-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.result-card.highlight .result-label {
    color: rgba(255, 255, 255, 0.8);
}

.result-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
}

.result-value.accent {
    color: var(--accent-light);
}

.chart-container {
    background: var(--dark-100);
    border: 1px solid var(--dark-300);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1rem;
}

#roiChart {
    width: 100%;
    height: auto;
}

.calculator-disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Share Floating Buttons */
.share-float {
    position: fixed;
    bottom: 100px;
    right: 2rem;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.share-trigger {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(231, 68, 34, 0.4);
    transition: all 0.3s ease;
    z-index: 2;
}

.share-trigger:hover,
.share-trigger.active {
    transform: scale(1.1) rotate(45deg);
    box-shadow: 0 6px 20px rgba(231, 68, 34, 0.6);
}

.share-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s var(--ease-out-expo);
}

.share-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark-100);
    border: 1px solid var(--dark-300);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: scale(1.1);
    background: var(--accent);
    border-color: var(--accent);
}

.share-btn[data-platform="whatsapp"]:hover {
    background: #25D366;
    border-color: #25D366;
}

.share-btn[data-platform="facebook"]:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.share-btn[data-platform="twitter"]:hover {
    background: #000000;
    border-color: #000000;
}

.share-btn[data-platform="linkedin"]:hover {
    background: #0A66C2;
    border-color: #0A66C2;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark-100);
    border: 1px solid var(--dark-300);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s var(--ease-out-expo);
    z-index: 997;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* Light Mode Variables */
[data-theme="light"] {
    --dark: #f8f9fa;
    --dark-100: #ffffff;
    --dark-200: #f1f3f5;
    --dark-300: #e9ecef;
    --white: #212529;
    --gray-400: #6c757d;
    --gray-500: #adb5bd;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .toast,
[data-theme="light"] .social-proof,
[data-theme="light"] .calculator-form,
[data-theme="light"] .result-card,
[data-theme="light"] .calculator-results .result-card {
    background: var(--white);
    border-color: var(--dark-300);
}

[data-theme="light"] .range-slider {
    background: var(--dark-300);
}

/* Enhanced Focus Styles for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.menu-toggle:focus-visible {
    outline-offset: 4px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .scroll-progress-bar,
    .particle-canvas {
        display: none;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --accent: #ff6b35;
        --accent-light: #ffd700;
    }

    .nav-link::after,
    .btn-primary,
    .btn-magnetic .btn-bg,
    .range-slider::-webkit-slider-thumb,
    .scroll-progress-bar {
        background: var(--accent) !important;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .preloader,
    .cursor,
    .cursor-follower,
    .scroll-progress,
    .theme-toggle,
    .share-float,
    .scroll-top,
    .whatsapp-float,
    .toast-container,
    .social-proof-container,
    .particle-canvas {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}

/* Responsive for new components */
@media (max-width: 1024px) {
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .toast-container {
        top: 80px;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }

    .social-proof-container {
        left: 1rem;
        bottom: 80px;
        max-width: calc(100% - 2rem);
    }

    .share-float,
    .scroll-top {
        right: 1rem;
    }

    .share-float {
        bottom: 80px;
    }
}

@media (max-width: 768px) {
    .skip-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .calculator-form {
        padding: 1.5rem;
    }

    .result-value {
        font-size: 1.25rem;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
    }
}