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

:root {
    --aqua-white: #F8FBF9;
    --stream-mist: #EEF4F2;
    --pure-water: #E4ECE8;
    --deep-carbon: #282828;
    --water-gray: #383838;
    --aqua-teal: #40A090;
    --deep-pine: #308878;
    --teal-glow: rgba(64, 160, 144, 0.18);
    --teal-glow-strong: rgba(64, 160, 144, 0.36);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--aqua-white);
    color: var(--water-gray);
    line-height: 1.76;
    font-size: 17px;
    overflow-x: hidden;
}

strong, p {
    color: inherit;
}

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

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

.container-fluid {
    padding-left: 24px;
    padding-right: 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--deep-carbon);
    line-height: 0.76;
    letter-spacing: -0.02em;
}

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

h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 500;
}

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

p {
    font-size: 17px;
    line-height: 1.76;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--aqua-teal), var(--deep-pine));
    color: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
    border-radius: 24px;
    border: none;
    box-shadow: 0 14px 56px var(--teal-glow-strong);
    cursor: pointer;
    transition: all 0.32s ease;
    white-space: nowrap;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 84px var(--teal-glow-strong);
    color: #FFFFFF;
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: transparent;
    color: var(--aqua-teal);
    font-weight: 600;
    font-size: 13px;
    border: 2px solid var(--aqua-teal);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.32s ease;
    white-space: nowrap;
}

.btn-secondary-custom:hover {
    background: var(--aqua-teal);
    color: #FFFFFF;
}

.floating-pill-nav {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: rgba(248, 251, 249, 0.99);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 24px;
    border: 2px solid rgba(100, 160, 140, 0.12);
    box-shadow: 0 14px 56px var(--teal-glow);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    color: var(--deep-carbon);
}

.nav-logo svg {
    width: 24px;
    height: 24px;
}

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

.nav-items a {
    font-size: 10px;
    font-weight: 500;
    color: var(--water-gray);
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nav-items a:hover {
    color: var(--aqua-teal);
    background: rgba(64, 160, 144, 0.06);
    transform: scale(1.08);
}

.nav-cta {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--aqua-teal), var(--deep-pine));
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 10px;
    border-radius: 24px;
    box-shadow: 0 14px 56px rgba(64, 160, 144, 0.36);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 72px rgba(64, 160, 144, 0.42);
}

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(248, 251, 249, 0.99);
    border: 1px solid rgba(100, 160, 140, 0.2);
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    z-index: 10000;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--deep-carbon);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

.mobile-menu-overlay a {
    font-size: 20px;
    font-weight: 700;
    color: var(--deep-carbon);
    padding: 16px;
    transition: color 0.3s ease;
}

.mobile-menu-overlay a:hover {
    color: var(--aqua-teal);
}

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

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: var(--aqua-white);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(100, 180, 160, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(80, 160, 140, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(120, 200, 180, 0.03) 0%, transparent 60%);
    animation: meshFlow 24s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes meshFlow {
    0% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.1) rotate(5deg); opacity: 0.8; }
    100% { transform: scale(1) rotate(-5deg); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    line-height: 0.76;
    letter-spacing: -0.02em;
    color: var(--deep-carbon);
    margin-bottom: 24px;
}

.hero-title span {
    display: inline-block;
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
}

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

.hero-subtitle {
    font-size: 18px;
    color: var(--water-gray);
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-meta-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--deep-carbon);
}

.hero-meta-badge svg {
    width: 16px;
    height: 16px;
    color: var(--aqua-teal);
}

.hero-visual {
    position: relative;
}

.hero-visual-frame {
    position: relative;
    border: 2px solid rgba(64, 160, 144, 0.14);
    border-radius: 36px;
    box-shadow: 0 52px 172px rgba(64, 160, 144, 0.14);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.hero-visual-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 160, 144, 0.05), transparent);
    z-index: 1;
}

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

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

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

.scroll-indicator span {
    font-size: 11px;
    color: var(--water-gray);
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
    color: var(--aqua-teal);
}

.services-section {
    background: var(--stream-mist);
}

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

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

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

.stacking-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stacking-card {
    position: relative;
    background: var(--aqua-white);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.54s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    z-index: 82;
}

.stacking-card:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 32px 96px rgba(64, 160, 144, 0.18);
    z-index: 96;
}

.stacking-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.stacking-card-content {
    padding: 24px;
}

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

.stacking-card-content p {
    font-size: 14px;
    color: var(--water-gray);
}

.stacking-card.wide {
    grid-column: span 2;
}

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

.about-section {
    background: var(--aqua-white);
}

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

.about-image {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 32px 96px rgba(64, 160, 144, 0.12);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 160, 144, 0.08), transparent);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
}

.process-section {
    background: var(--stream-mist);
}

.node-graph {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.node-item {
    display: flex;
    align-items: center;
}

.node-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--aqua-white);
    border: 3px solid var(--aqua-teal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.54s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(64, 160, 144, 0.12);
}

.node-circle:hover {
    transform: scale(1.15);
    box-shadow: 0 16px 64px rgba(64, 160, 144, 0.24);
    z-index: 96;
}

.node-circle svg {
    width: 28px;
    height: 28px;
    color: var(--aqua-teal);
    margin-bottom: 4px;
}

.node-circle span {
    font-size: 11px;
    font-weight: 600;
    color: var(--deep-carbon);
}

.node-connector {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--aqua-teal), var(--deep-pine));
    position: relative;
}

.node-connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid var(--deep-pine);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.marquee-section {
    background: var(--deep-carbon);
    padding: 40px 0;
    overflow: hidden;
}

.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: 12px;
    background: rgba(255, 255, 255, 0.06);
    padding: 16px 32px;
    border-radius: 20px;
    white-space: nowrap;
}

.marquee-item strong {
    font-size: 24px;
    color: #FFFFFF;
    letter-spacing: 0.02em;
}

.marquee-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

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

.advantage-card {
    background: var(--aqua-white);
    border-radius: 28px;
    padding: 32px;
    text-align: center;
    transition: all 0.54s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.advantage-card:hover {
    transform: scale(1.04);
    box-shadow: 0 24px 80px rgba(64, 160, 144, 0.14);
    z-index: 88;
}

.advantage-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--aqua-teal), var(--deep-pine));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon svg {
    width: 32px;
    height: 32px;
    color: #FFFFFF;
}

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

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

.team-section {
    background: var(--stream-mist);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

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

.team-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.32s ease;
}

.team-item:hover, .team-item.active {
    background: var(--aqua-white);
    box-shadow: 0 8px 32px rgba(64, 160, 144, 0.1);
}

.team-item-info {
    flex: 1;
}

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

.team-item-info span {
    font-size: 13px;
    color: var(--water-gray);
}

.team-item-number {
    width: 32px;
    height: 32px;
    background: var(--aqua-teal);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.team-image-display {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--pure-water);
}

.team-image-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.team-image-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 160, 144, 0.1), transparent);
    z-index: 1;
}

.faq-section {
    background: var(--aqua-white);
}

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

.faq-item {
    background: var(--stream-mist);
    border-radius: 20px;
    margin-bottom: 16px;
    overflow: hidden;
    border-left: 4px solid transparent;
    transition: all 0.32s ease;
}

.faq-item.active {
    border-left-color: var(--aqua-teal);
    background: var(--aqua-white);
    box-shadow: 0 8px 32px rgba(64, 160, 144, 0.1);
    z-index: 88;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--deep-carbon);
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--aqua-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    color: #FFFFFF;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.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(--water-gray);
    line-height: 1.7;
}

.testimonials-section {
    background: var(--stream-mist);
}

.testimonials-carousel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    overflow: hidden;
    padding: 40px 0;
}

.testimonial-card {
    background: var(--aqua-white);
    border-radius: 28px;
    padding: 32px;
    text-align: center;
    transition: all 0.54s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    max-width: 380px;
}

.testimonial-card.center {
    transform: scale(1.15);
    z-index: 100;
}

.testimonial-card.side {
    transform: scale(0.85);
    opacity: 0.6;
}

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

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

.testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-carbon);
    margin-bottom: 4px;
}

.testimonial-location {
    font-size: 13px;
    color: var(--water-gray);
    margin-bottom: 12px;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: #F5A623;
}

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

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

.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--aqua-white);
    border: 2px solid var(--aqua-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.32s ease;
}

.testimonial-nav-btn:hover {
    background: var(--aqua-teal);
}

.testimonial-nav-btn:hover svg {
    color: #FFFFFF;
}

.testimonial-nav-btn svg {
    width: 20px;
    height: 20px;
    color: var(--aqua-teal);
}

.contact-section {
    background: var(--aqua-white);
}

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

.contact-info {
    padding: 40px;
    background: var(--stream-mist);
    border-radius: 36px;
}

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

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--aqua-teal), var(--deep-pine));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
}

.contact-info-content h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-info-content p {
    font-size: 14px;
    color: var(--water-gray);
}

.contact-form {
    padding: 40px;
    background: var(--pure-water);
    border-radius: 36px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--deep-carbon);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(64, 160, 144, 0.2);
    border-radius: 20px;
    font-size: 15px;
    font-family: inherit;
    background: var(--aqua-white);
    color: var(--deep-carbon);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--aqua-teal);
    box-shadow: 0 4px 16px rgba(64, 160, 144, 0.12);
}

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

.form-submit {
    width: 100%;
}

.map-container {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    margin-top: 40px;
    box-shadow: 0 16px 64px rgba(64, 160, 144, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.footer {
    background: var(--pure-water);
    border-top: 3px solid var(--aqua-teal);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    color: var(--deep-carbon);
}

.footer-logo svg {
    width: 28px;
    height: 28px;
    color: var(--aqua-teal);
}

.footer-brand p {
    font-size: 14px;
    color: var(--water-gray);
}

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

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

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

.footer-column ul li a {
    font-size: 14px;
    color: var(--water-gray);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--aqua-teal);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(64, 160, 144, 0.1);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--water-gray);
}

.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 420px;
    background: var(--aqua-white);
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 24px 96px rgba(0, 0, 0, 0.12);
    z-index: 9000;
    border: 2px solid rgba(64, 160, 144, 0.2);
}

.cookie-banner-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--deep-carbon);
    margin-bottom: 8px;
}

.cookie-banner-text {
    font-size: 13px;
    color: var(--water-gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.cookie-categories {
    margin-bottom: 16px;
}

.cookie-category {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--stream-mist);
    border-radius: 16px;
    margin-bottom: 8px;
}

.cookie-category-label {
    flex: 1;
}

.cookie-category-label strong {
    font-size: 13px;
    color: var(--deep-carbon);
    display: block;
}

.cookie-category-label span {
    font-size: 11px;
    color: var(--water-gray);
}

.cookie-toggle {
    width: 40px;
    height: 22px;
    background: rgba(64, 160, 144, 0.2);
    border-radius: 11px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-toggle.active {
    background: var(--aqua-teal);
}

.cookie-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-toggle.active::after {
    left: 21px;
}

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

.cookie-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--aqua-teal), var(--deep-pine));
    color: #FFFFFF;
}

.cookie-btn-decline {
    background: transparent;
    border: 2px solid var(--aqua-teal);
    color: var(--aqua-teal);
}

.cookie-banner-links {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(64, 160, 140, 0.1);
}

.cookie-banner-links a {
    font-size: 11px;
    color: var(--aqua-teal);
}

.cookie-banner-links a:hover {
    text-decoration: underline;
}

.inner-hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background: var(--aqua-white);
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(100, 180, 160, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(80, 160, 140, 0.03) 0%, transparent 50%);
    animation: meshFlow 24s ease-in-out infinite alternate;
    pointer-events: none;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
}

.service-detail-section {
    background: var(--stream-mist);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}


.stacking-card,
.advantage-card,
.node-circle,
.faq-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stacking-card.animate-in,
.advantage-card.animate-in,
.node-circle.animate-in,
.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stacking-card:nth-child(1),
.stacking-card:nth-child(2),
.stacking-card:nth-child(3),
.advantage-card:nth-child(1),
.advantage-card:nth-child(2),
.advantage-card:nth-child(3),
.node-circle:nth-child(1) {
    transition-delay: 0s;
}

.stacking-card:nth-child(4),
.stacking-card:nth-child(5),
.advantage-card:nth-child(4),
.advantage-card:nth-child(5),
.node-circle:nth-child(2) {
    transition-delay: 0.1s;
}

.stacking-card:nth-child(6),
.advantage-card:nth-child(6),
.node-circle:nth-child(3) {
    transition-delay: 0.2s;
}

.node-circle:nth-child(4) {
    transition-delay: 0.3s;
}

.service-detail-image {
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 32px 96px rgba(64, 160, 144, 0.12);
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

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

.service-detail-content > p {
    margin-bottom: 32px;
}

.service-features {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--aqua-white);
    border-radius: 16px;
}

.service-feature svg {
    width: 20px;
    height: 20px;
    color: var(--aqua-teal);
    flex-shrink: 0;
}

.service-feature span {
    font-size: 14px;
    color: var(--deep-carbon);
}

.service-price {
    padding: 24px;
    background: linear-gradient(135deg, var(--aqua-teal), var(--deep-pine));
    border-radius: 24px;
    color: #FFFFFF;
}

.service-price-label {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.service-price-value {
    font-size: 28px;
    font-weight: 700;
}

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--aqua-white);
}

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

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, var(--aqua-teal), var(--deep-pine));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-icon svg {
    width: 48px;
    height: 48px;
    color: #FFFFFF;
}

.thank-you-content h1 {
    margin-bottom: 16px;
}

.thank-you-content > p {
    margin-bottom: 32px;
}

.legal-section {
    background: var(--aqua-white);
}

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

.legal-content h2 {
    font-size: 24px;
    margin-bottom: 24px;
    padding-top: 32px;
}

.legal-content h2:first-child {
    padding-top: 0;
}

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

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

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

@media (max-width: 1024px) {
    .floating-pill-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-section {
        flex-direction: column;
        padding-top: 100px;
    }
    
    .hero-content {
        padding: 0 24px;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-meta {
        justify-content: center;
    }
    
    .hero-visual {
        width: 100%;
        padding: 0 24px;
        margin-top: 40px;
    }
    
    .stacking-cards {
        grid-template-columns: 1fr 1fr;
    }
    
    .stacking-card.wide,
    .stacking-card.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .about-grid,
    .team-grid,
    .contact-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .node-graph {
        flex-direction: column;
        gap: 24px;
    }
    
    .node-connector {
        width: 3px;
        height: 40px;
        background: linear-gradient(180deg, var(--aqua-teal), var(--deep-pine));
    }
    
    .node-connector::after {
        right: 50%;
        top: auto;
        bottom: -6px;
        transform: translateX(50%);
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 8px solid var(--deep-pine);
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    h2 {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .stacking-cards {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .testimonials-carousel {
        flex-direction: column;
    }
    
    .testimonial-card.center,
    .testimonial-card.side {
        transform: scale(1);
        opacity: 1;
    }
    
    .cookie-consent-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
    }
    
    .inner-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .marquee-item strong {
        font-size: 18px;
    }
    
    .contact-info,
    .contact-form {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
    }
}