@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&family=Fira+Code:wght@400;500&display=swap');

:root {
    --warm-ivory: #FFF8F3;
    --soft-cream: #FDF6EE;
    --fresh-teal: #0D7A7A;
    --coral-accent: #E86C4F;
    --soft-olive: #8B9A6D;
    --deep-slate: #1F3D3D;
    --warm-charcoal: #4A4A4A;
    --soft-taupe: #A89F91;
    --white: #FFFFFF;
    --shadow-light: rgba(31, 61, 61, 0.06);
    --shadow-medium: rgba(31, 61, 61, 0.08);
    --shadow-heavy: rgba(31, 61, 61, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--warm-charcoal);
    background-color: var(--soft-cream);
    overflow-x: hidden;
}

strong, p {
    color: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--deep-slate);
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(255, 248, 243, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(13, 122, 122, 0.1);
    z-index: 1000;
    display: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--fresh-teal), var(--coral-accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
    fill: none;
}

.header-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: -0.01em;
    color: var(--deep-slate);
}

.hamburger {
    width: 44px;
    height: 44px;
    background: rgba(13, 122, 122, 0.08);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background 0.2s ease;
}

.hamburger:hover {
    background: rgba(13, 122, 122, 0.15);
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--fresh-teal);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.side-island {
    position: fixed;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 72px;
    background: rgba(255, 248, 243, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(13, 122, 122, 0.1);
    border-radius: 100px;
    box-shadow: 0 16px 56px rgba(31, 61, 61, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.side-island-logo {
    padding: 20px 0;
    border-bottom: 1px solid rgba(13, 122, 122, 0.08);
}

.side-island-logo svg {
    width: 40px;
    height: 40px;
}

.side-island-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
}

.side-island-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.2s ease;
    color: rgba(74, 74, 74, 0.6);
}

.side-island-link:hover {
    background: rgba(13, 122, 122, 0.1);
    color: var(--fresh-teal);
    box-shadow: 0 4px 16px rgba(13, 122, 122, 0.1);
}

.side-island-link svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5px;
}

.side-island-cta {
    padding: 16px 0;
    border-top: 1px solid rgba(13, 122, 122, 0.08);
}

.side-island-cta a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fresh-teal), #0A6262);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(13, 122, 122, 0.2);
    transition: all 0.2s ease;
}

.side-island-cta a:hover {
    box-shadow: 0 8px 24px rgba(13, 122, 122, 0.3);
    transform: scale(1.05);
}

.side-island-cta svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(255, 248, 243, 0.99);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-close svg {
    width: 48px;
    height: 48px;
    stroke: var(--fresh-teal);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-nav a {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--deep-slate);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu.active .mobile-nav a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-nav a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav a:nth-child(2) { transition-delay: 0.17s; }
.mobile-menu.active .mobile-nav a:nth-child(3) { transition-delay: 0.24s; }
.mobile-menu.active .mobile-nav a:nth-child(4) { transition-delay: 0.31s; }
.mobile-menu.active .mobile-nav a:nth-child(5) { transition-delay: 0.38s; }
.mobile-menu.active .mobile-nav a:nth-child(6) { transition-delay: 0.45s; }

.mobile-nav-line {
    width: 60px;
    height: 2px;
    background: var(--fresh-teal);
    margin: 0 auto;
}

.mobile-contact {
    margin-top: 40px;
    text-align: center;
}

.mobile-contact-phone {
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    color: var(--fresh-teal);
}

.mobile-contact-address {
    font-size: 12px;
    color: var(--soft-taupe);
    margin-top: 8px;
}

.hero {
    min-height: 100vh;
    background-color: var(--soft-cream);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-mesh-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 122, 122, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: drift1 25s ease-in-out infinite alternate;
}

.hero-mesh-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 108, 79, 0.06) 0%, transparent 70%);
    bottom: 100px;
    left: 10%;
    animation: drift2 30s ease-in-out infinite alternate;
}

.hero-mesh-blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 154, 109, 0.05) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation: drift3 35s ease-in-out infinite alternate;
}

@keyframes drift1 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-30px, 20px); }
}

@keyframes drift2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, -30px); }
}

@keyframes drift3 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(15px, 15px); }
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.4;
}

.hero-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
    padding: 120px 80px 80px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-left {
    grid-column: span 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-geometric-decor {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
}

.hero-geometric-decor svg {
    width: 100%;
    height: 100%;
}

.hero-title {
    font-size: 52px;
    line-height: 0.88;
    color: var(--deep-slate);
    max-width: 480px;
    animation: revealText 0.7s ease-out;
}

@keyframes revealText {
    from { clip-path: inset(0 100% 0 0); }
    to { clip-path: inset(0 0% 0 0); }
}

.hero-subtitle {
    font-size: 17px;
    color: #6A6A6A;
    line-height: 1.75;
    max-width: 440px;
    margin-top: 20px;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-markers {
    display: flex;
    gap: 8px;
    margin-top: 32px;
    animation: fadeIn 0.6s ease-out 0.5s both;
}

.hero-marker {
    width: 8px;
    height: 8px;
    background: var(--fresh-teal);
    border-radius: 50%;
    filter: drop-shadow(0 4px 12px rgba(13, 122, 122, 0.25));
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    animation: scaleIn 0.6s ease-out 0.6s both;
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 44px;
    background: linear-gradient(135deg, var(--fresh-teal), #0A6262);
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(13, 122, 122, 0.25);
    transition: all 0.25s ease-out;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(13, 122, 122, 0.35);
    transform: translateY(-3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    background: transparent;
    border: 2px solid var(--deep-slate);
    color: var(--deep-slate);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    border-radius: 16px;
    transition: all 0.25s ease-out;
    cursor: pointer;
    white-space: nowrap;
}

.btn-secondary:hover {
    border-color: var(--fresh-teal);
    color: var(--fresh-teal);
}

.hero-right {
    grid-column: span 7;
    position: relative;
    height: 520px;
}

.hero-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    height: 100%;
    animation: bentoIn 0.8s ease-out 0.2s both;
}

@keyframes bentoIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.bento-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}

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

.bento-item-1 { grid-column: span 1; grid-row: span 2; }

.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(13, 122, 122, 0.1);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 16px 48px rgba(31, 61, 61, 0.08);
    animation: floatIn 0.6s ease-out 0.5s both;
}

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

.floating-card-1 {
    top: 40px;
    right: 0;
}

.floating-card-2 {
    bottom: 60px;
    right: 0;
}

.floating-card-label {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--deep-slate);
}

.floating-card-value {
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    color: var(--fresh-teal);
}

.page-hero {
    min-height: 280px;
    background-color: var(--warm-ivory);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.page-hero-content {
    padding: 100px 80px 60px;
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.page-breadcrumbs {
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    color: var(--soft-taupe);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    animation: fadeIn 0.4s ease-out;
}

.page-breadcrumbs a:hover {
    color: var(--fresh-teal);
}

.page-title-wrapper {
    display: flex;
    align-items: center;
}

.page-title-line {
    width: 24px;
    height: 2px;
    background: var(--fresh-teal);
    margin-right: 12px;
    animation: scaleLine 0.3s ease-out;
}

@keyframes scaleLine {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.page-title {
    font-size: 44px;
    color: var(--deep-slate);
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.page-hero-markers {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    animation: scaleIn 0.4s ease-out 0.2s both;
}

.page-hero-marker {
    width: 6px;
    height: 6px;
    background: var(--fresh-teal);
    border-radius: 50%;
}

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

.section-cream {
    background-color: var(--soft-cream);
}

.section-ivory {
    background-color: var(--warm-ivory);
}

.section-slate {
    background-color: var(--deep-slate);
}

.section-dark {
    background-color: var(--deep-slate);
}

.section-dark .section-title,
.section-dark .section-subtitle {
    color: white;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

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

.section-title {
    font-size: 42px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: #6A6A6A;
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

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

.project-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(13, 122, 122, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(31, 61, 61, 0.06);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 56px rgba(13, 122, 122, 0.1);
    z-index: 10;
}

.project-card-image {
    height: 200px;
    overflow: hidden;
    margin: -24px -24px 20px;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
    transition: transform 0.3s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.05);
}

.project-card-icon {
    width: 48px;
    height: 48px;
    margin: 24px 0 16px 24px;
}

.project-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--fresh-teal);
}

.project-card-content {
    padding: 0 24px 24px;
}

.project-card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--deep-slate);
    margin-bottom: 4px;
}

.project-card-subtitle {
    font-size: 12px;
    color: var(--fresh-teal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.project-card-desc {
    font-size: 14px;
    color: #6A6A6A;
    margin-top: 8px;
}

.project-card-decor {
    width: 40px;
    height: 2px;
    background: var(--fresh-teal);
    border-radius: 2px;
    margin-top: 16px;
}

.services-sticky {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 100vh;
}

.sticky-panel {
    position: sticky;
    top: 0;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(13, 122, 122, 0.08);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sticky-panel-decor {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
}

.sticky-panel-decor svg {
    width: 100%;
    height: 100%;
}

.sticky-panel-title {
    font-size: 36px;
    color: var(--deep-slate);
}

.sticky-panel-subtitle {
    font-size: 15px;
    color: #6A6A6A;
    line-height: 1.8;
    margin-top: 16px;
}

.sticky-panel .btn-primary {
    margin-top: 32px;
    display: inline-flex;
    padding: 16px 32px;
}

.services-scroll {
    padding: 80px;
}

.service-item {
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(13, 122, 122, 0.06);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 48px rgba(31, 61, 61, 0.06);
    transform: translateX(8px);
}

.service-item-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.service-item-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--fresh-teal);
}

.service-item-content {
    flex: 1;
}

.service-item-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-slate);
}

.service-item-desc {
    font-size: 14px;
    color: #6A6A6A;
    margin-top: 4px;
}

.service-item-decor {
    width: 40px;
    height: 2px;
    background: var(--coral-accent);
    border-radius: 2px;
    margin-top: 12px;
}

.about-split {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 600px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

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

.about-image-decor {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 60px;
    height: 60px;
}

.about-image-decor svg {
    width: 100%;
    height: 100%;
}

.about-content {
    padding: 80px 60px;
}

.about-content-decor {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.about-content-decor svg {
    width: 100%;
    height: 100%;
}

.about-content-title {
    font-size: 28px;
    color: var(--deep-slate);
    margin-bottom: 24px;
}

.about-content-text {
    font-size: 16px;
    color: #5A5A5A;
    line-height: 1.8;
}

.about-content-text p {
    margin-bottom: 16px;
}

.about-content .btn-primary {
    margin-top: 24px;
    display: inline-flex;
    padding: 14px 28px;
}

.about-content .btn-primary:hover {
    transform: translateY(-2px);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--fresh-teal), var(--coral-accent), var(--fresh-teal));
    border-radius: 2px;
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
    position: relative;
}

.process-step:nth-child(even) .process-card {
    order: 2;
}

.process-step:nth-child(even) .process-spacer {
    order: 1;
}

.process-card {
    width: calc(50% - 56px);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 28px 32px;
    border: 1px solid rgba(13, 122, 122, 0.08);
    box-shadow: 0 16px 48px rgba(31, 61, 61, 0.06);
}

.process-number {
    width: 52px;
    height: 52px;
    border: 2px solid rgba(13, 122, 122, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--fresh-teal);
    margin-bottom: 16px;
}

.process-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-slate);
    margin-bottom: 8px;
}

.process-card-text {
    font-size: 14px;
    color: #6A6A6A;
    line-height: 1.7;
}

.process-card-image {
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 16px;
}

.process-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}

.process-connector {
    position: absolute;
    top: 30px;
    width: 40px;
    height: 3px;
    background: var(--fresh-teal);
    border-radius: 2px;
}

.process-step:nth-child(odd) .process-connector {
    right: calc(50% - 20px);
}

.process-step:nth-child(even) .process-connector {
    left: calc(50% - 20px);
}

.process-dot {
    position: absolute;
    left: 50%;
    top: 26px;
    width: 12px;
    height: 12px;
    background: var(--fresh-teal);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--fresh-teal);
    transform: translateX(-50%);
    z-index: 2;
}

.process-spacer {
    width: calc(50% - 56px);
}

.marquee {
    overflow: hidden;
    padding: 40px 0;
    border-top: 1px solid rgba(13, 122, 122, 0.08);
    border-bottom: 1px solid rgba(13, 122, 122, 0.08);
    margin-top: 60px;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

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

.marquee-item {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--deep-slate);
    letter-spacing: -0.01em;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 40px;
}

.marquee-dot {
    width: 8px;
    height: 8px;
    background: var(--fresh-teal);
    border-radius: 50%;
}

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

.advantage-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(13, 122, 122, 0.08);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.advantage-card:hover {
    flex-grow: 1.5;
    background: white;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.15);
    border-color: rgba(13, 122, 122, 0.15);
}

.advantage-card:hover .advantage-icon svg {
    transform: scale(1.1);
}

.advantage-card:hover .advantage-value {
    color: var(--fresh-teal);
}

.advantages-container {
    display: flex;
}

.advantage-card {
    flex: 1;
}

.advantage-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
}

.advantage-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--coral-accent);
    transition: transform 0.3s ease;
}

.advantage-value {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 44px;
    color: var(--deep-slate);
    transition: color 0.3s ease;
}

.advantage-label {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

.advantage-label + p {
    color: rgba(0, 0, 0, 0.6) !important;
}

.advantage-decor {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    opacity: 0.3;
}

.advantage-decor svg {
    width: 100%;
    height: 100%;
    stroke: var(--fresh-teal);
}

.achievements-graph {
    position: relative;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.achievements-center {
    width: 160px;
    height: 160px;
    background: rgba(13, 122, 122, 0.08);
    border: 2px solid var(--fresh-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.achievements-center svg {
    width: 64px;
    height: 64px;
    stroke: var(--deep-slate);
}

.achievements-node {
    position: absolute;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(13, 122, 122, 0.08);
    padding: 24px 28px;
    box-shadow: 0 16px 48px rgba(31, 61, 61, 0.06);
    transition: all 0.3s ease;
}

.achievements-node:hover {
    transform: scale(1.08);
    border-color: rgba(13, 122, 122, 0.25);
    box-shadow: 0 20px 56px rgba(13, 122, 122, 0.1);
    z-index: 10;
}

.achievements-node-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
}

.achievements-node-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--fresh-teal);
}

.achievements-node-value {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 40px;
    color: var(--deep-slate);
}

.achievements-node-label {
    font-size: 12px;
    color: #6A6A6A;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.achievements-connection {
    position: absolute;
    stroke: rgba(13, 122, 122, 0.15);
    stroke-width: 2px;
    fill: none;
    z-index: 1;
}

.team-stack {
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(13, 122, 122, 0.08);
    box-shadow: 0 16px 48px rgba(31, 61, 61, 0.06);
    margin-bottom: -80px;
    display: flex;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fresh-teal), var(--coral-accent));
    border-radius: 16px 16px 0 0;
}

.team-card:hover {
    box-shadow: 0 24px 64px rgba(13, 122, 122, 0.1);
    transform: translateY(-4px);
    z-index: 10;
}

.team-card-icon {
    width: 48px;
    height: 48px;
    margin: 28px 0 28px 28px;
    flex-shrink: 0;
}

.team-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--fresh-teal);
}

.team-card-content {
    padding: 28px 40px;
    flex: 1;
}

.team-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-slate);
}

.team-card-role {
    font-size: 12px;
    color: var(--fresh-teal);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.team-card-desc {
    font-size: 14px;
    color: #6A6A6A;
    margin-top: 8px;
}

.team-card-spec {
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    color: var(--soft-taupe);
    margin-top: 8px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 80px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(13, 122, 122, 0.08);
    padding: 24px 28px;
    box-shadow: 0 12px 40px rgba(31, 61, 61, 0.04);
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    box-shadow: 0 16px 48px rgba(31, 61, 61, 0.08);
    transform: translateY(-2px);
    border-color: rgba(13, 122, 122, 0.15);
}

.faq-item:nth-child(even) {
    align-self: end;
    margin-top: 20px;
}

.faq-item.active {
    background: rgba(13, 122, 122, 0.04);
    border-left: 4px solid var(--fresh-teal);
}

.faq-question {
    font-size: 17px;
    font-weight: 600;
    color: var(--deep-slate);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 4px 0;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(13, 122, 122, 0.05);
}

.faq-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--soft-taupe);
}

.faq-item.active .faq-icon svg {
    stroke: var(--fresh-teal);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer-content {
    padding: 20px 0 0;
    font-size: 16px;
    color: #6A6A6A;
    line-height: 1.75;
}

.testimonials-carousel {
    position: relative;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    margin-top: 40px;
}

.testimonials-track {
    position: relative;
    width: 320px;
    height: 100%;
    transform-style: preserve-3d;
}

.testimonial-card {
    position: absolute;
    width: 320px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(13, 122, 122, 0.08);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(31, 61, 61, 0.06);
    overflow: hidden;
    transition: all 0.5s ease;
}

.testimonial-card-image {
    height: 140px;
    overflow: hidden;
}

.testimonial-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}

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

.testimonial-decor {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
}

.testimonial-decor svg {
    width: 100%;
    height: 100%;
    stroke: rgba(13, 122, 122, 0.2);
}

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

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--coral-accent);
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: #5A5A5A;
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(13, 122, 122, 0.15);
}

.testimonial-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--deep-slate);
}

.testimonial-company {
    font-size: 12px;
    color: var(--soft-taupe);
}

.testimonial-gradient {
    height: 4px;
    background: linear-gradient(90deg, var(--fresh-teal), var(--coral-accent));
    border-radius: 0 0 4px 4px;
    margin-top: 16px;
}

.testimonial-nav {
    position: absolute;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(13, 122, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 100;
}

.testimonial-nav:hover {
    background: white;
    box-shadow: 0 8px 24px rgba(13, 122, 122, 0.15);
}

.testimonial-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--fresh-teal);
}

.testimonial-nav-prev {
    left: 15%;
}

.testimonial-nav-next {
    right: 15%;
}

.contact-split {
    display: grid;
    grid-template-columns: 50% 50%;
}

.contact-form-panel {
    padding: 80px 60px;
}

.contact-form-decor {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.contact-form-decor svg {
    width: 100%;
    height: 100%;
}

.contact-form-title {
    font-size: 28px;
    color: var(--deep-slate);
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 14px;
    color: var(--soft-taupe);
    margin-bottom: 32px;
}

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

.form-label {
    display: block;
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--soft-taupe);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 2px solid rgba(31, 61, 61, 0.12);
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: var(--warm-charcoal);
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-bottom-color: var(--fresh-teal);
}

.form-input:focus + .form-label,
.form-input.filled + .form-label {
    color: var(--fresh-teal);
}

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

.contact-info-panel {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 80px 48px;
    border: 1px solid rgba(13, 122, 122, 0.08);
    box-shadow: 0 20px 60px rgba(31, 61, 61, 0.06);
    margin: 40px;
}

.contact-info-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(13, 122, 122, 0.1);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-info-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
}

.contact-info-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--fresh-teal);
}

.contact-info-label {
    font-size: 12px;
    color: var(--soft-taupe);
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 16px;
    color: #5A5A5A;
}

.contact-info-value a:hover {
    color: var(--fresh-teal);
}

.contact-map {
    filter: grayscale(100%);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(31, 61, 61, 0.06);
    margin-top: 24px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.footer {
    background: var(--deep-slate);
    padding: 80px 0 40px;
}

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

.footer-brand {
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--fresh-teal), var(--coral-accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.footer-column-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 14px;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--fresh-teal);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--fresh-teal);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 16px 56px rgba(31, 61, 61, 0.15);
    max-width: 400px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.cookie-banner.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--deep-slate);
    margin-bottom: 8px;
}

.cookie-text {
    font-size: 13px;
    color: #6A6A6A;
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.cookie-category {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--warm-charcoal);
}

.cookie-category-toggle {
    width: 36px;
    height: 20px;
    background: rgba(13, 122, 122, 0.2);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: background 0.2s ease;
}

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

.cookie-category-toggle::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.2s ease;
}

.cookie-category-toggle.active::after {
    transform: translateX(16px);
}

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

.cookie-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--fresh-teal), #0A6262);
    color: white;
}

.cookie-btn-accept:hover {
    box-shadow: 0 4px 16px rgba(13, 122, 122, 0.25);
}

.cookie-btn-decline {
    background: rgba(13, 122, 122, 0.1);
    color: var(--fresh-teal);
}

.cookie-btn-decline:hover {
    background: rgba(13, 122, 122, 0.15);
}

.cookie-link {
    font-size: 11px;
    color: var(--fresh-teal);
    text-decoration: underline;
    margin-top: 12px;
    display: block;
}

.reveal-fade {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.reveal-fade.visible {
    opacity: 1;
}

.reveal-up {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.65s ease-out;
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition: all 0.5s ease-out;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: all 0.6s ease-out;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-geometric {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease-out;
}

.reveal-geometric.visible {
    opacity: 1;
    transform: scale(1);
}

.lens-container {
    position: relative;
    overflow: hidden;
}

.lens-effect {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    transform: scale(1.06);
    clip-path: circle(120px at var(--x, 50%) var(--y, 50%));
    transition: transform 0.15s ease-out;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(13, 122, 122, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--fresh-teal), var(--coral-accent));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    opacity: 0.8;
}

.gallery-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
}

.gallery-filter {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(13, 122, 122, 0.1);
    border-radius: 12px;
    color: var(--warm-charcoal);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gallery-filter:hover {
    background: rgba(13, 122, 122, 0.05);
    border-color: rgba(13, 122, 122, 0.2);
}

.gallery-filter.active {
    background: linear-gradient(135deg, var(--fresh-teal), #0A6262);
    color: white;
    border-color: var(--fresh-teal);
}

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

.gallery-item {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(31, 61, 61, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 56px rgba(13, 122, 122, 0.1);
}

.gallery-item-image {
    position: relative;
    overflow: hidden;
}

.gallery-item-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: saturate(1.05);
    transition: transform 0.3s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
}

.gallery-item-category {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--coral-accent);
    margin-bottom: 4px;
}

.gallery-item-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.gallery-item-location {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2px;
}

.gallery-item-detail {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.gallery-item-corner {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item-corner svg {
    width: 20px;
    height: 20px;
    stroke: var(--fresh-teal);
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-tall .gallery-item-image img {
    height: 100%;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item-wide .gallery-item-image img {
    height: 200px;
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

.gallery-cta-text {
    font-size: 16px;
    color: #6A6A6A;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial-mini {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(13, 122, 122, 0.08);
    box-shadow: 0 12px 40px rgba(31, 61, 61, 0.04);
}

.testimonial-mini-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.testimonial-mini-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--coral-accent);
}

.testimonial-mini-text {
    font-size: 14px;
    color: #5A5A5A;
    line-height: 1.6;
}

.faq-intro {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.faq-intro-icon {
    width: 64px;
    height: 64px;
    background: rgba(13, 122, 122, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-intro-icon:hover {
    background: rgba(13, 122, 122, 0.15);
    transform: scale(1.05);
}

.faq-intro-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--fresh-teal);
}

.faq-intro-text {
    font-size: 18px;
    color: var(--warm-charcoal);
    line-height: 1.8;
    max-width: 650px;
    font-weight: 400;
}

.faq-categories {
    margin-bottom: 60px;
    padding: 48px 40px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    border: 1px solid rgba(13, 122, 122, 0.05);
    box-shadow: 0 8px 32px rgba(31, 61, 61, 0.04);
}

.faq-category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.faq-category-header svg {
    width: 24px;
    height: 24px;
    stroke: var(--fresh-teal);
}

.faq-category-header h3 {
    font-size: 24px;
    color: var(--deep-slate);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.faq-cta {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 48px 40px;
    border: 1px solid rgba(13, 122, 122, 0.1);
    box-shadow: 0 20px 56px rgba(31, 61, 61, 0.08);
    margin-top: 60px;
}

.faq-cta-content {
    text-align: center;
}

.faq-cta-content h3 {
    font-size: 28px;
    color: var(--deep-slate);
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-cta-content p {
    font-size: 16px;
    color: var(--warm-charcoal);
    margin-bottom: 24px;
    line-height: 1.7;
}

.faq-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    background: linear-gradient(135deg, var(--fresh-teal), #0A6262);
    color: white;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(13, 122, 122, 0.3);
    transition: all 0.25s ease;
}

.faq-cta-phone:hover {
    box-shadow: 0 8px 24px rgba(13, 122, 122, 0.35);
    transform: translateY(-2px);
}

.faq-cta-phone svg {
    width: 20px;
    height: 20px;
}

.faq-cta-hours {
    font-size: 14px;
    color: var(--soft-taupe);
    margin-top: 16px;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .side-island {
        display: none;
    }

    .header {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
    }

    .hero-left {
        grid-column: span 1;
        text-align: center;
        align-items: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-right {
        grid-column: span 1;
        height: 400px;
    }

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

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

    .sticky-panel {
        position: relative;
        height: auto;
        padding: 40px 24px;
    }

    .services-scroll {
        padding: 40px 24px;
    }

    .about-split {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
    }

    .about-content {
        padding: 40px 24px;
    }

    .process-timeline {
        padding: 0 24px;
    }

    .process-line {
        left: 20px;
    }

    .process-step {
        flex-direction: column;
    }

    .process-step:nth-child(even) .process-card {
        order: 1;
    }

    .process-step:nth-child(even) .process-spacer {
        order: 2;
    }

    .process-card {
        width: 100%;
        margin-left: 56px;
    }

    .process-spacer {
        display: none;
    }

    .process-dot {
        left: 20px;
    }

    .process-connector {
        display: none;
    }

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

    .advantage-card:hover {
        flex-grow: 1;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }

    .faq-item:nth-child(even) {
        margin-top: 0;
    }

    .contact-split {
        grid-template-columns: 1fr;
    }

    .contact-form-panel {
        padding: 40px 24px;
    }

    .contact-info-panel {
        margin: 0 24px 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

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

    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 100px 16px 40px;
    }

    .hero-left {
        text-align: left;
        align-items: flex-start;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-right {
        height: 300px;
        margin-top: 32px;
    }

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

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

    .page-hero-content {
        padding: 100px 16px 40px;
    }

    .page-title {
        font-size: 32px;
    }

    .section {
        padding: 80px 0 60px;
    }

    .section-title {
        font-size: 32px;
    }

    .achievements-graph {
        min-height: auto;
        flex-direction: column;
        gap: 24px;
    }

    .achievements-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }

    .achievements-node {
        position: relative;
        width: 100%;
    }

    .testimonials-carousel {
        height: auto;
        overflow: hidden;
    }

    .testimonials-track {
        display: flex;
        flex-direction: column;
        gap: 24px;
        height: auto;
        transform: none !important;
    }

    .testimonial-card {
        position: relative;
        width: 100%;
        transform: none !important;
    }

    .testimonial-nav {
        display: none;
    }

    .team-card {
        flex-direction: column;
    }

    .team-card-icon {
        margin: 24px 0 0 24px;
    }

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

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

.footer-logo {
    flex-direction: column;
    text-align: center;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

}
