@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    --crystal-white: #FAFCFE;
    --ice-mist: #F0F4F8;
    --mineral-light: #E8EEF4;
    --deep-carbon: #2A2D30;
    --steel-gray: #3A3E42;
    --cleaning-mint: #40A080;
    --deep-sage: #308060;
    --mint-glow: rgba(64, 160, 128, 0.32);
    --organic-radius: 24px;
    --fluid-transition: 0.54s cubic-bezier(0.34, 1.56, 0.64, 1);
    --spring-ease: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

strong, p, b {
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, var(--crystal-white) 0%, var(--ice-mist) 25%, var(--mineral-light) 50%, var(--ice-mist) 75%, var(--crystal-white) 100%);
    background-attachment: fixed;
    color: var(--steel-gray);
    line-height: 1.78;
    font-size: 17px;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(240, 248, 255, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(232, 238, 244, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(240, 244, 248, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: mineralShift 20s ease-in-out infinite;
}

@keyframes mineralShift {
    0%, 100% { opacity: 1; transform: scale(1); }
    33% { opacity: 0.85; transform: scale(1.02); }
    66% { opacity: 0.9; transform: scale(0.98); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--deep-carbon);
    line-height: 0.84;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 0.86;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

.sprite-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-stretch: 107%;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.organic-card {
    background: rgba(250, 252, 254, 0.97);
    border-radius: var(--organic-radius);
    border: 2px solid rgba(64, 160, 128, 0.12);
    box-shadow: 0 24px 80px rgba(64, 160, 128, 0.08);
    transition: all var(--fluid-transition);
    position: relative;
    z-index: 1;
}

.organic-card:hover {
    border-radius: 40px;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 48px 120px rgba(64, 160, 128, 0.16);
    z-index: 96;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 44px;
    background: linear-gradient(135deg, var(--cleaning-mint), var(--deep-sage));
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: 22px;
    box-shadow: 0 20px 80px var(--mint-glow);
    transition: all var(--fluid-transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 100px var(--mint-glow);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(250, 252, 254, 0.95);
    color: var(--deep-carbon);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    border-radius: 18px;
    border: 2px solid var(--cleaning-mint);
    transition: all var(--fluid-transition);
    cursor: pointer;
}

.secondary-button:hover {
    background: var(--cleaning-mint);
    color: white;
    transform: scale(1.04);
}

.header-split {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(250, 252, 254, 0.99);
}

.header-top {
    height: 40px;
    background: rgba(250, 252, 254, 0.95);
    border-bottom: 1px solid rgba(64, 160, 128, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.header-bottom {
    height: 56px;
    background: rgba(250, 252, 254, 0.99);
    border-bottom: 2px solid rgba(64, 160, 128, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--deep-carbon);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 12px;
    color: var(--steel-gray);
}

.header-contact a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-contact a:hover {
    color: var(--cleaning-mint);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: var(--deep-carbon);
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--cleaning-mint);
    background: rgba(64, 160, 128, 0.06);
    transform: scale(1.06);
}

.nav-cta {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--cleaning-mint), var(--deep-sage));
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 11px;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(64, 160, 128, 0.30);
    transition: all var(--fluid-transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(64, 160, 128, 0.40);
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(250, 252, 254, 0.99);
    border: 1px solid rgba(64, 160, 128, 0.2);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: var(--deep-carbon);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 252, 254, 0.98);
    z-index: 10000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.mobile-overlay.active {
    display: flex;
}

.mobile-overlay a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--deep-carbon);
    padding: 16px;
    transition: color 0.3s ease;
}

.mobile-overlay a:hover {
    color: var(--cleaning-mint);
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--deep-carbon);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    align-items: center;
    width: 100%;
}

.hero-content {
    padding-left: 56px;
}

.hero-title {
    margin-bottom: 28px;
}

.hero-title span {
    display: inline-block;
    animation: charSlideUp 0.6s var(--spring-ease) forwards;
    opacity: 0;
    transform: translateY(40px) scale(0.78);
}

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

.hero-subtitle {
    font-size: 18px;
    color: var(--steel-gray);
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 36px;
    animation: fadeUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

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

.hero-subtitle {
    transform: translateY(20px);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.hero-quick-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--deep-carbon);
}

.hero-visual {
    position: relative;
    padding: 20px;
}

.hero-image-frame {
    position: relative;
    border: 2px solid rgba(64, 160, 128, 0.12);
    border-radius: 32px;
    box-shadow: 0 48px 160px rgba(64, 160, 128, 0.14);
    overflow: hidden;
    aspect-ratio: 4/3;
    animation: fluidReveal 1s ease 0.3s forwards;
    opacity: 0;
}

@keyframes fluidReveal {
    to {
        opacity: 1;
        border-radius: 40px;
    }
}

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

.hero-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 12px 20px;
    background: rgba(250, 252, 254, 0.95);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(64, 160, 128, 0.20);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--cleaning-mint);
    animation: pulse 2s ease infinite;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--steel-gray);
    font-size: 11px;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--steel-gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 16px;
}

.bento-card {
    background: rgba(250, 252, 254, 0.97);
    border-radius: var(--organic-radius);
    border: 2px solid rgba(64, 160, 128, 0.10);
    overflow: hidden;
    transition: all var(--fluid-transition);
    position: relative;
}

.bento-card:hover {
    border-radius: 40px;
    transform: scale(1.04);
    box-shadow: 0 32px 100px rgba(64, 160, 128, 0.18);
    z-index: 96;
}

.bento-card.large {
    grid-column: span 2;
}

.bento-card.tall {
    grid-row: span 2;
}

.bento-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.bento-card.large .bento-image {
    aspect-ratio: 16/9;
}

.bento-card.tall .bento-image {
    aspect-ratio: auto;
    height: 200px;
}

.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-card:hover .bento-image img {
    transform: scale(1.08);
}

.bento-content {
    padding: 20px;
}

.bento-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.bento-content p {
    font-size: 14px;
    color: var(--steel-gray);
}

.bento-price {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: rgba(64, 160, 128, 0.08);
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--cleaning-mint);
}

.process-node-graph {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 40px 0;
    position: relative;
}

.node-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.node-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cleaning-mint), var(--deep-sage));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 16px 48px var(--mint-glow);
    transition: all var(--fluid-transition);
}

.node-item:hover .node-circle {
    transform: scale(1.2);
    box-shadow: 0 24px 64px var(--mint-glow);
}

.node-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--deep-carbon);
    text-align: center;
}

.node-connector {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--cleaning-mint), var(--deep-sage));
    position: relative;
    top: -40px;
}

.process-section {
    position: relative;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.advantage-card {
    background: rgba(250, 252, 254, 0.97);
    border-radius: var(--organic-radius);
    border: 2px solid rgba(64, 160, 128, 0.10);
    padding: 32px;
    text-align: center;
    transition: all var(--fluid-transition);
    flex-grow: 1;
}

.advantage-card:hover {
    border-radius: 40px;
    transform: scale(1.06);
    box-shadow: 0 32px 100px rgba(64, 160, 128, 0.18);
    z-index: 96;
}

.advantage-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(64, 160, 128, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.advantage-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.advantage-card p {
    font-size: 14px;
    color: var(--steel-gray);
}

.marquee-section {
    overflow: hidden;
    padding: 40px 0;
    background: rgba(232, 238, 244, 0.5);
    border-radius: 24px;
    margin: 40px 0;
}

.marquee-track {
    display: flex;
    gap: 64px;
    animation: marqueeScroll 30s linear infinite;
}

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    background: rgba(250, 252, 254, 0.95);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(64, 160, 128, 0.10);
    white-space: nowrap;
}

.marquee-item span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--cleaning-mint);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(250, 252, 254, 0.97);
    border-radius: 20px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--fluid-transition);
}

.team-member:hover,
.team-member.active {
    border-color: var(--cleaning-mint);
    box-shadow: 0 16px 48px rgba(64, 160, 128, 0.15);
}

.team-member-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.team-member-info p {
    font-size: 13px;
    color: var(--steel-gray);
}

.team-photo-display {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 32px 100px rgba(64, 160, 128, 0.15);
}

.team-photo-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(42, 45, 48, 0.9), transparent);
    color: white;
}

.team-photo-overlay h3 {
    color: white;
    font-size: 24px;
}

.team-photo-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(250, 252, 254, 0.97);
    border-radius: 20px;
    margin-bottom: 16px;
    border: 2px solid rgba(64, 160, 128, 0.10);
    overflow: hidden;
    transition: all var(--fluid-transition);
}

.faq-item:hover {
    border-color: var(--cleaning-mint);
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--deep-carbon);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(64, 160, 128, 0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--cleaning-mint);
    transition: all 0.4s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--cleaning-mint);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer-content {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--steel-gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.testimonials-carousel {
    position: relative;
    padding: 40px 0;
}

.carousel-track {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 calc(50% - 190px);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex-shrink: 0;
    width: 380px;
    background: rgba(250, 252, 254, 0.97);
    border-radius: 28px;
    padding: 32px;
    border: 2px solid rgba(64, 160, 128, 0.10);
    transition: all var(--fluid-transition);
    text-align: center;
    scroll-snap-align: center;
}

.testimonial-card.active {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 32px 100px rgba(64, 160, 128, 0.20);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--cleaning-mint);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-carbon);
    margin-bottom: 8px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--steel-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-stars {
    color: var(--cleaning-mint);
    font-size: 18px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    background: rgba(250, 252, 254, 0.97);
    border: 2px solid var(--cleaning-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--fluid-transition);
    font-size: 20px;
    color: var(--cleaning-mint);
}

.carousel-btn:hover {
    background: var(--cleaning-mint);
    color: white;
}

.contact-section {
    background: rgba(250, 252, 254, 0.97);
    border-radius: 40px;
    padding: 64px;
    border: 2px solid rgba(64, 160, 128, 0.12);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(64, 160, 128, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--deep-carbon);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 16px 20px;
    border: 2px solid var(--cleaning-mint);
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    box-shadow: 0 8px 32px rgba(64, 160, 128, 0.20);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form .cta-button {
    align-self: flex-start;
    padding: 20px 48px;
}

.map-embed {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    margin-top: 32px;
}

.map-embed iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.page-hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    background: linear-gradient(135deg, rgba(240, 244, 248, 0.8), rgba(232, 238, 244, 0.8));
}

.page-hero h1 {
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    color: var(--steel-gray);
}

.footer-section {
    background: var(--mineral-light);
    border-top: 3px solid var(--cleaning-mint);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--steel-gray);
    margin-top: 16px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--deep-carbon);
    margin-bottom: 20px;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    font-size: 14px;
    color: var(--steel-gray);
}

.footer-column a:hover {
    color: var(--cleaning-mint);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(64, 160, 128, 0.15);
}

.footer-bottom p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--steel-gray);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 420px;
    background: rgba(250, 252, 254, 0.98);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--cleaning-mint);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.4s ease;
}

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

.cookie-banner h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

.cookie-banner p {
    font-size: 13px;
    color: var(--steel-gray);
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 12px 24px;
    border-radius: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-btn {
    background: var(--cleaning-mint);
    color: white;
    border: none;
}

.accept-btn:hover {
    background: var(--deep-sage);
}

.decline-btn {
    background: transparent;
    color: var(--steel-gray);
    border: 2px solid var(--steel-gray);
}

.decline-btn:hover {
    border-color: var(--cleaning-mint);
    color: var(--cleaning-mint);
}

.cookie-link {
    font-size: 12px;
    color: var(--cleaning-mint);
    text-decoration: underline;
    margin-top: 12px;
    display: inline-block;
}

.sparkle-particle {
    position: fixed;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(200, 255, 220, 0.9), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    animation: sparkleFade 0.6s ease-out forwards;
}

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

@media (max-width: 1200px) {
    .services-bento {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        padding-left: 0;
        order: 2;
    }
    
    .hero-visual {
        order: 1;
        margin-bottom: 40px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-quick-info {
        justify-content: center;
    }
    
    .services-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-card.large {
        grid-column: span 1;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu,
    .header-contact {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    h2 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .services-bento {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .process-node-graph {
        flex-direction: column;
        gap: 24px;
    }
    
    .node-connector {
        display: none;
    }
    
    .contact-section {
        padding: 40px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .carousel-track {
        flex-direction: column;
    }
    
    .testimonial-card {
        width: 100%;
    }
    
    .testimonial-card:nth-child(2) {
        transform: scale(1);
    }
    
    .cookie-banner {
        left: 12px;
        right: 12px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 13px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .cta-button,
    .hero-actions .secondary-button {
        width: 100%;
        justify-content: center;
    }
}

.page-content {
    padding-top: 96px;
}

.service-detail-hero {
    position: relative;
    overflow: hidden;
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(64, 160, 128, 0.10);
}

.service-detail-section:last-child {
    border-bottom: none;
}

.service-detail-section h2 {
    margin-bottom: 24px;
}

.service-detail-section p {
    margin-bottom: 20px;
}

.price-tag {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--cleaning-mint), var(--deep-sage));
    color: white;
    border-radius: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin: 24px 0;
}

.service-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(64, 160, 128, 0.05);
    border-radius: 12px;
}

.service-feature-icon {
    width: 32px;
    height: 32px;
    background: var(--cleaning-mint);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px;
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--cleaning-mint), var(--deep-sage));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 48px;
    color: white;
    animation: pulse 2s ease infinite;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(42, 45, 48, 0.9), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 13px;
    opacity: 0.9;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.legal-content h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--deep-carbon);
}

.legal-content h3 {
    font-size: 20px;
    margin: 32px 0 16px;
    color: var(--deep-carbon);
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--steel-gray);
}

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content li {
    margin-bottom: 12px;
    color: var(--steel-gray);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}