@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&family=Unbounded:wght@400;700;800&display=swap');

:root {
    --bg-primary: #FFF9F5;
    --bg-secondary: #F5EEE8;
    --bg-tertiary: #EDE5DF;
    --bg-quaternary: #E8E0D8;
    --bg-dark: #DCD4C8;
    --text-primary: #1A1512;
    --text-secondary: #7A7068;
    --accent-primary: #006D6D;
    --accent-secondary: #B8860B;
    --accent-tertiary: #C45C3A;
    --accent-fourth: #8B4513;
    --shadow-primary: rgba(0,109,109,0.26);
    --font-display: 'Unbounded', sans-serif;
    --font-body: 'DM Sans', 'Noto Sans JP', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

strong, p {
    color: inherit;
}

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

.liquid-canvas-bg {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.liquid-canvas-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 120px 180px at 20% 30%, rgba(245,230,200,0.5) 0%, transparent 100%),
        radial-gradient(ellipse 180px 140px at 70% 60%, rgba(212,196,168,0.4) 0%, transparent 100%),
        radial-gradient(ellipse 140px 200px at 50% 80%, rgba(255,245,232,0.6) 0%, transparent 100%),
        radial-gradient(ellipse 160px 120px at 80% 20%, rgba(255,232,232,0.3) 0%, transparent 100%);
    animation: liquidShimmer 48s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes liquidShimmer {
    0%, 100% { opacity: 1; transform: translate(0, 0) scale(1); }
    25% { opacity: 0.85; transform: translate(8px, -6px) scale(1.02); }
    50% { opacity: 1; transform: translate(-5px, 10px) scale(0.98); }
    75% { opacity: 0.9; transform: translate(10px, 5px) scale(1.01); }
}

.container-wrapper {
    position: relative;
    z-index: 1;
}

.floating-pill-island {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,249,245,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--accent-primary);
    border-radius: 36px;
    padding: 0 36px;
    min-width: 720px;
    max-width: calc(100% - 32px);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.22, 0.55, 0.32, 1);
}

.floating-pill-island.scrolled {
    min-width: 560px;
    padding: 0 20px;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.logo-text-stack {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.domain-name {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--text-primary);
}

.company-name-jp {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--text-secondary);
}

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

.nav-link {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    color: var(--text-primary);
    padding: 8px 0;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

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

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

.nav-link.active {
    color: var(--accent-primary);
}

.nav-link.active::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-menu span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 1001;
    opacity: 0;
    transform: scale(0.94);
    transition: all 0.36s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: scale(1);
}

.mobile-menu-header {
    display: none;
    padding: 20px;
    border-bottom: 1px solid var(--bg-tertiary);
}

.mobile-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
}

.mobile-menu-cta {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #005555 100%);
    color: white;
    text-align: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-primary);
}

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

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-divider {
    position: absolute;
    left: 50%;
    top: 15%;
    bottom: 15%;
    width: 3px;
    background: var(--accent-primary);
    z-index: 2;
}

.hero-content {
    padding-right: 60px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 142px;
    font-weight: 800;
    letter-spacing: 0.6px;
    line-height: 0.9;
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title-word {
    display: inline-block;
    animation: brutalReveal 0.6s ease-out forwards;
    transform: translateY(100%);
}

@keyframes brutalReveal {
    to { transform: translateY(0); }
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.btn-brutal {
    display: inline-block;
    padding: 16px 40px;
    border: 3px solid var(--accent-primary);
    border-radius: 4px;
    background: transparent;
    color: var(--accent-primary);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.24s ease-out-brutal;
    position: relative;
    overflow: hidden;
}

.btn-brutal:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px var(--shadow-primary);
}

.btn-brutal-primary {
    background: var(--accent-primary);
    color: white;
}

.btn-brutal-primary:hover {
    background: #005555;
}

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

.brutal-frame {
    position: relative;
    border: 3px solid var(--text-primary);
    padding: 20px;
    background: var(--bg-secondary);
}

.brutal-frame img {
    width: 100%;
    height: auto;
    display: block;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.corner-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid var(--accent-primary);
}

.corner-marker.top-left { top: -6px; left: -6px; border-right: none; border-bottom: none; }
.corner-marker.top-right { top: -6px; right: -6px; border-left: none; border-bottom: none; }
.corner-marker.bottom-left { bottom: -6px; left: -6px; border-right: none; border-top: none; }
.corner-marker.bottom-right { bottom: -6px; right: -6px; border-left: none; border-top: none; }

.section-pad {
    padding: 100px 40px;
}

.section-dark {
    background: var(--text-primary);
    color: white;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-tertiary {
    background: var(--bg-tertiary);
}

.section-quaternary {
    background: var(--bg-quaternary);
}

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

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-cell {
    border: 2px solid var(--text-primary);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.24s ease-out-brutal;
    position: relative;
    z-index: 1;
}

.bento-cell:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 14px 36px var(--shadow-primary);
    z-index: 100;
    border-color: var(--accent-primary);
}

.bento-cell.featured {
    grid-column: span 2;
    border-color: var(--accent-primary);
}

.bento-cell-image {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.bento-cell-content {
    padding: 24px;
}

.bento-cell-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 16px;
}

.bento-cell-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bento-cell-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.neighbors-compress .bento-cell:not(:hover) {
    transform: scale(0.96);
    opacity: 0.8;
}

.about-parallax-gallery {
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-sticky {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.gallery-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gallery-item {
    border: 3px solid var(--text-primary);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

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

.about-intro {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-intro::first-letter {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    color: var(--accent-primary);
    float: left;
    margin-right: 12px;
    line-height: 1;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.stat-item {
    text-align: center;
    padding: 24px;
    border: 2px solid var(--text-primary);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    color: var(--accent-primary);
    display: block;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.process-node {
    display: flex;
    align-items: center;
    gap: 0;
}

.process-marker {
    width: 14px;
    height: 14px;
    background: var(--accent-primary);
    flex-shrink: 0;
}

.process-label {
    padding: 16px 24px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    background: var(--bg-secondary);
    border: 2px solid var(--text-primary);
    border-left: none;
    transition: all 0.24s ease-out-brutal;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.process-node:hover .process-label {
    background: var(--accent-primary);
    color: white;
    transform: scale(1.06);
    z-index: 100;
    position: relative;
}

.process-connector {
    width: 60px;
    height: 3px;
    background: var(--accent-primary);
}

.features-badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.badge-item {
    border: 2px solid var(--text-primary);
    padding: 32px;
    transition: all 0.24s ease-out-brutal;
    position: relative;
    z-index: 1;
}

.badge-item:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 14px 36px var(--shadow-primary);
    z-index: 100;
    border-color: var(--accent-primary);
}

.badge-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.badge-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.badge-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.stream-section {
    background: var(--text-primary);
    color: white;
    padding: 95px 0;
    overflow: hidden;
}

.stream-marquee {
    display: flex;
    animation: streamMove 18s linear infinite;
    white-space: nowrap;
}

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

.stream-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0 16px;
}

.stream-delimiter {
    color: var(--accent-fourth);
    font-size: 16px;
}

.stream-bands {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.stream-band {
    position: absolute;
    height: 4px;
    background: var(--accent-primary);
    animation: bandStream 8s linear infinite;
}

.stream-band:nth-child(2) {
    background: var(--accent-tertiary);
    animation-delay: 2s;
}

.stream-band:nth-child(3) {
    background: var(--accent-primary);
    animation-delay: 4s;
}

@keyframes bandStream {
    0% { left: -100%; width: 30%; }
    100% { left: 100%; width: 30%; }
}

.counters-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
}

.counter-number {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 800;
    color: var(--accent-primary);
    animation: counterPulse 2s ease-in-out infinite;
}

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

.team-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    border: 2px solid var(--text-primary);
    overflow: hidden;
    transition: all 0.24s ease-out-brutal;
    position: relative;
    z-index: 1;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 14px 36px var(--shadow-primary);
    z-index: 100;
    border-color: var(--accent-primary);
}

.team-card:hover .team-card-details {
    max-height: 200px;
    opacity: 1;
    padding-top: 16px;
}

.team-card-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.team-card-info {
    padding: 20px;
    text-align: center;
}

.team-card-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card-role {
    font-size: 11px;
    color: var(--text-secondary);
}

.team-card-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 12px;
    color: var(--text-secondary);
}

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

.faq-item {
    border: 2px solid var(--text-primary);
    margin-bottom: -2px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
}

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

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

.faq-answer-content {
    padding: 0 24px 24px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    border-left: 4px solid var(--accent-primary);
    margin-left: 24px;
}

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

.reviews-carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    perspective: 1000px;
}

.reviews-carousel {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.review-card {
    flex: 0 0 280px;
    border: 2px solid var(--text-primary);
    background: var(--bg-primary);
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
}

.review-card.active {
    flex: 0 0 360px;
    z-index: 100;
    transform: scale(1);
}

.review-card:not(.active) {
    transform: scale(0.82) rotateY(18deg);
    opacity: 0.5;
    filter: blur(1px);
}

.review-bar {
    width: 100%;
    height: 4px;
    background: var(--accent-primary);
    margin-bottom: 24px;
}

.review-client {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.review-client-photo {
    width: 56px;
    height: 56px;
    border-radius: 0;
    object-fit: cover;
    border: 2px solid var(--text-primary);
}

.review-client-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
}

.review-client-location {
    font-size: 11px;
    color: var(--text-secondary);
}

.review-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.review-stars {
    color: var(--accent-tertiary);
    font-size: 16px;
    letter-spacing: 2px;
}

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

.carousel-btn {
    width: 48px;
    height: 48px;
    border: 2px solid var(--text-primary);
    background: var(--bg-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

.contact-split {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    padding-right: 40px;
}

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

.form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 3px solid var(--accent-primary);
    background: transparent;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s ease;
}

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

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

.form-submit {
    width: 100%;
    padding: 20px;
    background: var(--accent-primary);
    color: white;
    border: none;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.24s ease-out-brutal;
}

.form-submit:hover {
    background: #005555;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px var(--shadow-primary);
}

.contact-info {
    padding-left: 40px;
    border-left: 3px solid var(--accent-primary);
}

.contact-info-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
}

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

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item-text {
    font-size: 14px;
    line-height: 1.6;
}

.contact-item-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 480px;
    background: var(--bg-primary);
    border: 2px solid var(--text-primary);
    padding: 24px;
    z-index: 2000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.cookie-banner-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

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

.cookie-btn {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--text-primary);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn-accept {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

.cookie-btn-accept:hover {
    background: #005555;
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-primary);
}

.cookie-btn-decline:hover {
    background: var(--bg-secondary);
}

.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-tertiary);
    font-size: 12px;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-label {
    color: var(--text-secondary);
    font-size: 11px;
}

.site-footer {
    background: var(--text-primary);
    color: white;
    padding: 80px 40px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-brand {
    max-width: 280px;
}

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

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.footer-domain {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-secondary);
}

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

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

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

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    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.5);
}

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

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

.footer-legal-links a:hover {
    color: white;
}

.shimmer-reveal-trigger {
    position: relative;
    overflow: hidden;
}

.shimmer-reveal-trigger::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(0,109,109,0.2) 25%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(0,109,109,0.2) 75%, 
        transparent 100%);
    opacity: 0;
    transform: translateX(-100%);
    transition: all 350ms ease-out;
    pointer-events: none;
}

.shimmer-reveal-trigger:hover::before {
    opacity: 1;
    animation: shimmerSlide 450ms ease-out forwards;
}

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

.shimmer-reveal-trigger::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(0,109,109,0.3);
    border-radius: inherit;
    opacity: 0;
    transition: all 200ms ease-out;
    z-index: -1;
}

.shimmer-reveal-trigger:hover::after {
    opacity: 1;
}

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

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

.block-load {
    opacity: 0;
    transition: opacity 0.38s ease-out;
}

.block-load.visible {
    opacity: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--text-primary);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,109,109,0.9);
    color: white;
    padding: 16px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay-title {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 80px;
    }
    
    .services-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-cell.featured {
        grid-column: span 1;
    }
    
    .about-parallax-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-sticky {
        position: relative;
        top: 0;
    }
    
    .about-content {
        padding: 40px 0;
    }
    
    .team-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-split {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding-right: 0;
    }
    
    .contact-info {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid var(--accent-primary);
        padding-top: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .floating-pill-island {
        min-width: auto;
        width: calc(100% - 32px);
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .hero-section {
        padding: 100px 20px 60px;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
    }
    
    .hero-divider {
        display: none;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 56px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-visual {
        display: none;
    }
    
    .section-pad {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-bento-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 12px;
    }
    
    .process-connector {
        width: 3px;
        height: 30px;
        transform: rotate(90deg);
    }
    
    .process-label {
        white-space: normal;
        text-align: center;
        padding: 12px 16px;
    }
    
    .counters-row {
        grid-template-columns: 1fr;
    }
    
    .counter-number {
        font-size: 40px;
    }
    
    .team-cards-row {
        grid-template-columns: 1fr;
    }
    
    .reviews-carousel {
        flex-direction: column;
    }
    
    .review-card {
        flex: 0 0 100%;
    }
    
    .review-card:not(.active) {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-consent-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stream-section {
        padding: 75px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 42px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.form-success-message {
    display: none;
    text-align: center;
    padding: 40px;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-primary);
}

.form-success-message.active {
    display: block;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
}

.form-success-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.form-success-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 40px 80px;
}

.legal-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent-primary);
}

.legal-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}

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

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

.thank-you-icon {
    width: 120px;
    height: 120px;
    background: var(--accent-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    font-size: 56px;
}

.thank-you-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
}

.thank-you-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.page-hero {
    padding: 160px 40px 80px;
    text-align: center;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-content {
    padding: 20px;
}

.service-detail-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
}

.service-detail-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.service-detail-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-detail-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-tertiary);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.service-detail-features li::before {
    content: '✓';
    color: var(--accent-primary);
    font-weight: 700;
}

.service-price-box {
    background: var(--bg-secondary);
    border: 2px solid var(--accent-primary);
    padding: 24px;
    text-align: center;
}

.service-price-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.service-price-value {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-primary);
}

.service-detail-image {
    position: relative;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid var(--text-primary);
}

@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero-title {
        font-size: 36px;
    }
    
    .thank-you-title {
        font-size: 32px;
    }
    
    .legal-title {
        font-size: 32px;
    }
}