/* === RAYOON STUDIO - STYLES PRINCIPAUX === */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #1a1a2e;
    --bg-secondary: #16213e;
    --bg-card: #1f2937;
    --orange-primary: #e74c3c;
    --orange-dark: #c0392b;
    --navy: #0f1419;
    --text-primary: #e8e9ed;
    --text-secondary: #a0a3b5;
    --shadow-light: rgba(255, 255, 255, 0.05);
    --shadow-dark: rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    cursor: none;
}

/* === PARTICLES BACKGROUND === */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--orange-primary);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle linear infinite;
}

.particle:nth-child(1) { width: 3px; height: 3px; left: 10%; animation-duration: 15s; animation-delay: 0s; }
.particle:nth-child(2) { width: 5px; height: 5px; left: 20%; animation-duration: 20s; animation-delay: 2s; }
.particle:nth-child(3) { width: 2px; height: 2px; left: 30%; animation-duration: 18s; animation-delay: 4s; }
.particle:nth-child(4) { width: 4px; height: 4px; left: 40%; animation-duration: 22s; animation-delay: 1s; }
.particle:nth-child(5) { width: 3px; height: 3px; left: 50%; animation-duration: 17s; animation-delay: 3s; }
.particle:nth-child(6) { width: 6px; height: 6px; left: 60%; animation-duration: 25s; animation-delay: 5s; }
.particle:nth-child(7) { width: 2px; height: 2px; left: 70%; animation-duration: 19s; animation-delay: 2s; }
.particle:nth-child(8) { width: 4px; height: 4px; left: 80%; animation-duration: 21s; animation-delay: 0s; }
.particle:nth-child(9) { width: 3px; height: 3px; left: 90%; animation-duration: 16s; animation-delay: 4s; }
.particle:nth-child(10) { width: 5px; height: 5px; left: 15%; animation-duration: 23s; animation-delay: 1s; }
.particle:nth-child(11) { width: 2px; height: 2px; left: 25%; animation-duration: 18s; animation-delay: 3s; }
.particle:nth-child(12) { width: 4px; height: 4px; left: 35%; animation-duration: 20s; animation-delay: 5s; }
.particle:nth-child(13) { width: 3px; height: 3px; left: 45%; animation-duration: 24s; animation-delay: 2s; }
.particle:nth-child(14) { width: 6px; height: 6px; left: 55%; animation-duration: 19s; animation-delay: 0s; }
.particle:nth-child(15) { width: 2px; height: 2px; left: 65%; animation-duration: 22s; animation-delay: 4s; }
.particle:nth-child(16) { width: 5px; height: 5px; left: 75%; animation-duration: 17s; animation-delay: 1s; }
.particle:nth-child(17) { width: 3px; height: 3px; left: 85%; animation-duration: 21s; animation-delay: 3s; }
.particle:nth-child(18) { width: 4px; height: 4px; left: 95%; animation-duration: 16s; animation-delay: 5s; }
.particle:nth-child(19) { width: 2px; height: 2px; left: 5%; animation-duration: 23s; animation-delay: 2s; }
.particle:nth-child(20) { width: 5px; height: 5px; left: 92%; animation-duration: 18s; animation-delay: 0s; }

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(50vh) translateX(50px) scale(1);
        opacity: 0.8;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-10vh) translateX(-30px) scale(0.5);
        opacity: 0;
    }
}

.particle-horizontal {
    position: absolute;
    background: var(--orange-primary);
    border-radius: 50%;
    opacity: 0;
    animation: float-horizontal linear infinite;
    box-shadow: 0 0 10px var(--orange-primary);
}

.particle-horizontal:nth-child(21) { width: 4px; height: 4px; top: 10%; animation-duration: 30s; animation-delay: 0s; }
.particle-horizontal:nth-child(22) { width: 3px; height: 3px; top: 25%; animation-duration: 35s; animation-delay: 5s; }
.particle-horizontal:nth-child(23) { width: 5px; height: 5px; top: 40%; animation-duration: 28s; animation-delay: 2s; }
.particle-horizontal:nth-child(24) { width: 2px; height: 2px; top: 55%; animation-duration: 32s; animation-delay: 7s; }
.particle-horizontal:nth-child(25) { width: 4px; height: 4px; top: 70%; animation-duration: 27s; animation-delay: 3s; }
.particle-horizontal:nth-child(26) { width: 3px; height: 3px; top: 85%; animation-duration: 33s; animation-delay: 6s; }

@keyframes float-horizontal {
    0% {
        transform: translateX(-10vw) translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    50% {
        transform: translateX(50vw) translateY(20px);
        opacity: 0.8;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(110vw) translateY(-20px);
        opacity: 0;
    }
}

/* === NEUMORPHISM UTILITIES === */
.neomorph {
    background: var(--bg-card);
    box-shadow:
        0.5rem 0.5rem 1rem var(--shadow-dark),
        -0.5rem -0.5rem 1rem var(--shadow-light);
    border-radius: 1.25rem;
}

.neomorph-inset {
    background: var(--bg-card);
    box-shadow:
        inset 0.25rem 0.25rem 0.5rem var(--shadow-dark),
        inset -0.25rem -0.25rem 0.5rem var(--shadow-light);
    border-radius: 0.9375rem;
}

.neomorph-flat {
    background: var(--bg-card);
    box-shadow:
        0.3125rem 0.3125rem 0.625rem var(--shadow-dark),
        -0.3125rem -0.3125rem 0.625rem var(--shadow-light);
    border-radius: 0.9375rem;
}

/* === HEADER === */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    backdrop-filter: blur(1.25rem);
    background: rgba(26, 26, 46, 0.7);
    border-bottom: 0.0625rem solid rgba(231, 76, 60, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.8rem 0;
    background: rgba(26, 26, 46, 0.95);
    box-shadow: 0 0.3125rem 1.875rem rgba(0, 0, 0, 0.3);
}

nav {
    max-width: 87.5rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.logo-container::before {
    content: '';
    position: absolute;
    left: -0.625rem;
    width: 0.1875rem;
    height: 1.875rem;
    background: var(--orange-primary);
    border-radius: 0.625rem;
}

.logo-container h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0.125rem;
    background: var(--orange-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--orange-primary);
}

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

.cta-header {
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--text-primary);
    border: 0.125rem solid var(--orange-primary);
    border-radius: 3.125rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    position: relative;
    overflow: hidden;
}

.cta-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--orange-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-header:hover::before {
    left: 0;
}

.cta-header:hover {
    color: white;
    border-color: var(--orange-primary);
    transform: translateY(-0.125rem);
}

/* Hamburger Menu pour mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.375rem;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 1.875rem;
    height: 0.125rem;
    background: var(--orange-primary);
    transition: all 0.3s ease;
    border-radius: 0.125rem;
}

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

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

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

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

.hero::before {
    content: '';
    position: absolute;
    width: 31.25rem;
    height: 31.25rem;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.15) 0%, transparent 70%);
    top: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 25rem;
    height: 25rem;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
    bottom: 10%;
    left: 10%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-1.875rem) scale(1.05); }
}

.hero-content {
    max-width: 87.5rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text h2 .highlight {
    color: var(--orange-primary);
    display: block;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--orange-primary);
    color: white;
    border: none;
    border-radius: 3.125rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0.5rem 1.5625rem rgba(231, 76, 60, 0.4);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.75rem 2.1875rem rgba(231, 76, 60, 0.6);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-primary);
    border: 0.125rem solid var(--orange-primary);
    border-radius: 3.125rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--orange-primary);
    color: white;
    transform: translateY(-0.1875rem);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    padding: 3rem;
    text-align: center;
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-1.25rem) rotate(2deg); }
}

.hero-card img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0.625rem 1.875rem rgba(231, 76, 60, 0.3));
}

/* === SERVICES SECTION === */
.services {
    padding: 6rem 2rem;
    max-width: 87.5rem;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services::before {
    content: '';
    position: absolute;
    width: 37.5rem;
    height: 37.5rem;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

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

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title .highlight {
    color: var(--orange-primary);
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -0.3125rem;
    left: 0;
    width: 100%;
    height: 0.1875rem;
    background: var(--orange-primary);
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from { width: 0; }
    to { width: 100%; }
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 43.75rem;
    margin: 0 auto;
    line-height: 1.8;
}

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

.service-card {
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 0.0625rem solid rgba(231, 76, 60, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    transform: scale(0);
}

.service-card.active::before,
.service-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.service-card.active,
.service-card:hover {
    transform: translateY(-0.625rem) scale(1.05);
    box-shadow:
        0.9375rem 0.9375rem 1.875rem var(--shadow-dark),
        -0.9375rem -0.9375rem 1.875rem var(--shadow-light),
        0 0 3.125rem rgba(231, 76, 60, 0.2);
    border-color: var(--orange-primary);
    opacity: 1 !important;
}

.service-card.active .service-icon,
.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.08);
    box-shadow: 0 0.625rem 1.875rem rgba(231, 76, 60, 0.5);
}

.service-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    transition: all 0.6s ease;
    position: relative;
    box-shadow: 0 0.3125rem 0.9375rem rgba(231, 76, 60, 0.3);
}

.service-icon svg {
    width: 2.8125rem;
    height: 2.8125rem;
    fill: white;
    stroke: white;
    transition: all 0.6s ease;
}

.service-card:hover .service-icon svg,
.service-card.active .service-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 0.5rem rgba(255, 255, 255, 0.5));
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -0.125rem;
    left: -0.125rem;
    right: -0.125rem;
    bottom: -0.125rem;
    background: linear-gradient(45deg, var(--orange-primary), var(--orange-dark), var(--orange-primary));
    border-radius: 1.25rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card.active .service-icon::after,
.service-card:hover .service-icon::after {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.service-card.active h3,
.service-card:hover h3 {
    color: var(--orange-primary);
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -0.3125rem;
    left: 0;
    width: 0;
    height: 0.125rem;
    background: var(--orange-primary);
    transition: width 0.4s ease;
}

.service-card.active h3::after,
.service-card:hover h3::after {
    width: 100%;
}

.service-card > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card ul li {
    color: var(--text-secondary);
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.service-card ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.service-card.active ul li,
.service-card:hover ul li {
    padding-left: 2.5rem;
    color: var(--text-primary);
}

.service-card.active ul li::before,
.service-card:hover ul li::before {
    left: 0.5rem;
    animation: bounce 0.6s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(0.3125rem); }
}

.service-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--orange-primary);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    opacity: 0;
    transform: translateY(-0.625rem);
    transition: all 0.4s ease;
}

.service-card.active .service-badge,
.service-card:hover .service-badge {
    opacity: 1;
    transform: translateY(0);
}

/* === PROCESS SECTION === */
.process {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    width: 50rem;
    height: 50rem;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.08) 0%, transparent 70%);
    top: 20%;
    right: -10%;
    animation: float 15s ease-in-out infinite;
    pointer-events: none;
}

.process::after {
    content: '';
    position: absolute;
    width: 40rem;
    height: 40rem;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.05) 0%, transparent 70%);
    bottom: 10%;
    left: -5%;
    animation: float 20s ease-in-out infinite reverse;
    pointer-events: none;
}

.process-container {
    max-width: 87.5rem;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-steps {
    position: relative;
    padding: 4rem 0;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0.25rem;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        var(--orange-primary) 10%,
        var(--orange-primary) 90%,
        transparent 100%);
    z-index: 0;
    animation: progressGlow 3s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% {
        box-shadow: 0 0 0.625rem rgba(231, 76, 60, 0.3);
    }
    50% {
        box-shadow: 0 0 1.25rem rgba(231, 76, 60, 0.6);
    }
}

.process-step-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.process-step {
    padding: 2rem;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(3.125rem);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-step.active {
    opacity: 1;
    transform: translateY(0);
}

.step-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 4.375rem;
    height: 4.375rem;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    box-shadow:
        0 0.5rem 1.25rem rgba(231, 76, 60, 0.4),
        inset 0 -0.1875rem 0.625rem rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
    animation: numberPulse 2s ease-in-out infinite;
}

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

.process-step.active .step-number {
    animation: numberEntrance 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes numberEntrance {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.step-number::before {
    content: '';
    position: absolute;
    top: -0.3125rem;
    left: -0.3125rem;
    right: -0.3125rem;
    bottom: -0.3125rem;
    border: 0.125rem solid var(--orange-primary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.process-step:hover .step-number {
    transform: rotate(360deg) scale(1.15);
    box-shadow:
        0 0.75rem 1.875rem rgba(231, 76, 60, 0.6),
        inset 0 -0.1875rem 0.625rem rgba(0, 0, 0, 0.3);
    animation: none;
}

.process-step:hover .step-number::before {
    opacity: 1;
    animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.step-card {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(1);
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(31, 41, 55, 0.95) 100%);
}

.process-step:hover .step-card {
    transform: scale(1.03);
    background: linear-gradient(145deg, rgba(31, 41, 55, 1) 0%, rgba(31, 41, 55, 0.9) 100%);
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.process-step:hover h3 {
    color: var(--orange-primary);
    transform: translateX(0.3125rem);
}

.process-step h3::after {
    content: '';
    position: absolute;
    bottom: -0.3125rem;
    left: 0;
    width: 0;
    height: 0.1875rem;
    background: linear-gradient(90deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
    transition: width 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 0.125rem;
}

.process-step:hover h3::after,
.process-step.active h3::after {
    width: 100%;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 0.98rem;
    text-align: justify;
    transition: all 0.3s ease;
}

.process-step:hover p {
    color: var(--text-primary);
}

/* Staggered animation delays for process steps */
.process-step:nth-child(1) {
    transition-delay: 0.1s;
}

.process-step:nth-child(2) {
    transition-delay: 0.2s;
}

.process-step:nth-child(3) {
    transition-delay: 0.3s;
}

.process-step:nth-child(4) {
    transition-delay: 0.4s;
}

.process-step:nth-child(5) {
    transition-delay: 0.5s;
}

.process-step:nth-child(6) {
    transition-delay: 0.6s;
}

/* Desktop Layout - Zigzag */
@media (min-width: 969px) {
    .process-steps::before {
        display: none;
    }

    .process-step-wrapper {
        gap: 4rem;
    }

    .process-step {
        display: flex;
        align-items: center;
        gap: 3rem;
        width: 100%;
        padding: 0;
    }

    .process-step:nth-child(odd) {
        flex-direction: row;
        justify-content: flex-start;
    }

    .process-step:nth-child(odd) .step-content {
        text-align: right;
    }

    .process-step:nth-child(odd) .step-card {
        transform-origin: right center;
    }

    .process-step:nth-child(even) {
        flex-direction: row-reverse;
        justify-content: flex-start;
    }

    .process-step:nth-child(even) .step-content {
        text-align: left;
    }

    .process-step:nth-child(even) .step-card {
        transform-origin: left center;
    }

    .step-content {
        flex: 1;
        max-width: 45%;
    }

    .step-card {
        padding: 2.5rem;
        min-height: 17.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .step-card:hover {
        transform: scale(1.05);
        box-shadow:
            1.25rem 1.25rem 2.5rem var(--shadow-dark),
            -1.25rem -1.25rem 2.5rem var(--shadow-light),
            0 0 3.75rem rgba(231, 76, 60, 0.3);
    }

    .step-number-wrapper {
        margin-bottom: 0;
        position: relative;
    }

    .process-step:nth-child(odd) .step-number-wrapper::after {
        content: '';
        position: absolute;
        right: -3rem;
        top: 50%;
        width: 3rem;
        height: 0.1875rem;
        background: var(--orange-primary);
        box-shadow: 0 0 0.625rem rgba(231, 76, 60, 0.5);
    }

    .process-step:nth-child(even) .step-number-wrapper::after {
        content: '';
        position: absolute;
        left: -3rem;
        top: 50%;
        width: 3rem;
        height: 0.1875rem;
        background: var(--orange-primary);
        box-shadow: 0 0 0.625rem rgba(231, 76, 60, 0.5);
    }

    .process-step:nth-child(odd) .step-content p {
        text-align: right;
    }

    .process-step:nth-child(even) .step-content p {
        text-align: left;
    }
}

/* Mobile layout */
@media (max-width: 968px) {
    .process-step-wrapper {
        padding-left: 2rem;
    }

    .process-step {
        padding-left: 3rem;
    }

    .step-number-wrapper {
        position: relative;
    }

    .step-number-wrapper::before {
        content: '';
        position: absolute;
        left: -2rem;
        top: 0;
        bottom: 0;
        width: 0.125rem;
        background: var(--orange-primary);
    }

    .service-badge {
        opacity: 1;
        transform: translateY(0);
        animation: pulse 2s ease-in-out infinite;
    }

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

    .service-icon {
        animation: iconFloat 3s ease-in-out infinite;
    }

    @keyframes iconFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-0.3125rem); }
    }

    .service-card {
        border: 0.0625rem solid rgba(231, 76, 60, 0.3);
    }

    .service-card ul li::before {
        animation: bounce 1.5s ease-in-out infinite;
    }
}

/* === ABOUT SECTION === */
.about {
    padding: 6rem 2rem;
    max-width: 87.5rem;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 40rem;
    height: 40rem;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.06) 0%, transparent 70%);
    top: 10%;
    left: -10%;
    animation: float 12s ease-in-out infinite;
    pointer-events: none;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.about-text h2::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.25rem;
    height: 80%;
    background: linear-gradient(180deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
    border-radius: 0.125rem;
    animation: lineGrow 1s ease-out forwards;
}

@keyframes lineGrow {
    from {
        height: 0;
    }
    to {
        height: 80%;
    }
}

.about-text h2 .highlight {
    position: relative;
    display: inline-block;
}

.about-text h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -0.3125rem;
    left: 0;
    width: 100%;
    height: 0.1875rem;
    background: var(--orange-primary);
    animation: slideIn 1s ease-out 0.3s forwards;
    transform-origin: left;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateX(-1.25rem);
    animation: fadeInLeft 0.8s ease-out forwards;
}

.about-text p:nth-of-type(1) {
    animation-delay: 0.2s;
}

.about-text p:nth-of-type(2) {
    animation-delay: 0.4s;
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8) translateY(1.25rem);
    animation: valuePopIn 0.6s ease-out forwards;
}

.value-item:nth-child(1) {
    animation-delay: 0.5s;
}

.value-item:nth-child(2) {
    animation-delay: 0.6s;
}

.value-item:nth-child(3) {
    animation-delay: 0.7s;
}

.value-item:nth-child(4) {
    animation-delay: 0.8s;
}

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

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    transition: left 0.6s ease;
}

.value-item:hover::before {
    left: 100%;
}

.value-item:hover {
    transform: translateY(-0.3125rem) scale(1.05);
    box-shadow:
        0.625rem 0.625rem 1.25rem var(--shadow-dark),
        -0.625rem -0.625rem 1.25rem var(--shadow-light),
        0 0 1.875rem rgba(231, 76, 60, 0.2);
}

.value-item h4 {
    color: var(--orange-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.value-item:hover h4 {
    transform: translateX(0.3125rem);
    text-shadow: 0 0 0.625rem rgba(231, 76, 60, 0.3);
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    transition: color 0.3s ease;
}

.value-item:hover p {
    color: var(--text-primary);
}

.about-visual {
    padding: 3rem;
}

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

.stat-card {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8) rotateY(90deg);
    animation: cardFlipIn 0.8s ease-out forwards;
}

.stat-card:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.4s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.5s;
}

@keyframes cardFlipIn {
    to {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
    }
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    transform: scale(0);
}

.stat-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.stat-card:hover {
    transform: translateY(-0.625rem) scale(1.05);
    box-shadow:
        0.9375rem 0.9375rem 1.875rem var(--shadow-dark),
        -0.9375rem -0.9375rem 1.875rem var(--shadow-light),
        0 0 2.5rem rgba(231, 76, 60, 0.3);
}

.stat-icon {
    margin-bottom: 0.5rem;
    animation: iconFloat 3s ease-in-out infinite;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-0.3125rem) rotate(5deg);
    }
    75% {
        transform: translateY(0.3125rem) rotate(-5deg);
    }
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 0.625rem rgba(231, 76, 60, 0.6));
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange-primary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    text-shadow: 0 0 0 transparent;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 1.25rem rgba(231, 76, 60, 0.5);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
    color: var(--text-primary);
}

/* === CONTACT SECTION === */
.contact {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 45rem;
    height: 45rem;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.05) 0%, transparent 70%);
    top: 20%;
    right: -15%;
    animation: float 18s ease-in-out infinite;
    pointer-events: none;
}

.contact-container {
    max-width: 75rem;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.08), transparent);
    transition: left 0.6s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateX(0.625rem) scale(1.02);
    box-shadow:
        0.625rem 0.625rem 1.25rem var(--shadow-dark),
        -0.625rem -0.625rem 1.25rem var(--shadow-light),
        0 0 1.875rem rgba(231, 76, 60, 0.15);
}

.contact-icon {
    width: 3.125rem;
    height: 3.125rem;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    box-shadow: 0 0.25rem 0.9375rem rgba(231, 76, 60, 0.3);
}

.contact-item:hover .contact-icon {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 0.5rem 1.5625rem rgba(231, 76, 60, 0.6);
}

.contact-item-text h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--text-secondary);
}

.contact-item-text p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
}

.contact-form {
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    transform: scale(0);
}

.contact-form:hover::before {
    opacity: 1;
    transform: scale(1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--bg-primary);
    border: none;
    border-radius: 0.625rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow:
        inset 0.1875rem 0.1875rem 0.375rem var(--shadow-dark),
        inset -0.1875rem -0.1875rem 0.375rem var(--shadow-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    box-shadow:
        inset 0.1875rem 0.1875rem 0.5rem var(--shadow-dark),
        inset -0.1875rem -0.1875rem 0.5rem var(--shadow-light),
        0 0 0 0.125rem var(--orange-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 7.5rem;
}

.form-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--orange-primary);
    color: white;
    border: none;
    border-radius: 3.125rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0.5rem 1.5625rem rgba(231, 76, 60, 0.4);
}

.form-submit:hover {
    background: var(--orange-dark);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.75rem 2.1875rem rgba(231, 76, 60, 0.6);
}

/* === GOOGLE MAPS SECTION === */
.map-container {
    margin-top: 5rem;
    opacity: 0;
    transform: translateY(3.125rem);
    transition: all 0.8s ease-out;
}

.map-container.active {
    opacity: 1;
    transform: translateY(0);
}

.map-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.map-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 0.25rem;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
    border-radius: 0.125rem;
}

.map-wrapper {
    position: relative;
    width: 100%;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow:
        0.9375rem 0.9375rem 1.875rem var(--shadow-dark),
        -0.9375rem -0.9375rem 1.875rem var(--shadow-light),
        0 0 2.5rem rgba(231, 76, 60, 0.2);
    transition: all 0.4s ease;
}

.map-wrapper:hover {
    transform: scale(1.01);
    box-shadow:
        1.25rem 1.25rem 2.5rem var(--shadow-dark),
        -1.25rem -1.25rem 2.5rem var(--shadow-light),
        0 0 3.75rem rgba(231, 76, 60, 0.3);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 28.125rem;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.4s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

.map-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    pointer-events: none;
}

.map-info-card {
    padding: 1.5rem;
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(0.625rem);
    border-radius: 1rem;
    min-width: 15.625rem;
    pointer-events: auto;
    animation: cardSlideIn 0.8s ease-out 0.3s backwards;
    transition: all 0.4s ease;
    border: 0.0625rem solid rgba(231, 76, 60, 0.2);
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateX(-3.125rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.map-info-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow:
        0.625rem 0.625rem 1.875rem rgba(0, 0, 0, 0.6),
        0 0 1.875rem rgba(231, 76, 60, 0.3);
    border-color: var(--orange-primary);
}

.map-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    animation: bounce 2s ease-in-out infinite;
}

.map-info-card h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.map-info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.map-link::after {
    content: '';
    position: absolute;
    bottom: -0.125rem;
    left: 0;
    width: 0;
    height: 0.125rem;
    background: var(--orange-primary);
    transition: width 0.3s ease;
}

.map-link:hover::after {
    width: 100%;
}

.map-link:hover {
    color: var(--orange-dark);
    transform: translateX(0.3125rem);
}

/* === FOOTER === */
footer {
    background: var(--navy);
    padding: 3rem 2rem 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 87.5rem;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--orange-primary);
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--orange-primary);
}

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

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--orange-primary);
    transform: translateY(-0.1875rem);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* === CUSTOM CURSOR === */
.cursor {
    width: 1.25rem;
    height: 1.25rem;
    border: 0.125rem solid var(--orange-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--orange-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease;
    box-shadow: 0 0 0.9375rem var(--orange-primary);
}

.cursor.expand {
    transform: scale(2);
    background: rgba(231, 76, 60, 0.1);
}

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar {
    width: 0.625rem;
}

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

::-webkit-scrollbar-thumb {
    background: var(--orange-primary);
    border-radius: 0.625rem;
    box-shadow:
        inset 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.5),
        inset -0.125rem -0.125rem 0.25rem rgba(255, 255, 255, 0.05);
}

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

* {
    scrollbar-width: thin;
    scrollbar-color: var(--orange-primary) var(--bg-primary);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(1.875rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* === SCROLL REVEAL === */
.reveal {
    opacity: 0;
    transform: translateY(3.125rem);
    transition: all 0.8s ease-out;
}

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

/* === RESPONSIVE === */
@media (max-width: 968px) {
    body {
        cursor: auto;
    }

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

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

    .hero-text h2 {
        font-size: 2.5rem;
    }

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

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 18.75rem;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        box-shadow: -0.3125rem 0 1.25rem rgba(0, 0, 0, 0.5);
    }

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

    .menu-toggle {
        display: flex;
    }

    .cta-header {
        display: none;
    }

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

@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

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

    nav {
        padding: 0 1.5rem;
    }
}
